【发布时间】:2018-04-10 15:14:37
【问题描述】:
我想从 Instagram 帐户获取传记.. 我找到了这个-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]);
但是,我真的不知道如何编辑它以获得生物。任何帮助将不胜感激!
【问题讨论】: