Hello,

I'm using recursive functions and call a function from inside another one.
The problem is that when I call the Exit(); function the whole program is
aborted. How can I quit just the current function, not the whole program ?

<example>
Function One()
{
    If (!$var) { Exit(); }
}

Function Two();
{
    One();    //This line kills the program
    Print("Hello"); //This is not printed =(
}
</example>

TIA,

______________________
Mauricio Cuenca


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

Reply via email to