美文网首页
xiaocms代码合集

xiaocms代码合集

作者: Swerve | 来源:发表于2017-04-06 17:27 被阅读0次
  1. 在xiao:list中判断第一条数据
    {xiao:if $key==0}
  2. xiao:list num =10 数量10条 这个最简单 并且和 sql 中的limit用法一致 如:num=2,3
  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>

相关文章

网友评论

      本文标题:xiaocms代码合集

      本文链接:https://www.haomeiwen.com/subject/aiwfattx.html