php提示:Call to undefined function curl_init_PHP教程
例
代码如下 | 复制代码 |
$ch = curl_init(); //初始化curl |
结果出现
Call to undefined function curl_init
解决方法如下:
1.打开php.ini,开启extension=php_curl.dll
2.检查php.ini的extension_dir值是哪个目录,检查有无php_curl.dll,没有的请下载php_curl.dll,再把php目录中的libeay32.dll,ssleay32.dll拷到c:windowssystem32里面
修改之后还有问题啊
在httpd.conf文件中加上:
LoadFile 动态链接库的完整路径
比如,此处php需要扩展curl,因此解决方法就是在httpd.conf文件中加上:
LoadFile d:/php/libeay32.dll
LoadFile d:/php/ssleay32.dll
这样就解决了
上一篇: php设置页面超时时间的方法
下一篇: dw怎么打开php项目
推荐阅读
-
ThinkPHP做文字水印时提示call an undefined function exif_imagetype()解决方法
-
Ubuntu环境下,项目出现:Call to undefined function curl_init() 提示
-
Uncaught Error: Call to undefined function imageCreateTruecolor() in ,php7中GD库打不开
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP TP5内报错:Call to undefined function imagecreatefrompng()
-
PHP FATAL ERROR: CALL TO UNDEFINED FUNCTION BCMUL()解决办法
-
php 验证码报错Call to undefined function imagecreatetruecolor() 多种方法无效解决思路
-
已安装gd库,但仍提示Call to undefined function imagecreatefromjpeg()
-
关于PHP Undefined index的错误提示_PHP教程
-
PHP中Call to undefined function mb_substr()处理方法