[PHP] - Find facebook id , profilename that location == TH and other on facebook

FB.PHP


  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. </head>
  6. <body>
  7. <!-- Get People locale in TH and other
  8. <?php
  9. $id_start = {start_id};
  10. $id_end = {end_id};
  11.         for ($id=$id_start; $id<=$id_end; $id++)
  12.         {
  13.                 @$data  = file_get_contents('https://graph.facebook.com/'.$id);
  14.                 if (!empty($data))
  15.                 {
  16.                         $data   = json_decode($data);
  17.                         if (($data->locale)=='th_TH')
  18.                         {
  19.                              echo $data->id.' | '.$data->name.' | '.$data->locale.'<br>';
  20.                         }
  21.                 }
  22.         }
  23. ?>
  24. </body>
  25. </html>