LoginSignup
0
0

More than 5 years have passed since last update.

PHPのテンプレートエンジンTwigについて

Last updated at Posted at 2018-07-13

主にテンプレートの書き方について書いていく。

Twigとは

TwigとはPHP向けのテンプレートエンジン。
要はPHPデータとテンプレート(HTML)を合体させ、画面に出力するってこと。

よく使うテンプレート

よく使っているのが

{{ 変数 }}
{# メモ #}
{% if ... %}{% endif %}
{% for ... %}{% endfor %}
{% include 'ファイルの場所' %} 
{% set 変数名 = 値 %}

今後は参考になった書き方について投稿します。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0