Since date_parse_from_format( ) is available only in PHP 5.3, I need to write a function that mimics its behaviour in PHP 5.2.

Is it possible to write this function for PHP 5.2 and make it work exactly the same way that it does in PHP 5.3?

Example:

For this input:

<?php
$date = "6.1.2009 13:00+01:00";
print_r(date_parse_from_format("j.n.Y H:iP", $date));
?>

I need this output:

Array
(
    [year] => 2009
    [month] => 1
    [day] => 6
    [hour] => 13
    [minute] => 0
    [second] => 0
    [fraction] => 
    [warning_count] => 0
    [warnings] => Array
        (
        )

    [error_count] => 0
    [errors] => Array
        (
        )

    [is_localtime] => 1
    [zone_type] => 1
    [zone] => -60
    [is_dst] => 
)
link|improve this question
Does strtotime() not work? – Michael Jul 12 '11 at 18:42
feedback

2 Answers

up vote 2 down vote accepted
<?php
function date_parse_from_format($format, $date) {
  $dMask = array(
    'H'=>'hour',
    'i'=>'minute',
    's'=>'second',
    'y'=>'year',
    'm'=>'month',
    'd'=>'day'
  );
  $format = preg_split('//', $format, -1, PREG_SPLIT_NO_EMPTY); 
  $date = preg_split('//', $date, -1, PREG_SPLIT_NO_EMPTY); 
  foreach ($date as $k => $v) {
    if ($dMask[$format[$k]]) $dt[$dMask[$format[$k]]] .= $v;
  }
  return $dt;
}
?>

Example 1:

<?php
    print_r(date_parse_from_format('mmddyyyy','03232011');
?>

Output 1:

Array ( [month] => 03 [day] => 23 [year] => 2011 )

Example 2:

 <?php
    print_r(date_parse_from_format('yyyy.mm.dd HH:ii:ss','2011.03.23 12:03:00'));
 ?>

Output 2:

Array ( [year] => 2011 [month] => 03 [day] => 23 [hour] => 12 [minute] => 03 [second] => 00 )

link|improve this answer
Thank you for your help, but the output needs to be exactly the same from original php 5.3 function. – Acacio Jul 12 '11 at 17:41
Exactly? Why? Impossible. Maybe you should write a very nice letter to the PHP family asking for them to backport it to 5.2. Oh no wait 5.2 isn't actively supported anymore =p – Rudie Jul 12 '11 at 21:55
feedback

If you want it to be exactly like PHP 5.3 function, you're gonna need a lot of code. I'd start with something like this:

$format = '\Y: Y-m-d';
var_dump($format);

$date = date($format);
var_dump($date);

// reverse engineer date formats
$keys = array(
    'Y' => array('year', '\d{4}'),
    'm' => array('month', '\d{2}'),
    'd' => array('day', '\d{2}'),
    'j' => array('day', '\d{1,2}'),
    'n' => array('month', '\d{1,2}'),
    'M' => array('month', '[A-Z][a-z]{2}'),
    'F' => array('month', '[A-Z][a-z]{2,8}'),
    'D' => array('day', '[A-Z][a-z]{2}'),
    // etc etc etc
);

// convert format string to regex
$regex = '';
$chars = str_split($format);
foreach ( $chars AS $n => $char ) {
    $lastChar = isset($chars[$n-1]) ? $chars[$n-1] : '';
    $skipCurrent = '\\' == $lastChar;
    if ( !$skipCurrent && isset($keys[$char]) ) {
        $regex .= '(?P<'.$keys[$char][0].'>'.$keys[$char][1].')';
    }
    else if ( '\\' == $char ) {
        $regex .= $char;
    }
    else {
        $regex .= preg_quote($char);
    }
}

var_dump($regex);

// now try to match it
if ( preg_match('#^'.$regex.'$#', $date, $matches) ) {
    foreach ( $matches AS $k => $v ) if ( is_int($k) ) unset($matches[$k]);
    print_r($matches);
}
else {
    echo 'invalid date "'.$date.'" for format "'.$format.'"'."\n";
}

Result:

string(9) "\Y: Y-m-d"
string(13) "Y: 2011-07-12"
string(51) "\Y\: (?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})"
Array
(
    [year] => 2011
    [month] => 07
    [day] => 12
)

Incomplete and imperfect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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