Date/Time 函数 业 ,精于勤 荒于嬉.
- Date/Time 函数 strtotime 将任何字符串的日期时间描述解析为 Unix 时间戳
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
示例1
<?php echo strtotime("now"), "\n"; echo strtotime("10 September 2000"), "\n"; echo strtotime("+1 day"), "\n"; echo strtotime("+1 week"), "\n"; echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; echo strtotime("next Thursday"), "\n"; echo strtotime("last Monday"), "\n"; ?>
示例2
<?php $str = 'Not Good'; // PHP 5.1.0 之前的版本中和应该改成和 -1 进行比较if (($timestamp = strtotime($str)) === false) { echo "The string ($str) is bogus"; } else { echo "$str == " . date('l dS of F Y h:i:s A', $timestamp); } ?>
- Date/Time 函数 time 返回当前的 Unix 时间戳
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
示例1
<?php $nextWeek = time() + (7 * 24 * 60 * 60); // 7 days; 24 hours; 60 mins; 60 secsecho 'Now: '. date('Y-m-d') ."\n"; echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n"; // or using strtotime():echo 'Next Week: '. date('Y-m-d', strtotime('+1 week')) ."\n"; ?>
- Date/Time 函数 timezone_abbreviations_list 别名 DateTimeZone::listAbbreviations()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_abbreviations_list
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
timezone_abbreviations_list — 别名 DateTimeZone::listAbbreviations()
说明
此函数是该函数的别名: DateTimeZone::listAbbreviations()
- Date/Time 函数 timezone_identifiers_list 别名 DateTimeZone::listIdentifiers()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_identifiers_list
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
timezone_identifiers_list — 别名 DateTimeZone::listIdentifiers()
说明
此函数是该函数的别名: DateTimeZone::listIdentifiers()
- Date/Time 函数 timezone_location_get 别名 DateTimeZone::getLocation()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_location_get
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
timezone_location_get — 别名 DateTimeZone::getLocation()
说明
此函数是该函数的别名: DateTimeZone::getLocation()
- Date/Time 函数 timezone_name_from_abbr Returns the timezone name from abbreviation
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
示例1
<?php echo timezone_name_from_abbr("CET") . "\n"; echo timezone_name_from_abbr("", 3600, 0) . "\n"; ?>
- Date/Time 函数 timezone_name_get 别名 DateTimeZone::getName()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_name_get
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
timezone_name_get — 别名 DateTimeZone::getName()
说明
此函数是该函数的别名: DateTimeZone::getName()
- Date/Time 函数 timezone_offset_get 别名 DateTimeZone::getOffset()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_offset_get
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
timezone_offset_get — 别名 DateTimeZone::getOffset()
说明
此函数是该函数的别名: DateTimeZone::getOffset()
- Date/Time 函数 timezone_open 别名 DateTimeZone::__construct()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_open
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
timezone_open — 别名 DateTimeZone::__construct()
说明
此函数是该函数的别名: DateTimeZone::__construct()
- Date/Time 函数 timezone_transitions_get 别名 DateTimeZone::getTransitions()
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
timezone_transitions_get
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
timezone_transitions_get — 别名 DateTimeZone::getTransitions()
说明
此函数是该函数的别名: DateTimeZone::getTransitions()
- Date/Time 函数 timezone_version_get 获取 timezonedb 的版本
-
发表日期:2021-07-01 08:55:28 | 来源: | 分类:Date/Time 函数
-
示例1
<?php echo timezone_version_get(); ?>
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)