`
ludatong110
  • 浏览: 38597 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

date function of PHP

    博客分类:
  • PHP
阅读更多

date

(PHP 4, PHP 5)

dateFormat a local time/date

初始化局部时间

 

Description

string date ( string $format [, int $timestamp = time() ] )

Returns a string formatted according to the given format string using the given integer timestamp or the current time if no timestamp is given. In other words, timestamp is optional and defaults to the value of time() .

返回指定的integer类型时间戳或者当前时间戳的格式化String,格式由format指定。换句话说,时间戳的默认值和time()函数一样。

 

format

The format of the outputted date string . See the formatting options below. There are also several predefined date constants that may be used instead, so for example DATE_RSS contains the format string 'D, d M Y H:i:s' .

根据格式输出时间String。可以看下列的格式符。当然,也有一些常量代表一些常用时间格式。比如说DATE_RSS就包含格式String ‘D, d M Y H:i:s’ 。

 

day

 

d   Day of the month, 2 digits with leading zeros   01 to 31   一个月中天数,两位,不足补零。

D   A textual representation of a day, three letters   Mon through Sun   以三个字符表示星期几。

j    Day of the month without leading zeros    一个月中天数,不补零。

l(lowercase 'L')    A full textual representation of the day of the week    Sunday through Saturday  完整表示星期几。

N   ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0)   1 (for Monday) through 7 (for Sunday)   以数字表示星期几(ISO-8601)

S   English ordinal suffix for the day of the month, 2 characters    st , nd , rd or th . Works well with j   以英语的序列数表示一个月中天数,两位,和j一样。

w   Numeric representation of the day of the week    0 (for Sunday) through 6 (for Saturday)   以数字表示星期几(从0开始)。

z    The day of the year (starting from 0)     0 through 365   一年中天数(从0开始)。

 

week

 

W    ISO-8601 week number of year, weeks starting on Monday (added in PHP 4.1.0)   Example: 42 (the 42nd week in the year)    以数字表示一年中第几个星期,一个星期以星期一开始。

 

month

 

F     A full textual representation of a month, such as January or March   January through December    一年中月份的完全表示。

m    Numeric representation of a month, with leading zeros      01 through 12   一年中月份用数字两位表示,不足补零。

M    A short textual representation of a month, three letters    Jan through Dec     一年中月份的简略表示,三位。

n    Numeric representation of a month, without leading zeros   1 through 12    一年中月份用数字表示,不补零。

t     Number of days in the given month    28 through 31    给定的月份的天数。

 

year

 

F    Whether it's a leap year     1 if it is a leap year, 0 otherwise.     闰年返回1,否则返回0。

o    ISO-8601 year number. This has the same value as Y , except that if the ISO week number (W ) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0)    Examples: 1999 or 2003    和Y功能相同,如果W的值在前一年和下一年,就用这一年的年份代替。

Y    A full numeric representation of a year, 4 digits     Examples: 1999 or 2003    以四位数字表示年份。

y    A two digit representation of a year     Examples: 99 or 03    以两位数字表示年份。

 

time

 

a    Lowercase Ante meridiem and Post meridiem   am or pm    小写的am和pm表示上午和中午。

A    Uppercase Ante meridiem and Post meridiem   AM or PM     大写的AM和PM表示上午和中午。

B    Swatch Internet time     000 through 999    Swatch网络时间

g    12-hour format of an hour without leading zeros     1 through 12     12小时制表示时间,不补零。

G    24-hour format of an hour without leading zeros    0 through 23      24小时制表示时间,不补零。

h    12-hour format of an hour with leading zeros         01 through 12     12小时制表示时间,补零。、

H    24-hour format of an hour with leading zeros    0 through 23      24小时制表示时间,补零。

i     Minutes with leading zeros      00 to 59     表示小时中分钟数,补零。

s    Seconds, with leading zeros    00 through 59    表示秒数,补零。

u    Microseconds (added in PHP 5.2.2)     Example: 654321     微秒表示。

 

timezone

 

e    Timezone identifier (added in PHP 5.1.0)     Examples: UTC , GMT , Atlantic/Azores    时区标识符。

I(capital i)    Whether or not the date is in daylight saving time     是否为夏令时,是返回1,不是0。

O    Difference to Greenwich time (GMT) in hours    Example: +0200   与GMT时区相差几个小时。

P     Difference to Greenwich time (GMT) with colon between hours and minutes (added in PHP 5.1.3)     Example: +02:00    与GMT时区相差多少小时分钟。冒号分隔小时和分钟。

T     Timezone abbreviation     Examples: EST , MDT ...     时区的缩写。

Z     Timezone offset in seconds. The offset for timezones west of UTC is always negative, and for those east of UTC is always positive.      -43200 through 50400   时区偏移的秒数,UTC以西为负数,以东为正数。

 

full date/time

c     ISO 8601 date (added in PHP 5)     2004-02-12T15:19:21+00:00
r      » RFC 2822 formatted date      Example: Thu, 21 Dec 2000 16:01:07 +0200

U     Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)      See also time()     Unix纪元(1970年)。

分享到:
评论

相关推荐

    php报时区错误,按照网上说的改时间date.timezone根本不管用!怎么解决,看我的.zip

    php报时区错误,按照网上说的改时间date.timezone根本不管用!怎么解决,看我的.zip Warning: phpinfo() [function.phpinfo]: It is not safe to rely on the system's timezone settings. You are *required* to use ...

    Functional PHP

    You will learn how to make use of modularity of function while writing functional PHP code. Through the tips and best practices in this book, you’ll be able to do more with less code and reduce ...

    用php获取本周,上周,本月,上月,本季度日期的代码

    $startOfWeek = date('Y-m-d', strtotime('monday this week')); $endOfWeek = date('Y-m-d', strtotime('sunday this week')); return array($startOfWeek, $endOfWeek); } ``` 2. **获取上周日期范围**: ...

    Laravel开发-laravel-scope-date

    这里,我们使用Carbon的`startOfWeek`和`endOfWeek`方法获取本周的开始和结束日期,然后调用`dateRange``Scope`,最后获取这个日期范围内的所有记录。 Carbon库是Laravel默认内置的,它扩展了PHP的DateTime类,提供...

    Laravel开发-date

    $start = Carbon::now()->startOfWeek(); $end = Carbon::now()->endOfWeek(); return [$start, $end]; } $weekRange = getWeekRange(); // 获取本周范围 ``` 此外,库可能还包含了一些用于日期验证的规则,...

    php.ini-development

    You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character ; encoding will be transparently converted to the ...

    php帮助文档,php。chm,php必备的中文手册

    Function Handling Functions XLV. Gettext XLVI. GMP Functions XLVII. gnupg 函数 XLVIII. Net_Gopher XLIX. HTTP 函数 L. Hyperwave Functions LI. Hyperwave API Functions LII. IBM DB2, Cloudscape and ...

    关于php程序报date()警告的处理(date_default_timezone_set)

    You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely ...

    php英文开发文档

    •Function Reference•Affecting PHP's Behaviour •Audio Formats Manipulation •Authentication Services •Command Line Specific Extensions •Compression and Archive Extensions •Credit Card Processing ...

    php函数大全-包含php众多函数

    $result = array_reduce($array, function ($carry, $item) { return $carry + $item; }, 0); echo $result; ``` ##### 21. **array_reverse($array, $preserve_keys)** 反转数组中的元素顺序。 **示例:** ```...

    PHP手册2007整合中文版

    PHP,即“PHP: Hypertext Preprocessor”,是一种被广泛使用的开放源代码多用途脚本语言,尤其适用...76. Specialities of this Edition 77. Integrating the PHP Manual 78. Skin development 79. CHM Edition Credits

    PHP基础教程 是一个比较有价值的PHP新手教程!

    function do_foo () { echo "Doing foo."; } } $bar = new foo; $bar->do_foo(); 改变变量类型 在PHP手册中提到:"PHP不支持(也不需要)直接在声明变量时定义变量类型;变量类型将根据其被应用的情况决定。如果你...

    10个有用的PHP代码

    function checkDateFormat($date) { if (preg_match("/^([0-9]{4})-([0-9]{2})-([0-9]{2})$/", $date, $parts)) { if (checkdate($parts[2], $parts[3], $parts[1])) { return true; } else { return false; }...

    PHP官方手册中文版

    PHP官方手册中文版 PHP 手册 Mehdi Achour Friedhelm Betz Antony Dovgal ...76. Specialities of this Edition 77. Integrating the PHP Manual 78. Skin development 79. CHM Edition Credits

    php笔试题汇总(超级精华的试题)

    function max_of_three($a, $b, $c) { return $a > $b ? ($a > $c ? $a : $c) : ($b > $c ? $b : $c); } ``` 3. **打印前一天的时间**:`date()`函数用于格式化时间,`strtotime()`函数将日期或时间字符串转化为...

    crontab:一个基于workerman用PHP编写的crontab

    Crontab 一个crontab,它基于用PHP编写,精确到秒。 安装 composer require workerman/... // Execute the function in the first second of every minute. new Crontab ( '1 * * * * *' , function (){ echo date

    PHP5 开发手册 简体中文手册

    Date/Time 日期/时间函数 XXIII. DB++ Functions XXIV. Database (dbm-style) Abstraction Layer Functions XXV. dBase Functions XXVI. DBM Functions [deprecated] XXVII. dbx Functions XXVIII. Direct IO ...

    php函数大全

    - **is_subclass_of**、**is_a**:检查一个类是否是另一个类的子类或实例。 - **get_class_vars**、**get_object_vars**:获取类的变量或对象的公共属性。 - **get_class_methods**:获取类的所有方法。 - **trigger...

    php 常用的初级函数

    $indexOf = strpos($str, "PHP"); // 查找 "PHP" 的位置 $substring = substr($str, 7, 3); // 从第7位开始截取3个字符 ``` 7. **错误处理**: - `error_reporting()` 设置错误报告级别,`try...catch` 用于...

    PHP错误提示It is not safe to rely on the system……的解决方法

    You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely missp

Global site tag (gtag.js) - Google Analytics