当前位置:Gxlcms > PHP教程 > 在laravel中遇到compact(),对其中参数不理解

在laravel中遇到compact(),对其中参数不理解

时间:2021-07-01 10:21:17 帮助过:13人阅读

public function listComment(){
        $comments=Comment::orderBy('id','desc')->paginate(10);
         $this->layout->title='Comment Listings';
         $this->layout->main=View::make('dash')->nest('content','comments.list',compact('comments'));
    }

代码如上,其中compact 参数 为什么是'comments'而不是$comments?

回复内容:

public function listComment(){
        $comments=Comment::orderBy('id','desc')->paginate(10);
         $this->layout->title='Comment Listings';
         $this->layout->main=View::make('dash')->nest('content','comments.list',compact('comments'));
    }

代码如上,其中compact 参数 为什么是'comments'而不是$comments?

建议楼主多看看官方文档
http://php.com/manual/zh/function.compact.php

compact('comments')=$comments

人气教程排行