1--TEST--
2Test array_multisort() function : usage variation - testing with anonymous arrary arguments
3--FILE--
4<?php
5/* Prototype  : bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING|SORT_NATURAL|SORT_FLAG_CASE]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING|SORT_NATURAL|SORT_FLAG_CASE]], ...])
6 * Description: Sort multiple arrays at once similar to how ORDER BY clause works in SQL
7 * Source code: ext/standard/array.c
8 * Alias to functions:
9 */
10
11echo "*** Testing array_multisort() : Testing with anonymous arguments ***\n";
12
13var_dump(array_multisort(array(1,3,2,4)));
14
15?>
16===DONE===
17--EXPECTF--
18*** Testing array_multisort() : Testing with anonymous arguments ***
19bool(true)
20===DONE===
21