I have the LatestValuesDate 'Apr','May','Jun'
.I have array with no of days for the months.
If LatestValuesDate
is may I want to show the number of days =61
. if LatestValuesDate
is Jul
I want to show the number of days =91
but now I got only 31
$month_days=array("Apr"=>"30", "May"=>"31", "Jun"=>"30", "Jul"=>"31", "Aug"=>"31", "Sep"=>"30", "Oct"=>"31", "Nov"=>"30", "Dec"=>"31", "Jan"=>"31", "Feb"=>"28", "Mar"=>"30");
$val='May';
$days1=0;
$noOfDays=$days1+$month_days[$val];
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…