Skip to content

Instantly share code, notes, and snippets.

@langsharpe
Created March 19, 2011 06:08
Show Gist options
  • Save langsharpe/877271 to your computer and use it in GitHub Desktop.
Save langsharpe/877271 to your computer and use it in GitHub Desktop.
Undefined associative array index in PHP
<?php
$a['key1'] = 'value1';
$a['key2'] = 'value2';
print $a['key5'];
?>
lang@virtualbox1:~/$ php hash.php
PHP Notice: Undefined index: key5 in /home/lang/hash.php on line 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment