Jump to content

ob_get_length returning wrong value...


fast4god

Recommended Posts

I have the following code in my software, but when the output it displayed, the tail end of the page is cut off... No idea why...

 

ob_start();

$out = BOLTmakepage();

$size = ob_get_length($out);

header("Content-Type: text/html; charset=utf-8");

header("Content-Length: $size");

header("Connection: close");

print_r($out);

ob_end_flush();

flush();

 

If I just replace all this with print_r(BOLTmakepage()); I get the proper page display. But then I can't get my browser to disconnect and start running my background functions.  I'm wondering if this is a multi-byte issue?  Thanks in advance for any help that can be given.

 

Cheers,

Dan

 

Link to comment
https://forums.phpfreaks.com/topic/107643-ob_get_length-returning-wrong-value/
Share on other sites

I've been playing around with this quite awhile and hounding the php chat rooms with NULL success. I did discover that the problem only occurs on IE7, not Firefox. (Haven't tested all browsers). Getting rid of the ob_start and ob_end_flush prints it out properly, but does not disconnect the browser. Any help that could be give is much appreciated.

 

Dan

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.