首页  >  文章  >  后端开发  >  在laravel中遇到compact(),对其中参数不理解

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

WBOY
WBOY原创
2016-06-06 20:41:182269浏览

<code>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'));
    }
</code>

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

回复内容:

<code>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'));
    }
</code>

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

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

compact('comments')=$comments

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn