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.
Symfony2で論理エンティティ名を完全なクラス名に解決するにはどうすればよいですか?のようMyAcmeBundle:UserにMy\AcmeBundle\Entity\User。
MyAcmeBundle:User
My\AcmeBundle\Entity\User
名前空間を完全修飾クラス名に解決する EntityManager から ClassMetadata を取得できます。
<?php echo $manager->getClassMetadata('MyAcmeBundle:User')->getName();