The PHP Interpreter
Go to file
2013-11-10 22:55:07 +00:00
.gitignore - Added initial code for a simple prompt 2013-11-09 23:30:32 -02:00
config.m4 update to default on 2013-11-10 22:55:07 +00:00
Makefile.frag import 2013-11-09 22:35:03 +00:00
phpdbg_bp.c - Cosmetic changes 2013-11-10 19:57:43 -02:00
phpdbg_bp.h - Get rid llist from symbol breakpoint 2013-11-10 19:38:58 -02:00
phpdbg_help.c quiet 2013-11-10 21:23:18 +00:00
phpdbg_help.h quiet 2013-11-10 21:23:18 +00:00
phpdbg_opcode.c - Fix code 2013-11-10 19:00:58 -02:00
phpdbg_opcode.h - Added separated file to opcode decode function 2013-11-10 18:01:09 -02:00
phpdbg_prompt.c Merge branch 'master' of https://github.com/krakjoe/phpdbg 2013-11-10 22:46:49 +00:00
phpdbg_prompt.h Merge branch 'master' of https://github.com/krakjoe/phpdbg 2013-11-10 22:46:49 +00:00
phpdbg.c Merge branch 'master' of https://github.com/krakjoe/phpdbg 2013-11-10 22:46:49 +00:00
phpdbg.h - Move PHPDBG_NEXT to prompt header 2013-11-10 19:51:44 -02:00
phpdbg.png ... 2013-11-10 21:15:45 +00:00
README.md instructions 2013-11-10 17:51:48 +00:00
test.php ... 2013-11-10 21:28:12 +00:00

phpdbg - The interactive PHP debugger

phpdbg is an interactive debugger for PHP.

Implemented as a SAPI module, phpdbg can excerpt complete control over the environment without impacting the functionality or performance of your code.

Features

  • step through debugging
  • setting break points
  • showing debug backtraces
  • access to eval during execution
  • sapi agnositicism, easy integration

Installation

To install phpdbg, you must compile the source against your PHP installation sources, and enable the SAPI with the configure command.

cd /usr/src/php-src/sapi
git clone https://github.com/krakjoe/phpdbg
cd ../
./buildconf --force
./config.nice
make -j8
make install-phpdbg

Screeny

screenshot