|  | Posted by Fred Paris on 06/14/62 11:39 
On Wed, 08 Feb 2006 16:33:41 GMT, "d" <d@example.com> wrote:
 >function runphp($in_fn, $out_fn) {
 >    ob_start();
 >    include($in_fn);
 >    $c=ob_get_contents();
 >    ob_end_clean();
 >    $fp=fopen($out_fn, "wb");
 >    fwrite($fp, $c);
 >    fclose($fp);
 >}
 >
 >That's very simple, of course.  If something isn't exactly right in how it's
 >called, it'll fail most spectactularly :)  It gives you the general jist,
 >though - using output buffering to capture the output of a given script, and
 >then storing that output in a file.
 >
 >Let me know if there's something you don't understand.
 
 
 
 Thanks !
 I'll try that !
  Navigation: [Reply to this message] |