1

我使用 Laravel5 Carbon 功能:

$carbon_today=碳::今天();

在 dd($carbon_today) 之后得到这个:

Carbon {#200 ▼
  +"date": "2015-07-10 00:00:00"
  +"timezone_type": 3
  +"timezone": "UTC"
}

这很好。现在我只需要使用来自 CArbon 的日期来输入变量。尝试使用 foreach,

foreach ($carbon_today as $row) {
    $x= $row['date'];
  dd($x);
}

没有成功

4

2 回答 2

0

你不需要循环它,就像使用它一样

$carbon_today= Carbon::today();
return $carbon_today;

您将在 $carbon_today 变量中获得今天的日期

于 2015-07-10T09:31:12.750 回答
0

尝试

$today = Carbon::today();;
echo $today;

或者

$today = Carbon::today()->toDateTimeString();
echo $today;

阅读更多

于 2015-07-10T09:33:08.483 回答