<?php//Initialized by any type$d = "some string";$d = 3.14;$d = [2, 3, 5];$d = new DateTime();echo $d->format("m/d/y h:i a");