对未定义函数 curl_init() 的卷曲调用

Posted

技术标签:

【中文标题】对未定义函数 curl_init() 的卷曲调用【英文标题】:Curl Call to undefined function curl_init() 【发布时间】:2018-11-17 11:24:57 【问题描述】:

我正在使用 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);
?>

但我得到这个错误:

致命错误:在 C:\wamp\www\testTracker.php 第 5 行调用未定义函数 curl_init()

我检查了我的 php.ini 文件,extension=php_curl.dll 已启用。此外,当我使用phpinfo() 检查是否启用了 cURL 模块时,我只看到 cURL = Sterling Hughes 的作者。

如何解决这个错误?

【问题讨论】:

【参考方案1】:

好像没有安装 cUrl。例如如果您使用的是基于 apt 的 linux 发行版,请使用:

apt-get install php5-curl

【讨论】:

以上是关于对未定义函数 curl_init() 的卷曲调用的主要内容,如果未能解决你的问题,请参考以下文章

在 wamp 2.2 中调用未定义函数 curl_init() 错误

在 wamp 2.2 中调用未定义函数 curl_init() 错误

PHP 致命错误:调用未定义的函数 curl_init()

调用未定义函数 curl_init() 错误

调用未定义的函数 curl_init() - 使用 WAMP

调用未定义的函数 curl_init() - 使用 WAMP