Home >Backend Development >PHP Tutorial >How to Format MySQL Datetime as MM/DD/YY H:M (AM/PM) in PHP?
Converting MySQL Datetime to MM/DD/YY H:M (AM/PM) Format with PHP
In this article, we'll discuss how to convert a datetime column from MySQL to a specific format of "mm/dd/yy H:M (AM/PM)" using PHP.
Converting MySQL Datetime
To convert a MySQL datetime value to a different format, you can use the following steps:
In your case, you want to convert the datetime value to "mm/dd/yy H:M (AM/PM)" format. To do this, you would use the following code:
$phpdate = strtotime($mysqldate); $mysqldate = date('m/d/y h:i A', $phpdate);
Here's a breakdown of what each line of code does:
Normalizing Dates for MySQL Compatibility
Alternatively, if you are looking to normalize date input into MySQL's standard format, you can use the following approach:
$phpdate = strtotime($userdate); $mysqldate = date('Y-m-d H:i:s', $phpdate);
The above is the detailed content of How to Format MySQL Datetime as MM/DD/YY H:M (AM/PM) in PHP?. For more information, please follow other related articles on the PHP Chinese website!