从 http://www.website.com/08/2010/super-cool-article 中提取 http://www.website.com

发布于 2024-09-01 19:41:46 字数 96 浏览 3 评论 0原文

我对正则表达式很烂,到目前为止我只成功了 preg_match("/http:\/\//", $url)

我需要这个作为 php 脚本

I suck at regex, I only managed to get so far preg_match("/http:\/\//", $url).

I need this for a php script

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

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

发布评论

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

评论(3

眼眸 2024-09-08 19:41:47

另一种表达式是 /^http:\/\/[^\/]++/
使用 ++ 是因为所有格量词更有效。

preg_match("/^http:\/\/[^\/]++/", 
           "http://www.website.com/08/2010/super-cool-article", 
           $matches);
echo($matches[0]); // "http://www.website.com"

An alternative expression would be /^http:\/\/[^\/]++/.
++ is used because a possessive quantifier is more efficient.

preg_match("/^http:\/\/[^\/]++/", 
           "http://www.website.com/08/2010/super-cool-article", 
           $matches);
echo($matches[0]); // "http://www.website.com"
黑白记忆 2024-09-08 19:41:46
$parts = parse_url('hotpotatoes://asd.com');
return $parts['scheme'].'://'.$parts['host'];
$parts = parse_url('hotpotatoes://asd.com');
return $parts['scheme'].'://'.$parts['host'];
意犹 2024-09-08 19:41:46

或者通过使用正则表达式:

<?php
$blah="http://www.website.com/08/2010/super-cool-article";
preg_match('/^http:\/\/(\w|\.)*/i',$blah,$matches);
$result=$matches[0];
echo $result;
?>

或通过爆炸:

<?php
$blah="http://www.website.com/08/2010/super-cool-article";
$blah=explode("/",$blah);
$result=$blah[0]."//".$blah[2];
echo $result;
?>

Or by using regex:

<?php
$blah="http://www.website.com/08/2010/super-cool-article";
preg_match('/^http:\/\/(\w|\.)*/i',$blah,$matches);
$result=$matches[0];
echo $result;
?>

or by an explosion:

<?php
$blah="http://www.website.com/08/2010/super-cool-article";
$blah=explode("/",$blah);
$result=$blah[0]."//".$blah[2];
echo $result;
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文