“PHP Day of Week Nama Lengkap” Kode Jawaban

php mendapatkan hari dalam seminggu

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";
}
Grepper

PHP Day of Week Nama Lengkap

date('l'); //Returns full day name of the week: Thursday
date('D'); //Returns abbreviated day name of the week: Thu
Armandres

Jawaban yang mirip dengan “PHP Day of Week Nama Lengkap”

Pertanyaan yang mirip dengan “PHP Day of Week Nama Lengkap”

Lebih banyak jawaban terkait untuk “PHP Day of Week Nama Lengkap” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya