Homepage: Xdebug Module for PHP
Отладчик XDebug умеет отлаживать код удаленно.
Программное окружение: Ubuntu 12.04.1 LTS; Apache 2.2.22 64-bit Prefork; PHP 5.3.10; Zend Engine v2.3.0. Apache NetBeans IDE: Настройка, оптимизация и решение проблем IDE 7.1.2
# aptitude install php5-xdebug # php -v PHP 5.3.10-1ubuntu3.4 with Suhosin-Patch (cli) (built: Sep 12 2012 18:59:41) Copyright (c) 1997-2012 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies with Xdebug v2.1.0, Copyright (c) 2002-2010, by Derick Rethans
# service apache2 restart
Loaded Configuration File /etc/php5/apache2/php.ini
xdebug.remote_enable=on xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.remote_host=localhost xdebug.remote_port=9000 ;xdebug.trace_format=2 ;xdebug.show_local_vars=on
<?php error_reporting(E_ALL); ini_set('display_errors', 1); ini_set('html_errors', 1);