gpt4 book ai didi

html - 在 Smarty 中缩小 HTML 输出

转载 作者:搜寻专家 更新时间:2023-10-31 02:26:05 26 4
gpt4 key购买 nike

如何在 Smarty 中缩小所有输出的 HTML 模板?

像这样:$smarty->minify = true;

P.S :我找到了 {strip} 函数,但我应该在我所有的 .tpl 文件中使用这个函数。我有很多 .tpl 文件,这种方式对我来说是不可能的。

最佳答案

我使用了这段代码:

function minify_html($tpl_output, Smarty_Internal_Template $template) {
$tpl_output = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $tpl_output);
return $tpl_output;
}

// register the outputfilter
$smarty->registerFilter("output", "minify_html");

$smarty->display($template);

注意:您需要将//comments 更改为SCRIPT 标签以/* comments */

关于html - 在 Smarty 中缩小 HTML 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673684/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com