I have been developing on php 5.3.

however our production server is 5.2.6.

I have been using

$schedule = '31/03/2011 01:22 pm'; // example input
if (empty($schedule))
    $schedule = date('Y-m-d H:i:s');
else {
    $schedule = dateTime::createFromFormat('d/m/Y h:i a', $schedule);
    $schedule = $schedule->format('Y-m-d H:i:s');
}
echo $schedule;

However that function is not available in 5.2

What is the easiest way to get around this (no chance of a php upgrade).

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Because strtotime does poorly when confronted with D/M/Y and date_create_from_format isn't available, strptime may be your only hope here. It does some pretty oldschool things, like deal with years as if they are the number of years since 1900 and deal with months as if January was month zero. Here's some horrible example code that uses sprintf to reassemble the date into something DateTime understands:

$schedule = '31/03/2011 01:22 pm';
// %Y, %m and %d correspond to date()'s Y m and d.
// %I corresponds to H, %M to i and %p to a
$ugly = strptime($schedule, '%d/%m/%Y %I:%M %p');
$ymd = sprintf(
    // This is a format string that takes six total decimal
    // arguments, then left-pads them with zeros to either
    // 4 or 2 characters, as needed
    '%04d-%02d-%02d %02d:%02d:%02d',
    $ugly['tm_year'] + 1900,  // This will be "111", so we need to add 1900.
    $ugly['tm_mon'] + 1,      // This will be the month minus one, so we add one.
    $ugly['tm_mday'], 
    $ugly['tm_hour'], 
    $ugly['tm_min'], 
    $ugly['tm_sec']
);
echo $ymd;
$new_schedule = new DateTime($ymd);
echo $new_schedule->format('Y-m-d H:i:s');

If it works, you should see the same, correct date and time printed twice.

link|improve this answer
out of curiosity, whats the difference between your code and else { $schedule = str_replace('/', '-', $schedule); $schedule = date('Y-m-d H:i:s', strtotime($schedule)); } – Hailwood Mar 22 '11 at 23:50
This is probably the best solution unless you can have more control over the input and ensure you are using Supported Date and Time Formats. – Jacob Mar 22 '11 at 23:54
strtotime does not understand D/M/Y. It only can handle Y/M/D and M/D/Y. If you try to pass a D/M/Y to it, it will fail. strtotime('20/02/2003') returns false. You'd have to pass '20.03.2003' (note the dots!) to get that format recognized, which isn't the date format you expect. – Charles Mar 22 '11 at 23:55
I understand that strtotime does not like / but if you convert / to - then it works perfectly. I am finding it hard to read your code above, mind commenting it a bit to explain what each function is doing? – Hailwood Mar 23 '11 at 0:02
It looks like D-M-Y is supported, but your example date includes only slashes. Further, while D-M-Y is supported, M-D-Y is not -- replacing slashes on a M/D/Y would result in an unparsable date. I'll edit my code with more comments in a moment. – Charles Mar 23 '11 at 0:10
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.