$tree = taxonomy_get_tree($vid);
print "<li>"; // 1 line
foreach ($tree as $term ) { // 2 lines
$diffdepth=0;
if ($term->depth > $depth) {
print "<ul class='haschild'><li>";
$depth = $term->depth;
}
以上是原始代码,现在我想根据$term->depth > $depth
条件输出。(print "<li>";
)这一行。
即,
if ($term->depth > $depth) {
echo '<li class="parent">';
}
else {
print "<li>";
}
但是$term->depth
可以在foreach循环之后使用,但是我想在1行使用它,我该怎么做?