问问题
8531 次
8 回答
6
传递一个参数来计算迭代次数$pass
function toUL ($arr, $pass = 0) {
$html = '<ul>' . PHP_EOL;
foreach ( $arr as $v ) {
$html.= '<li>';
$html .= str_repeat("--", $pass); // use the $pass value to create the --
$html .= $v['name'] . '</li>' . PHP_EOL;
if ( array_key_exists('children', $v) ) {
$html.= toUL($v['children'], $pass+1);
}
}
$html.= '</ul>' . PHP_EOL;
return $html;
}
于 2012-04-04T12:37:29.693 回答
3
您的问题已在 SPL 中解决。RecursiveIteratorIterator
文档有关于一个人的项目深度的信息:
$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($array), SELF_FIRST);
foreach ($it as $key => $element)
{
if ($key !== 'name') continue;
$inset = str_repeat('--', $it->getDepth());
printf('<option>%s %s</option>', $inset, $element);
}
于 2012-04-04T13:03:27.760 回答
1
function toSelect($arr, $depth = 0) {
$html = '';
foreach ( $arr as $v ) {
$html.= '<option>' . str_repeat("--", $depth) . $v['name'] . '</option>' . PHP_EOL;
if ( array_key_exists('children', $v) ) {
$html.= toSelect($v['children'], $depth++);
}
}
return $html;
}
于 2012-04-04T12:47:52.797 回答
1
嗨,伙计们,你可以做这样的事情:我有这个对象$tree
:
Array
(
[0] => stdClass Object
(
[id] => 1
[nombre] => Category 1
[subcategorias] => Array
(
[0] => stdClass Object
(
[id] => 4
[nombre] => Category 1.1
)
)
)
[1] => stdClass Object
(
[id] => 2
[nombre] => Category 2
)
[2] => stdClass Object
(
[id] => 3
[nombre] => Category 3
[subcategorias] => Array
(
[0] => stdClass Object
(
[id] => 5
[nombre] => Category 3.1
[subcategorias] => Array
(
[0] => stdClass Object
(
[id] => 6
[nombre] => Category 3.1.1
)
)
)
)
)
)
然后这里是如何为 HTML 选择创建数组:
$tree=array();// PUT HERE YOUR TREE ARRAY
$arrayiter = new RecursiveArrayIterator($tree);
$iteriter = new RecursiveIteratorIterator($arrayiter);
$lista=array();
$i=0;
foreach ($iteriter as $key => $value)
{
$id=$iteriter->current();
$iteriter->next();
$nivel=$iteriter->getDepth();
$nombre=str_repeat('-',$nivel-1).$iteriter->current();
$lista[$id]=$nombre;
}
你会得到这样的东西:
Array
(
[1] => Category 1
[4] => --Category 1.1
[2] => Category 2
[3] => Category 3
[5] => --Category 3.1
[6] => ----Category 3.1.1
)
然后,您只需要使用简单的 foreach 为选择创建选项。
于 2012-10-17T21:15:41.227 回答
1
我的最终解决方案(感谢 Starx 和 varan):
function toSelect ($arr, $depth=0) {
$html = '';
foreach ( $arr as $v ) {
$html.= '<option value="' . $v['_id'] . '">';
$html.= str_repeat('--', $depth);
$html.= $v['name'] . '</option>' . PHP_EOL;
if ( array_key_exists('children', $v) ) {
$html.= toSelect($v['children'], $depth+1);
}
}
return $html;
}
echo '<select>';
echo toSelect($array);
echo '</select>';
甚至RecursiveIteratorIterator
解决方案也很好(感谢 hakre)。
于 2012-04-07T09:28:31.127 回答
0
您可以使用 optgroup 作为迭代器。例如:
<select name="list">
<option value=1>1st option</option>
<optgroup>
<option value=10>1st on 1st group</option>
</optgroup>
</select>
如果你想要php,你可以试试这个:
<?PHP
function toSELECT($arr,$depth=0)
{
$html="";
if(is_array($arr))
{
$html.=($depth==0)?"<select name='html'>\n":"";
foreach ($arr as $key=>$value)
{
if(is_array($arr[$key]))
{
$html.=str_repeat("\t",$depth)."<optgroup>\n";
$html.=str_repeat("\t",$depth).toHTML($arr[$key],$depth+1);
$html.=str_repeat("\t",$depth)."</optgroup>\n";
}
else
{
$html.=str_repeat("\t",$depth)."<option value='".$value."'>".$key."</option>\n";
}
}
$html.=($depth==0)?"</select>\n":"";
}
return $html;
}
?>
于 2013-06-30T15:01:54.210 回答
0
您可以将长度传递给函数并在递归调用时递增它,然后使用变量$length
来确定深度
function toUL ($arr, $length = 0) {
$html = '<ul>' . PHP_EOL;
foreach ( $arr as $v ) {
$html.= '<li>' . $v['name'] . '</li>' . PHP_EOL;
if ( array_key_exists('children', $v) ) {
$html.= toUL($v['children'], $length++);
}
}
$html.= '</ul>' . PHP_EOL;
return $html;
}
这是我通常用来跟踪递归深度的方法,它通常可以完成工作
于 2012-04-04T12:37:36.340 回答
0
function toUL ($arr, $depth = 0) {
// ...
$html .= toUL($v['children'], $depth+1);
于 2012-04-04T12:37:42.387 回答