Re: Re: PHP output stream

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



mickb@xxxxxxx wrote:
Thanks for your answer. I already have thought about your solution. The problem
is I have to use the Perl module for PHP. An example :

$perl = new Perl();
$perl->require('mct.pl');
$perl->MCT_polling();

where MCT_polling() is a function of my script mct.pl. I would find very strange
the fact it's impossible to manipulate PHP stdout stream.

This *should* work...

ob_start();
$perl->MCT_polling();
ob_end_clean();

See the manual pages for output buffering for full details on what it can do.

-Stut

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux