Created
March 19, 2011 06:08
-
-
Save langsharpe/877271 to your computer and use it in GitHub Desktop.
Undefined associative array index in PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$a['key1'] = 'value1'; | |
$a['key2'] = 'value2'; | |
print $a['key5']; | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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