Write a PHP class named “Differ” which accepts two arguments as date and via method named “thediff” displays the difference via echo in years, months and days. Ps. Check DateTime::diff from php.net and the sample below. diff($edate); echo "Difference : " . $interval->y . " years, " . $interval->m." months, ".$interval->d." days "; ?>

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter8: Advanced Method Concepts
Section: Chapter Questions
Problem 3E
icon
Related questions
Question

Q3. Write a PHP class named “Differ” which accepts two arguments as date and via method named “thediff” displays the difference via echo in years, months and days.

Ps. Check DateTime::diff from php.net and the sample below.

<?php

$sdate = new DateTime("1981-11-03");

$edate = new DateTime("2013-09-04");

$interval = $sdate->diff($edate);

echo "Difference : " . $interval->y . " years, " . $interval->m." months, ".$interval->d." days ";

?>

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
void method
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT