get only year using php from code example
Example 1: php get current year
$currentYear=date("Y");//2019
Example 2: php grab year from date
$year = date("y",strtotime($mydate));
$currentYear=date("Y");//2019
$year = date("y",strtotime($mydate));