How to modify the id element in php

藏色散人
Release: 2023-03-14 17:40:01
Original
1966 people have browsed it

How to modify the id element in php: 1. Create a PHP sample file; 2. Replace it through "str_replace("$oldString", "$newString", "$html");".

How to modify the id element in php

#The operating environment of this article: Windows 7 system, PHP version 7.1, Dell G3 computer.

How to modify the id element in php?

PHP replaces the content of the id element in the string:

For example:

$html = &#39;<h1 id="item" class="abc" data="efg">Hello World&#39;;
Copy after login

Modification method:

$html = &#39;<h1 id="item" class="abc" data="efg">Hello World&#39;;
$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;
Copy after login

Note: Please change the original values ​​of $elementId and $newString

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to modify the id element in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template