Answers for "get now year data data php"

PHP
8

php get current year

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

get current date from year input php

$date_input = '2003';
$date_output= date( "Y-m-d", mktime( 0, 0, 0, 1, 1, $date_input ));
//date_output = 2003-01-01
Posted by: Guest on July-17-2020

Browse Popular Code Answers by Language