Maison  >  Article  >  développement back-end  >  在laravel中遇到compact(),对其中参数不理解

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

WBOY
WBOYoriginal
2016-06-06 20:41:182271parcourir

<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

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn