Help for this page

Select Code to Download


  1. or download this
    if ($var || 2) {
        # do stuff here
    ...
    else {
        # won't do stuff 
    }
    
  2. or download this
    $var || 2;
    # do stuff here
    
  3. or download this
    $var;
    # do stuff here