This article to give you a detailed introduction of the Mac PHP NetBeans xdebug configuration method, I hope this tutorial for your classmates help Oh.
PHP Configuration
/opt/local/var/db/php5/xdebug.ini
The code is as follows |
Copy Code |
Zend_extension=/opt/local/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so [Xdebug] Xdebug.remote_enable=1 Xdebug.remote_host=localhost xdebug.remote_port=9000 Xdebug.remote_mode=req Xdebug.remote_handler=dbgp |
1 output_buffering = Off
Restarting the server
NetBeans Configuration
Command +, – Select PHP tab
Fill in the General tab
PHP 5 Interpreter:/opt/local/bin/php (location of PHP files)
Fill in the Debug tab
Debugger Port: 9000
Session Id:netbeans-xdebug
Other configurations change as needed
http://www.bkjia.com/PHPjc/629822.html www.bkjia.com true http://www.bkjia.com/PHPjc/629822.html techarticle This article to give you a detailed introduction of the Mac PHP NetBeans xdebug configuration method, I hope this tutorial for your classmates help Oh. PHP config/opt/local/var/db/php5/xdebug.ini code ...