Calling the following retor_test() function causes a "Parse error: parse
error, unexpected T_RETURN" message when the script is run:

function istrue() {
  return true;
}
function retor_test() {
  istrue() or return( "False" );
  return "True";
}

The problem is with the "or return" part.  Any ideas why?  I realize that
I could use an if statement instead, but I'm a lazy, lazy man and I don't
want to.


Pat Carmody

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

Reply via email to