LoginSignup
7
3

More than 5 years have passed since last update.

cakephp3でinsertしたデータのidを取得をしたいとき

Posted at

cakephp3の公式にも書いてあったがそれだけだとわからなかったから一応メモ書き

DBにデータを追加するとき
idをAUTO INCREMENT設定でinsertした後にそのidを取得したときありません?
ありますよね!
下記のように簡単に取得できるみたいです。

insert.php
$this->table_name->save($entity);
$entity->id;
7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3