Heim >Backend-Entwicklung >PHP-Tutorial >php56 64位win7 curl init 解决方法

php56 64位win7 curl init 解决方法

WBOY
WBOYOriginal
2016-07-29 08:58:161412Durchsuche

PHP7是vc14编译,如果要运行需要先安装VC2015库
https://www.microsoft.com/en-us/download/details.aspx?id=48145
首先在apache开启PHP支持(apache需要下载2.4VC11版本)
httpd.conf 行尾
LoadModule php5_module "E:/AppServ/php56/php5apache2_4.dll"

LoadModule php7_module "E:/AppServ/php7/php7apache2_4.dll"

    PHPINIDir "E:/AppServ/php56/" 
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php-source .phps

在dir_module模块中增加php首页

    DirectoryIndex index.html index.php index.htm

要让php5.5或5.6以及php7支持curl库步骤
设置电脑环境变量中的->系统变量(注:不是用户变量)
新建 phpext   值 E:\AppServ\php56\ext      //扩展路径
新建 PHPRC  值 E:\AppServ\php56         //php路径
Path 增加E:\AppServ\php56         //php路径
设置完了一定要反复确定,使变量生效(之前一直不成功,原来是这个原因)
这样设置后apache中如果修改PHP版本
(比如LoadModule php5_module "E:/AppServ/php55/php5apache2_4.dll")
并不会加载到5.5版本,只能运行5.6版本,如果要改回运行5.5版本,一定要修改环境变量对应的路径
另外php5.4怎么弄都没成功,算了吧,用5.5,5.6就行了,5.4官方都已经不维护了,建议舍弃

以上就介绍了php56 64位win7 curl init 解决方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn