Answers for "how to plus difference between multiple date and show in date format with php"

PHP
3

how to get the difference of multiple dates in php

## CAN GET THE DIFFERENCE DATE BY DAY USING [PHP STRTOTIME FUNCTION]
echo (strtotime(date("2022-03-03")) - strtotime(date("2022-04-03"))) /60/60/24;
Posted by: Guest on April-06-2022

Code answers related to "how to plus difference between multiple date and show in date format with php"

Browse Popular Code Answers by Language