Is there a way in PHP to try to include a file, but if the file contains errors that stop it from compiling to just skip that file from inclusion?
|
show 2 more comments
feedback
|
|
You can call php -l on the file in question. This will shell out and slow though. it doesn't handle runtime errors like die() though. test.php:
test-good.php:
test-bad.php:
$ php test.php
| |||||||||||||
feedback
|
|
A less than ideal solution I thought I'd mention here for posterity. The original idea is here. You can capture the E_PARSE error you would receive on a bad 'require' and hand it off to a shutdown function. The idea is to suppress the parsing error...
Then do your primary execution after the fact.
Like I said, less than ideal but interesting nonetheless. | |||||
feedback
|
|
Depending on the PHP version you could use php_check_syntax() (practically the same as php -l). But its a moo point really.. Either you need the stuff your trying to include or you dont include it. | |||
feedback
|
include. Or are you dynamically including user contributed files? Then this issue is probably the least of your concerns. – deceze Jun 6 '10 at 0:40