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.

How can I parse this FB account info with PHP and foreach loop? I'm using this code to get user pages:

$user_profile = $facebook->api('/me/accounts');

print_r($user_profile["data"]); 

Here is the resulting array, im trying to get the name and id:

Array
( 
  [0] => Array
  ( 
    [name] => RodBull 
    [access_token] => XXXXXXX
    [category] => Company 
    [id] => 101332379991045 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] => MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [1] => Array
  ( 
    [name] => Jobyer 
    [access_token] => XXXXXX
    [category] => Cause 
    [id] => 177780562324865 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] => MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [2] => Array
  ( 
    [name] => Testing it 
    [access_token] => XXXXXXX 
    [category] => Education 
    [id] => 338949122821475 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] =>` MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [3] => Array
  ( 
    [name] => Wellness Incentives Plus 
    [access_token] => XXXXXX
    [category] => Consulting/business services 
    [id] => 280634342048932 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] => MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [4] => Array
  ( 
    [name] => Cashierr 
    [access_token] => XXXXXX
    [category] => Community organization 
    [id] => 131516906950255 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] => MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [5] => Array
  ( 
    [name] => 100x35.me 
    [access_token] => XXXXXX
    [category] => Community organization 
    [id] => 297550586926613 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] => MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [6] => Array
  ( 
    [name] => Faaafavdsfsd 
    [access_token] => XXXXXX
    [category] => Cause 
    [id] => 336675629760824 
    [perms] => Array ( 
    [0] => ADMINISTER 
    [1] => EDIT_PROFILE 
    [2] => CREATE_CONTENT 
    [3] => MODERATE_CONTENT 
    [4] => CREATE_ADS 
    [5] => BASIC_ADMIN )
  ) 
  [7] => Array
  ( 
    [name] => The Page App Tab by Santu 
    [access_token] => XXXXXXX
    [category] => Application 
    [id] => 402022163198499
  ) 
  [8] => Array
  ( 
    [name] => Button blog 
    [access_token] => XXXXXXXX
    [category] => Application 
    [id] => 194345950699984
  ) 
  [9] => Array
  ( 
    [name] => Twit 
    [access_token] => XXXXXX
    [category] => Application 
    [id] => 473412539337463
  ) 
  [10] => Array
  ( 
    [name] => Invite Friends 
    [access_token] => XXXXXX
    [category] => Application 
    [id] => 112138232257401
  ) 
  [11] => Array
  ( 
    [name] => Candygirl19 
    [access_token] => XXXXXXX
    [category] => Application 
    [id] => 458913407468223
  ) 
  [12] => Array
  ( 
    [name] => Dokter Winkel 
    [access_token] => XXXXXXX
    [category] => Application 
    [id] => 214744621969104
  ) 
  [13] => Array
  ( 
    [name] => Testin James 
    [access_token] => XXXXXXX
    [category] => Application 
    [id] => 186137041506535
  ) 
  [14] => Array
  ( 
    [name] => Fans Avenue 
    [access_token] => XXXXXX
    [category] => Application 
    [id] => 129009763896253
  ) 
  [15] => Array
  ( 
    [name] => Automotive 
    [access_token] => XXXXXXX
    [category] => Application 
    [id] => 304776169593014
  ) 
  [16] => Array
  ( 
    [name] => Dealers 
    [access_token] => XXXXXX
    [category] => Application 
    [id] => 267196013320187
  ) 
  [17] => Array
  ( 
    [name] => Empleo 
    [access_token] => XXXXXX
    [category] => Application 
    [id] => 110682139041185
  ) 
  [18] => Array
  ( 
    [name] => Free Account 
    [access_token] => XXXXXXXX
    [category] => Application 
    [id] => 227897480601648
  ) 
  [19] => Array
  ( 
    [name] => Bienes Raices 
    [access_token] => XXXXXXX
    [category] => Application 
    [id] => 255317971171412
  ) 
  [20] => Array
  ( 
    [name] => Autos 
    [access_token] => XXXXXX
    [category] => Application 
    [id] => 276616169025835
  )
)
share|improve this question
2  
Don't ever post real access tokens! You should go and reset all of your access tokens NOW. – cpilko Oct 3 '12 at 22:29
There is nothing to parse, it is already parsed into an array. Look up a tutorial on how to use arrays in PHP. – meagar Oct 5 '12 at 16:53

closed as not a real question by CBroe, skolima, ЯegDwight, meagar, bstpierre Oct 5 '12 at 17:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 0 down vote accepted
<?php
  $user_profile = $facebook->api('/me/accounts');
  foreach ($user_profile["data"] as $profile){
    $name = $profile["name"];
    $id = $profile["id"];
    echo "Name is $name and id is $id <br />";
  }
?>
share|improve this answer
tested and working.. thnsk! – user1653282 Oct 3 '12 at 22:28
"thnks" is not a word, please stop using it. Chat speak is not allowed here. – meagar Oct 5 '12 at 16:54
 $names = array();
 $ids = array();
 foreach ($data as $d) {
   $names[] = $d['name'];
   $ids[] = $d['id'];
 }
share|improve this answer

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