How to COUNT with given month and year only

66 Views Asked by At

I have two string like below.

enter image description here

How do I get difference between them in PHP?

I tried code below

<?php echo date_diff(date_create($experience[$i]->StartWork),date_create($experience[$i]->EndWork))->format("%a days"); ?>
2

There are 2 best solutions below

1
On BEST ANSWER

You can simply do this

 <?php
 $date1 = "may 1994";
 $date2 = "august 1997";
 $diff = strtotime($date2)-strtotime($date1);
 $days = $diff / (60*60*24*1);
 echo "days :". $days;
 ?>

Demo : : https://eval.in/852242

0
On
$date1 = new DateTime("may 1994"); //$experience[$i]->StartWork
$date2 = new DateTime("august 1997"); //$experience[$i]->EndWork
$interval = $date1->diff($date2);


echo "days diff = " . $interval->days ;