Help for this page

Select Code to Download


  1. or download this
    doX() if ($cond) otherwise doY();
    
  2. or download this
    if ($cond) {
      doX();
    ...
      doY();
    }
    
  3. or download this
    ($cond) ? doX() : doY();