如何转换Google富客卡的日期时间

时间:2017-07-22 09:52:09

标签: php

我需要更改 2017年7月25日时间 2017-25-07T08:00:00 + 08:00

$mysqldate = date( 'Y-m-d H:i:s' );

结果: 2017-25-07T08:00:00+08:00
//this format will be show result

1 个答案:

答案 0 :(得分:0)

您可以将日期更改为每种格式

对于月份日,年份( 2017年7月25日)使用

<?php
$mysqldate = date( 'Y-m-d H:i:s' );
$newdate=date('F d,Y',strtotime($mysqldate)); 
echo $newdate; 
?>

短月名称( 2017年7月25日)使用

<?php
$mysqldate = date( 'Y-m-d H:i:s' );
$newdate=date('m d,Y',strtotime($mysqldate)); 
echo $newdate; 
?>

更多访问http://php.net/manual/en/function.date.php