From 2b6db861d1712c4025d8a2165d63bbcef2091149 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 21 Nov 2007 15:01:30 +0000 Subject: [PATCH] Simpler example (bug #42889) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246612 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-multisort.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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) } ]]>