require_once('Smarty/Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = './templates/';
$smarty->compile_dir = './templates_c/';
require_once('Twig/Autoloader.php');
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem("./templates/");
$twig = new Twig_Environment($loader, array(
'cache' => 'cache_twig',
'debug' => false ,
));
$smarty->assign( array("mydata" => $hoge) );
$twig->addGlobal( "mydata", $hoge );
{assign var="aaa" value="999" }
{% set aaa = '999' %}
{% set aaa %}
<div id="pagination">
...
</div>
{% endset %}
@php($aaa = 999)
または
@php $aaa = 999; @endphp
または
@php
$aaa = 999;
@endphp
$template_file = 'myfile.html';
$smarty->display( $template_file );
$hash = array(
'id' => 999 ,
'name' => 'hoge' ,
);
$template_file = 'myfile.html'
echo $twig->render($template_file, $hash);
{% block content %}
{% endblock %}
@yield('content')
{% extends "layout" %}
{% block content %}
{% endblock %}
@extends('layout')
@extends('layout.blade.php') // ファイル名で記述してもok
@section('content')
@endsection
{section name=i start=0 loop=10}
{$smarty.section.i.index}回目
{/section}
{% for i in 0..10 %}
{{ i }}回目
{% endfor %}
@for ($i = 0; $i < 10; $i++)
{{ $i }}回目
@endfor
{ foreach from=$my_loop key="k" item="v" }
{$v.user_name}
{ /foreach }
{% for k,v in my_loop %}
<h1>{{ loop.index }}番目</h1>
{% if loop.first %}最初の要素です。
{% elseif loop.last %}最後の要素です。
{% else %}{{ v.user_name }}
{% endif %}
{% endfor %}
Twig の loop.index は 1 から始まります。
@foreach ($users as $user)
{{$loop->index}}
@if ($loop->first)
これは最初の要素です
@endif
@if ($loop->last)
これは最後の要素です
@endif
<p>これは {{ $user->id }} ユーザーです。</p>
@endforeach
Laravel Blade の $loop->index は 0 から始まります。
@empty が使用できるのでこちらの方がオススメの記法です
@forelse ($users as $user)
{{$loop->index}}
@if ($loop->first)
これは最初の要素です
@endif
@if ($loop->last)
これは最後の要素です
@endif
<p>これは {{ $user->id }} ユーザーです。</p>
@empty
ユーザーはいません
@endforelse
なお @empty は省略できません。
また、Laravel Blade の $loop->index は 0 から始まります。
{include file="inc/header.html"}
{% include 'inc/header.html' %}
resources/views/user/mypage_sub_menu.blade.php を読み込みます
@include('user.mypage_sub_menu')
{if $flag==1 and hoge == 'myname'}
hogehoge
{else}
fugafuga
{/if}
{% if flag == 1 and hoge == 'myname' %}
hogehoge
{% else %}
fugafuga
{% endif %}
@if ( flag == 1 and hoge == 'myname' )
hogehoge
@elseif ( flag == 2 )
hogehoge2
@else
fugafuga
@endif
{*
ここの間に記述したものはコメントアウトされ表示されません
*}
{#
ここの間に記述したものはコメントアウトされ表示されません
#}
{{--
ここの間に記述したものはコメントアウトされ表示されません
--}}
<a href="{$data|escape:'url'}">クリック</a>
<a href="{{data|escape('url') }}">クリック</a>
<a href="{{data|e('url') }}">クリック</a> {# 【e】 だけでも OK #}
Hello, {!! $name !!}.
{* 2015-07-30 13:04:58 みたいな表示 *}
{$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}
{# 2015-07-30 13:04:58 みたいな表示 #}
{{ "now"|date("Y-m-d H:i:s") }}
{# TIMEZONE を指定することもできます #}
{{ "now"|date('d/m/Y H:i', timezone="Europe/Paris") }}
Twig の dateフィルタの 注意
データベースなどから持ってきた日付けを整形する場合はデータが存在するかどうかチェックしてから表示しないと、
データが存在しない場合に 現在の日付が表示されてしまいます
{{ "" | date("Y年m月d日") }} // 現在の日付が表示されます
例1 : if 文で判別する
{% if v.added_date != "" %}{{ v.added_date | date("Y/m/d H:i") }}{% endif %}
例2 : 三項演算子で表示する
{{ v.added_date is empty ? "" : v.added_date | date("Y/m/d") }}
{strip}
<table>
<tr>
<td>
test
</td>
</tr>
</table>
{/strip}
{% spaceless %}
<table>
<tr>
<td>
test
</td>
</tr>
</table>
{% endspaceless %}
<?php $aaa = 999; ?>
{$test_loop|@count}
{{ test_loop |length }}
{"abcdefghijklmnopqrstuvwxyz"|truncate:10}
Twigで truncate を使うには Twig-extensions をインストールします
https://github.com/twigphp/Twig-extensions
からダウンロードして Extensions ディレクトリを Twigディレクトリの下にアップロードし
PHPで $twig->addExtension( new Twig_Extensions_Extension_Text() ); とします。
{{"abcdefghijklmnopqrstuvwxyz"| truncate(20)}}
Twig_Extensions_Extension_Text : http://bit.ly/2jfkzXw
{assign var="new_array" value=","|explode:$str_hoge}
{% set new_array = "one,two,three"|split(',') %}
{{ "my name is hogehoge" | replace({hoge':'fuga'}) }}
{{ '1234'|reverse }}
{# outputs 4321 #}
{{ 123456 | slice(0, 2) }}
{ 'sugoude'|cat:'DJ'|cat:'Master Key'}
{{ 'sugoude' ~ 'DJ' ~ 'Master Key' }}
連結した文字にフィルタをかける場合は、文字列を定義してからフィルタをかけましょう
× NG
{{ $hoge~$fuga|my_filter }}
◯ OK
{%set hogefuga = $hoge~$fuga%}
{{ $hogefuga|my_filter }}
{ $value | string_format:"%02d" }
{{ "%02d" | format(value) }}
{$smarty.template}
{{ _self.getTemplateName().__toString }}
{# テンプレートファイル名 #}
{% if _target.relative %}{% set template_filename = _target.relative %}
{% else %}{% set template_filename = _self.getTemplateName().__toString %}
{% endif %}
{{ url('/') }}
または
{{Request::root()}}
Twig リファレンス : http://git.io/vneJa