According to the documentation,find()方法的第二个参数是$params数组.
原文链接:https://www.f2er.com/php/133717.html传递此数组的可能值之一是限制键.所以你可以做到以下几点:
$users = $this->User->find('all',array('limit' => 200));