Regex PHP - Auto-detect YouTube, image and quot;regularquot; links(Regex PHP - 自动检测 YouTube、图像和“常规链接)
问题描述
我希望在我的聊天应用程序中,可以点击指向网站的链接,并自动嵌入指向 YouTube 和图像的链接.
I want to make it so that in my chat-application, links to websites can be clickable and links to YouTube and images automatically gets embedded.
我已经为我的 WebIRC 客户端使用 Java 编写了这段代码,但现在我正在尝试使用 PHP 和 JavaScript 编写它.
I've made this code in Java for my WebIRC client but now I'm trying to make it in PHP and JavaScript.
我还不熟悉 PHP,所以我不太了解在那里使用正则表达式.我想知道是否有好心人能帮我解决这个问题...
I'm not familiar with PHP yet so I don't know that much about using regex there. I wonder if some kind soul could help me with this...
对于 YouTube 的东西,我尝试过但没有成功:
For the YouTube-thingy I tried this without success:
if (preg_match("#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v/)[^&
]+|(?<=v=)[^&
]+|(?<=youtu.be/)[^&
]+#", $message, $m)) {
$video_id = $m[1];
$message = preg_replace("#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v/)[^&
]+|(?<=v=)[^&
]+|(?<=youtu.be/)[^&
]+#","<iframe class='embedded-video' src="aHR0cDovL3d3dy55b3V0dWJlLmNvbS9lbWJlZC8=" . $video_id . "' allowfullscreen></iframe>",$message);
}
推荐答案
这是我想出的解决方案:
Here is a solution I came up with:
$str = 'This is an image: google.ca/images/srpr/logo3w.png
YouTube: http://www.youtube.com/watch?v=V2b8ilapFrI&feature=related
Stackoverflow: http://stackoverflow.com/';
$str = preg_replace_callback('#(?:https?://S+)|(?:www.S+)|(?:S+.S+)#', function($arr)
{
if(strpos($arr[0], 'http://') !== 0)
{
$arr[0] = 'http://' . $arr[0];
}
$url = parse_url($arr[0]);
// images
if(preg_match('#.(png|jpg|gif)$#', $url['path']))
{
return '<img src="Jy4gJGFyclswXSAuIA=="" />';
}
// youtube
if(in_array($url['host'], array('www.youtube.com', 'youtube.com'))
&& $url['path'] == '/watch'
&& isset($url['query']))
{
parse_str($url['query'], $query);
return sprintf('<iframe class="embedded-video" src="aHR0cDovL3d3dy55b3V0dWJlLmNvbS9lbWJlZC8lcw==" allowfullscreen></iframe>', $query['v']);
}
//links
return sprintf('<a href="%1$s">%1$s</a>', $arr[0]);
}, $str);
如果您需要我为您澄清任何事情,请告诉我.
Let me know if you need me to clarify anything for you.
这篇关于Regex PHP - 自动检测 YouTube、图像和“常规"链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Regex PHP - 自动检测 YouTube、图像和“常规"链接


- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01