php get year now code example
Example 1: get current year php
<?php echo date("Y"); ?>
Example 2: php get current year
// get current year using php
<?php echo date("Y"); ?>
Example 3: php grab year from date
$year = date("y",strtotime($mydate));