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