Answer the question
In order to leave comments, you need to log in
What book to start learning WCF?
I have "basic" knowledge of the C# language.
I want to get acquainted with WCF technology/framework.
Interested in literature, courses (both text and video). It is desirable that the information be up-to-date, possibly presented in a fascinating way (?) and in Russian.
It is interesting to know how you started and what can you advise me?
Thank you.
Answer the question
In order to leave comments, you need to log in
1) Juval Lowy. Programming WCF Services: Mastering WC...
2) Justin Smith. Inside Windows Communication Foundation...
I think something like this:
usort($arr, function ($a, $b)
{
if ($a['rate'] == $b['rate']) {
return 0;
}
return ($a['rate'] > $b['rate']) ? -1 : 1;
});
<?php
$arr = array(
array(
'name' => 'name_1',
'rate' => 1
),
array(
'name' => 'name_1',
'rate' => 2
),
array(
'name' => 'name_1',
'rate' => -3
),
);
uasort($arr, function($a, $b){
if ($a['rate'] == $b['rate']) {
return 0;
}
return ($a['rate'] < $b['rate']) ? -1 : 1;
});
print_r($arr);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question