我有一個html內容如下。如何在php中使用正則表達式替換ALT中的ALT和TITLE文本
<img title="" style="float: none;margin-right: 10px;margin-top: 10px;margin-bottom: 10px;" src="http://www.mbatious.com/sites/default/files/imagecache/Large/Distchart.jpg" class="imagecache-Large" alt="">
我想用圖像文件(Distchart)的名稱替換空白的alt和標題文本。如何在PHP中使用preg_replace來做到這一點?執行替換操作後,html應該像
<img title="Distchart" style="float: none;margin-right: 10px;margin-top: 10px;margin-bottom: 10px;" src="http://www.mbatious.com/sites/default/files/imagecache/Large/Distchart.jpg" class="imagecache-Large" alt="Distchart">