Answers for "php date format from timestamp"

PHP
2

php mysql timestamp format

date("Y-m-d H:i:s", strtotime($_POST['timestamp']));
Posted by: Guest on March-01-2020
1

mysql timestamp format php

echo date("Y-m-d H:i:s", time());
Posted by: Guest on August-31-2021
0

php timestamp format

date("d.m.Y", strtotime($mysqltimestamp)
Posted by: Guest on December-08-2020
6

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

Code answers related to "php date format from timestamp"

Browse Popular Code Answers by Language