Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
雄弁なデータベースへのプッシュと同じ形式で、現在の時刻のタイムスタンプを取得したいと考えています。
のように: yyyy-mm-dd xx.xx.xx
どうすればいいですか?
Laravel はCarbonを DateTime クラスとして使用するため、次のことができます。
$dt = Model::find(1)->created_at; echo $dt->toDateTimeString();
必要な方法で取得します。