bug69532.phpt 282 B

1234567891011121314151617
  1. --TEST--
  2. Bug #69532: array_multisort is chocking when using it's own constants
  3. --FILE--
  4. <?php
  5. namespace Foo;
  6. $origins = array();
  7. $profiles = array();
  8. $all_files = array();
  9. array_multisort($origins, SORT_ASC, $profiles, SORT_ASC, $all_files);
  10. ?>
  11. ===DONE===
  12. --EXPECT--
  13. ===DONE===