真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php刪除多維數(shù)組的方法-創(chuàng)新互聯(lián)

這篇文章主要介紹了php刪除多維數(shù)組的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

成都創(chuàng)新互聯(lián)公司專注于梓潼企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城網(wǎng)站定制開發(fā)。梓潼網(wǎng)站建設(shè)公司,為梓潼等地區(qū)提供建站服務(wù)。全流程按需求定制設(shè)計,專業(yè)設(shè)計,全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

php刪除多維數(shù)組的方法:首先創(chuàng)建一個PHP示例文件;然后通過unsetMultiKeys方法刪除復(fù)雜的多維數(shù)組里面的指定鍵值對;最后查看運(yùn)行結(jié)果即可。

php刪除多維數(shù)組里面的值

在手冊里面發(fā)現(xiàn),改造后變成了一個函數(shù),可以刪除復(fù)雜的多維數(shù)組里面的制定鍵值對!

 'value',
    'level_one' => [
        'level_two' => [
            'level_three' => [
                'replace_this_array' => [
                    'special_key' => 'replacement_value',
                    'key_one' => 'testing',
                    'key_two' => 'value',
                    'four' => 'another value',
                ],
            ],
            'ordinary_key' => 'value',
        ],
    ],
];
$unset = array('special_key', 'ordinary_key', 'four');
echo "
";
print_r(unsetMultiKeys($unset, $arr));
print_r($arr);
echo "
"; exit; function unsetMultiKeys($unset, $array) { $arrayIterator = new \RecursiveArrayIterator($array); $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator, \RecursiveIteratorIterator::SELF_FIRST); foreach ($recursiveIterator as $key => $value) { foreach ($unset as $v) { if (is_array($value) && array_key_exists($v, $value)) { // 刪除不要的值 unset($value[$v]); // Get the current depth and traverse back up the tree, saving the modifications $currentDepth = $recursiveIterator->getDepth(); for ($subDepth = $currentDepth; $subDepth >= 0; $subDepth--) { // Get the current level iterator $subIterator = $recursiveIterator->getSubIterator($subDepth); // If we are on the level we want to change, use the replacements ($value) other wise set the key to the parent iterators value $subIterator->offsetSet($subIterator->key(), ($subDepth === $currentDepth ? $value : $recursiveIterator->getSubIterator(($subDepth + 1))->getArrayCopy())); } } } } return $recursiveIterator->getArrayCopy(); }

運(yùn)行結(jié)果:

php刪除多維數(shù)組的方法

改變多維數(shù)組里面的鍵值對

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享php刪除多維數(shù)組的方法內(nèi)容對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細(xì)的解決方法等著你來學(xué)習(xí)!


名稱欄目:php刪除多維數(shù)組的方法-創(chuàng)新互聯(lián)
當(dāng)前路徑:http://weahome.cn/article/dhsgdp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部