Hallo!
Habe ein Problem:
Ich will per str_replace ein Wort durch php-code ersetzen. Dieser wird dann aber nicht ausgeführt.
"hallo" wird nicht angezeigt.
Habt ihr ne Idee?
Habe ein Problem:
Ich will per str_replace ein Wort durch php-code ersetzen. Dieser wird dann aber nicht ausgeführt.
PHP-Code:
<?php
$text = "Dies ist ein kleines Beispiel";
$text = str_replace("ist", "<?php echo \"hallo\"; ?> war", $text);
echo $text;
?>
Habt ihr ne Idee?
Kommentar