最佳答案
我写了这段简单的代码:
$ch = curl_init();
//Set options
curl_setopt($ch, CURLOPT_URL, "http://www.php.net");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$website_content = curl_exec ($ch);
在我的例子中,$website_content
是 false
。
有没有人能提出一些可能出错的建议?