我正在使用Windows 10,我在我的php脚本cURL中使用以获取一些资源:
<?php
// Get cURL resource
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://localhost/module/webservice.php/events/contentViewed/',
CURLOPT_USERAGENT => 'User Agent X'
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
print_r($resp);
?>
但是我收到了这个错误:
致命错误:在第5行的C:\ wamp \ www \ testTracker.php中调用未定义的函数curl_init()
我检查了我的php.ini文件,启用了extension=php_curl.dll
。另外,当我使用phpinfo()
检查cURL模块是否已启用时,我只看到cURL = Sterling Hughes的作者。
如何解决此错误?
答案 0 :(得分:0)
似乎未安装cUrl。例如如果您使用的是基于apt的linux发行版,请使用:
apt-get install php5-curl