Help for this page

Select Code to Download


  1. or download this
      if ($variable and $variable eq 'value') {
        # do something
        # ...
      }
    
  2. or download this
      if ((defined $variable) && ($variable eq 'value')) {
        # do something
        # ...
      }