|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-08-02 12:45 UTC] waldschrott@php.net
[2002-01-27 01:40 UTC] sterling@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 10:00:01 2025 UTC |
<? function Test ($a) { !$a OR return(TRUE); // $a or DIE("plop") is allowed } Test(FALSE); ?> /* now you have to do : if (!$a) { return(TRUE); } */