我想分解一个日期,但想将默认索引 0、1、2 分别重命名为年、月、日,我试过但我无法弄清楚。这就是现在正在做的事情。
$explode_date = explode("-", "2012-09-28");
echo $explode_date[0]; //Output is 2012
echo $explode_date[1]; //Output is 09
echo $explode_date[2]; //Output is 28
我想要的是
echo $explode_date['year']; //Output is 2012
echo $explode_date['month']; //Output is 09
echo $explode_date['day']; //Output is 28
谢谢..