php date format from timestamp code example

Example 1: php mysql timestamp format

date("Y-m-d H:i:s", strtotime($_POST['timestamp']));

Example 2: 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";
}

Example 3: php timestamp format

date("d.m.Y", strtotime($mysqltimestamp)

Example 4: php date

$dateTime = new \DateTime();
/**
 * You can get the string by using format
 */
$dateTime->format('Y-m-d H:i:s');

Tags:

Php Example