我想将$_POST
中的某些值保存到文件中。但我只想要键在数组$lang
中的值。
举个例子:
$_POST = [1 => "a", 2 => "b", 3 => "c"];
$lang = [2, 3];
使用此输入,我只需要来自$_POST
的值,其中键位于$lang
数组中。
预期输出为:
[2 => "b", 3 => "c"]
现在我尝试使用ArrayIterator
和MultipleIterator
对此进行归档,但这会遍历两个数组:
$post = new ArrayIterator($_POST);
$lang_array = new ArrayIterator($lang);
$it = new MultipleIterator;
$it->attachIterator($post);
$it->attachIterator($lang_array);
$fh = fopen('name.php', 'w');
foreach($it as $e) {
fwrite($fh , $e[1] .'-' . $e[0] );
fwrite($fh ,"\n" );
}
所以我有点陷入困境如何解决这个问题?
答案 0 :(得分:1)
试试这个:
// Combining both arrays into one.
$combined_array = array_merge($_POST, $lang);
$fh = fopen('name.php', 'w');
foreach($combined_array as $key => $value){
fwrite($fh , $key .'-' . $value );
fwrite($fh ,"\n" );
}
答案 1 :(得分:1)
由于你想要按键交叉两个数组,你可以使用questions,但由于键是$lang
中的值,你只需要先用array_intersect_key()
翻转它,例如< / p>
print_r(array_intersect_key($_POST, array_flip($lang)));
答案 2 :(得分:-1)
两个数组组合请尝试此代码: -
<?php
$fname=array("Peter","Ben","Joe");
$age=array("35","37","43");
$c=array_combine($fname,$age);
print_r($c);
?>
和两个数组合并: -
<?php
$a1=array("red","green");
$a2=array("blue","yellow");
print_r(array_merge($a1,$a2));
?>
此代码对于两个数组合并和合并非常有用