我需要從容器中的所有圖像獲取所有源值。我在這方面遇到了一些困難。php - 獲取圖像的源代碼
請允許我解釋一下過程。所有數據來自數據庫。在backofficce內部,用戶在textarea中輸入所有文本和圖像。要將文本與圖像分開,用戶必須輸入分頁符。 讓我們去我已經嘗試過的代碼
while ($rowClients = mysql_fetch_array($rsClients)) {
$result = $rowClients['content'];
$resultExplode = explode('<!-- pagebreak -->', $result);
// with resultExplode[0] I get the code and with resultExplde[1] I get the image
// Now with I want to get only the src value from resultExplode[1]
與strip_tags
$imageSrc = strip_tags($resultadoExplode[1]);
,但它不顯示任何信息。
我發現this post但沒有成功。我停在第一個print_r。
任何人都可以幫助我?
感謝
究竟是什麼沒有解決方案離子在另一個問題中提出? – codeling
嘗試使用PHP [DOM](http://php.net/manual/en/book.dom.php) –
如果沒有文本示例,我只能假設您的文本是html文件:請確認這一點 – Waygood