如何从网址中提取facebook帖子号码?

时间:2014-05-01 17:50:37

标签: php facebook url facebook-php-sdk

我正在申请,我需要使用帖子的帖子编号

我希望用户像这样粘贴网址:

https://www.facebook.com/sameple_page/posts/674053579296790?stream_ref=1
https://www.facebook.com/thinkdigit/photos/a.304388242384.154049.110963532384/10152000893017385/?type=1&theater

我无法从这些网址中提取帖子编号

1 个答案:

答案 0 :(得分:0)

获取您可以使用的第一个网址:

$origPath = "https://www.facebook.com/sameple_page/posts/674053579296790?stream_ref=1";
$pos1 = strripos($origPath, "/");
$pos1++;
$pos2 = strripos($origPath, "?");
$len = $pos2 - $pos1;
$newPath = substr($origPath, $pos1, $len);
echo $newPath;