本文介绍了如何在 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

xamppapacheinphp.ini中,然后重启Apache服务.

in xamppapacheinphp.ini, and then restart the Apache service.

注意:在较新的 XAMPP 版本中,PHP 已移至根 xampp 文件夹 xamppphpphp.ini.

NB: In newer XAMPP versions, PHP has moved to root xampp folder xamppphpphp.ini.

这篇关于如何在 PHP/XAMPP 中启用 cURL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 12:07