>  Q&A  >  본문

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

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?

黄舟黄舟2772일 전782

모든 응답(2)나는 대답할 것이다

  • 高洛峰

    高洛峰2017-04-10 15:08:59

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

    회신하다
    0
  • PHP中文网

    PHP中文网2017-04-10 15:08:59

    compact('comments')=$comments

    회신하다
    0
  • 취소회신하다