我只需要格式化PHP日期,例如:
$current_date_time = new DateTime("now");
$user_current_date = $current_date_time->format("Y-m-d");
到达日期.如何在没有时间的情况下使用Carbon做这个动作?
$now = Carbon::now();
echo $now; // 2015-11-11 12:38:36
解决方法:
你读过documentation吗?有很多例子如何做到这一点
$dt = Carbon::now()
var_dump($dt->toDateTimeString() == $dt); // bool(true) => uses __toString()
echo $dt->toDateString(); // 1975-12-25
echo $dt->toFormattedDateString(); // Dec 25, 1975
echo $dt->toTimeString(); // 14:15:16
echo $dt->toDateTimeString(); // 1975-12-25 14:15:16
echo $dt->toDayDateTimeString(); // Thu, Dec 25, 1975 2:15 PM
// ... of course format() is still available
echo $dt->format('l jS \\of F Y h:i:s A'); // Thursday 25th of December 1975 02:15:16 PM
标签:php,php-carbon
来源: https://codeday.me/bug/20190714/1458769.html