How to get Current Timestamp from Carbon in Laravel 5

前端 未结 7 1652
天涯浪人
天涯浪人 2021-02-01 01:05

I want to get current timestamp in laravel 5 and I have done this-

$current_time = Carbon\\Carbon::now()->toDateTimeString();

I am getting e

7条回答
  •  故里飘歌
    2021-02-01 01:21

    For Laravel 5.5 or above just use the built in helper

    $timestamp = now();
    

    If you want a unix timestamp, you can also try this:

    $unix_timestamp = now()->timestamp;
    

提交回复
热议问题