$smallDate 返回 > 0 * $bigDate < $smallDate 返回 < 0 * $bigDate = $smallDate 返回 = 0 * * @param $bigDate * @param $smallDate * * @returns */ public static function dateCmp($bigDate, $smallDate) { if (!self::isDate($bigDate) || !self::isDate($smallDate)) { throw new Exception('参数不是合法的日期'); } return strcmp($bigDate, $smallDate); } public static function isDate($dateTime, $checkTime = false) { $strArray = explode(' ', $dateTime); $date = $strArray[0]; $time = $strArray[1]; // 不是 dateTime 格式 if (!$date || !$time) { return false; } $dateArray = explode('-', $date); $year = $dateArray[0]; $month = $dateArray[1]; $day = $dateArray[2]; // 年在 1-9999 年 if (!self::_checkLimit($year, 1, 9999)) { return false; } if (!self::_checkLimit($month, 1, 12)) { return false; } if (!self::_checkLimit($day, 1, 31)) { return false; } if ($checkTime) { $timeArray = explode(':', $time); $hour = $timeArray[0]; $minute = $timeArray[1]; $second = $timeArray[2]; if (!self::_checkLimit($hour, 0, 24)) { return false; } if (!self::_checkLimit($minute, 0, 60)) { return false; } if (!self::_checkLimit($second, 0, 60)) { return false; } } return true; } /** * 检查字符串是否在 start to 的区间内 * * @param $str * @param $start * @param $to * * @returns */ private static function _checkLimit($str, $start, $to) { if ($str < $start || $str > $to) { return false; } return true; } }

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
