PHP Recursive use example

Source: Internet
Author: User
Tags foreach

  This article mainly introduces the PHP recursive use example (PHP recursive function), including recursive get role ID string, recursive get Cascade role information array, through the parent role ID to get child role information, need friends can refer to the following

The   code is as follows://recursively get role ID string function Exploderole ($ROLEOBJ, & $resultStr) {    if (0 < count ($roleObj-> Childroleobjarr)) {        foreach ($roleObj->childroleobjarr as $CHILDROLEOBJ) {    & nbsp       if (' = = $resultStr] {                $resultStr. = "{$childR Oleobj->id} ";            }else{                $resultStr. = ", {$CHILDROLEOBJ->id} ";                         Exploderole ($CHILDROLEOBJ, $resultSt R);        }    }}  //Recursive get Cascade role information Array function makerolerelation (& $ROLEOBJARR) {    foreach ($roleObjArr as $item) {        $item->childroleobjarr = Getroleobjarrbyparentid ($ ITEM->ID);         if (0 < count ($item->childroleobjarr)) {    &NBSp       makerolerelation ($item->childroleobjarr);        }    }}  //Get child role information through ID of parent role    function Getroleobjarrbyparentid ($pa Rentid) {    $operCOGPSTRTSysRole = new Cogpstrtsysrole ()     $operCOGPSTRTSysRole->setcolumn ($ Opercogpstrtsysrole->getallcolumn ());     $operCOGPSTRTSysRole->setwhere ("parentroleid={$parentid}");     $ROLEOBJARR = $operCOGPSTRTSysRole->convresult2objarr ($operCOGPSTRTSysRole->selecttable ());     return isset ($ROLEOBJARR) $ROLEOBJARR: Array (); }  

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.