PHP에서 다차원 배열을 삭제하는 방법: 먼저 PHP 샘플 파일을 만든 다음 unsetMultiKeys 메서드를 통해 복잡한 다차원 배열에서 지정된 키-값 쌍을 삭제하고 마지막으로 실행 결과를 확인합니다.
추천: "PHP Video Tutorial"
php는 다차원 배열의 값을 삭제합니다
매뉴얼에 있는 내용을 특정 키 값을 삭제할 수 있는 함수로 변환했습니다 복잡한 다차원 배열이군요!
<?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 class="brush:php;toolbar:false">"; 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(); }
작업 결과:
다차원 배열의 키-값 쌍 변경
위 내용은 PHP에서 다차원 배열을 삭제하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!