从版本1.9.0开始,Twig为html_attr
过滤器提供escape
策略(请参阅documentation)。
html
策略使用htmlspecialchars PHP函数(通过快速查看源代码可以确认)。 html_attr
策略使用一系列自定义替换,最终似乎具有相同的效果。
这两种策略有区别吗?
答案 0 :(得分:8)
source说:
/*
* While HTML supports far more named entities, the lowest common denominator
* has become HTML5's XML Serialisation which is restricted to the those named
* entities that XML supports. Using HTML entities would result in this error:
* XML Parsing Error: undefined entity
*/
实际上,html
策略只会更改HTML中具有特殊含义的字符,而html_attr
策略会替换几乎所有非字母数字字符,包括空格。参见示例:
请参阅文字,好吗?
raw: See this <b>text</b>, OK?
html: See this <b>text</b>, OK?
html_attr: See this <b>text</b>, OK?
根据我的理解,对于HTML,您可以使用html
策略,对于XML文档,您最好使用html_attr
策略,但我在实践中没有尝试过。