我有一个 html 内容,如下所示。
<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">