Bạn có thể sử dụng một cái gì đó như để tách ngày giờ:
$today = date("Y-m-d h:i:sa");
$dateTimeParts = explode(" ", $today);
//first separate date and time:
$date = $dateTimeParts[0];
$time = $dateTimeParts[1];
//separate date's year, month and day
$dateParts = explode("-",$date);
echo "Monthe and day: ".$dateParts[1]. "-" . $dateParts[2]."\n";
echo "Time: ".$time;
Sau đó, bạn có thể lưu trữ toàn bộ giá trị ngày tháng (để tham khảo) và các phần như dateDay, dateMonth và dateTime chẳng hạn. Hoặc bạn có thể mã hóa tất cả các phần và chỉ lưu trữ một cột:
$newDate = [];
array_push($newDate, $dateParts[1]); //month
array_push($newDate, $dateParts[2]); //year
array_push($newDate, $time);
$relevantDateParts = implode(" ", $newDate);