-
Doctrine ORMを使用する場合:
use App\Entity\YourEntity; // エンティティを作成 $entity = new YourEntity(); // エンティティをデータベースに保存 $entityManager->persist($entity); $entityManager->flush(); // 最後に挿入されたIDを取得 $lastInsertedId = $entity->getId();
-
ネイティブSQLクエリを使用する場合:
// SQLクエリを実行 $sql = "INSERT INTO your_table (column1, column2) VALUES ('value1', 'value2')"; $entityManager->getConnection()->executeQuery($sql); // 最後に挿入されたIDを取得 $lastInsertedId = $entityManager->getConnection()->lastInsertId();
-
ドキュメントによると、Doctrine DBALを使用する場合は次のようになります:
// SQLクエリを実行 $sql = "INSERT INTO your_table (column1, column2) VALUES ('value1', 'value2')"; $entityManager->getConnection()->executeQuery($sql); // 最後に挿入されたIDを取得 $lastInsertedId = $entityManager->getConnection()->lastInsertId();
これらの方法を使用することで、Symfonyで最後に挿入されたIDを取得することができます。適切な方法を選択し、コードに組み込んでください。