在 PHP 我可以说

$noun = "bird";
$adjective = "warm;
echo <<<EOT
The $noun is very $adjective
EOT;

它会输出



有没有办法用函数来做到这一点?
function getNoun() { return "bird"; }
function getAdjective() { return "warm"; }
echo <<<EOT
The getNoun() is very getAdjective()
EOT;

和输出

最佳答案

您可以在使用之前将其存储在变量中:

$noun = getNoun( );
$adj = getAdjective( );
echo <<<EOT
    The {$noun} is very {$adj}
EOT;

关于php - 像变量一样在字符串中扩展 PHP 函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8362576/

10-11 03:06