|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-06-08 20:18 UTC] satit at thaijoin dot com
I use function strtotime() for count days and have return value -1 in year 1939 to 1969 on php 4 for windows and php 3.0.16 to and php 3.0.16 have error illegal operation in year 1938 and 2038. Php for linux have return value complete. Have any idea for function count days? PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 18:00:01 2025 UTC |
This is my script for test function strtotime <? for ($year=1900;$year <2010;$year++){ $fdate2= "20 jun ".$year; $date2=strtotime($fdate2); echo "$year ,$date2<br>"; } $day = date('d M Y'); echo "$day<br>"; $fdate1= strtotime("9 jun 1959"); $fdate2= strtotime($day); $day = $fdate2-$fdate1; $days= round($day/86400); echo "$fdate1<br>"; echo "$fdate2<br>"; echo "days = ".$days."<br>"; echo "years = ".round($days/365); ?>