Twig 版本 - 最新
Twig 扩展版本 - 最新
我想避免 .po 文件中的 html-tags
这是短语内带有链接的文本。
<p>{{ 'Click this <a href="/test/">test link</a>, friend' | trans | raw }}</p>
使用本主题的解决方案 - https://stackoverflow.com/a/11546933/2145125
<p>{{ 'Click this %a_open%test link%a_close%, friend' | trans({'%a_open%' : '<a href="/test/">', '%a_close%' : '</a>'}) | raw }}</p>
有 PHP 警告
Warning: gettext() expects exactly 1 parameter, 2 given
编译后的模板 PHP 代码是
echo gettext("Click this %a_open%test link%a_close%, friend", array("%a_open%" => "<a href=\"/test/\">", "%a_close%" => "</a>"));