views:

27

answers:

2

I want to make an application in php where users can run their php files. In that application I want to show more simple error messages to the user. Is there any procedure in php to edit default error messages?

+1  A: 

You can set your own error handler.

Sjoerd
A: 

use set_error_handler and set_exception_handler to intercept errors and exceptions so you can display your own messages

stillstanding
Yeah. Just write all these thousands own messages. Easy-peasy
Col. Shrapnel