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
ad988267
Commit
ad988267
authored
May 15, 2013
by
slavcopost
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update phpDoc
parent
d474133c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ArrayHelper.php
yii/helpers/base/ArrayHelper.php
+4
-4
No files found.
yii/helpers/base/ArrayHelper.php
View file @
ad988267
...
...
@@ -263,8 +263,8 @@ class ArrayHelper
* elements, a property name of the objects, or an anonymous function returning the values for comparison
* purpose. The anonymous function signature should be: `function($item)`.
* To sort by multiple keys, provide an array of keys here.
* @param boolean|array $
ascending whether to sort in ascending or de
scending order. When
* sorting by multiple keys with different
ascending orders, use an array of a
scending flags.
* @param boolean|array $
descending whether to sort in descending or a
scending order. When
* sorting by multiple keys with different
descending orders, use an array of de
scending flags.
* @param integer|array $sortFlag the PHP sort flag. Valid values include
* `SORT_REGULAR`, `SORT_NUMERIC`, `SORT_STRING` and `SORT_LOCALE_STRING`.
* Please refer to [PHP manual](http://php.net/manual/en/function.sort.php)
...
...
@@ -272,7 +272,7 @@ class ArrayHelper
* @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 $
a
scending or $sortFlag parameters do not have
* @throws InvalidParamException if the $
de
scending or $sortFlag parameters do not have
* correct number of elements as that of $key.
*/
public
static
function
multisort
(
&
$array
,
$key
,
$descending
=
false
,
$sortFlag
=
SORT_REGULAR
,
$caseSensitive
=
true
)
...
...
@@ -285,7 +285,7 @@ class ArrayHelper
if
(
is_scalar
(
$descending
))
{
$descending
=
array_fill
(
0
,
$n
,
$descending
);
}
elseif
(
count
(
$descending
)
!==
$n
)
{
throw
new
InvalidParamException
(
'The length of $
a
scending parameter must be the same as that of $keys.'
);
throw
new
InvalidParamException
(
'The length of $
de
scending parameter must be the same as that of $keys.'
);
}
if
(
is_scalar
(
$sortFlag
))
{
$sortFlag
=
array_fill
(
0
,
$n
,
$sortFlag
);
...
...
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