如何在xampp中启用curl?

发布于 2024-09-04 19:40:01 字数 95 浏览 6 评论 0原文

如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

残月升风 2024-09-11 19:40:01

您必须修改 xampp 文件夹中的 php.ini 文件。需要更改三个不同位置的三个文件。

请按照以下步骤在 Windows 中使用 XAMPP 启用curl 库:

步骤 1:

浏览并打开以下 3 个文件

C:\Program Files\xampp\apache\bin\php.ini
C:\Program Files\xampp\php\php.ini
C:\Program Files\xampp\php\php4\php.ini

步骤 2:

通过删除分号 (;) 取消注释 php.ini 文件中的以下行。

;extension=php_curl.dll

之后,它将如下所示 -

extension=php_curl.dll

步骤 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

C:\Program Files\xampp\apache\bin\php.ini
C:\Program Files\xampp\php\php.ini
C:\Program Files\xampp\php\php4\php.ini

Step 2:

Uncomment the following line in your php.ini file by removing the semicolon (;).

;extension=php_curl.dll

After that it will look something like something below-

extension=php_curl.dll

Step 3:

Restart your Apache server.

Step 4:

Check your phpinfo() to see whether curl has properly enabled or not.

Enjoy using curl() library.

雪若未夕 2024-09-11 19:40:01

它应该在 php.ini 文件中可用。您需要取消注释curl扩展行:

  ;extension=php_curl.dll
  ^----- remove semi-colon

It should be available in php.ini file. You need to un-comment the line for curl extension:

  ;extension=php_curl.dll
  ^----- remove semi-colon
A君 2024-09-11 19:40:01

在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.

孤独岁月 2024-09-11 19:40:01

1) C:\Program Files\xampp\php\php.ini

2) 通过删除分号来取消注释 php.ini 文件中的以下行。

;扩展名=php_curl.dll

3) 重新启动 apache 服务器。

1) C:\Program Files\xampp\php\php.ini

2) Uncomment the following line on your php.ini file by removing the semicolon.

;extension=php_curl.dll

3) Restart your apache server.

水溶 2024-09-11 19:40:01

首先,确保您有 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).

寄居人 2024-09-11 19:40:01

您可以通过删除分号 (;) 添加任何扩展(在 Wamp 和 Xampp 服务器中)

You can add any extension (in Wamp and Xampp servers) by removing the semi-colon (;)

祁梦 2024-09-11 19:40:01

对于 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文