Help for this page

Select Code to Download


  1. or download this
    if( do{$o->check(...); ! $o->state} ){
       action..
    ...
              }
         }
    }
    
  2. or download this
    $o->check(...);
    unless ($o->state) {
    ...
         $o->actionSet1;
       }
    }
    
  3. or download this
    unless ( $o->check(...) ) {
       action..
    ...
         }
       }
    }