On 18.11.2007 01:36, Mehmet Yavuz Selim Soyturk wrote:
> That is the idea:
> 
> <?php
> 
> exceptional_ob_start();
> 
> echo "Begin\n";
> try {
>    echo "Exception\n";
>    throw new Exception();
> } catch (Exception $e) {}
> echo "End\n";
> 
> exceptional_ob_end_flush();
> 
> ?>
> 
> And that would be the only output:
> 
> Begin
> End
> 

Following this logic, we would also need to "unwind" all file descriptors, 
database transactions, network connections etc. etc.
This makes no sense.

-- 
Wbr, 
Antony Dovgal

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to