程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php正則取img標記中任意屬性(正則替換去掉或改變圖片img標記中的任意屬性)

php正則取img標記中任意屬性(正則替換去掉或改變圖片img標記中的任意屬性)

編輯:關於PHP編程

因有一項目新聞發布系統,數據庫內容字段中存儲的是原圖的路徑(當然還有其他文字內容啦,內容裡插圖時,存的是圖片路徑),但前台想使用縮略圖,琢磨1小時余,得到以下結果,可解決問題(取img標簽會了,取別的標簽任意屬性自然也會了):

復制代碼 代碼如下:
<?php
/*正則取圖片img標記中的任意屬性*/

$word = '<p height="22" align="cenetr">111 22</p> <img src="http://files.jb51.net/upload/images/aaa.jpg" width="100"><div >中國人</div>';
//取整個圖片代碼
preg_match('/</s*img/s+[^>]*?src/s*=/s*(/'|/")(.*?)//1[^>]*?//?/s*>/i',$word,$matches);
echo $matches[0];//結果:<img src="http://files.jb51.net/upload/images/aaa.jpg" width="100">

$word = '<p height="22" align="cenetr">111 22</p> <img height="60" src="http://files.jb51.net/upload/images/aaa.jpg" width=100 style=><div >中國人</div>';
//取width
preg_match('/<img.+(width=/"?/d*/"?).+>/i',$word,$matches);
echo $matches[1];

//取height
preg_match('/<img.+(height=/"?/d*/"?).+>/i',$word,$matches);
echo $matches[1];

//取src
preg_match('/<img.+src=/"?(.+/.(jpg|gif|bmp|bnp|png))/"?.+>/i',$word,$matches);
echo $matches[1];

/*正則替換去掉或改變圖片img標記中的任意屬性***************************************************************/
$str = '<p height="22" align="cenetr">111 22</p> <img height="60" src="http://files.jb51.net/upload/images/aaa.jpg" width=100 style=><div >中國人</div>
<p height="22" align="cenetr">31313 224344</p> <img src="http://files.jb51.net/upload/images/bbb.jpg" height="60" width=100 style=><div >1212121</div>';

//改變src屬性(此處將原來的src="http://files.jb51.net/upload/images/bbb.jpg"改變為src="http://files.jb51.net/upload/_thumbs/Images/bbb.jpg")
print preg_replace('/(<img.+src=/"?.+)(images//)(.+/.(jpg|gif|bmp|bnp|png)/"?.+>)/i',"/${1}_thumbs/Images//${3}",$str);

/*改變src屬性,
此處將原來的src="http://files.jb51.net/upload/images/bbb.jpg"改變為src="http://files.jb51.net/upload/_thumbs/Images/bbb.jpg",並捨棄寬和高
(比如你想在前台顯示縮略圖,但數據庫中存儲的是原圖的路徑。為什麼要捨棄寬高??你縮略圖啊!還是原圖的寬高,會怎樣???)
*/
print preg_replace('/(<img).+(src=/"?.+)images//(.+/.(jpg|gif|bmp|bnp|png)/"?).+>/i',"/${1} /${2}_thumbs/Images//${3}>",$str);
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved