如何使用原生 PHP DOM Parser 在 html 页面中查找和替换字符串?
要查找的示例字符串:"the <a href='site.com'>company</a> has been growing for the past 5 months";
例如,父级是一个完整的 HTML 页面,该字符串的直接前导可以是一个<div>
或<p>
例如..
该元素没有 id 或 class。是否仍然可以找到并操纵它?
没有任何东西可以识别字符串或其直接前任。只有确切的字符串,即 $search_string 包含的字符序列。
谢谢!
编辑:
$string_to_replace ="the <a href='site.com'>company</a> has been growing for the past 5 months";
$replacement_string ="<span class='someClass'>the <a href='site.com'>company</a> has been growing for the past 5 months";</span>