PHP에서 id 요소를 수정하는 방법: 1. PHP 샘플 파일을 생성합니다. 2. "str_replace("$oldString", "$newString", "$html");"를 통해 교체합니다.
이 문서의 운영 환경: Windows 7 시스템, PHP 버전 7.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
의 원래 값을 변경하세요. 권장 학습: "PHP 비디오 튜토리얼》
위 내용은 PHP에서 ID 요소를 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!