show/hide this revision's text 3 fixed answer to be correct

After reading everybody's suggestions, reading a bunch of documentation, and playing around with some things, I came up with thissolution:

<?php
$file = file_get_contents('/path/to/file.php');
$xhtml = eval("?>$file");
?>

And

It's as close as I could get but it seems to unfortunately doesn't worklike a charm. The key to this trick is to include the closing PHP bit (?>) before the contents of the file. This will take the eval() out of PHP-evaluation mode and will treat the contents of the file starting as non-PHP code. Then if there are PHP code blocks within the file, those will be evaluated as PHP. The bummer is that it doesn't save the eval'd content in the variable, it just outputs it to the page.

Thanks for the help everybody!

show/hide this revision's text 2 expanded description of why it works

After reading everybody's suggestions, reading a bunch of documentation, and playing around with some things, I came up with this solution:

<?php
$file = file_get_contents('/path/to/file.php');
$xhtml = eval("?>$file");
?>

And it seems to work like a charm. The key to this trick is to include the closing PHP bit (?>) before the contents of the file. This will take the eval() out of PHP-evaluation mode and will treat the contents of the file starting as non-PHP code. Then if there are PHP code blocks within the file, those will be evaluated as PHP.

Thanks for the help everybody!

show/hide this revision's text 1

After reading everybody's suggestions, reading a bunch of documentation, and playing around with some things, I came up with this solution:

<?php
$file = file_get_contents('/path/to/file.php');
$xhtml = eval("?>$file");
?>

And it seems to work like a charm. The key to this trick is to include the closing PHP bit (?>) before the contents of the file.

Thanks for the help everybody!