PHP Date/Time 参考手册实例 返回一个新的 DateTime 对象,然后格式化日期: <?php $date=date_create("2013-03-15");echo date_format($date,"Y/m/d H:i:s");?> 运行实例 » 定义和用法date_format() 函数返回一个根据指定格式进行格式化的日期。
要使用PHP的date_format函数来格式化日期,首先需要提供一个日期对象,然后指定所需的格式,例如: $date = new DateTime('2022-12-31'); $formatted_date = date_format($date, 'Y-m-d'); echo $formatted_date; // 输出:2022-12-31 复制代码 在上面的示例中,我们首先创建了一个DateTime对象,然后使用date_...
3、 date($format)用法 比如: echo date(‘Y-m-d’) ,输出结果:2016-05-22 echo date(‘Y-m-d H:i:s’),输出结果:2016-05-22 23:00:00 echo date(‘Y-m-d’, time()),输出结果:2016-05-22 23:00:00(结果同上,只是多了一个时间戳参数)(时间戳转换为日期格式的方法) echo date(‘Y’)...
3、 date($format)用法 比如: echo date(‘Y-m-d’) ,输出结果:2012-03-22 echo date(‘Y-m-d H:i:s’),输出结果:2012-03-22 23:00:00 echo date(‘Y-m-d’, time()),输出结果:2012-03-22 23:00:00(结果同上,只是多了一个时间戳参数)(时间戳转换为日期格式的方法) echo date(‘Y’)...
date(format,timestamp) format 规定时间戳的格式(必须) timestamp 规定时间戳,默认是当前时间和日期(可选) 2|0用途 2|1获得简单的日期 <?phpheader("content-type:text/html;charset=utf-8");echo"今天是 ".date("Y/m/d") ."";echo"今天是 ".date("Y.m.d") ."";echo"今天是 ".date("Y-...
echo date(“n”); // 输出:2 4. 输出月份的英文简写: echo date(“M”); // 输出:Feb 5. 输出星期的数字表示,星期天为0,星期一为1,以此类推: echo date(“w”); // 输出:2 需要注意的是,date函数的format参数可以使用多种字符来表示不同的日期和时间格式。下面是一些常用的format字符: ...
语法:string date( string format [, int timestamp] ),其中参数 format 表示时间格式化的方式;可选参数timestamp表示时间戳,默认为time(),即当前时间。 时间格式化的方式 例子二 <?php $date=date_create("2016-09-25"); echo date_format($date,"Y/m/d H:i:s"); ...
echo date_format($rs['time'],'%Y年%m月%d日%H时%M分%S秒');?> function date_format($string, $format="%b %e, %Y", $default_date=null){ if (substr(php_OS,0,3) == 'WIN') { _win_from = array ('%e', '%T', '%D');_win_to = array ('%#d', '%H:%M...
$dateTime=date_create( $dateSrc);; # Now set a new date using date_format(); date_format( $dateTime, 2000, 12, 12); echo "New Formatted date is ". $dateTime->format("Y-m-d\TH:i:s\Z"); echo ""; # Using second function. $dateTime...
Return a new DateTime object, and then format the date:<?php $date=date_create("2013-03-15");echo date_format($date,"Y/m/d H:i:s");?> Try it Yourself » Definition and UsageThe date_format() function returns a date formatted according to the specified format....