Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
53457a0a
Commit
53457a0a
authored
Nov 19, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplified ArrayHelper::multisort().
parent
52bf6ac4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
18 deletions
+4
-18
BaseArrayHelper.php
framework/yii/helpers/BaseArrayHelper.php
+2
-16
ArrayHelperTest.php
tests/unit/framework/helpers/ArrayHelperTest.php
+2
-2
No files found.
framework/yii/helpers/BaseArrayHelper.php
View file @
53457a0a
...
...
@@ -339,13 +339,10 @@ class BaseArrayHelper
* `SORT_REGULAR`, `SORT_NUMERIC`, `SORT_STRING`, `SORT_LOCALE_STRING`, `SORT_NATURAL` and `SORT_FLAG_CASE`.
* Please refer to [PHP manual](http://php.net/manual/en/function.sort.php)
* for more details. When sorting by multiple keys with different sort flags, use an array of sort flags.
* @param boolean|array $caseSensitive whether to sort string in case-sensitive manner. This parameter
* is used only when `$sortFlag` is `SORT_STRING`.
* When sorting by multiple keys with different case sensitivities, use an array of boolean values.
* @throws InvalidParamException if the $descending or $sortFlag parameters do not have
* correct number of elements as that of $key.
*/
public
static
function
multisort
(
&
$array
,
$key
,
$direction
=
SORT_ASC
,
$sortFlag
=
SORT_REGULAR
,
$caseSensitive
=
true
)
public
static
function
multisort
(
&
$array
,
$key
,
$direction
=
SORT_ASC
,
$sortFlag
=
SORT_REGULAR
)
{
$keys
=
is_array
(
$key
)
?
$key
:
[
$key
];
if
(
empty
(
$keys
)
||
empty
(
$array
))
{
...
...
@@ -362,21 +359,10 @@ class BaseArrayHelper
}
elseif
(
count
(
$sortFlag
)
!==
$n
)
{
throw
new
InvalidParamException
(
'The length of $sortFlag parameter must be the same as that of $keys.'
);
}
if
(
is_scalar
(
$caseSensitive
))
{
$caseSensitive
=
array_fill
(
0
,
$n
,
$caseSensitive
);
}
elseif
(
count
(
$caseSensitive
)
!==
$n
)
{
throw
new
InvalidParamException
(
'The length of $caseSensitive parameter must be the same as that of $keys.'
);
}
$args
=
[];
foreach
(
$keys
as
$i
=>
$key
)
{
$flag
=
$sortFlag
[
$i
];
$cs
=
$caseSensitive
[
$i
];
if
(
!
$cs
&&
(
$flag
===
SORT_STRING
))
{
$flag
=
$flag
|
SORT_FLAG_CASE
;
$args
[]
=
static
::
getColumn
(
$array
,
$key
);
}
else
{
$args
[]
=
static
::
getColumn
(
$array
,
$key
);
}
$args
[]
=
static
::
getColumn
(
$array
,
$key
);
$args
[]
=
$direction
[
$i
];
$args
[]
=
$flag
;
}
...
...
tests/unit/framework/helpers/ArrayHelperTest.php
View file @
53457a0a
...
...
@@ -129,13 +129,13 @@ class ArrayHelperTest extends TestCase
[
'name'
=>
'A'
,
'age'
=>
1
],
];
ArrayHelper
::
multisort
(
$array
,
[
'name'
,
'age'
],
false
,
[
SORT_STRING
,
SORT_REGULAR
]);
ArrayHelper
::
multisort
(
$array
,
[
'name'
,
'age'
],
SORT_ASC
,
[
SORT_STRING
,
SORT_REGULAR
]);
$this
->
assertEquals
([
'name'
=>
'A'
,
'age'
=>
1
],
$array
[
0
]);
$this
->
assertEquals
([
'name'
=>
'B'
,
'age'
=>
4
],
$array
[
1
]);
$this
->
assertEquals
([
'name'
=>
'a'
,
'age'
=>
3
],
$array
[
2
]);
$this
->
assertEquals
([
'name'
=>
'b'
,
'age'
=>
2
],
$array
[
3
]);
ArrayHelper
::
multisort
(
$array
,
[
'name'
,
'age'
],
false
,
[
SORT_STRING
,
SORT_REGULAR
],
false
);
ArrayHelper
::
multisort
(
$array
,
[
'name'
,
'age'
],
SORT_ASC
,
[
SORT_STRING
|
SORT_FLAG_CASE
,
SORT_REGULAR
]
);
$this
->
assertEquals
([
'name'
=>
'A'
,
'age'
=>
1
],
$array
[
0
]);
$this
->
assertEquals
([
'name'
=>
'a'
,
'age'
=>
3
],
$array
[
1
]);
$this
->
assertEquals
([
'name'
=>
'b'
,
'age'
=>
2
],
$array
[
2
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment