Questions tagged «php-carbon»

4
如何比较两个Carbon时间戳?
我有两个时间戳,即我创建的edited_at和created_at(Laravel的)...在数据库中,两者的时间戳均为类型,默认值为0000-00-00 00:00:00 ...但是 var_dump(edited_at variable)给字符串。而var_dump(created_at variable)对象/碳。这些时间戳有什么问题? 使用format('U')转换为整数后,我必须比较两者。我只能在Carbon对象上调用此方法。我怎样才能做到这一点?

2
Laravel Carbon从当前日期减去天数
我试图从created_at日期已超过30天的“用户”模型中提取对象。 Carbon :: now()==>我要==> Carbon :: now()-30天 $users = Users::where('status_id', 'active') ->where( 'created_at', '<', Carbon::now()) ->get(); 如何实现呢?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.