Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
PHP Output Buffering
SUBMITTED BY:
Guest
DATE:
April 30, 2013, 9 a.m.
FORMAT:
Text only
SIZE:
256 Bytes
Raw
Download
Tweet
HITS:
1141
Go to comments
Report
<?php
ob_start();
echo 'Print to the screen!!!';
$getContent = ob_get_contents();
ob_end_clean();
// Do whatever you want...
// Do something with the printed content (only if you want)...
echo 'Now: ' . $getContent;
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus