我正在运行
PHP 5.5,并且无法让它抛出未定义的补偿通知.
原文链接:https://www.f2er.com/php/139629.html$PHP -a Interactive mode enabled PHP > error_reporting(E_ALL); PHP > $b = null; PHP > var_dump($b['foo']); NULL PHP > $b = "string"; PHP > var_dump($b['foo']); PHP Warning: Illegal string offset 'foo' in PHP shell code on line 1 string(1) "s" PHP > $b = 345678; PHP > var_dump($b['foo']); NULL
我做错了什么或者大多数数据类型已经废除了未定义的偏移通知?