ThinkPHP uses <volist> to implement three-level cyclic code instance _ php instance

Source: Internet
Author: User
This article mainly introduces ThinkPHP's use of & lt; volist & gt; to implement a three-level cyclic code instance, and deepen the reader's understanding of the usage of & lt; volist & gt; tags through instances, for more information about ThinkPHP usage, see the following example: The tag implements three-level cyclic code. The procedure is as follows:

1. A three-level loop requires a three-dimensional array. The implementation code is as follows:

Function MakeTree ($ pid, $ level) {$ map ['pid '] = $ pid; $ map ['level'] = $ level; $ result = $ this-> where ($ map)-> order ('rank ASC ')-> findall (); if ($ result) {foreach ($ result as $ key => $ value) {$ title = $ value ['Alias']; $ list [$ title] ['id'] = $ value ['id']; $ list [$ title] ['pid '] = $ value ['pid']; $ list [$ title] ['Alias'] = $ value ['Alias']; $ list [$ title] ['title'] = $ value ['title']; $ list [$ title] ['level'] = $ value ['level']; $ list [$ title] ['state'] = $ value ['state']; $ list [$ title] ['rank '] = $ value ['rank']; if ($ value ['level'] <= 3) {$ list [$ title] ['child '] = $ this-> _ MakeSonTree ($ value ['id']) ;}} return $ list ;} function _ MakeSonTree ($ pid) {$ map ['pid '] = $ pid; $ result = $ this-> where ($ map)-> order ('rank ASC ') -> findall (); if ($ result) {foreach ($ result as $ key => $ value) {$ title = $ value ['Alias']; $ list [$ title] ['id'] = $ value ['id']; $ list [$ title] ['pid '] = $ value ['pid']; $ list [$ title] ['Alias'] = $ value ['Alias']; $ list [$ title] ['title'] = $ value ['title']; $ list [$ title] ['level'] = $ value ['level']; $ list [$ title] ['state'] = $ value ['state']; $ list [$ title] ['rank '] = $ value ['rank']; if ($ this-> haschild ($ value ['id']) {// first determine whether a third-level subclass exists. The final array is like $ result ['child '] ['grandchild']; $ list [$ title] ['grandchild '] = $ this-> _ MakeSonTree ($ value ['id']) ;}} return $ list ;} function haschild ($ id) {$ result = D ('learningchannel')-> where ("pid = ". $ id)-> find (); if ($ result) {return true;} else return false ;}

2. Bind The volist Tag:

 $result=D('Learning') ->MakeTree(0,1);  //dump($result); $this->assign('list',$result);

3. template:

     selected >{$vo.alias}      selected >--{$child.alias}       selected >---{$grand.alias}          

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.