php无限分类方法类.zip

时间:2022-07-31 04:11:10
【文件属性】:

文件名称:php无限分类方法类.zip

文件大小:3KB

文件格式:ZIP

更新时间:2022-07-31 04:11:10

类库下载-php无限分类方法类

<?PHP header("Content-type: text/html; charset=utf-8");   $link = mysql_connect('localhost','root','eric') or die(mysql_error()); mysql_select_db('sortclass',$link);   class SortClass{   var $data = array();   var $child = array(-1=>array());   var $layer = array(-1=>-1);   var $parent = array();   var $link;   var $table;   function SortClass($link, $table){     $this->setNode(0, -1, '顶极节点');     $this->link = $link;     $this->table = $table;     $node = array();     $results = mysql_query('select * from '.$this->table.'',$this->link);     while($node = mysql_fetch_assoc($results)){       $this->setNode($node['cid'],$node['pid'],$node['cname']);     }   }这是一个PHP无限级分裂的实现库,有递归 非递归俩种方法。需要的朋友可以下载使用。


【文件预览】:
php无限分类方法类
----php中文网下载站.url(114B)
----fenlei.php(5KB)
----php中文网免费下载站.txt(219B)

网友评论