Apache, PHP, MySQL on Windows
OS:Windows 7 & 10 x64 中文专业版
PHP:V5.6
V5.3和V5.4已经停止支持了。
V5.5已经进入安全修复状态。
只有V5.6和V7.0是现在主推的版本。
V7.0刚刚发布,推荐使用V5.6。
Branch | Date | Last Release | Notes | |
---|---|---|---|---|
5.4 | 3 Sep 2015 | 3 months ago | 5.4.45 | A guide is available for migrating from PHP 5.4 to 5.5. |
5.3 | 14 Aug 2014 | 1 year, 4 months ago | 5.3.29 | A guide is available for migrating from PHP 5.3 to 5.4. |
5.2 | 6 Jan 2011 | 4 years, 11 months ago | 5.2.17 | A guide is available for migrating from PHP 5.2 to 5.3. |
5.1 | 24 Aug 2006 | 9 years, 4 months ago | 5.1.6 | A guide is available for migrating from PHP 5.1 to 5.2. |
5.0 | 5 Sep 2005 | 10 years, 3 months ago | 5.0.5 | A guide is available for migrating from PHP 5.0 to 5.1. |
4.4 | 7 Aug 2008 | 7 years, 4 months ago | 4.4.9 | A guide is available for migrating from PHP 4 to PHP 5.0. The end of life for PHP 4.4 also marks the end of life for PHP 4 as a whole. |
4.3 | 31 Mar 2005 | 10 years, 9 months ago | 4.3.11 | |
4.2 | 6 Sep 2002 | 13 years, 3 months ago | 4.2.3 | |
4.1 | 12 Mar 2002 | 13 years, 9 months ago | 4.1.2 | |
4.0 | 23 Jun 2001 | 14 years, 6 months ago | 4.0.6 | |
3.0 | 20 Oct 2000 | 15 years, 2 months ago | 3.0.x (latest) |
在引导页(Windows)
选择红框中的任意网站即可。
Apache Haus: httpd-2.4.18-x64-vc11-r2.zip
Apache Lounge: httpd-2.4.18-win64-VC11.zip。
#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL PHPIniDir "D:/AppServ/php5.6" LoadModule php5_module "D:/AppServ/php5.6/php5apache2_4.dll" # php httpd AddType application/x-httpd-php .php #END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
httpd.exe -k install
net start Apache2.4
在下载页点击“PHP 5.6 TS VC11 (64 bit)”
(2)配置Extensions
编辑php.ini文件挂载xdebug。
在Dynamic Extensions最下面增加:
extension=php_xdebug-2.3.3-5.6-vc11-x86_64.dll
根据需要开启相关debug选项,具体请参见选项说明。
例如:增加profile调试;
在
; Local Variables: ; tab-width: 4 ; End:上面插入如下
[Xdebug] xdebug.profiler_enable=on xdebug.trace_output_dir="D:/Projects/xdebug" xdebug.profiler_output_dir="D:/Projects/xdebug"
在test.php里的xdebug: