PHP 8.5.0 Beta 1 available for testing

Voting

: min(seven, zero)?
(Example: nine)

The Note You're Voting On

Sbastien Ballest-Antich
17 years ago
A workaround to use heredoc and gettext strings with sprintf :
<?php
$hd
= <<<EOD
<p>%s</p>
<p>%s</p>
EOD;
$hdgt = sprintf($hd, _('Heredoc'), _('gettext'));
var_dump($hdgt);
?>

<< Back to user notes page

To Top