get cuurent year in php code example
Example 1: php get current year
// get current year using php
<?php echo date("Y"); ?>
Example 2: how to get the current year in php
Get the current year using PHP:
<?php
echo date("Y");
?>
// get current year using php
<?php echo date("Y"); ?>
Get the current year using PHP:
<?php
echo date("Y");
?>