For some reason, I do not see warnings or errors when I run PHP (I am using PHPVersion 5.0.0RC1, and Apache 2.0)
Here is an example of an error that does not show:
function test($param) {
...
}
test(); // calling a function without a parameter
How can I enforce PHP and Apache to always show all the errors and warnings? This is crucial during development.
This is how php.ini is configured:
error_reporting = E_ALL
what can I do?