'How to change request date in php?
This is the sample request date Wed Feb 02 2022 00:00:00 GMT+0800 (Singapore Standard Time)
I want to convert to this format 2022-02-19.
Solution 1:[1]
$begin_date = 'Wed Feb 02 2022 00:00:00 GMT+0800';
$timestamp = strtotime($begin_date);
$my_date = date('Y-m-d', $timestamp);
echo $my_date;
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Brad Crump |
