我在下面有一个代码来查找所有学生列表
$fub = $this->Customer->find('all', array('conditions' => array('Customer.customers_types' => 'student')));
我在下面有一个代码来计算尝试测试的学生人数。
$totalTests = $this->Customer->Test->find('count', array('conditions' => array('Test.customer_id' => $fub['Customer']['id'])));
$this->set('totalTests', $totalTests);
但是,我有不止一位学生客户。如何使用 $fub 的结果并将其放入 $totalTests 条件以获取尝试测试的学生总数。
调试器::dump($fub);
array(
array(),
array(),
array(),
array(),
array(),
array()
)