本文介绍了将值复制到另一个数组中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下代码:
foreach ($row as $item) {
foreach($item as $key) {
echo "<pre>";
print_r($key);
echo "</pre>";
}
}
我正在尝试复制密钥($ key)放入另一个阵列进行进一步处理。我该怎么办?
I am trying to copy the keys ($key) into another array for further processing. How can i do this?
推荐答案
将一些变量定义为数组 $ array = array();
并使用 array_push($ array,$ key);
define some variable as array $array = array();
and just push the keys in with array_push($array, $key);
$array = array();
foreach ($row as $item) {
foreach($item as $key) {
array_push($array, $key);
}
}
这篇关于将值复制到另一个数组中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!