Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use this to get the list of friends by birthday:

$frnd = $facebook ->api('/me/friends?fields=id,name,birthday&access_token='.$access_token);

How do I sort the result and still keep it under the same structure?

share|improve this question
possible duplicate of How to sort an array based on a specific field in the array? – Igy Aug 26 '12 at 16:40
Not sure quite what you're asking here. Are you asking how to sort a json array in php? If so, the link provided is probably useful. Or are you asking the most efficient way (least data returned) to get the birthdays of all of the friends you can? For the latter, check out stackoverflow.com/questions/5548673/… – David Kinghorn Aug 26 '12 at 18:14

1 Answer

up vote 0 down vote accepted

Thanks for the comments - this helped me in going for the right direction and this is the answer:

        $frnd = $facebook ->api('/me/friends?fields=id,name,birthday&access_token='.$access_token);

        $arr = $frnd["data"];
        function so ($a, $b) {
            $a_dt = explode("/",$a['birthday']); // dt[0] is month, dt[1] is day
            $b_dt = explode("/",$b['birthday']); // dt[0] is month, dt[1] is day

            $a_dt_time = mktime(0,0,0,$a_dt[0],$a_dt[1], date("y"));
            $b_dt_time = mktime(0,0,0,$b_dt[0],$b_dt[1], date("y"));

            return ($a_dt_time < $b_dt_time) ? -1 : 1;
        }
        uasort($arr, 'so');

        $frnd["data"] = $arr;
        // debug: print_r($arr);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.