标签: php date
嗨,这是我的日期格式"月/ yyyy"请举例说明 此格式的日期我想将日期解析为此格式
答案 0 :(得分:0)
使用strtotime()和date()函数:
http://php.net/manual/en/function.date.php
http://php.net/manual/en/function.strtotime.php
$date = '2018-06-07'; echo date('m/Y', strtotime($date));