import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-array / array_multisort_variation11.php
blob7fe966c0379a082f303b70eaf1896fb8457b3f80
1 <?php
2 /* 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]], ...])
3 * Description: Sort multiple arrays at once similar to how ORDER BY clause works in SQL
4 * Source code: ext/standard/array.c
5 * Alias to functions:
6 */
8 echo "*** Testing array_multisort() : Testing with empty array ***\n";
10 var_dump(array_multisort(array()));
13 ===DONE===
14 <?php exit(0); ?>