search for in the  
<ob_get_flushob_get_level>
Last updated: Thu, 19 May 2005

ob_get_length

(PHP 4 >= 4.0.2, PHP 5)

ob_get_length --  Return the length of the output buffer

Description

int ob_get_length ( void )

This will return the length of the contents in the output buffer or FALSE, if output buffering isn't active.

See also ob_start() and ob_get_contents().



User Contributed Notes
ob_get_length
webmaster at crescentart dot com
29-Jun-2001 03:58
Here is an easy way to get the header Content-Lenght.
<?
ob_start
();
?>

Put HTML tags.

<?
$size
=ob_get_length();
header("Content-Length: $size");
ob_end_flush();
?>

<ob_get_flushob_get_level>
 Last updated: Thu, 19 May 2005
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: The Server Pages
Last updated: Thu May 19 17:35:34 2005 CDT