真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用thinkPHP5框架怎么實(shí)現(xiàn)時(shí)間查詢(xún)操作-創(chuàng)新互聯(lián)

本篇文章為大家展示了使用thinkPHP5框架怎么實(shí)現(xiàn)時(shí)間查詢(xún)操作,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

創(chuàng)新互聯(lián)為您提適合企業(yè)的網(wǎng)站設(shè)計(jì)?讓您的網(wǎng)站在搜索引擎具有高度排名,讓您的網(wǎng)站具備超強(qiáng)的網(wǎng)絡(luò)競(jìng)爭(zhēng)力!結(jié)合企業(yè)自身,進(jìn)行網(wǎng)站設(shè)計(jì)及把握,最后結(jié)合企業(yè)文化和具體宗旨等,才能創(chuàng)作出一份性化解決方案。從網(wǎng)站策劃到做網(wǎng)站、網(wǎng)站建設(shè), 我們的網(wǎng)頁(yè)設(shè)計(jì)師為您提供的解決方案。

時(shí)間比較


使用where方法

where方法支持時(shí)間比較,例如:

// 大于某個(gè)時(shí)間
where('create_time','> time','2016-1-1');
// 小于某個(gè)時(shí)間
where('create_time','<= time','2016-1-1');
// 時(shí)間區(qū)間查詢(xún)
where('create_time','between time',['2015-1-1','2016-1-1']);

使用whereTime方法

whereTime方法提供了日期和時(shí)間字段的快捷查詢(xún),示例如下:

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

時(shí)間表達(dá)式

還提供了更方便的時(shí)間表達(dá)式查詢(xún),例如:

// 獲取今天的博客
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();

如果查詢(xún)當(dāng)天、本周、本月和今年的時(shí)間,還可以簡(jiǎn)化為:

// 獲取今天的博客
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+版本開(kāi)始,還可以使用下面的方式進(jìn)行時(shí)間查詢(xún)
// 查詢(xún)兩個(gè)小時(shí)內(nèi)的博客
Db::table('think_blog')->whereTime('create_time','-2 hours')->select();

上述內(nèi)容就是使用thinkPHP5框架怎么實(shí)現(xiàn)時(shí)間查詢(xún)操作,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文名稱(chēng):使用thinkPHP5框架怎么實(shí)現(xiàn)時(shí)間查詢(xún)操作-創(chuàng)新互聯(lián)
文章地址:http://weahome.cn/article/ihcpi.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部