mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
75b4fa079f
Partial revert of ea2fc7f935
.
18 lines
282 B
PHP
18 lines
282 B
PHP
--TEST--
|
|
Bug #69532: array_multisort is chocking when using it's own constants
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace Foo;
|
|
|
|
$origins = array();
|
|
$profiles = array();
|
|
$all_files = array();
|
|
|
|
array_multisort($origins, SORT_ASC, $profiles, SORT_ASC, $all_files);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|