Home  >  Article  >  php教程  >  层叠菜单的动态生成

层叠菜单的动态生成

WBOY
WBOYOriginal
2016-06-13 12:42:08730browse



  if (isset($hierarchy)){
      //$hierarchy[] = $selection;
      if (isset($hierarchy)){
        while(list($level, $sel) = each($hierarchy)){
          echo "";
          echo $level, ': ', $sel, "
n";
          $nextlevel = (int) $level + 1;
        }
    }
  }
  else{
      $nextlevel = 0;
  }
  echo "n";
?>


 
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:谈谈PHP语法(5)Next article:用cookies来跟踪识别用户