Hi!

> The feature exists in
> Python: 
> http://stackoverflow.com/questions/574730/python-how-to-ignore-an-exception-and-proceed,

I don't think it does what is proposed - except/pass just catches an
exception and does nothing, it does not return in the place where
exception was thrown down the stack and continues execution.
Looks like Ruby is the same thing. In PHP< you'd just do:

try {
dostuff();
} catch(Exception $e) {}

but that's not what was proposed.

-- 
Stanislav Malyshev, Software Architect
SugarCRM: http://www.sugarcrm.com/
(408)454-6900 ext. 227

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

Reply via email to