本文介绍了如何在PHP / XAMPP中启用cURL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在PHP中启用cURL?
How do I enable cURL in PHP?
推荐答案
由于您使用的是XAMPP,请取消注释
Since you're using XAMPP, uncomment the line
;extension=php_curl.dll
在 xampp\apache\bin\php.ini
然后重新启动Apache服务。
in xampp\apache\bin\php.ini
, and then restart the Apache service.
注意:在较新的XAMPP版本中,PHP已移至根xampp文件夹 xampp\php\php.ini
。
NB: In newer XAMPP versions, PHP has moved to root xampp folder xampp\php\php.ini
.
这篇关于如何在PHP / XAMPP中启用cURL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!