Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Calculate months and years from given value in PHP framework CodeIgniter

EMI calculator:

enter image description here

Here I have a total months duration, but I need to find out when is come that month and year in CodeIgniter or PHP format.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
227 views
Welcome To Ask or Share your Answers For Others

1 Answer

CI code update in date diff

 $datetime1 = date_create(date);
 $datetime2 = date_create(date);
 $interval = date_diff($datetime1,$datetime2);
 //echo $interval->format('%R%d days');
 echo $interval->format('%y years %m months %d day basil');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...