PHP : Convert string to timestamp or datestamp before storing to database(MariaDB/MySQL)
Problem :
Need to convert a date string in PHP before storing the date into database(MariaDB/MySQL). The field in table is of type timestamp
and the format is 0000-00-00 00:00:00
. How to do that?
Solution :
Use strtotime()
function to convert the string to timestamp in PHP. Then adjust the timestamp to 0000-00-00 00:00:00
format with the date()
function.
For example :
$str := "12-09-2015";
$date_str = strtotime($str);
$store_to_sql_date = date( 'Y-m-d H:i:s', $datestr );
See also : PHP : Convert(cast) string to bigInt
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.6k Golang : Totalize or add-up an array or slice example
+12k Golang : Convert decimal number(integer) to IPv4 address
+24k Golang : Call function from another package
+16.8k Golang : Get own process identifier
+7.5k Golang : Example of custom handler for Gorilla's Path usage.
+10.1k Golang : Channels and buffered channels examples
+14.1k Golang : Compress and decompress file with compress/flate example
+10k Golang : Get escape characters \u form from unicode characters
+10k Golang : Sort and reverse sort a slice of integers
+13.6k Golang : Read XML elements data with xml.CharData example
+9.8k Golang : Find correlation coefficient example
+12.5k Golang : Search and extract certain XML data example