hi, anyone know the mktime time range? from the php manual, it says:
on systems where time_t is a 32bit signed integer, as most common today, the valid range for year is somewhere between 1901 and 2038
I have a RH9 box (Linux poseidon 2.4.20-6smp #1 SMP Thu Feb 27 09:59:40 EST 2003 i686 i686 i386 GNU/Linux). while when I do the test, it seems always between 1970-2038
<?PHP
echo mktime(0,0,0, 1, 1, 1968);
?>
it output "-14462". Any help is appreciated