2019-05-26から1日間の記事一覧

findメソッド(CakePHP)

CakePHPのデータ取得、findメソッドについて。 $posts = $this->Posts->find('all'); 全件のpostsテーブルからのデータ取得 $posts = $this->Posts->find('all'); $this->set(compact('posts')); で全件をビュー側に渡してやる。 $posts = $this->Posts->fin…