6 ms·
PHPPHP is well on its way to being a simple PHP command line debugger. To my knowledge there currently isn't a good tool for command line debugging on PHP.
by bananashake 14y ago
PHPPHP is well on its way to being a simple PHP command line debugger. To my knowledge there currently isn't a good tool for command line debugging on PHP.
- igorw2 14y agoxdebug exposes a gdbp interface which supports breakpoints, stepping, inspecting variables, etc. And you can use it with gdb or any GUI that supports gdbp, such as macgdbp. EDIT: It does not expose a REPL though, which I suppose is what you meant?
- JCB_K 14y agophpsh[1] by Facebook is good. Ironically, it's written in Python. [1] http://www.phpsh.org/ http://www.phpsh.org/
- deleted 14y ago[deleted]
- PommeDeTerre 14y agoIt seems like a case of sensibility, rather than irony, to me. Using Python, even when developing PHP-related software, just seems like the intelligent thing to do.
- dhotson 14y agophpsh is probably the best, but I also use Boris https://github.com/d11wtq/boris https://github.com/d11wtq/boris - "A tiny REPL for PHP"