当使用数组中未定义的key时,就会出现提示Notice: Uninitialized string offset: 0,这句话的意思是你的数组key值越界了
举例来说:
定义的数组是 $arr = array( "id" => 18,
"name" => 'haha' );
如果输出 echo $arr['status'] 时,就会出现上述提示。
所以输出前先检查下数值是否定义key,如:
if(isset($arr['status'] ))
echo $arr['status'] ;
当然也可以选择忽视该提示,将php.ini中error_reporting = E_ALL 改为error_reporting = E_ALL & ~E_NOTICE即可