正则表达式 (preg_match_all)
我有一个私人网站,我在其中分享视频(和其他一些东西)。 我所实现的是,使用 preg_match_all()
它会自动找到链接,并将带有 HTML 代码的视频粘贴到我的网站。
这是一个例子:
<?php
$matchwith = "http://videosite.com/id1 http://videosite.com/id2 http://videosite.com/id3";
preg_match_all('/videosite\.com\/(\w+)/i', $matchwith, $matches);
foreach($matches[1] as $value)
{
print '<a href="http://videosite.com/'.$value.'">Hyperlink</a>';
}
?>
这有效。我知道这可能会更容易完成,但它必须是这样的。
但我不知道这是一部两部分的电影。这里有一个例子:
$matchWith = "http://videosite.com/id1_movie1 http://videosite.com/id2_movie1"
"http://videosite.com/id3_movie2 http://videosite.com/id4_movie2";
http://videosite.com/(...) 之后的所有内容都是唯一的。
我想要的是,如果您在链接之前写下第 1 部分和第 2 部分(或其他内容),它会自动将其检测为该视频的第 1 部分和第 2 部分。
$matchwith 可以包含不同的电影。
I have a private website where I share videos (and some other stuff).
What I have achieved is that with preg_match_all()
it automatically finds the link and it paste the video with the HTML code to my website.
Here an example:
<?php
$matchwith = "http://videosite.com/id1 http://videosite.com/id2 http://videosite.com/id3";
preg_match_all('/videosite\.com\/(\w+)/i', $matchwith, $matches);
foreach($matches[1] as $value)
{
print '<a href="http://videosite.com/'.$value.'">Hyperlink</a>';
}
?>
This works. I know this could may could be done easier, but it has to be this way.
But I do not know how this with a two part movie. Here an example:
$matchWith = "http://videosite.com/id1_movie1 http://videosite.com/id2_movie1"
"http://videosite.com/id3_movie2 http://videosite.com/id4_movie2";
Everything after http://videosite.com/(...) is unique.
What I want is if you write Part 1 and Part 2 (or whatever) before the link, that it automatically detects it as Part 1 and Part 2 of this video.
$matchwith could contain different movies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以我相信这就是您所需要的:
So I believe this is what you need: