PHP 日期格式中 Y与y
大写Y效果:
$nowtime = time();
$nowtime=date("Y-m-d",$nowtime);
结果: 2015-10-24
小写y效果:
$nowtime = time();
$nowtime=date("Y-m-d",$nowtime);
结果: 15-10-24
大写Y效果:
$nowtime = time();
$nowtime=date("Y-m-d",$nowtime);
结果: 2015-10-24
小写y效果:
$nowtime = time();
$nowtime=date("Y-m-d",$nowtime);
结果: 15-10-24