Source Code:
(back to article)
<?php // Define a variable $name = 'John'; // Use gettext inside a heredoc string echo <<<EOF <p>Hello, {$name}! How are you?</p> <p>This is an English translation.</p> EOF;
Result:
Report an issue