无法在 ubuntu 11.1 上将 curl 与 PHP 一起使用
Posted
技术标签:
【中文标题】无法在 ubuntu 11.1 上将 curl 与 PHP 一起使用【英文标题】:Cannot use curl with PHP on ubuntu 11.1 【发布时间】:2014-07-09 14:13:55 【问题描述】:我正在尝试在我的 ubuntu 11.1 服务器上使用 curl。
在我的脚本中,我有以下内容:
$ch = curl_init();
但是当我运行脚本时,我收到以下错误消息:
Fatal error: Call to undefined function curl_init()
我以为Curl没有安装,但是当我执行以下操作时:
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
我得到以下信息:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libcurl4-openssl-dev' instead of 'libcurl3-dev'
curl is already the newest version.
libcurl3 is already the newest version.
(我没有进行更新)。有什么想法吗?
【问题讨论】:
启用扩展.. 见***.com/a/12787844/1943011 使用这个***.com/questions/2939820/… 可能没有启用。尝试sudo php5enmod curl
然后重新启动您的网络服务器(如果使用网络服务器)。见serverfault.com/questions/132551/…
php5enmod 给了我找不到命令
Rahul K:你的答案是 wampp,我的问题是我在 ubuntu 上
【参考方案1】:
访问以下网址。 https://askubuntu.com/questions/9293/how-do-i-install-curl-in-php5
还可以通过 phpinfo() 检查扩展
【讨论】:
在我的问题中,我已经提到安装程序告诉我安装了 curl 并且它是最新版本以上是关于无法在 ubuntu 11.1 上将 curl 与 PHP 一起使用的主要内容,如果未能解决你的问题,请参考以下文章
无法在 ubuntu 20.04 上通过 apt 安装 curl
PHP 启动:无法加载动态库`curl.so` Ubuntu
如何在 Ubuntu 16.04 上将 FTS5 扩展与带有 Python 3.7 的 sqlite3 python 模块一起使用?