php get today year code example
Example 1: php get current year
$currentYear=date("Y");//2019
Example 2: how to get the current year in php
Get the current year using PHP:
<?php
echo date("Y");
?>
$currentYear=date("Y");//2019
Get the current year using PHP:
<?php
echo date("Y");
?>