On 4/16/2012 3:31 AM, Arvids Godjuks wrote:
That's sad really, to be honest.
I wonder if people even use this:

echo include 'foo.bar', 'baz';

Probably not,  Try it!  you get:

1baz

It actually works more like

   echo (include "foo.bar"), 'baz';

than

   echo include( "foo.bar"), 'baz';



More important include doesn't currently allow multiple parms:

   include "foo.bar", 'baz';

Parse error: syntax error, unexpected ',' in bla.php on line xx




Rick


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

Reply via email to