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.
我有这个聪明的 if 语句:
{if $webpage.page_heading} <h1>{$webpage.page_heading|replace:'\\':'<br />'}</h1> {/if}`
但我的 IDE 抱怨,它看起来像这样:
这只是我的 IDE 打包了一个 spaz'\\'还是这里有实际问题?我认为拥有双倍\会逃脱第二个反斜杠?
'\\'
\
我们想要做的是将 any 替换\为<br />
<br />
代码有效,问题出在您的 IDE 中(它可能将其解释为\')
\'