Ich weiß, in php können Sie Variablen innerhalb von Variablen einbetten, wie:
<? $var1 = "I\'m including {$var2} in this variable.."; ?>
Aber ich habe mich gefragt, wie und ob es möglich ist, eine Funktion in eine Variable zu integrieren. Ich weiß, ich könnte einfach schreiben:
<?php
$var1 = "I\'m including ";
$var1 .= somefunc();
$var1 = " in this variable..";
?>
Aber was ist, wenn ich eine lange Variable für die Ausgabe habe und dies nicht jedes Mal tun möchte, oder wenn ich mehrere Funktionen verwenden möchte?
<?php
$var1 = <<<EOF
<html lang="en">
<head>
<title>AAAHHHHH</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
There is <b>alot</b> of text and html here... but I want some <i>functions</i>!
-somefunc() doesn't work
-{somefunc()} doesn't work
-$somefunc() and {$somefunc()} doesn't work of course because a function needs to be a string
-more non-working: ${somefunc()}
</body>
</html>
EOF;
?>
Oder ich möchte dynamische Änderungen in dieser Menge an Code:
<?
function somefunc($stuff) {
$output = "my bold text <b>{$stuff}</b>.";
return $output;
}
$var1 = <<<EOF
<html lang="en">
<head>
<title>AAAHHHHH</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
somefunc("is awesome!")
somefunc("is actually not so awesome..")
because somefunc("won\'t work due to my problem.")
</body>
</html>
EOF;
?>
Und?