程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP如何用正則取得所有圖片的路徑

PHP如何用正則取得所有圖片的路徑

編輯:關於PHP編程

問題:

 如下面內容,兩個問題:
1、用正則取得所有圖片地址的php語句怎麼寫?
2、取出的多個地址如何一條一條地保存到數據庫中?

<p><img alt="" width="153" src="/upload/2009-11-15/9_3.jpg" height="60" /><img src="/upload/2009-11-15/58263668.png" alt="" /><img width="153" height="60" alt="" src="/upload/2009-11-15/155439_2.jpg" />1、什麼是在線編輯器 2、fckeditor配置 3、fckeditor的應用 4、fckeditor結合數據庫應用</p>

回答:

<?php
$str ='<p><img alt="" width="153" src="/upload/2009-11-15/9_3.jpg" height="60" /><img src="/upload/2009-11-15/58263668.png" alt="" /><img width="153" height="60" alt="" src="/upload/2009-11-15/155439_2.jpg" />1、什麼是在線編輯器 2、fckeditor配置 3、fckeditor的應用 4、fckeditor結合數據庫應用</p>';
preg_match_all("/\<img.*?src\=\"(.*?)\"[^>]*>/i", $str, $match);
print_r($match);

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