今天在Laravel Paginator.php中出现此代码 p>
$ this-> hasMore = $ this-> items-> count()> $ this-> perPage;
code> pre>
我很熟悉 - > 和> 但是不确定这是多么适合= =。
这是完整的函数: p>
protected function setItems($ items)
{
$ this-> items = $ items instanceof Collection? $ items:Collection :: make($ items);
$ this-> hasMore = $ this-> items-> count()> $ this-> perPage;
$ this-> items = $ this-> items-> slice(0,$ this-> perPage);
}
code> pre>
div>