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 で Doctrine を使用して、ページのテーブルからページ タイトルを取得するにはどうすればよいですか?
例えば:
$title = Doctrine::getTable('MyTable')->getTitle($this->page_id);
オブジェクトを取得して、そこからタイトルを取得する必要があります。
試す:
$object = Doctrine::getTable('MyTable')->find($this->page_id); $title = $object->getTitle();