get current year php code example
Example 1: get current year php
<?php echo date("Y"); ?>
Example 2: php get current year
$currentYear=date("Y");
Example 3: php get current year
// get current year using php
<?php echo date("Y"); ?>
Example 4: get current year php
// current year
<?php echo date("Y"); ?>
// current month
<?php echo date("m"); ?>
// current day
<?php echo date("d"); ?>
Example 5: php grab year from date
$year = date("y",strtotime($mydate));
Example 6: how to get the current year in php
Get the current year using PHP:
<?php
echo date("Y");
?>