search
HomeBackend DevelopmentPHP TutorialExample of using PHP template engine Twig in Yii framework_PHP tutorial

Twig is a fast, safe, and flexible PHP template engine. It has many built-in filters and tags, and supports template inheritance, allowing you to use the most concise code to describe your template. Its syntax is very similar to the template engine Jinjia under Python and the template syntax of Django. For example, when we need to output variables and escape them in PHP, the syntax is cumbersome:

Copy code The code is as follows:



But in Twig you can write like this:
Copy code The code is as follows:

{{ var }}
{{ var|escape }}
{{ var|e }} {# shortcut to escape a variable #}

Traverse the array:
Copy code The code is as follows:

{% for user in users %}
* {{ user.name }}
{% else %}
No user has been found.
{% endfor % }

But it will be a bit troublesome to integrate Twig in Yii Framework. The official website already has a solution to integrate Twig, so I won’t go into details here. However, since Twig does not support PHP syntax, we will encounter difficulties in some expressions. For example, when we write the view of the Form, we often write like this:

Copy code The code is as follows:

beginWidget('CActiveForm'); ?>
Login> ;
                                                                                                        form->textField($model,'username'); ?>


  • label($model,'password'); ?>

    ,'password'); ?>




  • error($model,'password'); ?>

    endWidget(); ?>


    But such syntax cannot be expressed in twig, so I want to extend the function of Twig so that it can support our customized widget tags and then automatically parse it into the code we need. . A total of two classes are needed: TokenParser and Node. The code is directly below:



    Copy the code
    The code is as follows:

    /*
     * This file is an extension of Twig.
     *
     * (c) 2010 lfyzjck
     */

    /**
     * parser widget tag in Yii framework
     *
     * {% beginwidget 'CActiveForm' as form %}
     *    content of form
     * {% endwidget %}
     *
     */
    class Yii_WidgetBlock_TokenParser extends Twig_TokenParser
    {
        /**
         * Parses a token and returns a node.
         *
         * @param Twig_Token $token A Twig_Token instance
         *
         * @return Twig_NodeInterface A Twig_NodeInterface instance
        */
        public function parse(Twig_Token $token)
        {
            $lineno = $token->getLine();
            $stream = $this->parser->getStream();

            $name = $stream->expect(Twig_Token::STRING_TYPE);
            if($stream->test(Twig_Token::PUNCTUATION_TYPE)){
                $args = $this->parser->getExpressionParser()->parseHashExpression();
            }
            else{
                $args = new Twig_Node_Expression_Array(array(), $lineno);
            }

            $stream->expect(Twig_Token::NAME_TYPE);
            $assign = $stream->expect(Twig_Token::NAME_TYPE);
            $stream->expect(Twig_Token::BLOCK_END_TYPE);

            $body = $this->parser->subparse(array($this, 'decideBlockEnd'), true);
            $stream->expect(Twig_Token::BLOCK_END_TYPE);

            return new Yii_Node_WidgetBlock(array(
                'alias' => $name->getValue(),
                'assign' => $assign,
            ), $body, $args, $lineno, $this->getTag());
        }

        /**
         * Gets the tag name associated with this token parser.
         *
         * @param string The tag name
        */
        public function getTag()
        {
            return 'beginwidget';
        }

        public function decideBlockEnd(Twig_Token $token)
        {
            return $token->test('endwidget');
        }
    }

    class Yii_Node_WidgetBlock extends Twig_Node
    {
        public function __construct($attrs, Twig_NodeInterface $body, Twig_Node_Expression_Array $args = NULL, $lineno, $tag)
        {
            $attrs = array_merge(array('value' => false),$attrs);
            $nodes = array('args' => $args, 'body' => $body);
            parent::__construct($nodes, $attrs, $lineno,$tag);
        }

        public function compile(Twig_Compiler $compiler)
        {
            $compiler->addDebugInfo($this);
            $compiler->write('$context["'.$this->getAttribute('assign')->getValue().'"] = $context["this"]->beginWidget("'.$this->getAttribute('alias').'",');
            $argNode = $this->getNode('args');
            $compiler->subcompile($argNode)
                     ->raw(');')
                     ->raw("n");

            $compiler->indent()->subcompile($this->getNode('body'));

            $compiler->raw('$context["this"]->endWidget();');
        }
    }
    ?>


    Then add our syntax parsing class where Twig is initialized:
    Copy the code The code is as follows:

    $twig ->addTokenParser(new Yii_WidgetBlock_TokenParser);

    Then we can write this in the twig template:
    Copy the code The code is as follows :

    {% beginwidget 'CActiveForm' as form %}


    • {{ form.label(model, 'username') } }
      {{ form.textField(model, 'username') }}


    • {{ form.label(model, 'password') }}
      {{ form.passwordField(model, 'password') }}


    {% endwidget %}

    www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/802218.htmlTechArticleTwig is a fast, safe and flexible PHP template engine. It has many built-in filters and tags and supports Template inheritance allows you to use the most concise code to describe your template. His language...
    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    PHP8.0中的模板库:TwigPHP8.0中的模板库:TwigMay 14, 2023 am 08:40 AM

    PHP8.0中的模板库:TwigTwig是一款目前广泛用于PHPWeb应用程序中的模板库,具有可读性高、易于使用和可扩展性强等特点。Twig使用简单易懂的语法,可以帮助Web开发人员以清晰、有序的方式组织和输出HTML,XML,JSON等文本格式。本篇文章将为您介绍Twig的基本语法和特点以及它在PHP8.0中的使用。Twig的基本语法Twig采用类似于P

    如何使用PHP框架Yii开发一个高可用的云备份系统如何使用PHP框架Yii开发一个高可用的云备份系统Jun 27, 2023 am 09:04 AM

    随着云计算技术的不断发展,数据的备份已经成为了每个企业必须要做的事情。在这样的背景下,开发一款高可用的云备份系统尤为重要。而PHP框架Yii是一款功能强大的框架,可以帮助开发者快速构建高性能的Web应用程序。下面将介绍如何使用Yii框架开发一款高可用的云备份系统。设计数据库模型在Yii框架中,数据库模型是非常重要的一部分。因为数据备份系统需要用到很多的表和关

    php如何使用Yii3框架?php如何使用Yii3框架?May 31, 2023 pm 10:42 PM

    随着互联网的不断发展,Web应用程序开发的需求也越来越高。对于开发人员而言,开发应用程序需要一个稳定、高效、强大的框架,这样可以提高开发效率。Yii是一款领先的高性能PHP框架,它提供了丰富的特性和良好的性能。Yii3是Yii框架的下一代版本,它在Yii2的基础上进一步优化了性能和代码质量。在这篇文章中,我们将介绍如何使用Yii3框架来开发PHP应用程序。

    Yii2 vs Phalcon:哪个框架更适合开发显卡渲染应用?Yii2 vs Phalcon:哪个框架更适合开发显卡渲染应用?Jun 19, 2023 am 08:09 AM

    在当前信息时代,大数据、人工智能、云计算等技术已经成为了各大企业关注的热点。在这些技术中,显卡渲染技术作为一种高性能图形处理技术,受到了越来越多的关注。显卡渲染技术被广泛应用于游戏开发、影视特效、工程建模等领域。而对于开发者来说,选择一个适合自己项目的框架,是一个非常重要的决策。在当前的语言中,PHP是一种颇具活力的语言,一些优秀的PHP框架如Yii2、Ph

    Yii框架中的数据查询:高效地访问数据Yii框架中的数据查询:高效地访问数据Jun 21, 2023 am 11:22 AM

    Yii框架是一个开源的PHPWeb应用程序框架,提供了众多的工具和组件,简化了Web应用程序开发的流程,其中数据查询是其中一个重要的组件之一。在Yii框架中,我们可以使用类似SQL的语法来访问数据库,从而高效地查询和操作数据。Yii框架的查询构建器主要包括以下几种类型:ActiveRecord查询、QueryBuilder查询、命令查询和原始SQL查询

    Symfony vs Yii2:哪个框架更适合开发大型Web应用?Symfony vs Yii2:哪个框架更适合开发大型Web应用?Jun 19, 2023 am 10:57 AM

    随着Web应用需求的不断增长,开发者们在选择开发框架方面也越来越有选择的余地。Symfony和Yii2是两个备受欢迎的PHP框架,它们都具有强大的功能和性能,但在面对需要开发大型Web应用时,哪个框架更适合呢?接下来我们将对Symphony和Yii2进行比较分析,以帮助你更好地进行选择。基本概述Symphony是一个由PHP编写的开源Web应用框架,它是建立

    yii如何将对象转化为数组或直接输出为json格式yii如何将对象转化为数组或直接输出为json格式Jan 08, 2021 am 10:13 AM

    yii框架:本文为大家介绍了yii将对象转化为数组或直接输出为json格式的方法,具有一定的参考价值,希望能够帮助到大家。

    Yii2编程指南:运行Cron服务的方法Yii2编程指南:运行Cron服务的方法Sep 01, 2023 pm 11:21 PM

    如果您问“Yii是什么?”查看我之前的教程:Yii框架简介,其中回顾了Yii的优点,并概述了2014年10月发布的Yii2.0的新增功能。嗯>在这个使用Yii2编程系列中,我将指导读者使用Yii2PHP框架。在今天的教程中,我将与您分享如何利用Yii的控制台功能来运行cron作业。过去,我在cron作业中使用了wget—可通过Web访问的URL来运行我的后台任务。这引发了安全问题并存在一些性能问题。虽然我在我们的启动系列安全性专题中讨论了一些减轻风险的方法,但我曾希望过渡到控制台驱动的命令

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Best Graphic Settings
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. How to Fix Audio if You Can't Hear Anyone
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft