Help for this page

Select Code to Download


  1. or download this
    ($#arr == -1 ) ? ($string = 'True' ): ($string = 'False');
    
  2. or download this
    $string = ($#arr == -1 ) ? 'True' : 'False';
    
  3. or download this
    $string = @arr ? 'False' : 'True';