Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

uksort(3) [php man page]

UKSORT(3)								 1								 UKSORT(3)

uksort - Sort an array by keys using a user-defined comparison function

SYNOPSIS
bool uksort (array &$array, callable $key_compare_func) DESCRIPTION
uksort(3) will sort the keys of an array using a user-supplied comparison function. If the array you wish to sort needs to be sorted by some non-trivial criteria, you should use this function. PARAMETERS
o $array - The input array. o $key_compare_func - The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. int callback (mixed $a, mixed $b) RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 uksort(3) example <?php function cmp($a, $b) { $a = preg_replace('@^(a|an|the) @', '', $a); $b = preg_replace('@^(a|an|the) @', '', $b); return strcasecmp($a, $b); } $a = array("John" => 1, "the Earth" => 2, "an apple" => 3, "a banana" => 4); uksort($a, "cmp"); foreach ($a as $key => $value) { echo "$key: $value "; } ?> The above example will output: an apple: 3 a banana: 4 the Earth: 2 John: 1 SEE ALSO
usort(3), The comparison of array sorting functions. PHP Documentation Group UKSORT(3)

Check Out this Related Man Page

ARRAY_INTERSECT_UASSOC(3)						 1						 ARRAY_INTERSECT_UASSOC(3)

array_intersect_uassoc - Computes the intersection of arrays with additional index check, compares indexes by a callback function

SYNOPSIS
array array_intersect_uassoc (array $array1, array $array2, [array $...], callable $key_compare_func) DESCRIPTION
array_intersect_uassoc(3) returns an array containing all the values of $array1 that are present in all the arguments. Note that the keys are used in the comparison unlike in array_intersect(3). PARAMETERS
o $array1 - Initial array for comparison of the arrays. o $array2 - First array to compare keys against. o $... - Variable list of array arguments to compare values against. o $key_compare_func - The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. int callback (mixed $a, mixed $b) RETURN VALUES
Returns the values of $array1 whose values exist in all of the arguments. EXAMPLES
Example #1 array_intersect_uassoc(3) example <?php $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red"); $array2 = array("a" => "GREEN", "B" => "brown", "yellow", "red"); print_r(array_intersect_uassoc($array1, $array2, "strcasecmp")); ?> The above example will output: Array ( [b] => brown ) SEE ALSO
array_intersect(3), array_intersect_assoc(3), array_uintersect_assoc(3), array_uintersect_uassoc(3), array_intersect_key(3), array_inter- sect_ukey(3). PHP Documentation Group ARRAY_INTERSECT_UASSOC(3)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find an available item in array

Dear all, I'm have a sorted array like this: 177 220 1001 2000 2001 2003 2005 notice that 2002 and 2004 are NOT in array. Then user input a number INPUT, our script should return OUTPUT value like this: if INPUT is not in array => OUTPUT=INPUT if INPUT is in array => OUTPUT is the... (4 Replies)
Discussion started by: fongthai
4 Replies

2. Shell Programming and Scripting

function return array

Hi all I would like to know if there is a way to return an array for a function. As I know function can return all the contents in an array, I want to return an array type. (6 Replies)
Discussion started by: dophine
6 Replies

3. Shell Programming and Scripting

parse by string and difference in substring???

I have a big list as the following: apple X:5_yes_a apple X:12_no_b apple X:45_yes_a apple X:100_no_b banana X:7_yes_a banana X:13_yes_a banana X:42_no_a cat X:42_no_b cat X:77_yes_d I'd like to parse the file so that for each $1 value I return only lines in which the value in $2... (4 Replies)
Discussion started by: dcfargo
4 Replies

4. UNIX for Dummies Questions & Answers

Help with array comparison

I have an array @name with the below contents (index 7 and 8 are names): 1|1|2|2|I|2|0|DUNN|LACY|||||| 2|2|2|2|I|2|0|KOFE|ROGER|||||| 3|3|2|2|A|2|0|KOFOED|ROBERT|||||| 3|4|2|2|A|2|0|KOFOED|ROBERT|||||| 3|5|2|2|A|2|0|KOFOED|ROBERT|||||| 2|7|2|2|I|2|0|WILLIAMSON|JAMES||||||... (4 Replies)
Discussion started by: ChicagoBlues
4 Replies

5. Shell Programming and Scripting

perl array sorting

Hi All, I have an array in perl as @match = (201001,201002,201001,201002); I am trying to sort this array as @match = sort(@match); print "@match"; I dont see the output sorted any answers I also tried another way, but still the results are not sorted foreach my $match (sort { $a... (2 Replies)
Discussion started by: bsdeepu
2 Replies

6. Shell Programming and Scripting

Group on the basis of common text in the square bracket and sorting

File A 99 >ac >ss >juk 70 >acb >defa 90 >ca 100 >aa >abc >bca 85 >cde 81 >ghi >ghij 87 >def >fgh <ijk 89 >fck >ghij >kill >aa The given output shud be 100 >aa >abc >bca 87 >def >fgh <ijk 89 >fck >ghij >kill >aa (2 Replies)
Discussion started by: cdfd123
2 Replies

7. Shell Programming and Scripting

Makefiles and "Dynamic" Rules

I have a configuration file, foo.cfg, and a script, bar.sh. bar.sh generates .cc and .h files based on foo.cfg. To exemplify, let's say it creates apple.cc, apple.h, banana.cc, banana.h, carrot.cc, carrot.h, and so on. How do I write a Makefile that runs bar.sh if and only if foo.cfg has... (2 Replies)
Discussion started by: acheong87
2 Replies

8. Shell Programming and Scripting

Question for SED preg_replace

I want to make it in SED PHP preg_replace('@<script*?>.*?</script>@siu','',$text); this is in AWK awk '/<script /{p=1} /<\/script>/{p=0; next}!p' can you help me to make it on SED working? I have this sed 's/<script*>*<\/script>//g' but it not work with this string <script... (9 Replies)
Discussion started by: sanantonio7777
9 Replies

9. What is on Your Mind?

Top Cybersecurity Threats Earth Year 2019 | You Have Been Warned!

You are seeing this new video here first! Top Five Cybersecurity Threats | Earth Year 2019 | You Have Been Warned! https://youtu.be/dRE4u9QVsSg PS: That video has two small typos, but nothing serious. Heck it took nearly 1.5 hours to render even on a 12-core Mac Pro with 64GB of... (20 Replies)
Discussion started by: Neo
20 Replies