gpt4 book ai didi

PHP Carbon 通过格式化日期获取今天的日期

转载 作者:可可西里 更新时间:2023-11-01 12:41:05 25 4
gpt4 key购买 nike

我可以简单地格式化 PHP 日期,例如:

$current_date_time = new DateTime("now");
$user_current_date = $current_date_time->format("Y-m-d");

获取 toDay 日期。如何在没有日期的情况下使用 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 Carbon 通过格式化日期获取今天的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33854482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com