如何在laravel 5.3中显示当前日期的名称?

时间:2017-05-25 05:24:18

标签: php

我想在laravel 5.3中打印当前日期的名称。我可以通过以下方式获取当前日期:

     <?php use Carbon\Carbon;
$carbon=Carbon::now();
              echo $carbon->day;?>

上面的代码打印25但我希望它打印星期四。我该怎么做?

3 个答案:

答案 0 :(得分:0)

试试这个

<?php use Carbon\Carbon;
$carbon=Carbon::now();
echo $carbon->format('l');?>

答案 1 :(得分:0)

在Laravel 5.5之后,您可以使用now()函数获取当前日期和时间。

在刀片文件中,您可以这样写以打印当天的名称。

{{  now()->format('l') }}

enter image description here

答案 2 :(得分:0)

[h264 @ 0000019ab6699b40] non-existing PPS 0 referenced [h264 @ 0000019ab6699b40] decode_slice_header error [h264 @ 0000019ab6699b40] no frame! [h264 @ 0000019ab8394b00] non-existing PPS 0 referenced [h264 @ 0000019ab66ab040] non-existing PPS 0 referenced [h264 @ 0000019ab8394b00] decode_slice_header error [h264 @ 0000019ab8394b00] no frame! [h264 @ 0000019ab8394b00] error while decoding MB 31 40, bytestream -10 有效,但我建议使用

Carbon::now()->format('l')

看到这将根据当前设置的语言环境转换日期字符串,以防您的应用支持国际化。