Symfony2视图从.titch到.php



将defalt值从.titch更改为.php的方法?

现在尝试生成CRUD(使用composer),并在.titch中获取视图,但我需要在PHP中获取它。

以下是关于如何实现的官方文档

# app/config/config.yml
framework:
    # ...
    templating:
        engines: ['twig', 'php']
// src/Acme/HelloBundle/Controller/HelloController.php
// ...
public function indexAction($name)
{
    return $this->render(
        'AcmeHelloBundle:Hello:index.html.php',
        array('name' => $name)
    );
}

http://symfony.com/doc/current/cookbook/templating/PHP.html

相关内容

  • 没有找到相关文章

最新更新