Revert "make hphpc able to use ini files"
[hiphop-php.git] / hphp / test / zend / bad / ext / standard / tests / array / bug50006.php
blobb6f41dceaca2762c2cd5bbc3c2f772e94e1bd879
1 <?php
3 $data = array(
4 'bar-bazbazbaz.' => 0,
5 'bar-bazbazbaz-' => 0,
6 'foo' => 0,
7 );
8 uksort($data, 'magic_sort_cmp');
9 print_r($data);
11 function magic_sort_cmp($a, $b) {
12 $a = substr($a, 1);
13 $b = substr($b, 1);
14 if (!$a) return $b ? -1 : 0;
15 if (!$b) return 1;
16 return magic_sort_cmp($a, $b);