I have an OS X 10.6 Server running apache, php. I have CronniX installed to help me manage my cron jobs. I have a php script like this:
<?
ini_set('display_errors', 1);
$a = array('a', 'b', 'c');
foreach ($a as $v):
echo $v;
?>
As you can see the endforeach; command is missing, but the cron output (as seen from CronniX Task's tab) does not show any errors, it just dies.
This is not a foreach / endforeach vs. { } issue, none work.
Of course error reporting is valuable for me in more complex scripts, where it's impossible to debug without it.
Thanks!
php /Volumes/[..]is:PHP Parse error: syntax error, unexpected $end in /Volumes/dev1/cron/cron.php on line 11so it's as expected; – Sorin Buturugeanu Aug 26 '11 at 19:32