import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-array / array_multisort_variation10.php
blob8b89553dbb2851edf678187bfb5b84b0c7b513f3
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 anonymous arguments ***\n";
10 var_dump(array_multisort(array(1,3,2,4)));
13 ===DONE===