我正在尝试format my current time-stamp
这样的事情:2017_07_15_000000
我正在使用laravel
应用,我可以通过current time-stamp
实现Carbon::now
指导我。感谢
答案 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));
?>