递归地取消设置数组键
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归地取消设置数组键相关的知识,希望对你有一定的参考价值。
This function takes an array and a key that is unwanted. It will recurse through and unset the key in the argument array and all its sub-arrays.
function recursive_unset(&$array, $unwanted_key) { foreach ($array as &$value) { recursive_unset($value, $unwanted_key); } } }
以上是关于递归地取消设置数组键的主要内容,如果未能解决你的问题,请参考以下文章