我需要一個php4中的函數來計算提供的日期格式中的日期差異。 例如。用PHP4計算給定格式的日期差異
$date1 = "2011-08-24 10:03:00";
$date2 = "2012-09-24 10:04:31";
$format1 = "Y W" ; //This format should return the difference in Year and week.
$format2 = "M D"; // This format should return the difference in Months and days.
// The format can be any combination of Year,Month,Day,Week,Hour,Minute,Second.
function ConvertDate($data1,$date2,$format)
請讓我知道你是否需要關於此的更多細節。 在此先感謝。
好像我真的需要說這個,但是你真的需要**來先升級你的PHP版本。相當一段時間PHP4尚未得到支持... – ircmaxell 2011-01-22 20:46:45
是的,我同意你的看法,即在php5中有很好的功能,但是我只需要在php4中做這個工作,因爲我必須爲php4提供支持。 – sagar27 2011-01-23 05:44:38