diff --git a/reference/array/functions/array-multisort.xml b/reference/array/functions/array-multisort.xml index 91d4b1ef00..61326c9a03 100644 --- a/reference/array/functions/array-multisort.xml +++ b/reference/array/functions/array-multisort.xml @@ -1,5 +1,5 @@ - + @@ -79,8 +79,8 @@ - In this example, after sorting, the first array will contain "10", - "a", 100, 100. The second array will contain 1, 1, "2", 3. The + In this example, after sorting, the first array will contain 0, + 10, 100, 100. The second array will contain 4, 1, 2, 3. The entries in the second array corresponding to the identical entries in the first array (100 and 100) were sorted as well. string(2) "10" - [1]=> string(1) "a" + [0]=> int(0) + [1]=> int(10) [2]=> int(100) [3]=> int(100) } array(4) { - [0]=> int(1) + [0]=> int(4) [1]=> int(1) - [2]=> string(1) "2" + [2]=> int(2) [3]=> int(3) } ]]>