Answers for "get year in datetime php"

PHP
8

php get current year

// get current year using php
<?php echo date("Y"); ?>
Posted by: Guest on August-03-2020
1

how to get the current year in php

Get the current year using PHP:
  
<?php 
	echo date("Y"); 
?>
Posted by: Guest on October-19-2020

Browse Popular Code Answers by Language