Help for this page

Select Code to Download


  1. or download this
    <p><code>
    if(exists($foo{bar}{baz})) {
      print "\$foo{bar}{baz} exists\n";
    }
    
  2. or download this
    if(exists($foo{bar}) and exists($foo{bar}{baz})) {
      print "\$foo{bar}{baz} exists\n";
    }