0

我想咨询如何最好地做到以下几点:

我有某些主要值,我想将它们作为数组插入到我的 MySQL 数据库中,假设这是父母。

array(parent1,parent2,parent3,parent4);

现在,这些父母各有一个或多个孩子,例如:

parent1 => child1,
parent2 => child1,child2,child3,
parent3 => child1, child2, child3

等等...

我将有一个表单,您可以在其中添加父级,添加此表单后,您可以向其中添加 X 个子级。

那么处理这种情况的最佳方法是什么,我想它需要一个关联数组,有人可以给我一个建议,使用 php 和 MySQL。

4

1 回答 1

0

您可以创建一个如下所示的数组:

$arr = array(
    'parent1' => array('child1'),
    'parent2' => array('child1', 'child2'),
    'parent3' => array('child1', 'child2', 'child3')
);
// Debugging...
var_dump(array_keys($arr)); // These are the parents
var_dump(array_values($arr)); // And these are their children

然后,插入:

var_dump('INSERT INTO `parents` (`name`) VALUES ("'.implode('"), ("', array_keys($arr)).'");'); // These are the parents
foreach ($arr as $parent => $children)
    var_dump('INSERT INTO `children` (`parent_name`, `name`) VALUES ("'.$parent.'", "'.implode('"), ("'.$parent.'", "', array_keys($children)).'");'); // These are the children

更改var_dump()为用于运行查询的相应方法。

于 2013-03-07T13:29:54.777 回答