Help for this page

Select Code to Download


  1. or download this
    print $var ? 'yes' : 'no'
  2. or download this
     $var ? print 'yes' : print 'no'
    
  3. or download this
    print $var ? 'yes' : 'no'
    
  4. or download this
    if(print $var){
     'yes'
    }else{
     'no'
    }