Jump to content

Textual Date to Unix Timestap


cooldude832

Recommended Posts

strtotime will handle some textual dates, unfortunately not that one

 

This works

<?php
$dt = '12 September 2001  05:00 pm';

echo date ('Y-m-d H:i:s', strtotime($dt));    //--> 2001-09-12 17:00:00 
?>

 

sorry heres how i understand cooldude

 

2001-09-12 17:00:00  ->12 September 2001  05:00 pm

 

am i stupid  :D

Link to comment
Share on other sites

I am unsure if this will work, but maybe just removing the "-" would make it work?

 

$time = 'September 12, 2001 - 05:00 pm';
$time = str_replace("- ", "", $time);
$timestamp = strtotime($time);
echo date('Y-m-d h:i:s', $timestamp); 

 

Again I do not know if it will work or not, but give it a try.

Link to comment
Share on other sites

I am unsure if this will work, but maybe just removing the "-" would make it work?

 

$time = 'September 12, 2001 - 05:00 pm';
$time = str_replace("- ", "", $time);
$timestamp = strtotime($time);
echo date('Y-m-d h:i:s', $timestamp); 

 

Again I do not know if it will work or not, but give it a try.

 

Yes, it works

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.