Re: [PHP-DEV] Zend API: Correct way to terminate entire request from within function

2004-07-02 Thread Cris H
--- Wez Furlong <[EMAIL PROTECTED]> wrote: > Looking at the opcode handler for exit, it looks > like you can call > zend_bailout() to terminate the request. > > Note that since exit is an opcode and not a > function, > call_user_function won't work. Thank you very much. A similar thought occurre

Re: [PHP-DEV] Zend API: Correct way to terminate entire request from within function

2004-07-02 Thread Wez Furlong
Looking at the opcode handler for exit, it looks like you can call zend_bailout() to terminate the request. Note that since exit is an opcode and not a function, call_user_function won't work. --Wez. On Fri, 2 Jul 2004 10:00:32 +0100 (BST), Cris H <[EMAIL PROTECTED]> wrote: > I'm trying to ascer