Answers for "how to get data of last day, week, month, year using php"

PHP
8

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
-1

check if is the last day of the month php

if(gmdate('t') == gmdate('d')){
    echo 'Last day of the month.';
}
Posted by: Guest on December-10-2020

Code answers related to "how to get data of last day, week, month, year using php"

Browse Popular Code Answers by Language