I use PHP's EOF string to format HTML content without the hassle of having to escape quotes etc. How can I use the function inside this string?
<?php
$str = <<<EOF
<p>Hello</p>
<p><?= _("World"); ?></p>
EOF;
echo $str;
?>
|
|
|
As far as I can see in the manual, it is not possible to call functions inside HEREDOC strings. A cumbersome way would be to prepare the words beforehand:
a workaround idea that comes to mind is building a class with a magic getter method. You would declare a class like this:
Initialize an object of the class at some point:
You can then use the following syntax to do a gettext lookup inside a HEREDOC block:
To use this method for words with spaces or special characters (e.g. a gettext entry named
This is all untested but should work.
|
|||||||||||||||
|
|
As far as I can see, you just added heredoc by mistake
|
|||||||||||||||
|