0
我有包含HTML文件:PHP - 編輯特定的HTML內容的文件
<div>
<p class="derp">Hello</p>
<p>Hi</p>
<p>Heyo</p>
</div>
我想要做的就是做的是更新HTML文件的P標籤,像這樣的具體說明:
<?php
$value = "I am here to replace something!";
$index = 1;
$page_source = file_get_contents($file_name);
// Something here to replace the second p-tag with $value
file_put_contents($file_name, $page_source);
?>
我已經嘗試了2種不同的方法來做到這一點(loadHTML,preg_replace),但我想聽聽你的意見,哪些可能是最適合我的情況。
非常好的答案!