Can someone of you explain what's wrong with this?
$vars = apache_lookup_uri($PHP_SELF);
$foo = $vars->bytes_sent;
echo $foo;
Why the value stored in $foo is always 0(zero)? I need this value!!!
I tried to get other properties like status, uri, filename and all seems to be ok.
P.S. My php is installed as an Apache module, as the manual explain.