/PHP-8.2/ext/standard/tests/array/ |
H A D | sort_variation5.phpt | 9 * SORT_STRING - compare items as strings 22 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING); 114 - Sort flag = SORT_STRING - 202 - Sort flag = SORT_STRING -
|
H A D | rsort_variation7.phpt | 29 echo "\n-- 'flag' value is SORT_STRING --\n"; 31 var_dump(rsort($temp_array, SORT_STRING) ); 78 -- 'flag' value is SORT_STRING --
|
H A D | sort_basic.phpt | 11 * SORT_STRING - compare items as strings 46 echo "\n-- Testing sort() by supplying string array, 'flag' = SORT_STRING --\n"; 48 var_dump( sort($temp_array, SORT_STRING) ); // expecting : bool(true) 51 echo "\n-- Testing sort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_F… 53 var_dump( sort($temp_array, SORT_STRING|SORT_FLAG_CASE) ); // expecting : bool(true) 144 -- Testing sort() by supplying string array, 'flag' = SORT_STRING -- 165 -- Testing sort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_FLAG_CASE…
|
H A D | krsort_variation10.phpt | 10 * 3.SORT_STRING - compare items as strings 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) 81 -- Testing krsort() by supplying heredoc string array, 'flag' = SORT_STRING --
|
H A D | ksort_variation11.phpt | 10 * 3.SORT_STRING - compare items as strings 45 echo "\n-- Testing ksort() by supplying heredoc string array, 'flag' = SORT_STRING --\n"; 47 var_dump(ksort($temp_array, SORT_STRING) ); // expecting : bool(true) 81 -- Testing ksort() by supplying heredoc string array, 'flag' = SORT_STRING --
|
H A D | arsort_basic.phpt | 11 * SORT_STRING - compare items as strings 45 echo "\n-- Testing arsort() by supplying string array, 'flag' = SORT_STRING --\n"; 47 var_dump( arsort($temp_array, SORT_STRING) ); // expecting : bool(true) 50 echo "\n-- Testing arsort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT… 52 var_dump( arsort($temp_array, SORT_STRING|SORT_FLAG_CASE) ); // expecting : bool(true) 143 -- Testing arsort() by supplying string array, 'flag' = SORT_STRING -- 164 -- Testing arsort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_FLAG_CA…
|
H A D | asort_basic.phpt | 11 * SORT_STRING - compare items as strings 45 echo "\n-- Testing asort() by supplying string array, 'flag' = SORT_STRING --\n"; 47 var_dump( asort($temp_array, SORT_STRING) ); // expecting : bool(true) 50 echo "\n-- Testing asort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_… 52 var_dump( asort($temp_array, SORT_STRING|SORT_FLAG_CASE) ); // expecting : bool(true) 143 -- Testing asort() by supplying string array, 'flag' = SORT_STRING -- 164 -- Testing asort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_FLAG_CAS…
|
H A D | krsort_basic.phpt | 11 * 4.SORT_STRING - compare items as strings 46 echo "\n-- Testing krsort() by supplying string array, 'flag' = SORT_STRING --\n"; 48 var_dump( krsort($temp_array, SORT_STRING) ); // expecting : bool(true) 51 echo "\n-- Testing krsort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT… 53 var_dump( krsort($temp_array, SORT_STRING|SORT_FLAG_CASE) ); // expecting : bool(true) 144 -- Testing krsort() by supplying string array, 'flag' = SORT_STRING -- 165 -- Testing krsort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_FLAG_CA…
|
H A D | ksort_basic.phpt | 10 * 4.SORT_STRING - compare items as strings 44 echo "\n-- Testing ksort() by supplying string array, 'flag' = SORT_STRING --\n"; 46 var_dump( ksort($temp_array, SORT_STRING) ); // expecting : bool(true) 49 echo "\n-- Testing ksort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_… 51 var_dump( ksort($temp_array, SORT_STRING|SORT_FLAG_CASE) ); // expecting : bool(true) 142 -- Testing ksort() by supplying string array, 'flag' = SORT_STRING -- 163 -- Testing ksort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_FLAG_CAS…
|
H A D | rsort_variation5.phpt | 19 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING); 102 - Sort flag = SORT_STRING - 187 - Sort flag = SORT_STRING -
|
H A D | krsort_variation5.phpt | 10 * 3.SORT_STRING - compare items as strings 29 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING); 121 - Sort flag = SORT_STRING - 205 - Sort flag = SORT_STRING -
|
H A D | ksort_variation5.phpt | 10 * 3.SORT_STRING - compare items as strings 29 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING); 121 - Sort flag = SORT_STRING - 205 - Sort flag = SORT_STRING -
|
H A D | rsort_basic.phpt | 41 echo "\n-- Testing rsort() by supplying string array, 'flag' = SORT_STRING --\n"; 43 var_dump( rsort($temp_array, SORT_STRING) ); 46 echo "\n-- Testing rsort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_… 48 var_dump( rsort($temp_array, SORT_STRING|SORT_FLAG_CASE) ); // expecting : bool(true) 139 -- Testing rsort() by supplying string array, 'flag' = SORT_STRING -- 160 -- Testing rsort() by supplying string array (case insensitive), 'flag' = SORT_STRING|SORT_FLAG_CAS…
|
H A D | arsort_variation5.phpt | 9 * SORT_STRING - compare items as strings 28 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING); 124 - Sort_flag = SORT_STRING - 214 - Sort_flag = SORT_STRING -
|
H A D | asort_variation5.phpt | 9 * SORT_STRING - compare items as strings 28 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING); 124 - Sort_flag = SORT_STRING - 214 - Sort_flag = SORT_STRING -
|
H A D | krsort_variation11.phpt | 31 echo "\n-- Testing krsort() by supplying boolean value array, 'flag' value is SORT_STRING --\n"; 33 var_dump(krsort($temp_array, SORT_STRING) ); 68 -- Testing krsort() by supplying boolean value array, 'flag' value is SORT_STRING --
|
H A D | ksort_variation4.phpt | 31 echo "\n-- Testing ksort() by supplying boolean value array, 'flag' value is SORT_STRING --\n"; 33 var_dump(ksort($temp_array, SORT_STRING) ); 68 -- Testing ksort() by supplying boolean value array, 'flag' value is SORT_STRING --
|
H A D | arsort_variation7.phpt | 31 echo "\n-- Testing arsort() by supplying bool value array, 'flag' value is SORT_STRING --\n"; 33 var_dump(arsort($temp_array, SORT_STRING) ); 80 -- Testing arsort() by supplying bool value array, 'flag' value is SORT_STRING --
|
H A D | asort_variation7.phpt | 31 echo "\n-- Testing asort() by supplying bool value array, 'flag' value is SORT_STRING --\n"; 33 var_dump(asort($temp_array, SORT_STRING) ); 80 -- Testing asort() by supplying bool value array, 'flag' value is SORT_STRING --
|
H A D | sort_variation7.phpt | 31 echo "\n-- Testing sort() by supplying bool value array, 'flag' value is SORT_STRING --\n"; 33 var_dump(sort($temp_array, SORT_STRING) ); 80 -- Testing sort() by supplying bool value array, 'flag' value is SORT_STRING --
|
H A D | 002.phpt | 20 echo "Using SORT_STRING\n"; 21 $sort_function ($data, SORT_STRING); 131 Using SORT_STRING 241 Using SORT_STRING 349 Using SORT_STRING 447 Using SORT_STRING 545 Using SORT_STRING 655 Using SORT_STRING
|
H A D | array_multisort_variation5.phpt | 12 array_multisort($ar, SORT_STRING, SORT_ASC);
|
H A D | array_multisort_variation6.phpt | 12 array_multisort($ar, SORT_STRING, SORT_DESC);
|
H A D | array_multisort_case.phpt | 27 array_multisort($b, SORT_STRING, $a);
|
/PHP-8.2/Zend/tests/ |
H A D | array_multisort_exception.phpt | 6 array_multisort($array, SORT_STRING);
|