php命令行运行出现错误Call to undefined function curl_init()

时间:2022-05-30 10:13:39

在windows命令行窗口下运行php命令,需要将php.exe所在的路径添加到Path环境变量,例如C:\wamp\bin\php\php5.4.3

启动Apache服务

在命令行中输入php test.php

出现错误Call to undefined function curl_init()

因为test.php中用到了php_curl扩展

运行时出现“Call to undefined function curl_init”这个错误提示,没有定义的函数,也就是php还没打开对curl_init函数的支持。

打开php.ini,找到“extension=php_curl.dll”,然后去掉前面的“;”注释,重启apache即可。