标签:call to undefined function curl_init() php
网页内的一个功能无法实现,报错如下:
Call to undefined function curl_init()
解决方法:
php缺少curl模块,需要扩展curl模块
没有源码包解压php源码包,版本和现在安装的一致,有源码包解压的进入源码包内
1. cd usr/src/php-5.5.38/ext/curl/
2. phpize
3. ../configure --with-php-config=/usr/local/php5/bin/php-config
4. make
5. make install
此时会把编译安装后的模块路径打印在屏幕上,复制路径写入到php.ini
vim /usr/local/php5/php.ini
#在最后一行加入以下内容
extension=/打印出来的路径/curl.so
重新启动apache服务,oK!
本文出自 “向往技术的小白” 博客,请务必保留此出处http://lesliecheung.blog.51cto.com/12622169/1974255
Call to undefined function curl_init()错误解决方法
标签:call to undefined function curl_init() php
原文地址:http://lesliecheung.blog.51cto.com/12622169/1974255