From 9f0c56d753562c6ccbe620aa9d26cce316df4fb0 Mon Sep 17 00:00:00 2001 From: ELF <360197197@qq.com> Date: Thu, 3 Sep 2020 19:52:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Home/Controller/DownloadController.class.php | 2 +- Application/Home/Controller/QueryController.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/Home/Controller/DownloadController.class.php b/Application/Home/Controller/DownloadController.class.php index b81a44233..fd917bb7f 100644 --- a/Application/Home/Controller/DownloadController.class.php +++ b/Application/Home/Controller/DownloadController.class.php @@ -4537,7 +4537,7 @@ public function iosDetailExcelInfo($id,$map) { $begin = $defaultBegin; $end = $defaultEnd; if ($time != '') { - if (strpos($time, $delimiter) == -1) { + if (strpos($time, $delimiter) === false) { $begin = strtotime($time . ' 00:00:00'); $end = strtotime($time . ' 23:59:59'); } else { diff --git a/Application/Home/Controller/QueryController.class.php b/Application/Home/Controller/QueryController.class.php index 5ce3deb40..90c411456 100644 --- a/Application/Home/Controller/QueryController.class.php +++ b/Application/Home/Controller/QueryController.class.php @@ -2014,7 +2014,7 @@ class QueryController extends BaseController $begin = $defaultBegin; $end = $defaultEnd; if ($time != '') { - if (strpos($time, $delimiter) == -1) { + if (strpos($time, $delimiter) === false) { $begin = strtotime($time . ' 00:00:00'); $end = strtotime($time . ' 23:59:59'); } else {