我有一种情况,我认为我可能必须使用正则表达式来更改基于类属性的 html 标记内容或 src。
要记录我将解析的文件将是格式良好的 html、部分 html 或 php 文件。
EG 我需要用内部内容更改/填充这些标签:fileX.php
<?php
echo <<<_END
<div class="identifyingClass1"></div>
<div class="identifyingClass2"><span>holding content</span></div>
<img src='http://source.com/to/change' class='identifyingClass3' alt='descrip'/>
_END;
结果文件X.php
<?php
echo <<<_END
<div class="identifyingClass1">New content jsd soisvkbsdv</div>
<div class="identifyingClass2">More new content</div>
<img src='new/source.tiff' class='identifyingClass3' alt='descrip'/>
_END;
html可以是完整的,可以被php分隔,保持原样,在hereDOC中......
实现这一目标的最佳方法是仅使用正则表达式还是有人看到或使用过此类事情的类?