- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>http://www.iak1.blogspot.com</title>
- </head>
- <body>
- <!-- Get People locale in TH and other
- <?php
- $id_start = {start_id};
- $id_end = {end_id};
- for ($id=$id_start; $id<=$id_end; $id++)
- {
- @$data = file_get_contents('https://graph.facebook.com/'.$id);
- if (!empty($data))
- {
- $data = json_decode($data);
- if (($data->locale)=='th_TH')
- {
- echo $data->id.' | '.$data->name.' | '.$data->locale.'<br>';
- }
- }
- }
- ?>
- </body>
- </html>