I want to get Biography from Instagram Account.. I found this- Getting basic information from Instagram using PHP
$raw = file_get_contents('https://www.instagram.com/USERNAME'); //replace with user
preg_match('/\"followed_by\"\:\s?\{\"count\"\:\s?([0-9]+)/',$raw,$m);
print intval($m[1]);
But, I don't really know how to edit it to get bio. Any help would be really appreciated!