php各版本编译好的扩展模块下载地址

php各版本[,x86/64  v9/v11/v14  nts/ts]编译好的扩展模块下载地址:

https://windows.php.net/downloads/pecl/releases/

https://windows.php.net/downloads/pecl/releases/igbinary/2.0.5/
https://windows.php.net/downloads/pecl/releases/redis/4.1.1/
https://windows.php.net/downloads/pecl/releases/xdebug/2.5.4/
https://github.com/nono303/PHP7-memcache-dll/blob/master/vc14/x86/nts/php-7.0.x_memcache.dll

说明:

1、igbinary是redis的依赖包,做数据序列化的,php.ini中需要放在redis前加载,如:

; php_redis
extension=php_igbinary.dll
extension=php_redis.dll

2、xdebug在php.ini加载及配置,如:

; php_xdebug
zend_extension=php_xdebug-2.6.1-7.0-vc14-nts.dll

[xdebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="F:\Temp\xdebug"
xdebug.trace_output_dir ="F:\Temp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
zend_extension="E:\phpStudy\php70n\ext\php_xdebug-2.6.1-7.0-vc14-nts.dll"
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9090
xdebug.idekey=netbeans-xdebug

猜你喜欢

转载自www.cnblogs.com/hnhycnlc888/p/9459373.html
今日推荐