can  ob_start("ob_gzhandler") function be nested ?

after echo 'test' ,  does it continue to includes and evaluates c.php?



for example:

a.php
<?php 
require_once "main.php";
......
include "b.php";
........
?>

b.php
<?php
require_once "main.php";
.......
echo 'test';
include "c.php";
?>

c.php
<?php
require_once "main.php";
.......
?>

main.php
<?php
ob_start("ob_gzhandler");
........
?>

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

Reply via email to