Answers for "php year today"

PHP
8

php get current year

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

php grab year from date

$year = date("y",strtotime($mydate));
Posted by: Guest on June-11-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