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
34789ff1
Commit
34789ff1
authored
May 04, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #101 from toopay/patch
Fix unsupported flag in php 5.3.x environment [ArrayHelper::multisort]
parents
eecd1268
cfc95820
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ArrayHelper.php
framework/helpers/base/ArrayHelper.php
+4
-4
No files found.
framework/helpers/base/ArrayHelper.php
View file @
34789ff1
...
...
@@ -237,11 +237,11 @@ class ArrayHelper
* @param boolean|array $ascending whether to sort in ascending or descending order. When
* sorting by multiple keys with different ascending orders, use an array of ascending flags.
* @param integer|array $sortFlag the PHP sort flag. Valid values include
* `SORT_REGULAR`, `SORT_NUMERIC`, `SORT_STRING`
, `SORT_LOCALE_STRING` and `SORT_NATURAL
`.
*
and `SORT_STRING | SORT_FLAG_CASE`.
Please refer to [PHP manual](http://php.net/manual/en/function.sort.php)
* `SORT_REGULAR`, `SORT_NUMERIC`, `SORT_STRING`
and `SORT_LOCALE_STRING
`.
* 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
either `SORT_STRING` or `SORT_NATURAL
`.
* 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 $ascending or $sortFlag parameters do not have
* correct number of elements as that of $key.
...
...
@@ -272,7 +272,7 @@ class ArrayHelper
foreach
(
$keys
as
$i
=>
$key
)
{
$flag
=
$sortFlag
[
$i
];
$cs
=
$caseSensitive
[
$i
];
if
(
!
$cs
&&
(
$flag
===
SORT_STRING
||
$flag
===
SORT_NATURAL
))
{
if
(
!
$cs
&&
(
$flag
===
SORT_STRING
))
{
if
(
defined
(
'SORT_FLAG_CASE'
))
{
$flag
=
$flag
|
SORT_FLAG_CASE
;
$args
[]
=
static
::
getColumn
(
$array
,
$key
);
...
...
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