正则表达式获取数字 URL 参数的值?
在如下所示的 url 中,我想获取 ProdId 的值。 URL 格式将始终保持一致,参数名称也将保持一致,但值的长度可能会发生变化。它始终是数字。
http://www.example.com/page.php?ProdId=2683322&xpage=2
使用 PHP 获取它的最快方法是什么(我将处理 10,000 个,所以速度是一个问题)?
In a url like the one below, I'd like to get the value of ProdId. The URL format will always be consistent, as will the parameter name, but the length of the value may change. It will always be numeric.
http://www.example.com/page.php?ProdId=2683322&xpage=2
Using PHP what's the fastest way to get it (I'll be processing 10,000's so speed is an issue)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
PHP 为此提供了内置函数。使用
parse_url()
和parse_str()
在一起。从 php.net 拼凑而成:
PHP has built-in functions for this. Use
parse_url()
andparse_str()
together.Pieced together from php.net:
试试这个正则表达式:
Try this regular expression:
不能使用
$_GET['ProdId']
吗?Can't you use
$_GET['ProdId']
?试试这个功能:
Try this function:
英语也是如此:
?
或#
之外的任何内容(这将使我们到达查询字符串的开头或哈希部分,以先到者为准)&
And the same in English:
?
or#
(this will get us to the beginning of the query string or the hash part, whichever comes first)?
(if there was only a hash part, this will disqualify the match)&