使用PHP 7.2,each不推荐使用。文件说:
警告此功能自PHP 7.2.0起已废弃。非常不鼓励依赖此功能。
如何更新我的代码以避免使用它?这里有些例子:
$ar = $o->me;
reset($ar);
list($typ, $val) = each($ar);
$out = array('me' => array(), 'mytype' => 2, '_php_class' => null);
$expected = each($out);
for(reset($broken);$kv = each($broken);) {...}
list(, $this->result) = each($this->cache_data);
// iterating to the end of an array or a limit > the length of the array
$i = 0;
reset($array);
while( (list($id, $item) = each($array)) || $i < 30 ) {
// code
$i++;
}
茅侃侃
慕慕森
慕田峪9158850