标签: php datetime explode
我的sql中有一个日期,格式如下:
20150426
我想将其转换为26/05/2015格式为变量。
哪种方法最好?
我能爆炸吗?
答案 0 :(得分:3)
以这种方式做到----
<?php $nextBse = date('d/m/Y',strtotime(20150426)); echo $nextBse; ?>
产出: - 2015年4月26日