year in php 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 grab year from date
$year = date("y",strtotime($mydate));
<?php echo date("Y"); ?>
$currentYear=date("Y");//2019
$year = date("y",strtotime($mydate));