1
vote
In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?
A little known feature of PHP is being able to treat an included/required file like a function call, with a return value.
For example:
// myinclude.php
$value = 'foo';
$othe …
