如何比较自定义格式的两个时间戳?

I have two timestamps that are formated like this: substr( date( 'YmdHisu' ), 0, 17 )

20120921105240000
20120921115626000

Now, how do I compare them?

I tried to do a simple approach like:

$diff = abs( 20120921105240000 - 20120921115626000 );

But this doesn't give me the needed result, since the time messes it up. All I want to do, is find out, how many minutes( or seconds ) have passed between them.

Thanks in advance.

$date1 = DateTime::createFromFormat('Ymdhisu', '20120921105240000');
$date2 = DateTime::createFromFormat('Ymdhisu', '20120921115626000');
$interval = $date1->diff($date2);
print_r($interval);

/*DateInterval Object
(
    [y] => 0
    [m] => 0
    [d] => 0
    [h] => 1
    [i] => 3
    [s] => 46
    [invert] => 0
    [days] => 0
)*/

$seconds = $date2->getTimestamp()-$date1->getTimestamp();
echo $seconds;

Example

See extra info on the object and method.

For PHP < 5.3:

Method sscanf + mktime:

$date1 = '20120921105240000';
$date2 = '20120921115626000';

function parse_mydate_string($string) {
    if ($a = sscanf($string, '%4s%2s%2s%2s%2s%2s') {
        if (FALSE !== $r = mktime($a[3], $a[4], $a[5], $a[1], $a[2], $a[0])) {
            return $r;
        }
    }
    throw new InvalidArgumentException('Not the expect date string.');
}

$diff    = parse_mydate_string($date1) - parse_mydate_string($date2);    
$absdiff = abs($diff);

or sscanf + vsprintf + strtotime:

$date1 = '20120921105240000';
$date2 = '20120921115626000';

$date1 = vsprintf('%s-%s-%s %s:%s:%s', sscanf($date1, '%4s%2s%2s%2s%2s%2s'));
$date2 = vsprintf('%s-%s-%s %s:%s:%s', sscanf($date2, '%4s%2s%2s%2s%2s%2s'));

$diff = abs(strtotime($date2) - strtotime($date1));

or multiple substr string operations + strtotime:

$date1 = '20120921105240000';
$date2 = '20120921115626000';

$date1 = substr($date1, 0, 4).'-'.substr($date1, 4, 2).'-'.substr($date1, 6, 2).' '.substr($date1, 8, 2).':'.substr($date1, 10, 2).':'.substr($date1, 12, 2);
$date2 = substr($date2, 0, 4).'-'.substr($date2, 4, 2).'-'.substr($date2, 6, 2).' '.substr($date2, 8, 2).':'.substr($date2, 10, 2).':'.substr($date2, 12, 2);

$diff = abs(strtotime($date2) - strtotime($date1));

try with strcmp, of course the better way is to convert it to Datetime object before compare it

You're better off using a standard date/time format to avoid doing all the work from scratch.

Take a look at the discussion here: PHP How to find the time elapsed since a date time?