📄 006.phpt
字号:
--TEST--checkdate() tests--INI--date.timezone=UTC--FILE--<?phpvar_dump(checkdate());var_dump(checkdate(1,1,1));var_dump(checkdate(2,29,2006));var_dump(checkdate(31,6,2006));var_dump(checkdate(1,1,32768));var_dump(checkdate(1,1,32767));var_dump(checkdate(-1,1,2006));var_dump(checkdate(1,-1,2006));var_dump(checkdate(1,1,-1));echo "Done\n";?>--EXPECTF-- Warning: checkdate() expects exactly 3 parameters, 0 given in %s on line %dbool(false)bool(true)bool(false)bool(false)bool(false)bool(true)bool(false)bool(false)bool(false)Done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -