The issue: "I don't need a debugger".
- "var_dump(), print_r() and echo also do the job!"
- PHPs error messages are quite useless
- A debugger has some really neat features that save time and headache
<?php
function foo() {
phpinfo("bar");
}
foo();
?>
Looks in plain PHP like this
Looks with a good debugger like this