Questions tagged «unset»

30
从PHP中的数组中删除元素
有没有一种简便的方法可以使用PHP从数组中删除元素,从而foreach ($array)不再包含该元素? 我以为将它设置为null可以实现,但是显然不起作用。
2512 php  arrays  unset 



6
如何从foreach循环内的数组中删除对象?
我遍历对象数组,并希望基于其“ id”属性删除其中一个对象,但是我的代码无法正常工作。 foreach($array as $element) { foreach($element as $key => $value) { if($key == 'id' && $value == 'searched_value'){ //delete this particular object from the $array unset($element);//this doesn't work unset($array,$element);//neither does this } } } 有什么建议。谢谢。
140 php  foreach  unset  arrays 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.