摘要: 效果图 阅读全文
posted @ 2019-05-12 11:03 冷晨 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 首先引用缓存文件 use think\Cache; 阅读全文
posted @ 2019-05-09 16:49 冷晨 阅读(1838) 评论(0) 推荐(0) 编辑
摘要: <script> var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "l 阅读全文
posted @ 2019-05-09 14:24 冷晨 阅读(2291) 评论(0) 推荐(0) 编辑
摘要: 引入css 默认引入public目录 引入js 默认引入public目录 引入外面的的css 把http:去掉即可 引入外面的的js 把http:去掉即可 阅读全文
posted @ 2019-05-09 10:51 冷晨 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 在DEDE的模板制作过程中经常会需要用到1,2,3,4....这样的排序方式,这个时候就需要用到DEDE自带的自增序号产生函数 1、按顺序从1开始 需要使用到 [field:global runphp='yes' name=autoindex][/field:global] 生成后就是123456, 阅读全文
posted @ 2019-05-08 16:07 冷晨 阅读(727) 评论(0) 推荐(0) 编辑
摘要: // 获取当天时间戳 $day = mktime(0,0,0); //获取7天前的时间戳 $week = strtotime("-7 day",$day); // 获取当天时间戳 $day = mktime(0,0,0); //获取当天前30天的时间戳 $tb_tb = strtotime("-1 month", $day); 阅读全文
posted @ 2019-05-06 11:08 冷晨 阅读(1192) 评论(0) 推荐(0) 编辑
摘要: 要修改的地方已经标出来了 直接修改为你需要的值即可; 阅读全文
posted @ 2019-05-05 15:53 冷晨 阅读(1043) 评论(0) 推荐(0) 编辑
摘要: 亲测有效 阅读全文
posted @ 2019-05-05 14:05 冷晨 阅读(5012) 评论(0) 推荐(0) 编辑
摘要: 用来获取当前频道的下级栏目的内容列表标签 。 type=“top”表示顶级栏目 ,typeid='top' 限制上级栏目ID;如果只要调用其中几个频道的内容可以用{dede:channelartlist typeid='1频道ID,2频道ID,3频道ID'} 。 下面是获取导航栏目以及他的二级栏目 阅读全文
posted @ 2019-05-02 16:55 冷晨 阅读(2347) 评论(0) 推荐(0) 编辑
摘要: 你的主键是不可重复的,现在重复插入值为3的主键了。可以去掉主键唯一,或是设成自增加。就不会出现这种情况了。 具体操作: 运行SQL命令行: 运行上面的代码就没有提示了 ok!解决了! 阅读全文
posted @ 2019-05-02 15:22 冷晨 阅读(904) 评论(0) 推荐(0) 编辑