Date/Time 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

date_create

(PHP 5 >= 5.2.0)

date_createReturns new DateTime object

说明

DateTime date_create ([ string $time="now" [, DateTimeZone $timezone=NULL ]] )

参数

time

String in a format accepted by strtotime(), defaults to "now".

timezone

Time zone of the time.

返回值

Returns DateTime object on success or FALSE on failure.

范例

Example #1 date_create() example

<?php
date_default_timezone_set
('Europe/London');

$datetime date_create('2008-08-03 14:52:10');
echo 
date_format($datetimeDATE_ATOM);
?>

上例将输出:

2008-08-03T14:52:10+01:00


Date/Time 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程