我试图遍历$entity
方法上beforeSave()
变量的所有属性。
debug($entity)
返回:
object(App\Model\Entity\Student) {
'id' => (int) 5690,
'institution_id' => (int) 35,
'contact_id' => null,
'id_number' => '0000000000',
....
但是,当我尝试使用
浏览对象时foreach ($entity as $key => $value) {
debug($key);
debug($value);
}
foreach循环甚至没有运行。我通过debug(count($entity))
进行调查,结果返回1。
如何遍历实体的属性?
感谢您的帮助。谢谢。