Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要分配一个包含单引号的变量。
在php中我会这样做:
$hello='testing \' quotes ';
打印报价的树枝等效代码是什么?
这是一样的,因为无论如何,twig 模板都被转换为 php
{{ 'some string \' with a single quote in it' }} {% set value = 'the quote is here ->\'<-' %} {{ value }}