ID: 15866 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Scripting Engine problem Operating System: Linux PHP Version: 4.0.6 New Comment:
I've found such differences some time ago (but didn't care about it yet). E.g. <? $a = (echo "test\n"); var_dump($a); ?> <-- parser error <? $a = (print "test\n"); var_dump($a); ?> <-- outputs 1 'print' always evals to int(1) Previous Comments: ------------------------------------------------------------------------ [2002-03-04 23:31:57] [EMAIL PROTECTED] Using Echo in expression 3 of a for loop creates a parse error. For instance: $blah = (0,1,2,3,4,5,6,7,8,9); for ($i = 0; $i < 10; echo $blah[$i++]); results in this error: Parse error: parse error, expecting `')'' in /home/chunky/public_html/test.php on line XX (line of for loop) However, this will parse properly: $blah = (0,1,2,3,4,5,6,7,8,9); for ($i = 0; $i < 10; print $blah[$i++]); ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=15866&edit=1