这个php的smarty函数怎么用?
我在网上找到这个函数,不知道怎么调用进去?初学smarty,求教。这个是压缩页面的代码。$smarty->register_prefilter('smarty_prefi...
我在网上找到这个函数,不知道怎么调用进去?
初学smarty,求教。
这个是压缩页面的代码。
$smarty->register_prefilter('smarty_prefilter');
function smarty_prefilter($out_put, &$smarty)
{
//保护smarty标签将<-- {xxx} -->替换成 {xxx}
$out_put = preg_replace('/<!--[^>|/n]*?({.+?})[^<|{|/n]*?-->/', '/1', $out_put);
// 去掉html注释
$out_put = preg_replace('/<!--.*?-->/', '', $out_put);
// 压缩html代码,去掉行首尾空格及换行
return preg_replace("//s*[/n/r]+/s*/", '',$out_put);
}
我用smarty3 展开
初学smarty,求教。
这个是压缩页面的代码。
$smarty->register_prefilter('smarty_prefilter');
function smarty_prefilter($out_put, &$smarty)
{
//保护smarty标签将<-- {xxx} -->替换成 {xxx}
$out_put = preg_replace('/<!--[^>|/n]*?({.+?})[^<|{|/n]*?-->/', '/1', $out_put);
// 去掉html注释
$out_put = preg_replace('/<!--.*?-->/', '', $out_put);
// 压缩html代码,去掉行首尾空格及换行
return preg_replace("//s*[/n/r]+/s*/", '',$out_put);
}
我用smarty3 展开
2个回答
展开全部
您使用的是smarty的预过滤器机制,这个是自动调用的。当你通过register_prefilter
把这个函数注册进去后,在display()时smarty会自动去调用来完成页面压缩的。
把这个函数注册进去后,在display()时smarty会自动去调用来完成页面压缩的。
追问
直接放代码进去报错了, Fatal error: Cannot redeclare smarty_prefilter() (previously declared in E:\wamp\www\inc\index.inc.php:68) in E:\wamp\www\inc\index.inc.php on line 85
追答
注册的函数名可以自定义的,在index.inc.php这个资源文件中有定义,你要自定义一个,就改个名来试试。比如
$smarty->register_prefilter('smarty_prefilter_1');
function smarty_prefilter_1($out_put, &$smarty)
{
...
}
2015-02-22
展开全部
引人smarty文件require_once();
实例化smarty对象$smarty=new Smarty();
调用函数$smarty->register_prefilter('smarty_prefilter');
追问
前两步没问题的了,第三部放代码进去报错了,
Fatal error: Cannot redeclare smarty_prefilter() (previously declared in E:\wamp\www\inc\index.inc.php:68) in E:\wamp\www\inc\index.inc.php on line 85
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询