Answers for "how to get the year in php"

PHP
8

php get current year

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

year in php

date('Y')
Posted by: Guest on September-13-2021
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