猿问

如何用四种不同的条件简化 if else

我怎样才能简化我的这段代码?


慕码人8056858
浏览 103回答 1
1回答

慕的地10843

您可以将结果保存Carbon::*()到变量中并调用其成员。if (empty($startDate)) {    $carbon = Carbon::now();} else {    $carbon = Carbon::createFromFormat(...);}$post->start_at = $carbon;if (empty($endDate)) {    $post->end_at = $carbon->endOfDay(); } else {    $post->end_at = Carbon::createFromFormat(...);}
随时随地看视频慕课网APP
我要回答