Posted by gosha bine on 07/27/07 10:23
On 27.07.2007 11:42 Buzby wrote:
> As per the title - is there a VBscript type on error resume next
> function in PHP 4.2xx
>
> Any pointer would be hugely appreciated!
>
> Cheers!
>
> Grant
php's "mute" operator is the same as VB's "on error resume next":
VB:
on error resume next
a = xyz / 0 ' no error
php:
@$a = $xyz / 0; // no error
--
gosha bine
makrell ~ http://www.tagarga.com/blok/makrell
php done right ;) http://code.google.com/p/pihipi
[Back to original message]
|