在Windows 10中启用cURL [英] Enable cURL in Windows 10

查看:182
本文介绍了在Windows 10中启用cURL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在笔记本电脑中设置了本地服务器(Windows 10家庭单一语言64位版本1803).

I have set up local server in my laptop (Windows 10 Home Single Language 64 bit Version 1803).

我已经下载并手动安装 apache24 MySQL phpMyAdmin 教程.

I have downloaded and manually installed apache24, php7, MySQL, phpMyAdmin and wordpress by following this tutorial.

我正在尝试启用cURL,因此在php.ini文件中我已更改

I am trying to enable cURL and so in the php.ini file i have changed

;extension=curl

extension=curl

我已经重新启动了apache服务器.之后,我在localhost/curl_enable.php运行以下代码,以检查是否启用了cURL.

I have restarted the apache server. After that I run the following code at localhost/curl_enable.php to check whether cURL is enabled.

<?php
 echo 'Curl: ', function_exists('curl_version') ? 'Enabled' . "\xA" : 'Disabled' . "\xA";
 ?>

但是它仍然显示

Curl: Disabled

所以我错过了任何步骤.如何在我的系统中启用cURL?

So have I missed any step. How to enable cURL in my system?

推荐答案

以下是在Windows上启用curl的步骤:

Here is the steps to enable curl on Windows :

...
; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
; extension_dir = "./"
; On windows:
extension_dir = "C:\PathToMyPhp\ext"

...

extension=php_curl.dll

...

[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
curl.cainfo = C:\PathToMyFile\cacert.pem

1-确保您的extension_dir指向php扩展目录.

1 - Make sure your extension_dir point to the php extension directory.

2-取消注释或添加扩展名.dll名称.

2 - uncomment or add the extension .dll name .

以下是php扩展名正确的语法:php_nameOfTheExtension.dll

Here is the right syntax by convention for php extensions : php_nameOfTheExtension.dll

.dll放置在php的扩展目录中,或者如果您是第三方下载,则必须将其放置在此处.

The .dll are placed in the extension directory of php or you must place it here in case of 3rd party download.

3-cacert.pem是可选的,用于SSL事务.

3 - cacert.pem is optional and is used for SSL transactions.

在此处下载: https://curl.haxx.se/docs/caextract.html

4-使用phpinfo()检查curl是否在列表中,并检查配置.

4 - Check with phpinfo() if curl is in the list and check the configuration.

5-如果发生错误,请检查Apache的error.log和access.log

5 - In case of error, check the error.log and access.log of Apache

6-我忘记了:将php目录的路径添加到Windows环境PATH变量中以获取.dll依赖项.

6 - I forgot : add the paths of your php directory to the Windows Environment PATH Variable for .dll dependencies.

此处的问题/响应: 在Windows上为PHP5.6.4启用CURL

Question/Response here : Enable CURL on Windows For PHP5.6.4

这是文件的路径:

取决于MySQL的安装&版本

Depending on MySQL installation & version

C:\ Program Files \ MySQL \ MySQL Server 8.0 \ bin \ libeay32.dll

C:\Program Files\MySQL\MySQL Server 8.0\bin\libeay32.dll

C:\ Program Files \ MySQL \ MySQL Server 8.0 \ bin \ ssleay32.dll

C:\Program Files\MySQL\MySQL Server 8.0\bin\ssleay32.dll

取决于您的php目录

C:\ php7 \ libssh2.dll

C:\php7\libssh2.dll

具有正确语法的扩展配置示例,该语法取自PHP5,但也适用于PHP7:

Example of extensions configuration with the right syntax taken from PHP5 but working also for PHP7 :

; Windows Extensions
; Note that ODBC support is built in, so no dll is needed for it.
; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5+)
; extension folders as well as the separate PECL DLL download (PHP 5+).
; Be sure to appropriately set the extension_dir directive.
;
;extension=php_bz2.dll
extension=php_curl.dll
extension=php_fileinfo.dll
;extension=php_ftp.dll
extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_gmp.dll
extension=php_intl.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_ldap.dll
extension=php_mbstring.dll
extension=php_exif.dll      ; Must be after mbstring as it depends on it
extension=php_mysqli.dll
;extension=php_oci8_12c.dll  ; Use with Oracle Database 12c Instant Client
;extension=php_odbc.dll
extension=php_openssl.dll
;extension=php_pdo_firebird.dll
extension=php_pdo_mysql.dll
;extension=php_pdo_oci.dll
extension=php_pdo_odbc.dll
;extension=php_pdo_pgsql.dll
extension=php_pdo_sqlite.dll
;extension=php_pgsql.dll
;extension=php_shmop.dll

; The MIBS data available in the PHP distribution must be installed.
; See http://www.php.net/manual/en/snmp.installation.php
;extension=php_snmp.dll

;extension=php_soap.dll
extension=php_sockets.dll
extension=php_sqlite3.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll
extension=php_xsl.dll

zend_extension="C:\php-7.1.22\ext\php_opcache.dll"
zend_extension="C:\php-7.1.22\ext\php_xdebug-2.6.1-7.1-vc14-x86_64.dll"

希望这会有所帮助.

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

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆