PHP如何去除IMG標籤?

2020-07-16 10:06:29

PHP如何去除IMG標籤?

在PHP中可以使用「preg_replace()」函數去除IMG標籤,該函數作用是執行一個正規表示式的搜尋和替換,使用時只需向第1個引數傳入IMG標籤正則,第2個為空,第3個為要操作的字串即可。

IMG標籤正則:/<s*imgs+[^>]*?srcs*=s*('|")(.*?)1[^>]*?/?s*>/i

使用範例

<?php
/*PHP正則提取圖片img標記中的任意屬性*/
$str = '<center><img src="/uploads/images/20100516000.jpg" height="120" width="120"><br />PHP正則提取或更改圖片img標記中的任意屬性</center>';
//1、取整個圖片程式碼
preg_match('/<s*imgs+[^>]*?srcs*=s*('|")(.*?)1[^>]*?/?s*>/i',$str,$match);
echo $match[0];
//2、取width
preg_match('/<img.+(width="?d*"?).+>/i',$str,$match);
echo $match[1];
//3、取height
preg_match('/<img.+(height="?d*"?).+>/i',$str,$match);
echo $match[1];
//4、取src
preg_match('/<img.+src="?(.+.(jpg|gif|bmp|bnp|png))"?.+>/i',$str,$match);
echo $match[1];
/*PHP正則替換圖片img標記中的任意屬性*/
//1、將src="/uploads/images/20100516000.jpg"替換為src="/uploads/uc/images/20100516000.jpg")
print preg_replace('/(<img.+src="?.+)(images/)(.+.(jpg|gif|bmp|bnp|png)"?.+>)/i',"${1}uc/images/${3}",$str);
echo "<hr/>";
//2、將src="/uploads/images/20100516000.jpg"替換為src="/uploads/uc/images/20100516000.jpg",並省去寬和高
print preg_replace('/(<img).+(src="?.+)images/(.+.(jpg|gif|bmp|bnp|png)"?).+>/i',"${1} ${2}uc/images/${3}>",$str);
?>


推薦教學:《PHP教學

以上就是PHP如何去除IMG標籤?的詳細內容,更多請關注TW511.COM其它相關文章!