Help for this page

Select Code to Download


  1. or download this
    if (foo()) { foo() returned a true value }
    if (!bar()) { bar() returned a false value }
    
    $DEBUG = 1;
    if ($DEBUG) { ... }
    
  2. or download this
    use constant TRUE => 1;
    use constant FALSE => 0;
    ...
    $DEBUG = TRUE;
    # ...
    if ($DEBUG) { ... }