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.
我一直想知道为 Smarty 使用 {strip} 修饰符的优缺点。
服务器从模板中去除空白空间所花费的额外时间是否会超过使用较小文件减少的加载时间?
{strip}是编译时的事情。它删除了所有多余的空格,包括换行符。但它在将模板编译为 php.ini 时会这样做。所以这只是一次完成。使用或不使用 {strip} 的渲染时间相同。
{strip}
如果您想删除所有多余的空白,您可能正在寻找trimwhitespace output-filter。