Fehlermeldung lesen ist schon schwer!
Guck dir doch einfach mal den 1. Parameter an und verzell uns, was drin steht.
Guck dir doch einfach mal den 1. Parameter an und verzell uns, was drin steht.
function getmonths($date1,$date2) //date1 and date2 as Timestamp!
{
$year1=(int)date('Y',$date1);
$year2=(int)date('Y',$date2);
$month1=(int)date('n',$date1);
$month2=(int)date('n',$date2);
if ($year1==$year2)
{
$result=($month1-$month2);
}
else
{
$years=($year1-$year2);
if ($years=1)
{
$result=(12-$month2+$month1);
}
else
{
$years-=1;
$result=(($years*12)+(12-$month2+$month1));
}
}
return $result;
Kommentar