Skip to content

Instantly share code, notes, and snippets.

@ademalp
Created March 26, 2013 12:51
Show Gist options
  • Save ademalp/5245132 to your computer and use it in GitHub Desktop.
Save ademalp/5245132 to your computer and use it in GitHub Desktop.
<?php
$xml = json_decode(json_encode((array) simplexml_load_file("https://api.twitter.com/1/followers/ids.xml?screen_name=BerkayGmstkn")), 1);
$takipciler = $xml['ids']['id'];
$xml = json_decode(json_encode((array) simplexml_load_file("https://api.twitter.com/1/following/ids.xml?screen_name=BerkayGmstkn")), 1);
$takip_edilenler=$xml['ids']['id'];
var_export(array_diff($takipciler,$takip_edilenler));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment