我希望有一个我可以在文本中解析的函数,然后它将用<img>
标记替换包含(jpg | png | gif | jpeg | bmp)扩展名的所有链接,之后它将也用<a>
标签取代所有其他没有(jpg | png | gif | jpeg | bmp)扩展名的链接。
例如,它应该替换:
http://imgur.com/gallery/TpGvHBL http://i.imgur.com/TpGvHBL.jpg
到
<a href="http://imgur.com/gallery/TpGvHBL" target="_blank">http://imgur.com/gallery/TpGvHBL</a> <img src="http://i.imgur.com/TpGvHBL.jpg" />
=============================================== ============================
目前,我可以使用以下正则表达式将图片网址替换为<img>
标记:
$text = preg_replace('#((https?|ftp):\/\/([^\s]*)\.(jpg|gif|png))#', '<img src="$1" />', $text);
以及以下将普通网址替换为<a>
标记:
$text = preg_replace('/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/i', '<a href="$1" target="_blank">$1</a>', $text);
我想要的是更改第二个正则表达式以仅替换非图像网址,因为它会与我的第一个正则表达式冲突。
谢谢。
答案 0 :(得分:1)
对于迟到的回复表示歉意,我将立即回复。
所以这是我提出的解决方案:
$string = 'some test http://imgur.com/gallery/TpGvHBL http://i.imgur.com/TpGvHBL.jpg something else ...';
$result = preg_replace_callback('~\b(?:https?|ftp|file)://\S+~i', function($v){
if(preg_match('~\.jpe?g|\.png|\.gif|\.bmp$~i', $v[0])){ // if image
return '<img src="' . $v[0] . '">';
}else{
return '<a href="' . $v[0] . '" target="_blank">' . $v[0] . '</a>';
}
}, $string);
我想到匹配所有网址,然后检查是否有图片扩展名。当然第一个正则表达式非常宽松,你可能会改进它...注意你需要PHP 5.3+,因为我使用的是匿名函数。
正则表达式解释:
~ # delimiter
\b # word boundary
(?: # start of a non-capturing group
https? # match http or https
| # or
ftp # match ftp (you may want to add sftp o_O ?)
| # or
file # match file
) # end of the non-capturing group
:// # match ://
\S+ # match anything except whitespace one or more times
~ # delimiter, end of expression
i # set the i modifier : match case-insensitive
第二个正则表达式~\.jpe?g|\.png|\.gif|\.bmp$~i
只匹配字符串末尾的以下扩展名jpg, jpeg, png, gif and bmp
。
答案 1 :(得分:0)
我希望这就是你要找的东西
<?php
$str="http://imgur.com/gallery/TpGvHBL http://i.imgur.com/TpGvHBL.jpg";
$new_str=explode(" ",$str);
$str="<a href=".$new_str[0]." target=_blank>".$new_str[0]."</a>";
$str.=" <img src=".$new_str[1]." />";
echo htmlentities($str);
<强>输出:强>
<a href=http://imgur.com/gallery/TpGvHBL target=_blank>http://imgur.com/gallery/TpGvHBL</a> <img src=http://i.imgur.com/TpGvHBL.jpg />
<?php
//$str='http://imgur.com/gallery/TpGvHBL';
$str='http://i.imgur.com/TpGvHBL.jpg';
if(is_array(getimagesize($str)))
{
echo "Image<br>";
$str="<img src=".$str." />";
}
else
{
echo "Link<br>";
$str="<a href=".$str." target=_blank>".$str."</a>";
}
echo htmlentities($str);
<强>输出:强>
Image
http://i.imgur.com/TpGvHBL.jpg
答案 2 :(得分:0)
@hamza's RegExp遗漏了一些不属于URL的符号,例如引号,括号等。
我建议对此进行更改:
~\b(?:https?|ftp|file)://\S+~i
对此:
~\b(?:https?|ftp|file):\/\/[^\s"'(){}<>|\\^~`]+~i