需要在文件 html 中更改标签 html 的值。我尝试使用函数 preg_replace() 但我无法更改任何内容。
html文件:
...
<div id="phrase_of_day">
<div>
<span class="icon quote"></span>
<h1>Frase do Dia</h1>
<blockquote><p>value to change</p></blockquote>
</div>
</div>
...
我试试这个:
$url = '../index.html';
$file = file_get_contents($url);
$o = preg_replace('/.*<div id="phrase_of_day">.*<blockquote><p>(\w+)<\/p><\/blockquote>/','hello world', $file);
file_put_contents('test.html', $o);
有谁知道我错在哪里?
更新
我尝试使用 DOMDocument 类,如建议的 Madara Uchiha,但现在我遇到了编码特殊字符的问题。
例子:
origin: <h1>Gerar Parágrafos</h1>
after: <h1>Gerar Parágrafos</h1>
代码:
libxml_use_internal_errors(true);
$document = new DOMDocument('1.0', 'UTF-8');
$document->loadHTMLFile($url);
$document->encoding = 'UTF-8';
$blockquote = $document
->getElementById("phrase_of_day") //Div
->getElementsByTagName("blockquote")->item(0);
$new_value = new DOMElement("p", "New Value for Element");
$blockquote->replaceChild($new_value, $blockquote->childNodes->item(0));
$document->saveHTMLFile('test.html');
libxml_use_internal_errors(false);