管理员

- 积分
- 1
- 登陆
Warning: Illegal string offset 'loginnum' in /www/wwwroot/kyuanma.com/e/data/tmp/dt_temptext13.php on line 257
次
- 私信
- 注册时间
Warning: Illegal string offset 'registertime' in /www/wwwroot/kyuanma.com/e/data/tmp/dt_temptext13.php on line 261
Warning: date() expects parameter 2 to be long, string given in /www/wwwroot/kyuanma.com/e/data/tmp/dt_temptext13.php on line 261
- 最后登陆时间
Warning: Illegal string offset 'lasttime' in /www/wwwroot/kyuanma.com/e/data/tmp/dt_temptext13.php on line 263
Warning: date() expects parameter 2 to be long, string given in /www/wwwroot/kyuanma.com/e/data/tmp/dt_temptext13.php on line 263
|
这里来为各位朋友介绍一个Dedecms获取缩略图片原图地址的方法,这个操作不能使用正则来获取,因为经常会出现随机问题.
修改include/extend.func.php,修改前请注意备份原文件,添加如下代码:
2 |
function firstimg( $str_pic ) |
4 |
$str_sub = substr ( $str_pic ,0,-7). ".jpg" ; //删除缩略图字符串最后七位,然后再补上后缀.jpg |
|
然后在模板里循环调用:
[field:litpic function=firstimg('@me')/]
直接调用用:
{dede:field name='litpic' function="firstimg(@me)"/}
这样就可以了,非常的好用,并且试过几篇文章都不错,不过有一点要注意了,如果没有缩图我们没有进行进行判断.
希望以上内容对大家使用dedecms有所帮助
|
|