Answers for "How can I find the past and current year in using PHP?"

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

Code answers related to "How can I find the past and current year in using PHP?"

Browse Popular Code Answers by Language