match帮助获得来自Facebook的URL的用户名

match帮助获得来自Facebook的URL的用户名

本文介绍了PHP的preg_match帮助获得来自Facebook的URL的用户名/ ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从一个Facebook网址Facebook的用户名或ID,并想知道如果你能帮助我。我敢肯定,这只是一个简单的正则表达式的功能,但我已经尝试似乎并不能做到这一点我自己。

这就是我一直在尝试从URL中得到的。

or the numerical id

I would be very grateful if anyone could help me achieve this via PHP

解决方案
preg_match('#https?\://(?:www\.)?facebook\.com/(\d+|[A-Za-z0-9\.]+)/?#',$str,$matches);

The pattern is versatile so it matches:

  1. http and https URL's.
  2. URL's with or without the www prefix.
  3. URL's with or without the trailing /.
  4. Matches Facebook numerical ID's.
  5. Matches Facebook's rules for usernames.

这篇关于PHP的preg_match帮助获得来自Facebook的URL的用户名/ ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 18:35