我有这段代码$ch = curl_init();
我错误调用未定义的函数curl_init()
我知道我需要启用/安装curl,这就是为什么我的问题是我可以在wordpress中的php.ini中安装curl支持吗?或者我还需要安装php来安装它吗?
答案 0 :(得分:0)
你可以尝试这个(如果在debian / ubuntu上):
$ sudo apt-get install php5-curl
$ sudo /etc/init.d/apache2 restart
否则,请阅读install notes以获取php curl支持。它声明:
“要使用PHP的cURL支持,你还必须编译PHP --with-curl [= DIR],其中DIR是包含lib和include目录的目录的位置。”