通用(动态)类型

<?php

//Initialized by any type
$d = "some string";
$d = 3.14;
$d = [235];
$d = new DateTime();

echo $d->format("m/d/y h:i a");