Skip to content

Instantly share code, notes, and snippets.

@langsharpe
Created March 2, 2011 11:17
Show Gist options
  • Save langsharpe/850787 to your computer and use it in GitHub Desktop.
Save langsharpe/850787 to your computer and use it in GitHub Desktop.
Undefined array index in PHP
<?php
$a[2] = 'two';
$a[4] = 'four';
print $a[5];
?>
lang@virtualbox1:~/arrays$ php array.php
PHP Notice: Undefined offset: 5 in /home/lang/arrays/array.php on line 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment