Symfony 2 PHP模板引擎渲染对象

时间:2014-11-05 23:56:15

标签: php symfony twig templating-engine

我更喜欢在symfony2中使用PHP模板引擎来实现Twig,因为它具有一定的灵活性,而且我更习惯。

例如,在打印出一些东西时,我会喜欢使用“三元组”这样的东西。

我现在的问题是,我的数据在模板上呈现为对象。使用(数组)似乎没有帮助,因为我最终得到的东西;

array (size=4)
 '�news\newsBundle\Entity\News�id' => int 1
 '�news\newsBundle\Entity\News�title' => string 'News title 1' (length=12)
 '�news\newsBundle\Entity\News�body' => string 'Some body text' (length=14)
 '�news\newsBundle\Entity\News�createdDate' => 
  object(DateTime)[306]
  public 'date' => string '2014-11-05 19:41:48.000000' (length=26)
  public 'timezone_type' => int 3
  public 'timezone' => string 'Europe/London' (length=13)

如何在没有名称空间内容的情况下获得类似普通数组的结果,例如数组('id'=> int 1)。

提前致谢

1 个答案:

答案 0 :(得分:0)