Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
symfony 1.3 のフォームクラスが新しいかどうかを確認する方法はありますか? 明らかなチェック方法を試みました$this->isNew()が、エラーが発生しました。ありがとう
$this->isNew()
Doctrine を使用している場合は、オブジェクトを取得して、それが新しいかどうかを確認できます。
$form->getObject()->isNew();