Lines Matching refs:krsort
2 Test krsort() function : usage variations - sort heredoc strings
6 * testing krsort() by providing array of heredoc strings for $array argument with
13 echo "*** Testing krsort() : usage variations ***\n";
35 echo "\n-- Testing krsort() by supplying heredoc string array, 'flag' value is default --\n";
37 var_dump(krsort($temp_array) ); // expecting : bool(true)
40 echo "\n-- Testing krsort() by supplying heredoc string array, 'flag' = SORT_REGULAR --\n";
42 var_dump(krsort($temp_array, SORT_REGULAR) ); // expecting : bool(true)
45 echo "\n-- Testing krsort() by supplying heredoc string array, 'flag' = SORT_STRING --\n";
47 var_dump(krsort($temp_array, SORT_STRING) ); // expecting : bool(true)
53 *** Testing krsort() : usage variations ***
55 -- Testing krsort() by supplying heredoc string array, 'flag' value is default --
68 -- Testing krsort() by supplying heredoc string array, 'flag' = SORT_REGULAR --
81 -- Testing krsort() by supplying heredoc string array, 'flag' = SORT_STRING --