上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 53 下一页
摘要: 方式一 使用mysql函数FROM_UNIXTIME(unix_timestamp,format)直接转换 select FROM_UNIXTIME(o.create_time,'%Y-%m-%d') create_time from table方式二使用模型获取器 withAttr, 在该方法中用 阅读全文
posted @ 2019-12-27 14:55 阿波罗任先生 阅读(1701) 评论(0) 推荐(0) 编辑
摘要: 1、利用to_days函数查询今天的数据: select * from 表名 where to_days(时间字段名) = to_days(now()); to_days函数:返回从0000年(公元1年)至当前日期的总天数。2、昨天SELECT * FROM 表名 WHERE TO_DAYS( NO 阅读全文
posted @ 2019-12-27 14:53 阿波罗任先生 阅读(2754) 评论(0) 推荐(0) 编辑
摘要: 时间比较 使用where方法 where方法支持时间比较,例如: // 大于某个时间 where('create_time','> time','2016-1-1'); // 小于某个时间 where('create_time','<= time','2016-1-1'); // 时间区间查询 wh 阅读全文
posted @ 2019-12-27 14:51 阿波罗任先生 阅读(1949) 评论(1) 推荐(0) 编辑
摘要: MySQL时间函数from_unixtime()date_format()unix_timestamp()now()使用说明 now() 当前时间mysql> select now();+ +| now() |+ +| 2018-09-10 19:20:19 |+ +123456unix_times 阅读全文
posted @ 2019-12-27 11:42 阿波罗任先生 阅读(2264) 评论(0) 推荐(0) 编辑
摘要: 相同点:资源在html中使用,都是可以的。 不同点:使用assets下面的资源,在js中使用的话,路径要经过webpack中file-loader编译,路径不能直接写。 assets中的文件会经过webpack打包,重新编译,推荐该方式。而static中的文件,不会经过编译。项目在经过打包后,会生成 阅读全文
posted @ 2019-12-26 21:27 阿波罗任先生 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 有人反应点击没反应,目前我在chrome和ie都测试过是可以的: 我想了一下可能的原因应该是没有引入jquery导致的,目前加入cdn上的jquery,我把代码更新为: <html> <head> <meta charset="utf-8"> <script src="https://cdn.boo 阅读全文
posted @ 2019-12-26 11:29 阿波罗任先生 阅读(2192) 评论(1) 推荐(0) 编辑
摘要: <script type="text/javascript">function count(){var a = parseFloat(document.getElementById("c-price").value);var b = parseFloat(document.getElementByI 阅读全文
posted @ 2019-12-25 15:35 阿波罗任先生 阅读(974) 评论(0) 推荐(0) 编辑
摘要: 在项目开发过程中会遇到一个网站有不同风格,本文详细介绍Thinkphp5 实现模板主题多个模板切换 一、在Config中配置view_path模板路径代码如下 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 'template' => [ // 模板引擎类型 阅读全文
posted @ 2019-12-19 23:50 阿波罗任先生 阅读(1744) 评论(0) 推荐(0) 编辑
摘要: 只管模型的 事 class Guestinfo extends Model{ // 开启自动写入时间戳字段 protected $autoWriteTimestamp = 'int'; // 定义时间戳字段名 protected $createTime = 'create_time'; protec 阅读全文
posted @ 2019-12-14 12:45 阿波罗任先生 阅读(284) 评论(1) 推荐(0) 编辑
摘要: 为什么我们要使用INT类型来保存时间类型的数据。 1.如果数据保存的是timestamp类型那么,如果某个服务器系统时区配置错误,那么悲剧的是通过该服务器写入的时间都是有偏差的。 如果使用int类型保存unix时间戳的话,那么就是在前端展示的时候转换为与服务器配置的时区相匹配的时间。就可以有效避免这 阅读全文
posted @ 2019-12-14 11:34 阿波罗任先生 阅读(1419) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 53 下一页