从php中的url中提取值

发布于 2024-12-16 01:56:46 字数 267 浏览 2 评论 0原文

我有一个与此类似的 URL:

http://somethinfs.com/folder/134039/the_title_of_somethings.html
http://somethinfs.com/folder/184738/the_title_of_somethings_else.html

从该 URL 中,我需要提取“134039”和“184738”。 我尝试使用 strpos 和 substr 但它不起作用,它只是返回我 .html

I've a URL similar to this:

http://somethinfs.com/folder/134039/the_title_of_somethings.html
http://somethinfs.com/folder/184738/the_title_of_somethings_else.html

From this URL, I need to extract the "134039" and "184738".
I've tried to use the strpos and substr but it doesn't work, it just return me .html.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

动次打次papapa 2024-12-23 01:56:46

parse_urlexplode 就可以了。

$a = parse_url("http://somethinfs.com/folder/184738/the_title_of_somethings_else.html");
$b = explode("/", $a['path']);
echo $b[2]; 

输出为184738

A mixture of parse_url and explode would do it.

$a = parse_url("http://somethinfs.com/folder/184738/the_title_of_somethings_else.html");
$b = explode("/", $a['path']);
echo $b[2]; 

Output is 184738

复古式 2024-12-23 01:56:46

正则表达式

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

Behold regular expressions:

if (preg_match('!/(\d+)/!', $url, $matches)) {
    echo $matches[1];
}
分開簡單 2024-12-23 01:56:46

爆炸链接/

http:/ /somethinfs.com/folder/134039/the_title_of_somethings.html
 0    1      2           3      4               5       

所以...

$tmp = explode('/', $url);
$your_id = $tmp[4];

您也可以使用正则表达式,如 deceze 所说:)

explode link /

http:/ /somethinfs.com/folder/134039/the_title_of_somethings.html
 0    1      2           3      4               5       

so...

$tmp = explode('/', $url);
$your_id = $tmp[4];

Also you can use regexp as deceze said :)

阳光①夏 2024-12-23 01:56:46

这有效,但返回所有数字:

$number = preg_replace("/[^0-9]/", '', "http://somethinfs.com/folder/134039/the_title_of_somethings.html");
echo $number ;

This works, but returns all numbers:

$number = preg_replace("/[^0-9]/", '', "http://somethinfs.com/folder/134039/the_title_of_somethings.html");
echo $number ;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文