摘要: function dealed_array_merge($a,$b){ if ($a && !$b){ return $a; } if (!$a && $b){ return $b; } if ($a && $b){ return array_merge($a,$b); } return [];} 阅读全文
posted @ 2018-11-06 14:31 盘思动 阅读(268) 评论(0) 推荐(0)