php.js
php.js copied to clipboard
echo('foo', 'bar') throws syntax error
echo with multiple parameters causes a syntax error
echo('foo', 'bar');
Syntax error, unexpected ','
This is exactly how PHP handles an echo with multiple parameters.
I think it's a PHP7 thing.
The manual states:
void echo ( string $arg1 [, string $... ] )