Answers for "day name from date in php"

PHP
1

php full day name

date("l",time()) // LOWER CASE L
Posted by: Guest on March-30-2020
0

name of today php

$datetime = DateTime::createFromFormat('YmdHi', '201308131830');
echo $datetime->format('D');

// or 

$date = new \DateTime();
echo $date->format("D");
Posted by: Guest on September-18-2020
0

show date php

check here link:   http://www.eltcalendar.com/stuff/datemysqlphp.html
Posted by: Guest on August-29-2020

Browse Popular Code Answers by Language