In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T17:26:45Zhttp://stackoverflow.com/feeds/question/222925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou4In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-21T18:25:27Z2008-10-23T10:06:28Z
<p>In PHP, I want to read a file into a variable and process the PHP in the file at the same time without using output buffering. Is this possible?</p>
<p>Essentially I want to be able to accomplish this without using <code>ob_start()</code>:</p>
<pre><code><?php
ob_start();
include 'myfile.php';
$xhtml = ob_get_clean();
?>
</code></pre>
<p>Is this possible in PHP?</p>
<p>Update: I want to do some more complex things within an output callback (where output buffering is not allowed).</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/222944#2229446Answer by KernelM for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?KernelM2008-10-21T18:30:16Z2008-10-21T18:30:16Z<p>From what I can tell in the PHP documentation, no. Why do you want to avoid output buffering?</p>
<p>The only way to get around this would be hacky methods involving either invoking the command line php client or doing a curl request based on what's available and what the particular requirements are.</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/222949#2229490Answer by Joeri Sebrechts for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joeri Sebrechts2008-10-21T18:31:25Z2008-10-21T18:31:25Z<p>Do a curl request to the php page, essentially pretending to be the browser.</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223005#223005-1Answer by The Wicked Flea for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?The Wicked Flea2008-10-21T18:50:03Z2008-10-21T18:50:03Z<p>What you could do, if the file is local, is load the script into a variable as a string, then run eval on the string. Then you can do all your other stuff afterwards. Otherwise, you have to use output buffering.</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223081#2230811Answer by Rabbit for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Rabbit2008-10-21T19:06:44Z2008-10-21T19:06:44Z<p>Joeri Sebrechts is correct.
An equivalent and slightly easier method is available if the PHP script is HTTP accessible:</p>
<pre><code>$data = file_get_contents('http://google.com/');
</code></pre>
<p>It should be noted that using output buffering would be easier on resources.</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223845#2238450Answer by Zak for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Zak 2008-10-21T22:52:09Z2008-10-21T22:52:09Z<p>$fileData = file_get_contents('fileOnDisk.php');
$results = eval($fileData);</p>
<p>But check the documentation on eval, because you actually have to have the file you are calling return its results rather than just echo them:</p>
<p><a href="http://us2.php.net/eval" rel="nofollow">http://us2.php.net/eval</a></p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/223865#2238651Answer by Joe Lencioni for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Joe Lencioni2008-10-21T23:00:18Z2008-10-22T13:16:07Z<p>After reading everybody's suggestions, reading a bunch of documentation, and playing around with some things, I came up with this:</p>
<pre><code><?php
$file = file_get_contents('/path/to/file.php');
$xhtml = eval("?>$file");
?>
</code></pre>
<p>It's as close as I could get but it unfortunately doesn't work. The key to this is to include the closing PHP bit (<code>?></code>) before the contents of the file. This will take the <code>eval()</code> 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.</p>
<p>Thanks for the help everybody!</p>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/229193#2291931Answer by Wesley Mason for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Wesley Mason2008-10-23T10:06:28Z2008-10-23T10:06:28Z<p>A little known feature of PHP is being able to treat an included/required file like a function call, with a return value.</p>
<p>For example:</p>
<pre><code>// myinclude.php
$value = 'foo';
$otherValue = 'bar';
return $value . $otherValue;
// index.php
$output = include './myinclude.php';
echo $output;
// Will echo foobar
</code></pre>