Click to See Complete Forum and Search --> : Quanta php editor


RedHat123
08-16-2004, 11:18 AM
who is using it these days ? Ive been hunting around for a php editor, it seems quanta is popular. Anyone know if i can use a debugger with it, set break points etc ?

fatTrav
08-16-2004, 02:51 PM
quanta is fine, i've used it, but it hasn't replaced vim.

as for debugging, i can't help you out here. i don't use them in any language, but this (http://pecl.php.net/package/apd) looked promising.

Below is the closest to a debugger I've used for php. var_dump and debug_backtrace are good functions to know.

if (!$result) {
echo "<pre>\n";
var_dump(debug_backtrace());
echo "</pre>";
die;
}