DOMComment クラス
(PHP 5, PHP 7, PHP 8)
はじめに
コメントノード、つまり <!--
と -->
で囲まれた文字を表します。
クラス概要
/* 継承したプロパティ */
/* メソッド */
/* 継承したメソッド */
public DOMNode::C14N(
bool
bool
?array
?array
): string|false
}bool
$exclusive
= false
,bool
$withComments
= false
,?array
$xpath
= null
,?array
$nsPrefixes
= null
): string|false
目次
- DOMComment::__construct — 新しい DOMComment オブジェクトを作成する
+add a note
User Contributed Notes 1 note
npelov at croler dot net ¶
3 years ago
Note that textContent property of a comment is not entity decoded, it is decoded in DOMElement::textContent :
<?php
$xml = new DOMDocument();
$xml->loadXML('<?xml version="1.0" encoding="utf-8"?>
<configuration version="2">
<!-- test --> -->
test -->
</configuration>'
);
$xpath = new DOMXPath($xml);
$comments = $xpath->query('//comment()');
$elements = $xpath->query('//configuration');
echo $comments[0]->textContent;
// result: test -->
echo $elements[0]->textContent;
// result: test -->
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google