/    Sign up×
Community /Pin to ProfileBookmark

Help With a Custom Sorting Function

I need a little function that will put the values of an array in this order:

“RWD”, “WD”, “RWB”, “WB”, “BOW”, “BOS”, “BOB”, “GRP4”, “GRP3”, “GRP2”, “GRP1”, “BIS”

If you need a test array to work with, use this one:

[code=php]$placements=array(‘BOS’, ‘RWD’, ‘BIS’, ‘GRP3’, ‘GRP2’);[/code]

I’m gonna be using this with a usort.

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@scragarDec 15.2008 — [code=php]
function myValueSort($a, $b){
$x = array_flip(array(
"RWD", "WD", "RWB", "WB", "BOW", "BOS", "BOB",
"GRP4", "GRP3", "GRP2", "GRP1", "BIS"
));
if($b == $a)
return 0;
return ($x[$a] < $x[$b])?-1:1;
}

usort($placements, "myValueSort");
print_r($placements);
[/code]

Swap $a and $b around if the array comes out sorted the wrong way around.
×

Success!

Help @evenstar7139 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.4,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...