我有一个YDDD
格式为 3212的日期
我想将此日期转换为默认日期字符串,即 PHP 中的 2013-08-01
因为第一个值Y
是年份的唯一字符,所以我决定从当前年份,即 2013 年的 201
以下是我为年份编写的代码
<?php
$date = "3212"
$y = substr($date,0,1); // will take out 3 out of year 3212
$ddd = substr($date,1,3); // will take out 212 out of year 3212
$year = substr(date("Y"),0,3) . $y; //well create year "2013"
?>
现在我如何使用 PHP$year
并将212
其转换为2013-08-01
编辑
仅供参考:我的 PHP 版本是5.3.6