⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tree.class.php

📁 STCMS 音乐系统 v2.5 build 090501: 为达到最佳效果
💻 PHP
字号:
<?php
///////////////////////////////////////////////////////////////////
// Author:daong | E-mail: dahongy@gmail.com
// Copyright &copy Http://www.phpstcms.cn
// This is not a free software, please to pay for more functions
// $Id: 2009-05-01 version V2.5 $
///////////////////////////////////////////////////////////////////
class tree
{
	var $array = array();
	var $jsp = "<script type=\"text/javascript\">function displayDiv(id){obj=document.getElementById(id);if(obj.style.display=\"\" || obj.style.display=\"block\"){obj.style.dispaly=\"none\"}else{obj.style.display=\"block\"}}</script>";
	function tree($array=array())
	{
		$this->array = $array;
	}
	
	function printDiv($array)
	{
		$code = $this->jsp;
		$code .= "\n<div></div>";
		return $code;
	}
}
$tree = new tree();
echo $tree->printDiv(array('0'));
?>

⌨️ 快捷键说明

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