多次元配列を削除する
php メソッド: 最初に PHP サンプル ファイルを作成し、次に unsetMultiKeys メソッドを使用して複雑な多次元配列内の指定されたキーと値のペアを削除し、最後に実行結果を確認します。
推奨: 「PHP ビデオ チュートリアル 」
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 中国語 Web サイトの他の関連記事を参照してください。