php – unset最后一个数组

前端之家收集整理的这篇文章主要介绍了php – unset最后一个数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这段代码中,我尝试取消设置$status数组的第一个和最后一个项目
要取消设置,但最后一个项目,我尝试在$end放置thier指针
不会因为这个原因而不能做什么?

$item[$fieldneedle] = " node_os_disk_danger ";
$status = preg_split('/_/',$item[$fieldneedle]);
unset($status[0]);
$end = & end($status);
unset($end);

在这个例子中,我需要os_disk

array_shift($end ); //removes first
array_pop($end ); //removes last
原文链接:https://www.f2er.com/php/132725.html

猜你在找的PHP相关文章