Help for this page

Select Code to Download


  1. or download this
      $x ? $y = 1 : $z = 1;
    
  2. or download this
      if ($x) {
        $y = 1;
      } else {
        $z = 1;
      }