laravel模板日期拼接,转换
有时候有们需要输出某年某月某日,但laravel使用的carbon无法直接生成某年某月某日的中文格式日期,于是我们可能用到日期拼接。 {{$d->created_at->year}}年{{$d->created_at-&g...
有时候有们需要输出某年某月某日,但laravel使用的carbon无法直接生成某年某月某日的中文格式日期,于是我们可能用到日期拼接。 {{$d->created_at->year}}年{{$d->created_at-&g...
快速切换前后日期 <?php use Carbon\Carbon; $now = Carbon::now(); echo $now; // 2015-03-26 00:36:47 $today = Carbon::today(); e...