DOMNode의 innerHTML을 얻는 방법?
PHP DOM 구현에서 주어진 DOMNode의 innerHTML을 얻기 위해 어떤 함수를 사용합니까? 누군가가 신뢰할 수있는 솔루션을 줄 수 있습니까?
물론 outerHTML도 마찬가지입니다.
이 업데이트 된 변종을 PHP Manual User Note # 89718 과 비교하십시오 .
<?php
function DOMinnerHTML(DOMNode $element)
{
$innerHTML = "";
$children = $element->childNodes;
foreach ($children as $child)
{
$innerHTML .= $element->ownerDocument->saveHTML($child);
}
return $innerHTML;
}
?>
예:
<?php
$dom= new DOMDocument();
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
$dom->load($html_string);
$domTables = $dom->getElementsByTagName("table");
// Iterate over DOMNodeList (Implements Traversable)
foreach ($domTables as $table)
{
echo DOMinnerHTML($table);
}
?>
다음은 함수형 프로그래밍 스타일 의 버전 입니다.
function innerHTML($node) {
return implode(array_map([$node->ownerDocument,"saveHTML"],
iterator_to_array($node->childNodes)));
}
html
요소의 를 반환하려면 C14N ()을 사용할 수 있습니다 .
$dom = new DOMDocument();
$dom->loadHtml($html);
$x = new DOMXpath($dom);
foreach($x->query('//table') as $table){
echo $table->C14N();
}
Haim Evgi의 답변의 단순화 된 버전 :
<?php
function innerHTML(\DOMElement $element)
{
$doc = $element->ownerDocument;
$html = '';
foreach ($element->childNodes as $node) {
$html .= $doc->saveHTML($node);
}
return $html;
}
사용 예 :
<?php
$doc = new \DOMDocument();
$doc->loadHTML("<body><div id='foo'><p>This is <b>an <i>example</i></b> paragraph<br>\n\ncontaining newlines.</p><p>This is another paragraph.</p></div></body>");
print innerHTML($doc->getElementById('foo'));
/*
<p>This is <b>an <i>example</i></b> paragraph<br>
containing newlines.</p>
<p>This is another paragraph.</p>
*/
preserveWhiteSpace
또는 을 설정할 필요가 없습니다 formatOutput
.
trincot의 멋진 버전과 함께 array_map
그리고 implode
이번에는 array_reduce
:
return array_reduce(
iterator_to_array($node->childNodes),
function ($carry, \DOMNode $child) {
return $carry.$child->ownerDocument->saveHTML($child);
}
);
아직도 이해가 안되는데, 왜 reduce()
배열과 반복자를 똑같이 받아들이는 방법이 없는지 .
function setnodevalue($doc, $node, $newvalue){
while($node->childNodes->length> 0){
$node->removeChild($node->firstChild);
}
$fragment= $doc->createDocumentFragment();
$fragment->preserveWhiteSpace= false;
if(!empty($newvalue)){
$fragment->appendXML(trim($newvalue));
$nod= $doc->importNode($fragment, true);
$node->appendChild($nod);
}
}
Here's another approach based on this comment by Drupella on php.net, that worked well for my project. It defines the innerHTML()
by creating a new DOMDocument
, importing and appending to it the target node, instead of explicitly iterating over child nodes.
InnerHTML
Let's define this helper function:
function innerHTML( \DOMNode $n, $include_target_tag = true ) {
$doc = new \DOMDocument();
$doc->appendChild( $doc->importNode( $n, true ) );
$html = trim( $doc->saveHTML() );
if ( $include_target_tag ) {
return $html;
}
return preg_replace( '@^<' . $n->nodeName .'[^>]*>|</'. $n->nodeName .'>$@', '', $html );
}
where we can include/exclude the outer target tag through the second input argument.
Usage Example
Here we extract the inner HTML for a target tag given by the "first" id attribute:
$html = '<div id="first"><h1>Hello</h1></div><div id="second"><p>World!</p></div>';
$doc = new \DOMDocument();
$doc->loadHTML( $html );
$node = $doc->getElementById( 'first' );
if ( $node instanceof \DOMNode ) {
echo innerHTML( $node, true );
// Output: <div id="first"><h1>Hello</h1></div>
echo innerHTML( $node, false );
// Output: <h1>Hello</h1>
}
Live example:
http://sandbox.onlinephpfunctions.com/code/2714ea116aad9957c3c437d46134a1688e9133b8
참고URL : https://stackoverflow.com/questions/2087103/how-to-get-innerhtml-of-domnode
'programing tip' 카테고리의 다른 글
페이지를 새로 고치지 않고 브라우저의 주소 표시 줄을 변경할 수있는 방법이 있습니까? (0) | 2020.09.01 |
---|---|
Ruby에서 Java 인터페이스에 해당하는 것은 무엇입니까? (0) | 2020.09.01 |
PHPMailer로 이메일 보내기-본문에 이미지 삽입 (0) | 2020.09.01 |
InputStream을 UTF-8로 읽기 (0) | 2020.09.01 |
Python을 사용하여 기존 PDF에 텍스트 추가 (0) | 2020.09.01 |