Doc #67444 [Com]: Incorrect Documentation.
[email protected] ("sheyda dot babi5161 at gmail dot com") Fri, 02 Dec 2022 10:32:16 +0000
| Newsgroups | php.doc.bugs |
|---|---|
| Message-ID | <[email protected]> |
Edit report at https://bugs.php.net/bug.php?id=67444&edit=1
ID: 67444
Comment by: sheyda dot babi5161 at gmail dot com
Reported by: timothymarois at gmail dot com
Summary: Incorrect Documentation.
Status: Open
Type: Documentation Problem
Package: Arrays related
PHP Version: 5.5.13
Block user comment: N
Private report: N
New Comment:
I'm having the same problem as the others. (https://www.emorypatient-portal.com/)github.com
Previous Comments:
------------------------------------------------------------------------
[2014-06-14 20:49:27] 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']);
------------------------------------------------------------------------
--
Edit this bug report at https://bugs.php.net/bug.php?id=67444&edit=1