我已经创建了一个网站,用户可以在其中提交他们的Facebook页面,我假设他们会为他们的页面设置虚荣URL,我会对其进行编码。例如。
http://www.facebook.com/的 myfacebookpage
但我忘记了某些网页可以有网址,例如
http://www.facebook.com/pages/myfacebookpage/的 54878424154545487
我的问题是如何使用PHP以粗体抓取网址的一部分?
谢谢!
答案 0 :(得分:7)
您可以重新编写应用程序以使用https://graph.facebook.com/?ids=
哪两个都需要
实施例
答案 1 :(得分:5)
$url='http://www.facebook.com/pages/myfacebookpage/54878424154545487'; // the input
$pieces = explode('/', $url); // divides the string in pieces where '/' is found
$key=end($pieces); //takes the last piece