我知道如何在JavaScript中使用getFullYear();
,getMonth();
和getDate();
:
$year = ($hFdate.getFullYear());
$month = ($hFdate.getMonth());
$day = ($hFdate.getDate());
如何在PHP中使用这些函数?
假设你的$ hFdate是一串日期
$hFdate="2018-09-14";
$year = date('Y',strtotime($hFdate));
$month = date('m',strtotime($hFdate));
$year = date('d',strtotime($hFdate));