-
-
Notifications
You must be signed in to change notification settings - Fork 519
Closed
Labels
Description
The following does not validate:
$foo = 'abc';
echo $foo;
I have to use this workaround:
$foo = 'abc';
echo '' . $foo;
Is this by design?
On a side note, this also does not validate, which is the translation gettext function:
$foo = 'abc';
echo _($foo);