Help for this page

Select Code to Download


  1. or download this
    return ( ( $status == 0 ) ? 0 : 1 );  # Readable, clear.
    return $status == 0 ? 0 : 1;          # Confusing. Precedence?