1. 程式人生 > >php各版本編譯好的擴展模塊下載地址

php各版本編譯好的擴展模塊下載地址

profile 序列 ase local hub tro window phpstudy 各版本

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

php各版本編譯好的擴展模塊下載地址