我有兩個模型:'畫廊'和'圖像'。當我嘗試從galleries_controller獲取圖像我看到這個錯誤:如何解決PHP中的「未定義變量」通知?
Notice (8): Undefined variable: images [APP\controllers\galleries_controller.php, line 25]
我使用CakePHP的find
方法來限制在圖片搜索結果。
這裏是我的galleries_controller:
function view($id = null) {
if (!$id) {
$this->Session->setFlash(__('Invalid image', true));
$this->redirect(array('action' => 'index'));
}
$this->set('gallery', $this->Galley->read(null, $id));
/// this code have some problem ///
$this->loadModel('image');
$Images= $this->Image->find('all',
array(
'limit' => 2, //int
)
);
$this->set('images', $images);
}
'$ this-> loadModel('image');'是25行嗎? – 2012-01-07 01:53:17
$ this-> set('images',$ images);在行25 – user1080247 2012-01-07 01:54:34