JonathanAnon Posted March 27, 2006 Share Posted March 27, 2006 Hi, i pull a timestamp from my mysql database and it is formatted as yyyy-mm-dd hh:mm:ss automatically. How can I convert this to yyyymmddhhmmss easily?regards, J Quote Link to comment https://forums.phpfreaks.com/topic/5946-change-from-yyyy-mm-dd-hhmmss-to-yyyymmddhhmmss-format/ Share on other sites More sharing options...
redbullmarky Posted March 27, 2006 Share Posted March 27, 2006 [!--quoteo(post=358971:date=Mar 27 2006, 06:46 PM:name=JonathanAnon)--][div class=\'quotetop\']QUOTE(JonathanAnon @ Mar 27 2006, 06:46 PM) [snapback]358971[/snapback][/div][div class=\'quotemain\'][!--quotec--]Hi, i pull a timestamp from my mysql database and it is formatted as yyyy-mm-dd hh:mm:ss automatically. How can I convert this to yyyymmddhhmmss easily?regards, J[/quote]you mean just without the - and : ??if so, this'll do it:[code]$date = "2006-03-27 18:54:31";$date = preg_replace('/[\-\:]/', '', $date);[/code] Quote Link to comment https://forums.phpfreaks.com/topic/5946-change-from-yyyy-mm-dd-hhmmss-to-yyyymmddhhmmss-format/#findComment-21279 Share on other sites More sharing options...
JonathanAnon Posted March 27, 2006 Author Share Posted March 27, 2006 Perfect thanks very much. That was wrecking my head. Quote Link to comment https://forums.phpfreaks.com/topic/5946-change-from-yyyy-mm-dd-hhmmss-to-yyyymmddhhmmss-format/#findComment-21281 Share on other sites More sharing options...
obsidian Posted March 27, 2006 Share Posted March 27, 2006 [!--quoteo(post=358977:date=Mar 27 2006, 01:06 PM:name=JonathanAnon)--][div class=\'quotetop\']QUOTE(JonathanAnon @ Mar 27 2006, 01:06 PM) [snapback]358977[/snapback][/div][div class=\'quotemain\'][!--quotec--]Perfect thanks very much. That was wrecking my head.[/quote]also, if you cared to actually calculate the new format (which i DO NOT recommend in this case because of additional overhead), study the following:[code]$date = "2006-03-27 18:54:31";echo date('YmdHis', strtotime($date));[/code] Quote Link to comment https://forums.phpfreaks.com/topic/5946-change-from-yyyy-mm-dd-hhmmss-to-yyyymmddhhmmss-format/#findComment-21288 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.