From f00ff01f9541c1af55455083935edef7b49a22ab Mon Sep 17 00:00:00 2001 From: zyx Date: Fri, 18 Oct 2019 18:19:12 +0800 Subject: [PATCH] =?UTF-8?q?php=E7=89=88=E6=9C=AC=E9=97=AE=E9=A2=98bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Common/Common/function.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/Common/Common/function.php b/Application/Common/Common/function.php index c87284739..a2c806fe8 100644 --- a/Application/Common/Common/function.php +++ b/Application/Common/Common/function.php @@ -61,7 +61,7 @@ function str2arr($str, $glue = ',') * @return string * @author 麦当苗儿 */ -function arr2str($arr, $glue = ',') +function arr2str($arr=[], $glue = ',') { return implode($glue, $arr); }