本文介绍了如何在Laravel 5中从Carbon获取当前时间戳的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在laravel 5中获取当前时间戳,并且我已经做到了-
I want to get current timestamp in laravel 5 and I have done this-
$current_time = Carbon\Carbon::now()->toDateTimeString();
我越来越差劲-'找不到碳'-
I am getting eror- 'Carbon not found'-
我该怎么办?
任何人都可以帮忙吗?
推荐答案
如果需要日期时间字符串,可以尝试以下方法:
You can try this if you want date time string:
use Carbon\Carbon;
$current_date_time = Carbon::now()->toDateTimeString(); // Produces something like "2019-03-11 12:25:00"
如果需要时间戳记,可以尝试:
If you want timestamp, you can try:
use Carbon\Carbon;
$current_timestamp = Carbon::now()->timestamp; // Produces something like 1552296328
这篇关于如何在Laravel 5中从Carbon获取当前时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!