From 8ebc0dc87abce3a418ddb34e2b483ca997d16861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 7 Sep 2020 15:22:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpServer/Action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpServer/Action.php b/HttpServer/Action.php index 480167ec..d8d1462d 100644 --- a/HttpServer/Action.php +++ b/HttpServer/Action.php @@ -134,7 +134,7 @@ trait Action if (empty($port)) { return false; } - exec('netstat -tunlp tcp | grep ' . $port, $output); + exec('netstat -tunlp | grep ' . $port, $output); if (empty($output)) { return false; }