gpt4 book ai didi

php - 使用正则表达式从 php 字符串中的 url 中提取整数

转载 作者:行者123 更新时间:2023-12-02 19:16:10 26 4
gpt4 key购买 nike

我有一个如下例所示的网址

http://www.website.com/page.php?pid=263547322425&foo=too

如何使用正则表达式获取 pid 的值。也就是说从pid=末尾到&?

的值

最佳答案

$matches = array();
if (preg_match('/pid=(\d+)/', $url, $matches)) {
echo $matches[1]; // pid value
}

关于php - 使用正则表达式从 php 字符串中的 url 中提取整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2127898/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com