PHP date_format() 函数
PHP 教程
· 2019-01-23 19:57:48
实例
返回一个新的 DateTime 对象,然后格式化日期:
<?php
$date=date_create("2013-03-15");
echo date_format($date,"Y/m/d H:i:s");
?>
$date=date_create("2013-03-15");
echo date_format($date,"Y/m/d H:i:s");
?>
定义和用法
date_format() 函数返回一个根据指定格式进行格式化的日期。
语法
date_format(object,format);
参数 | 描述 |
---|---|
object | 必需。规定一个由 date_create() 返回的 DateTime 对象。 |
format | 必需。规定日期格式。 |
技术细节
返回值: | 返回格式化的日期字符串。如果失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.2+ |
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
GWT in Action
Robert Hanson、Adam Tacy / Manning Publications / 2007-06-05 / USD 49.99
This book will show Java developers how to use the Google Web Toolkit (GWT) to rapidly create rich web-based applications using their existing skills. It will cover the full development cycle, from ......一起来看看 《GWT in Action》 这本书的介绍吧!