Jump to content

change from yyyy-mm-dd hh:mm:ss to yyyymmddhhmmss format


JonathanAnon

Recommended Posts

[!--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]
Link to comment
Share on other sites

[!--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]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.