Help for this page

Select Code to Download


  1. or download this
    print $lines = $some_value? 'true' : 'false';
  2. or download this
    print $lines = ($some_value? 'true' : 'false');
  3. or download this
    print ($lines = $some_value)? 'true' : 'false';
  4. or download this
    print (($lines = $some_value)? 'true' : 'false');
  5. or download this
    (print $lines = $some_value)? 'true' : 'false';