What am I doing wrong...

In my php.ini I have this for my web pages (and I want it): 

  output_handler = ob_gzhandler

But this causes my command line script to not show output until the very
end.

I thought I could disable it at the top of a script, but it's not working!?!

#!/usr/bin/php -q
<?php
  ini_set('output_handler', 'mb_output_handler'); 
  system('php -i | grep output_handler');
?>

[EMAIL PROTECTED] ./myscript.php
output_handler => ob_gzhandler => ob_gzhandler
zlib.output_handler => no value => no value


If I comment out the line in the php.ini file, then things work great (and
what exactly is the output_handler being used if I don't specify one? It
just says 

  output_handler => no value => no value

I tried to put this in my script too but it doesn't make any difference:

  ini_set('output_handler', ''); 
or
  ini_set('output_handler', null); 

[EMAIL PROTECTED] ./myscript.php
output_handler => ob_gzhandler => ob_gzhandler
zlib.output_handler => no value => no value

UGH!

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

Reply via email to