Коментарии

Following code returns the curl output as a string.

<?php
       
// create curl resource
       
$ch curl_init();

       
// set url
       
curl_setopt($chCURLOPT_URL"example.com");

       
//return the transfer as a string
       
curl_setopt($chCURLOPT_RETURNTRANSFER1);

       
// $output contains the output string
       
$output curl_exec($ch);

       
// close curl resource to free up system resources
       
curl_close($ch);     
?>
2009-01-07 17:57:16
http://php5.kiev.ua/manual/ru/curl.examples.html

    Поддержать сайт на родительском проекте КГБ