fork(2) download
  1. <?php
  2. ini_set('display_errors', 'On');
  3. ini_set('html_errors', 0);
  4.  
  5. $array[]=array('a'=>'10003','b'=>'value_3082');
  6. $array[]=array('a'=>'10004','b'=>'value_3083');
  7. $array[]=array('a'=>'10005','b'=>'value_3084');
  8. $array[]=array('a'=>'10005'); //will trigger error OP is seeing
  9.  
  10.  
  11. foreach ($array as $item) {
  12. $test = $item['b'];
  13.  
  14. echo $test. ' ';
  15. }
Success #stdin #stdout #stderr 0.03s 52480KB
stdin
Standard input is empty
stdout
value_3082 value_3083 value_3084 
Notice: Undefined index: b in /home/mtvs5L/prog.php on line 13
 
stderr
PHP Notice:  Undefined index: b in /home/mtvs5L/prog.php on line 13