date_create()函数返回新的DateTime对象。
date_create(time,timezone);
时间-指定的日期/时间字符串。
时区-指定时间的时区。
date_create()函数成功返回一个新的DateTime对象,失败则返回FALSE。
以下是一个例子-
<?php $date = date_create("2018-07-25 21:15:00",timezone_open("Europe/Oslo")); echo date_format($date,"Y/m/d H:iP"); ?>
输出结果
以下是输出-
2018/07/25 21:15+02:00