Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Cong.Zhao
/
musician-api.hikoon.com
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
2ef89a83
...
2ef89a839a0a9fa70dbf990879aef597aba79055
authored
2022-06-02 13:20:26 +0800
by
mengfan.xie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
release
1 parent
6823be4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
app/Http/Controllers/Release/BaseController.php
app/Http/Controllers/Release/BaseController.php
View file @
2ef89a8
...
...
@@ -150,8 +150,11 @@ class BaseController extends Controller
$array
[
$k
]
=
$this
->
handleSubArrayNumber
(
$v
);
}
else
{
$array
=
array_filter
(
$array
,
function
(
$item
)
{
// if ($v === '' || $v === null) {}
return
filled
(
$item
);
if
(
$item
===
''
||
$item
===
null
)
{
return
false
;
}
else
{
return
true
;
}
});
}
}
...
...
Please
register
or
sign in
to post a comment