- 在xiao:list中判断第一条数据
{xiao:if $key==0}
- xiao:list num =10 数量10条 这个最简单 并且和 sql 中的limit用法一致 如:
num=2,3
- xiaocms配合php截取字符串。有时候很多地方需要截取字符串。如果把相同的代码提前成一个方法就好了。
<?php
function splitString($str,$splitLen){
$strLen = mb_strlen($str);
if($strLen<=$splitLen){
echo $str;
}else{
echo mb_substr($str,0,$splitLen).'...';
}
}
?>
这个方法在iis上的php环境下会出现乱码,解决方法如下,将编码格式放入参数中即可。
function splitString($str,$splitLen){
$strLen = mb_strlen($str,'utf-8');
if($strLen<=$splitLen){
echo $str;
}else{
echo mb_substr($str,0,$splitLen,'utf-8').'...';
}
}
?>```
调用的时候也很简单
<?php splitString($xiao['title'],20); ?>
4.
5. ```<a href="{xiao:$site_url}">首页</a>```
6. 搜索 ```<form method="Get" action="index.php" >
<input type="hidden" value="index" name="c" />
<input type="hidden" value="search" name="a" />
<input type="text" value="" name="kw" />
<!--搜索指定栏目 <input type="hidden" value="1" name="catid" />--> <input type="submit" value="搜索展示" /> </form>