Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check whether the string is a unix timestamp

I have a string and I need to find out whether it is a unix timestamp or not, how can I do that effectively?

I found this thread via Google, but it doesn't come up with a very solid answer, I'm afraid. (And yes, I cribbed the question from the original poster on the aforementioned thread).

like image 978
RHPT Avatar asked Mar 26 '10 16:03

RHPT


People also ask

How does Unix validate time?

It is Thu Jan 01 00:00:01 +0000 1970 . In fact, any valid integer (even negative) is a valid UNIX timestamp. 1000 ms after epoch is still a valid timestamp. You should define a range of sensible timestamps.

What is UNIX timestamp string?

The Unix timestamp is the number of seconds calculated since January 1, 1970.


1 Answers

Ok, after fiddling with this for some time, I withdraw the solution with date('U') and suggest to use this one instead:

function isValidTimeStamp($timestamp) {     return ((string) (int) $timestamp === $timestamp)          && ($timestamp <= PHP_INT_MAX)         && ($timestamp >= ~PHP_INT_MAX); } 

This check will only return true if the given $timestamp is a string and consists solely of digits and an optional minus character. The number also has to be within the bit range of an integer (EDIT: actually unneeded as shown here).

var_dump( isValidTimeStamp(1)             ); // false var_dump( isValidTimeStamp('1')           ); // TRUE var_dump( isValidTimeStamp('1.0')         ); // false var_dump( isValidTimeStamp('1.1')         ); // false var_dump( isValidTimeStamp('0xFF')        ); // false var_dump( isValidTimeStamp('0123')        ); // false var_dump( isValidTimeStamp('01090')       ); // false var_dump( isValidTimeStamp('-1000000')    ); // TRUE var_dump( isValidTimeStamp('+1000000')    ); // false var_dump( isValidTimeStamp('2147483648')  ); // false var_dump( isValidTimeStamp('-2147483649') ); // false 

The check for PHP_INT_MAX is to ensure that your string can be used correctly by date and the likes, e.g. it ensures this doesn't happen*:

echo date('Y-m-d', '2147483648');  // 1901-12-13 echo date('Y-m-d', '-2147483649'); // 2038-01-19 

On 64bit systems the integer is of course larger than that and the function will no longer return false for "2147483648" and "-2147483649" but for the corresponding larger numbers.


(*) Note: I'm not 100% sure, the bit range corresponds with what date can use though

like image 160
Gordon Avatar answered Oct 02 '22 07:10

Gordon