我想知道我是否能够使用PHP提取任何HTML元素的文本。
例如。 <a> Hello World </a>
然后从中提取 Hello World 或者能够操纵它。
我尝试使用DOM来访问某些属性Like
$doc = new DOMDocument();
libxml_use_internal_errors(true);
$doc->loadHTMLFile("C:\\Users\\Ahmar Zafar\\Desktop\\SentimentAnalysis-master\\Website\\index.html")
$plink = $doc->getElementById("first");
$plink->setAttribute("src", "http://www.google.com");
$doc->saveHTMLFile("C:\\Users\\Ahmar Zafar\\Desktop\\SentimentAnalysis-master\\Website\\index.html");
这似乎适用于属性,但是当我需要InnerHTML的解决方案时。我想动态更改内部html。请帮助我纠正这个问题或提出一些解决方案。