Whats wrong with this php Birthday converter?

Blue

New member
I get "Fatal error: Call to undefined method DateTime::diff() in /var/www/BD-Check.php on line 4"

The code is
<?php
$birthdate = new DateTime("5-3-1204");
$now = new DateTime("now");
$difference = $birthdate->diff($now);
echo "Age: " + $difference->format("%y years, %m months and %d days!");
?>

Whats wrong with this?
 
Back
Top