PHP의 SimpleXMLElement 클래스를 사용하여 요소의 내부 HTML 콘텐츠를 추출할 때 asXML() 메서드는 다음을 포함하는 전체 요소를 반환합니다. 래핑 태그입니다. 내부 XML만 얻으려면 사용자 정의 함수가 필요합니다.
해당 함수 중 하나가 아래에 나와 있습니다.
<code class="php">function SimpleXMLElement_innerXML($xml) { $innerXML = ''; foreach (dom_import_simplexml($xml)->childNodes as $child) { $innerXML .= $child->ownerDocument->saveXML($child); } return $innerXML; }</code>
예를 들어 다음 XML이 주어진 경우:
<code class="xml"><qa> <question>Who are you?</question> <answer>Who who, <strong>who who</strong>, <em>me</em></answer> </qa></code>
답변 요소의 내부 XML을 추출하려면:
<code class="php">$xml = simplexml_load_string($xml_string); $answer_innerXML = SimpleXMLElement_innerXML($xml->answer);</code>
$answer_innerXML에는 다음 문자열이 포함됩니다.
Who who, <strong>who who</strong>, <em>me</em>
위 내용은 PHP에서 래핑 태그 없이 SimpleXMLElement에서 내부 XML 콘텐츠를 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!