bug33869.phpt

来自「PHP v6.0 For Linux 运行环境:Win9X/ WinME/ Wi」· PHPT 代码 · 共 27 行

PHPT
27
字号
--TEST--Bug #33869 (strtotime() doesn't parse "+1days" format)--FILE--<?php	date_default_timezone_set("UTC");	$tm = strtotime("2005-01-01 01:01:01");	echo date(DATE_ISO8601, strtotime('+5days', $tm));	echo "\n";	echo date(DATE_ISO8601, strtotime('+1month', $tm));	echo "\n";	echo date(DATE_ISO8601, strtotime('+1year', $tm));	echo "\n";	echo date(DATE_ISO8601, strtotime('+5 days', $tm));	echo "\n";	echo date(DATE_ISO8601, strtotime('+1 month', $tm));	echo "\n";	echo date(DATE_ISO8601, strtotime('+1 year', $tm));	echo "\n";?>--EXPECT--2005-01-06T01:01:01+00002005-02-01T01:01:01+00002006-01-01T01:01:01+00002005-01-06T01:01:01+00002005-02-01T01:01:01+00002006-01-01T01:01:01+0000

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?