php判断是不是时间格式的方法:通过strtotime函数判断是否是时间格式,语法为【int strtotime ( string $time [,int $now = time()])】,成功则返回时间戳,否则返回FALSE。
【相关学习推荐:php编程(视频)】
php判断是不是时间格式的方法:
可以通过strtotime函数判断是否是时间格式
function isDateTime($dateTime){ $ret = strtotime($dateTime); return $ret !== FALSE && $ret != -1; }
strtotime函数用法如下:
strtotime 将任何英文文本的日期时间描述解析为 Unix 时间戳
int strtotime ( string $time [, int $now = time() ] )
本函数预期接受一个包含美国英语日期格式的字符串并尝试将其解析为Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数),其值相对于now 参数给出的时间,如果没有提供此参数则用系统当前时间。
-
time:日期/时间字符串
-
now:用来计算返回值的时间戳
返回值:
成功则返回时间戳,否则返回 FALSE;在 PHP 5.1.0之前本函数在失败时返回 -1。
想了解