php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #67444 Incorrect Documentation.
Submitted: 2014-06-14 20:49 UTC Modified: 2017-01-28 12:35 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: timothymarois at gmail dot com Assigned:
Status: Open Package: Arrays related
PHP Version: 5.5.13 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: timothymarois at gmail dot com
New email:
PHP Version: OS:

 

 [2014-06-14 20:49 UTC] timothymarois at gmail dot com
Description:
------------
---
From manual page: http://www.php.net/function.array-multisort
---

on "Example #2 Sorting multi-dimensional array"
is the same exact thing as the one above "Example #1 Sorting multiple arrays"
- doesn't seem right, just repetitive documentation. 
"array_multisort" does "not" actually sort multi-dimensional arrays based on this documentation. 

example:

$single1 = array(7,145,6,14,54);
$single2 = array(7,145,6,14,54);
$multi = array('one'=>array(7,145,6,14,54),'two'=>array(5,48,41,1,9,1));

// sorting 2 single arrays...
array_multisort($single1,$single2);

// sorting 2 single arrays (from a multi-dimensional array)... 
// is the exact same thing as above
array_multisort($multi['one'],$multi['two']);


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-01-28 12:35 UTC] cmb@php.net
-Package: Documentation problem +Package: Arrays related
 [2022-12-02 10:32 UTC] sheyda dot babi5161 at gmail dot com
I'm having the same problem as the others. (https://www.emorypatient-portal.com/)github.com
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 17:01:58 2024 UTC