本文實例講述了laravel 框架實現(xiàn)無限級分類的方法。分享給大家供大家參考,具體如下:
模型中的代碼
namespace App\models\wxj;
use Illuminate\Support\Facades\DB;
use Session;
class Wxjlx
{
public function r(){
//輸出數(shù)據(jù)庫的所有內(nèi)容
$sql=DB::table('wxjlx')->get();
//調(diào)用fl方法
$result=self::fl($sql,$pid=0);
return $result;
}
//創(chuàng)建方法 $data參數(shù)是數(shù)據(jù)庫所有數(shù)據(jù) $pid參數(shù)是數(shù)據(jù)庫pid $le參數(shù)是為了區(qū)分顯示級別的
public function fl($data,$pid=0,$le=0){
//創(chuàng)建一個靜態(tài)數(shù)組保存數(shù)據(jù)
static $array=array();
//循環(huán)出所有的有關(guān)數(shù)據(jù)保存進數(shù)組
foreach ($data as $v){
//當?shù)谝谎h(huán)是pid==0 因為上面已經(jīng)設(shè)置pid==0
if($v->pid==$pid){
//這里是為了區(qū)分級別
$v->le=$le;
//將有關(guān)數(shù)據(jù)保存如數(shù)據(jù)
$array[]=$v;
//為了將有關(guān)數(shù)據(jù)保存數(shù)據(jù),這里使用遞歸
self::fl($data,$v->id,$le+1);
}
}
//將最后的內(nèi)容輸出返回
return $array;
}
}
控制器代碼,只是為了調(diào)用模型中方法
class WxjlxController extends BaseController
{
public function r(){
//實例化模型
$p=new Wxjlx();
//調(diào)用模型方法
$a=$p->r();
//將數(shù)據(jù)返回視圖
return view('wxj/r',['list'=>$a]);
}
}
視圖中的方法,實現(xiàn)效果
@foreach($list as $v)
{{str_repeat('-|',$v->le)}}
{{$v->id}}
{{$v->typename}}
{{$v->pid}}
?php echo 'br>'?>
@endforeach
更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Laravel框架入門與進階教程》、《php優(yōu)秀開發(fā)框架總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家基于Laravel框架的PHP程序設(shè)計有所幫助。
您可能感興趣的文章:- laravel 5.4中實現(xiàn)無限級分類的方法示例
- laravel7學習之無限級分類的最新實現(xiàn)方法