work_note 2016年2月18日, PM 12:21:29

来源:互联网 发布:canon mp236清零软件 编辑:程序博客网 时间:2024/06/16 16:36
  1. smarty 技巧:
    时间格式化:{|$v.add_time|date_format:"%Y-%m-%d %H:%M"|}
    中文文字裁剪 {|$declaration|truncate_cn:120:'...'|}
    如果为空值,默认值 {|$v.commentNum|default:’0’|}
    传递数组:1、在model中建立数组:

        ```    public $_field = array(            'title'=>array(                1=>'教授',                2=>'博士',                3=>'先生',                4=>'女士',                5=>'小姐'            )            )    ```    2、在controller中 传到smarty:
     $temp['field'] = M('mn_user')->_field;
    3、在模版中使用:    ```    <td>称呼</td> <td>{|$field['title'][$data['title']]|}</td>    ```
  1. 工作记录
    去掉文章 show_time ok
    去掉 face ok
    UE编辑器的 替换 全部更改为在后台替换$result['content'] = str_replace('\"', '"', $result['content']); ok
0 0
原创粉丝点击