I find myself in the situation where I need to call a PHP function stored as a string from another PHP function.
<?php
$phpcodestring = "<?php echo 'Hello World!' ?>";
echo $phpcodestring;
?>
How can I get Hello World to render to screen with the above structure?