如何在xampp中启用curl?
如何在xampp中启用curl?
我的 PHP twitter 应用程序需要curl 函数。但在 XAMPP 中并未启用它。如何启用它。我没有找到这样做的选择。
How to enable curl in xampp ?
My PHP twitter application needs curl function. But it is not enabled in XAMPP. how to enable it. I found no options for doing that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您必须修改 xampp 文件夹中的 php.ini 文件。需要更改三个不同位置的三个文件。
请按照以下步骤在 Windows 中使用 XAMPP 启用curl 库:
步骤 1:
浏览并打开以下 3 个文件
步骤 2:
通过删除分号 (;) 取消注释 php.ini 文件中的以下行。
之后,它将如下所示 -
步骤 3:
重新启动 Apache 服务器。
步骤 4:
检查您的
phpinfo()
以查看curl 是否已正确启用。享受使用curl()库的乐趣。
You have to modify the php.ini files in your xampp folder. Three files in three different places need to be changed.
Follow the following steps to enable curl library with XAMPP in Windows:
Step 1:
Browse and open the following 3 files
Step 2:
Uncomment the following line in your php.ini file by removing the semicolon (;).
After that it will look something like something below-
Step 3:
Restart your Apache server.
Step 4:
Check your
phpinfo()
to see whether curl has properly enabled or not.Enjoy using curl() library.
它应该在 php.ini 文件中可用。您需要取消注释curl扩展行:
It should be available in php.ini file. You need to un-comment the line for curl extension:
在XAMPP安装目录中,打开
%XAMPP_HOME%/php/php.ini
文件。取消注释以下行:extension=php_curl.dll
PS:如果这不起作用,请检查
%XAMPP_HOME%/php/ext/php_curl.dll
文件是否存在。In XAMPP installation directory, open
%XAMPP_HOME%/php/php.ini
file. Uncomment the following line:extension=php_curl.dll
PS: If that doesn't work then check whether
%XAMPP_HOME%/php/ext/php_curl.dll
file exist or not.1) C:\Program Files\xampp\php\php.ini
2) 通过删除分号来取消注释 php.ini 文件中的以下行。
3) 重新启动 apache 服务器。
1) C:\Program Files\xampp\php\php.ini
2) Uncomment the following line on your php.ini file by removing the semicolon.
3) Restart your apache server.
首先,确保您有
libcurl
(请参阅:http://curl.haxx.se) 安装。然后确保您的 PHP 副本已使用--with-curl[=DIR]
标志进行编译。有关更多信息,请参阅:如果 XAMPP 是用 cURL 预编译的,您可能只需要在 php.ini 文件中启用扩展(通常通过删除行开头的分号来实现)包括扩展名)。
First, make sure you have
libcurl
(see: http://curl.haxx.se) installed. Then make sure your copy of PHP has been compiled with the--with-curl[=DIR]
flag. For more info see:If XAMPP comes pre-compiled with cURL you may just need to enable the extension in your php.ini file (usually by removing a semicolon at the start of the line which includes the extension).
您可以通过删除分号 (;) 添加任何扩展(在 Wamp 和 Xampp 服务器中)
You can add any extension (in Wamp and Xampp servers) by removing the semi-colon (;)
对于 MACOS 或 Linux 上的 XAMPP,请删除 php.ini 文件中 extension=curl.so 后的分号
For XAMPP on MACOS or Linux, remove the semicolon in php.ini file after extension=curl.so