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