我正在申请,我需要使用帖子的帖子编号
我希望用户像这样粘贴网址:
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
我无法从这些网址中提取帖子编号
答案 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;