Write a PHP script to show the functionality of date and time function.

<?php
echo "Current Date and Time: " . date("Y-m-d H:i:s") . "<br>";
echo "Year: " . date("Y") . "<br>";
echo "Month: " . date("F") . "<br>";
echo "Day: " . date("l") . "<br>";
echo "Current Timestamp: " . time() . "<br>";
echo "Days between: today and ";
echo date("l, d M Y", strtotime("2025-12-31")) . " is ";
echo (strtotime("2025-11-31") - strtotime("2025-01-01")) / 86400 . " days<br>";
?>