您好,请告诉我如何在laravel 5.5
中添加日期函数,以及如何为date()
函数设置控制器,以及如何进行路由。
答案 0 :(得分:0)
只需使用date()函数或Carbon
答案 1 :(得分:0)
Laravel中的日期/时间
名为Carbon的软件包可以帮助简化PHP中的日期/时间处理。
用法示例:
use Carbon\Carbon;
// get the current time - 2015-12-19 10:10:54
$current = Carbon::now();
$current = new Carbon();
// get today - 2015-12-19 00:00:00
$today = Carbon::today();
// get yesterday - 2015-12-18 00:00:00
$yesterday = Carbon::yesterday();
// get tomorrow - 2015-12-20 00:00:00
$tomorrow = Carbon::tomorrow();
// parse a specific string - 2016-01-01 00:00:00
$newYear = new Carbon('first day of January 2016');
// set a specific timezone - 2016-01-01 00:00:00
$newYearPST = new Carbon('first day of January 2016', 'America\Pacific');
希望对您有帮助。