Answers for "php get currenct year"

PHP
3

get current year php

// current year
<?php echo date("Y"); ?>
// current month
<?php echo date("m"); ?>
// current day
<?php echo date("d"); ?>
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language