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!
