I would like to ask you a strange phpcms question-php Tutorial

Source: Internet
Author: User
I would like to ask you a strange question about phpcms. the following code is rewritten from the libs \ function \ global. func. php file of phpcms.
Function menu_level ($ menuid, $ cache_file, $ cache_path = 'commons', $ key = 'catname', $ parentkey = 'parentid', $ linkstring = '> ', $ result = array () {$ menu_arr = getcache ($ cache_file, $ cache_path); if (array_key_exists ($ menuid, $ menu_arr )) {$ result [] = $ menu_arr [$ menuid] [$ key]; return menu_level ($ menu_arr [$ menuid] [$ parentkey], $ cache_file, $ cache_path, $ key, $ parentkey, $ linkstring, $ result);} krsort ($ result); return implode ($ linkstring, $ result );}

This method is used to obtain the data array from the cache and link it with the specified link symbol. I believe that those who have used phpcms should have seen it. This method will be recursive three times. I have a strange problem here, that is, when
When the value of $ menu_arr [$ menuid] [$ parentkey] is equal to 0, the recursion of the menu_level method is no longer performed.
If there is no problem locally, this problem occurs on the server.
Has anyone ever encountered this problem?


Reply to discussion (solution)

Recursion is performed only when $ menu_arr [$ menuid] exists.
Whether $ menu_arr [$ menuid] exists depends on your cache file.

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.