このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 6 / 昨日: 0
総計: 938
- Dokuwiki.fl8.jp(281)
- 13 CentOS6メール設定(15)
- 34 UnboundでHA構成(14)
- 05 rsync(14)
- FreeBSD カーネル再構築(13)
- 02 ProFTPD(13)
最近の更新
このページへのアクセス
今日: 6 / 昨日: 0
総計: 938
twigではクロスサイトスクリプト防止の為、自動エスケープがデフォルトで有効になっています。
「autoescape false」で囲んであげると、autoescapeを無効にできます。
{% autoescape false %} {{ vm.memo|escape|replace({'\n':'<br />'}) }} {% endautoescape %}
registerの時に「'autoescape' ⇒ false」としてあげるとautoescapeを無効にできます。
// autoescapeを無効にする。 $app->register(new Silex\Provider\TwigServiceProvider(), array( 'twig.path' => __DIR__ . '/views', 'twig.options' => array( 'autoescape' => false, ), ));