Answers for "php date letters"

PHP
2

get day from date php

// Prints the day
echo date("l") . "<br>";
Posted by: Guest on July-04-2020
5

php get day of week

date('w'); //gets day of week as number(0=sunday,1=monday...,6=sat)

//note:returns 0 through 6 but as string so to check if monday do this:
if(date('w') == 1){
	echo "its monday baby";
}
Posted by: Guest on July-19-2019
0

show date php by letters

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

php date letters

Date Time Format: https://www.php.net/manual/en/datetime.format.php
Posted by: Guest on October-02-2021

Browse Popular Code Answers by Language