如何将数组中的字符串定义为新数组, 如何在php中编码
$column = array("id","name","value");
让我们说从mysql找到3行
希望结果如此
$id[0] = "1";
$id[1] = "6";
$id[2] = "10";
$name[0] = "a";
$name[1] = "b";
$name[2] = "c";
$value[0] = "bat";
$value[1] = "rat";
$value[2] = "cat";
我想把$column
数组中的字符串定义为新数组。
如何编码呢? 或者如果我的问题很愚蠢,我有意见。
谢谢。答案 0 :(得分:1)
我不明白为什么你想要像这样建模你的数据,你要求在调试方面受到伤害。您可以使用“变量变量”来定义它,或使用$ GLOBALS动态构建全局变量:
$somevar = "hello"
$$somevar[0] = "first index"; // creates $hello[0]
$GLOBALS[$somevar][0] = "first index"; // creates $hello[0] in global scope
答案 1 :(得分:1)
试
$array = array();
foreach ($results as $r){
foreach ($column as $col ){
$array[$col][] = $r[$col];
}
}
extract ($array);
或者您可以简单地执行此操作
$id = array();
$name = array();
$value = array();
foreach ( $results as $r ){
$id[] = $r['id']; // or $r[0];
$name[] = $r['name'];
$value[] = $r['value'];
}
希望这就是你提出的问题
答案 2 :(得分:1)
我在你上一个问题上的回答:
$result = mysql_query($sql);
$num = mysql_num_rows($result);
$i = 0;
if ($num > 0) {
while ($row = mysql_fetch_assoc($result)) {
foreach($row as $column_name => $column_value) {
$temp_array[$column_name][$i] = $column_value;
}
$i++;
}
foreach ($temp_array as $name => $answer) {
$$name = $answer;
}
}
答案 3 :(得分:0)
这非常危险,因为它可能会覆盖您认为在代码中安全的变量。你要找的是extract
:
$result = array();
while ($row = mysql_fetch_array($result))
foreach ($column as $i => $c)
$result[$c][] = $row[$i];
extract($result);
因此,如果$result
为array( 'a' => array(1,2), 'b' => array(3,4))
,则最后一行定义变量$a = array(1,2)
和$b = array(3,4)
。
答案 4 :(得分:0)
你不能为此直接使用变量变量,反正你也不应该这样做。但这就是你可以做到的:
foreach (mysql_fetch_something() as $row) {
foreach ($row as $key=>$value) {
$results[$key][] = $value;
}
}
extract($results);
理想情况下,您会跳过extract
,并使用$results['id'][1]
等。但如果您只在子函数中提取()嵌套数组,那么局部变量范围污染是可以接受的。
答案 5 :(得分:0)
不需要数组或使用$ _GLOBALS,我相信创建基于另一个变量值命名的变量的最佳方法是使用花括号:
$variable_name="value";
${$variable_name}="3";
echo $value;
//Outputs 3
如果您更具体地了解您收到的阵列是什么,我可以提供更完整的解决方案,但我必须警告您,我从未使用过这种方法,这可能是一个坏主意的迹象。
如果您想了解更多相关信息,请参阅以下链接: http://www.reddit.com/r/programming/comments/dst56/today_i_learned_about_php_variable_variables/