I found something interesting:
Please look at the code below:
<?
$timestamp = time();
echo $timestamp . "<br>";
echo strftime( "%c", $timestamp ) . "<br>";
echo strftime( "%c", "20010831120340" );
?>
output when I execute it:
999263814
08/31/01 09:16:54
01/18/38 22:14:07
Question:
1. what output format time() gets? Is it something like yyyymmddhhmmss or something what I got 999263814.
2. Is it 999263814 a valid timestamp. I don't think so but strftime() gave me a valid date. Why?
3. I believe yyyymmddhhmmss is a valid tim