在php中格式化时间戳

时间:2017-07-14 21:41:58

标签: php laravel laravel-5.4 php-carbon

我正在尝试format my current time-stamp这样的事情:2017_07_15_000000我正在使用laravel应用,我可以通过current time-stamp实现Carbon::now

指导我。感谢

2 个答案:

答案 0 :(得分:2)

查看Carbon docs - 尤其是format()方法。

<?php
$time = Carbon::now(); // for current timestamp
// OR:
// use with your own timestamp:
// $time = Carbon::createFromTimestamp($your_timestamp);

echo $time->format('Y_m_d_His'); // your desired format
?>

答案 1 :(得分:0)

尝试此代码并根据您的要求传递日期。 Demo is here

<?php

$date = "01-01-2017 23:23:59";

echo date('Y_m_d_His',strtotime($date));

?>