Help for this page

Select Code to Download


  1. or download this
    if( condition() ) {
        $a = one();
    } else {
        $a = two();
    }
    
  2. or download this
    $a = condition() ? one() : two();