成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

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

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

成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供商水網(wǎng)站建設(shè)、商水做網(wǎng)站、商水網(wǎng)站設(shè)計、商水網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、商水企業(yè)網(wǎng)站模板建站服務(wù),十余年商水做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

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

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

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

<?php
$arr = [
    'test' => '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 "<pre>";
print_r(unsetMultiKeys($unset, $arr));
print_r($arr);
echo "</pre>";
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();
}

運行結(jié)果:

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

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

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

本文題目:php刪除多維數(shù)組的方法
標題來源:http://jinyejixie.com/article40/psieho.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、網(wǎng)站改版、網(wǎng)站建設(shè)商城網(wǎng)站、關(guān)鍵詞優(yōu)化品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

小程序開發(fā)
孟州市| 芒康县| 阳山县| 宁陵县| 城口县| 休宁县| 迁安市| 浑源县| 南华县| 洮南市| 台中县| 获嘉县| 肃南| 永寿县| 洪雅县| 神池县| 紫阳县| 东平县| 宾川县| 云霄县| 甘洛县| 买车| 武强县| 双峰县| 岳池县| 三原县| 莎车县| 张家川| 贡觉县| 雷山县| 康定县| 金沙县| 桐柏县| 远安县| 青冈县| 巴彦淖尔市| 遂宁市| 陆丰市| 克东县| 水城县| 鹿泉市|