PHP date_interval_format() 函数
PHP 教程
· 2019-01-23 20:43:36
计算两个日期间的间隔,然后格式化时间间隔:
实例
<?php
$date1=date_create("2013-01-01");
$date2=date_create("2013-02-10");
$diff=date_diff($date1,$date2);
// %a 输出两个日期间隔的总天数
echo $diff->format("日期间隔的总天数为: %a 天。");
?>
$date1=date_create("2013-01-01");
$date2=date_create("2013-02-10");
$diff=date_diff($date1,$date2);
// %a 输出两个日期间隔的总天数
echo $diff->format("日期间隔的总天数为: %a 天。");
?>
定义和用法
date_interval_format() 函数是 DateInterval::format() 的别名。
DateInterval::format() 函数用于格式化时间间隔。
语法
DateInterval::format(format);
参数 | 描述 |
---|---|
format | 必需。规定格式。format 参数字符串可以使用下列的字符:
注意:每个格式字符串必须带一个 % 符作为前缀! |
技术细节
返回值: | 返回格式化的时间间隔。 |
---|---|
PHP 版本: | 5.3+ |
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Programming From The Ground Up
Jonathan Bartlett / Bartlett Publishing / 2004-07-31 / USD 34.95
Programming from the Ground Up is an introduction to programming using assembly language on the Linux platform for x86 machines. It is a great book for novices who are just learning to program as wel......一起来看看 《Programming From The Ground Up》 这本书的介绍吧!