Answers for "full month name php"

PHP
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

full month name php

echo date("F", strtotime('2016-05-17 16:41:51'));
Posted by: Guest on August-30-2021

Code answers related to "full month name php"

Browse Popular Code Answers by Language