91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用thinkPHP5框架怎么實現時間查詢操作

發布時間:2021-06-07 16:44:09 來源:億速云 閱讀:133 作者:Leah 欄目:開發技術

本篇文章為大家展示了使用thinkPHP5框架怎么實現時間查詢操作,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

時間比較

使用where方法

where方法支持時間比較,例如:

// 大于某個時間
where('create_time','> time','2016-1-1');
// 小于某個時間
where('create_time','<= time','2016-1-1');
// 時間區間查詢
where('create_time','between time',['2015-1-1','2016-1-1']);

使用whereTime方法

whereTime方法提供了日期和時間字段的快捷查詢,示例如下:

// 大于某個時間
Db::table('think_user')->whereTime('birthday', '>=', '1970-10-1')->select();
// 小于某個時間
Db::table('think_user')->whereTime('birthday', '<', '2000-10-1')->select();
// 時間區間查詢
Db::table('think_user')->whereTime('birthday', 'between', ['1970-10-1', '2000-10-1'])->select();
// 不在某個時間區間
Db::table('think_user')->whereTime('birthday', 'not between', ['1970-10-1', '2000-10-1'])->select();

時間表達式

還提供了更方便的時間表達式查詢,例如:

// 獲取今天的博客
Db::table('think_blog') ->whereTime('create_time', 'today')->select();
// 獲取昨天的博客
Db::table('think_blog')->whereTime('create_time', 'yesterday')->select();
// 獲取本周的博客
Db::table('think_blog')->whereTime('create_time', 'week')->select();
// 獲取上周的博客
Db::table('think_blog')->whereTime('create_time', 'last week')->select();
// 獲取本月的博客
Db::table('think_blog')->whereTime('create_time', 'month')->select();
// 獲取上月的博客
Db::table('think_blog')->whereTime('create_time', 'last month')->select();
// 獲取今年的博客
Db::table('think_blog')->whereTime('create_time', 'year')->select();
// 獲取去年的博客
Db::table('think_blog')->whereTime('create_time', 'last year')->select();

如果查詢當天、本周、本月和今年的時間,還可以簡化為:

// 獲取今天的博客
Db::table('think_blog')->whereTime('create_time', 'd')->select();
// 獲取本周的博客
Db::table('think_blog')->whereTime('create_time', 'w')->select();
// 獲取本月的博客
Db::table('think_blog')->whereTime('create_time', 'm')->select();
// 獲取今年的博客
Db::table('think_blog')->whereTime('create_time', 'y') ->select();
V5.0.5+版本開始,還可以使用下面的方式進行時間查詢
// 查詢兩個小時內的博客
Db::table('think_blog')->whereTime('create_time','-2 hours')->select();

上述內容就是使用thinkPHP5框架怎么實現時間查詢操作,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富顺县| 凭祥市| 阿瓦提县| 莱芜市| 津市市| 潮州市| 曲阳县| 扎囊县| 中牟县| 军事| 开远市| 关岭| 祁门县| 双流县| 易门县| 龙海市| 弥勒县| 瓮安县| 电白县| 石渠县| 临湘市| 开化县| 库伦旗| 清水河县| 武强县| 新昌县| 饶阳县| 平凉市| 靖边县| 桐城市| 阿勒泰市| 湖南省| 沈阳市| 昌都县| 长岭县| 南乐县| 舟曲县| 淮北市| 凯里市| 高雄县| 安吉县|