> Can't argue with that, however (;)), I find it annoying that PHP stops
> processing if there is a parse error passed to an eval() command. I'd
> like a way to make eval() just return E_PARSE if the script passed to it
> fails. Or a more general command to verify PHP code

well, well, well... everybody is talking about E_PARSE but none is talking
about E_ERROR. The correct syntax of a program is easy to verify (php -l
<file>). But it's impossible to know if it'll execute correctly without
E_ERROR. So to be sure that there will be no E_PARSE is enough to execute it
once, but not the same with E_ERROR.

Mattia



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to