Home > Backend Development > PHP Tutorial > Smarty如何实现多模板切换?

Smarty如何实现多模板切换?

WBOY
Release: 2016-06-23 14:09:45
Original
1133 people have browsed it

比如切换至web的模版、切换至触屏的模板。。。。


回复讨论(解决方案)

不是有display吗 根据不同的需求 display不同的模板

不是有display吗 根据不同的需求 display不同的模板 那怎么实现?可不可用if语句切换模板路径?

判断useragent或者判断参数

根据判断结果显示不同的模板



球分,没分数问问题了...

if('web') {
  $Smarty->display('web模板');
}else {
  $Smarty->display('触屏模板');
}

模板可放在 templates 下的相应子目录中

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template