本文操作环境:windows7系统、PHP7.1版、Dell G3电脑。php怎么修改id元素?PHP替换字符串中的id元素内容:如:$html = '<h1 id="item" class="a
本文操作环境:windows7系统、PHP7.1版、Dell G3电脑。
php怎么修改id元素?
PHP替换字符串中的id元素内容:
如:
$html = '<h1 id="item" class="abc" data="efg">Hello World';
修改方法:
$html = '<h1 id="item" class="abc" data="efg">Hello World';
$elementId ="item";
$newString ="Replace World";
$dom = new DOMDocument();
$dom->loadHTML($html);
$belement = $dom->getElementById("$elementId");
$oldString = $belement->nodeValue;
$newHTML = str_replace("$oldString","$newString","$html");
echo $newHTML;
注意:请更改$elementId和$newString的原始值
--结束END--
本文标题: php怎么修改id元素
本文链接: https://lsjlt.com/news/1015.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0