Revert "make hphpc able to use ini files"
[hiphop-php.git] / hphp / test / zend / bad / ext / standard / tests / array / bug50006_1.php
blobd33d3111194515f831eb5e0dac496316c3f60a4c
1 <?php
3 $data = array(
4 'bar-bazbazbaz.',
5 'bar-bazbazbaz-',
6 'foo'
7 );
8 usort($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);