Hi Folks,

I am trying to use outbuffering techniques....

ob_start(myCallBack)
.....
ob_end_flush()

function myCallBack($inBuffer)
{
    //process
    ob_start();
    include "aPHPFile.php";
    $includeFileContents = ob_get_contents();
    ob_end_clean();
}

I am seeing the following error "Cannot use output buffering in output
buffering display handlers" ...is there an workaround of including this file
using the php engine or alternative solution of getting access to php
internal outbuffer inside an output handler callback...

Thanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to