程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> TWIG的 function 學習

TWIG的 function 學習

編輯:關於PHP編程

目前twig內建的函數包括

attribute, block, constant, cycle, dump, parent, random, range.


其實部分函數,在tags的學習裡已經見過了。

 


attribute函數
1.2版本新增
他就相當於是個. 操作符。
{{ attribute(object, method) }} 
{{ attribute(object, method, arguments) }} 
{{ attribute(array, item) }} 
{{ attribute(object, method) }}
{{ attribute(object, method, arguments) }}
{{ attribute(array, item) }}

 

 

block函數
輸出block區塊的內容。
<title>{% block title %}{% endblock %}</title> 
 
<h1>{{ block('title') }}</h1> 
 
{% block body %}{% endblock %} 
<title>{% block title %}{% endblock %}</title>

<h1>{{ block('title') }}</h1>

{% block body %}{% endblock %}

 

 

constant函數
讀取常量{{ some_date|date(constant('DATE_W3C')) }} 
{{ constant('Namespace\\Classname::CONSTANT_NAME') }} 
{{ some_date|date(constant('DATE_W3C')) }}
{{ constant('Namespace\\Classname::CONSTANT_NAME') }}

 


cycle函數
循環輸出數組的內容,
{% set fruits = ['apple', 'orange', 'citrus'] %} 
 
{% for i in 0..10 %} 
    {{ cycle(fruits, i) }} 
{% endfor %} 
{% set fruits = ['apple', 'orange', 'citrus'] %}

{% for i in 0..10 %}
    {{ cycle(fruits, i) }}
{% endfor %}

 

 

dump函數
1.5版本新增
打印變量,就是用的php的var_dump函數,
另外twig默認是沒有開啟debug模式的,你需要首先開啟他
$twig = new Twig_Environment($loader, $config); 
$twig->addExtension(new Twig_Extension_Debug()); 
$twig = new Twig_Environment($loader, $config);
$twig->addExtension(new Twig_Extension_Debug());

你可以傳遞一個或者多個變量,如果你不傳遞變量,他會打印所有變量
{{ dump(user, categories) }} 
{{ dump() }} 
{{ dump(user, categories) }}
{{ dump() }}

 

 

parent函數
獲取父block的內容,在你准備增加而不是覆蓋的時候特別有用
{% extends "base.html" %} 
 
{% block sidebar %} 
    <h3>Table Of Contents</h3> 
    ... 
    {{ parent() }} 
{% endblock %} 
{% extends "base.html" %}

{% block sidebar %}
    <h3>Table Of Contents</h3>
    ...
    {{ parent() }}
{% endblock %}

 

 

random函數
1.5版本新增,從一個數組中隨機返回一個
{{ random(['apple', 'orange', 'citrus']) }} 
{{ random(['apple', 'orange', 'citrus']) }}

 

 

range函數
返回一個數字數組,從第一個參數開始,到第二個參數結束(包含第二個),第三個參數是步長(可以省略)。 和0..10一樣
{% for i in range(0, 3) %} 
    {{ i }}, 
{% endfor %} 
 
{# returns 0, 1, 2, 3 #} 
{% for i in range(0, 3) %}
    {{ i }},
{% endfor %}

{# returns 0, 1, 2, 3 #}


又學習了不少。。繼續呱唧呱唧。。邁向新的頁面。。。

摘自 jiaochangyun的專欄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved