我需要从数据库中获取数据,其中仅应显示比今天更旧的数据。这是我正在使用的代码
$curdate=Carbon::now();
$papers = DB::table('papers')
->join('payments','papers.id','=','payments.paper_id')
->join('tutors','papers.tutor_id','tutors.id')
->select('papers.*','tutors.name',DB::Raw('TIMEDIFF(papers.release_date,papers.live_end_time)AS diff'))
->where('papers.release_date',null)
->orWhere('papers.live_end_time', '>=' ,$curdate)
->where('papers.id','=','payments.paper_id')
->where('payments.user_id',$id)
->get();
这提供了
release_date
为null的数据,但是当live_end_time
设置为将来的日期时却没有提供数据。是否有其他方法可以完成此任务。谢谢。 最佳答案
发现问题,我必须更改config/app.php
中的默认时区
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'Asia/Colombo',
timezone
应根据您所在的地区进行更改。关于mysql - Laravel 5.6显示早于当前日期和时间的数据库记录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49379293/