1. PHP environment configuration:
2. zendstudio Eclipse xdebug development PHP environment software download:
3. The installation configuration is as follows:
extension=php_xdebugvc6.dll [Xdebug] xdebug.profiler_enable=on xdebug.trace_output_dir="D:/workspace/runrun/xdebugdata" xdebug.profiler_output_dir="D:/workspace/runrun/xdebugdata" Description: php_xdebugvc6.dll is loaded into php as an extension, and its data output directory is specified (the directory in red above can be customized) After completion, restart apache. You can see the xdebug support information in the phpinfo output, indicating that the installation and configuration are successful. At this point, set the workspace directory of eclipse to the apache web root directory, and you can easily run the php program you wrote.4. Some explanations: