Help for this page

Select Code to Download


  1. or download this
      return $status == 0 ? 0 : 1;
  2. or download this
      return ($status == 0) ? 0 : 1;
  3. or download this
      if ( $status == 0 ) {
          return 0;
      } else {
          return 1;
    }
    
  4. or download this
      return 0 if $status == 0;
      return 1;