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
6823be4c
...
6823be4c71e1d8e1789441f91af755fddc2b2a3b
authored
2022-06-02 13:15:28 +0800
by
mengfan.xie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
release
1 parent
f9297e1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
app/Http/Controllers/Release/BaseController.php
app/Http/Controllers/Release/BaseController.php
View file @
6823be4
...
...
@@ -149,11 +149,10 @@ class BaseController extends Controller
// ksort($v);
$array
[
$k
]
=
$this
->
handleSubArrayNumber
(
$v
);
}
else
{
if
(
$v
===
''
)
{
unset
(
$array
[
$k
]);
continue
;
}
$array
[
$k
]
=
$v
;
$array
=
array_filter
(
$array
,
function
(
$item
)
{
// if ($v === '' || $v === null) {}
return
filled
(
$item
);
});
}
}
return
$array
;
...
...
Please
register
or
sign in
to post a comment