[EMAIL PROTECTED] schrieb:
I am looking for a way to alter the error_reporting(E_All)
This displays Parse error: parse error, unexpected '}' in /var/www/html/test.php on line 7

I want to remove the file location and line number from the error
to only produce
Parse error: parse error, unexpected '}'

Why? You may ask.

I am writting a code tester in php but i do not want to display the "in" portion. This will make you find the error on your own. As a learning tool.

Understand I have error reporting off in the php.ini file and call the errors 
in the php script with ini_set('display_errors', 1);.

I am sure this is doable I just cant figure out how to do this without altering 
the php.ini file.

Hi,
you could define your own error handler: http://www.php.net/manual/en/function.set-error-handler.php

--
Viele Grüße

Dominik Strauß - www.n3or.de
Webentwicklung, PHP und Linux

Mobil: 0178 4940605
Internet: www.n3or.de
E-Mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to