ID: 37972 User updated by: perrick at noparking dot net Reported By: perrick at noparking dot net Status: Open Bug Type: Documentation problem PHP Version: Irrelevant New Comment:
I kind of inverted the "Expected result" and the "Actual result" in my report. Sorry about this. Previous Comments: ------------------------------------------------------------------------ [2006-06-30 07:50:17] perrick at noparking dot net Description: ------------ The french translation for the documentation of "array_multisort" contains an error leading to a lot of confusion. Reproduce code: --------------- Here's the english part : // Sort the data with volume descending, edition ascending // Add $data as the last parameter, to sort by the common key array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data); Expected result: ---------------- Here's the french translation : // Tri les données par volume décroissant, edition croissant // Ajoute $data en tant que premier paramètre, pour trier par la clé commune array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data); Actual result: -------------- And finally what I was expecting : // Tri les données par volume décroissant, edition croissant // Ajoute $data en tant que dernier paramètre, pour trier par la clé commune array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data); The difference : "dernier" and "premier". Their meaning are very different (ie. opposite ;-) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37972&edit=1
