过滤没有用户名的数据

Signed-off-by: 小胡 <3203164629@qq.com>
This commit is contained in:
小胡
2024-10-15 07:02:20 +00:00
committed by Gitee
Unverified
parent bd4ae7a191
commit dfd73c246e

View File

@@ -327,6 +327,9 @@ EOT;
$list=array();
foreach($sheetData as $key=> $value){
if($key<=1) continue;
if(!$temp['username']){
continue;
}
$temp=array();
foreach($value as $col =>$val){
if(trim($val)=='') continue;