인코딩 없이 PHP DOMNode에 HTML을 추가하는 방법은 무엇입니까?

Susan Sarandon
풀어 주다: 2024-11-19 14:20:03
원래의
864명이 탐색했습니다.

How to append HTML to a PHP DOMNode without encoding?

PHP DOMNode에 HTML 삽입

인코딩 없이 기존 DOMNode에 HTML을 추가하려면 다음을 활용하세요. DOMDocumentFragment::appendXML.

// DOM setup
$dom = new DOMDocument;
$dom->loadXML('<html><body/></html>');
$body = $dom->documentElement->firstChild;

// Append HTML fragment
$template = $dom->createDocumentFragment();
$template->appendXML('<h1>This is <em>my</em> template</h1>');
$body->appendChild($template);

// Output
echo $dom->saveXml();
로그인 후 복사

출력:

<?xml version="1.0"?>
<html><body><h1>This is <em>my</em> template</h1></body></html>
로그인 후 복사

다른 DOMDocument에서 가져오기

// Load another DOMDocument
$tpl = new DOMDocument;
$tpl->loadXML('<h1>This is <em>my</em> template</h1>');

// Import and append
$body->appendChild($dom->importNode($tpl->documentElement, TRUE));
로그인 후 복사

잘못된 형식 가져오기 HTML

// Enable libxml error handling
libxml_use_internal_errors(true);

// Load and import HTML
$tpl = new DOMDocument;
$tpl->loadHtml('<h1>This is <em>malformed</em> template</h1></h2>');
$body->appendChild($dom->importNode($tpl->documentElement, TRUE));

// Disable libxml error handling
libxml_use_internal_errors(false);
로그인 후 복사

위 내용은 인코딩 없이 PHP DOMNode에 HTML을 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿