Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
2,781
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. $response = file_get_contents("https://www.instagram.com/p/BeIWLJ9h97j/?__a=1");
  3. if ($response !== false) {
  4. $data = json_decode($response, true);
  5. if ($data !== null) {
  6. //print_r($data);
  7. //print_r($data['graphql']['shortcode_media']['taken_at_timestamp']);
  8. $unixTime=$data['graphql']['shortcode_media']['taken_at_timestamp'];
  9. $dt = new DateTime("@$unixTime");
  10. $dt->setTimeZone(new DateTimeZone('America/Chicago'));
  11. echo $dt->format('F j, Y, g:i a');
  12. //echo $data['graphql']['shortcode_media']['taken_at_timestamp'];
  13. }
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement