types.php

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PHP 代码 · 共 24 行

PHP
24
字号
<?php/** * Basic usage example for HTML_Menu, showing all available menu types *  * $Id: types.php,v 1.2 2004/01/17 12:33:16 avb Exp $ *  * @package HTML_Menu * @author Alexey Borzov <avb@php.net> */require_once 'HTML/Menu.php';require_once './data/menu.php';$types = array('tree', 'urhere', 'prevnext', 'rows', 'sitemap');$menu =& new HTML_Menu($data);$menu->forceCurrentUrl('/item1.2.2.php');foreach ($types as $type) {    echo "\n<h1>Trying menu type &quot;{$type}&quot;</h1>\n";    $menu->show($type);}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?