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
ad550dfe
...
ad550dfed4dd3b9f49b49978ecd9727047500d6e
authored
2022-11-26 11:50:45 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
beef1c3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/Http/Controllers/Release/BaseController.php
app/Http/Controllers/Release/BaseController.php
View file @
ad550df
...
...
@@ -193,11 +193,11 @@ class BaseController extends Controller
{
foreach
(
$array
as
$k
=>
$v
)
{
if
(
is_array
(
$v
))
{
// ksort($v);
$array
[
$k
]
=
$this
->
handleSubArrayNumber
(
$v
);
}
else
{
$array
=
array_filter
(
$array
,
function
(
$item
)
{
if
(
$item
===
''
||
$item
===
null
)
{
if
(
$item
===
''
||
$item
===
null
||
$item
===
[]
)
{
return
false
;
}
else
{
return
true
;
...
...
Please
register
or
sign in
to post a comment