PHP5는 XML 지원을 강화했으며 DOM을 사용하여 XML 작업 기능을 확장합니다. 이러한 기능은 PHP5 코어의 일부이므로 사용하기 위해 설치할 필요가 없습니다.
다음 예는 XML에서 DOM의 작동을 간단히 보여줍니다. 자세한 설명은
<?
/************************************************
** PHP5에서는 XML을 사용합니다.
** 참고 사이트:
** http://cn.php.net/manual/zh/ref.dom.php
** 다음 코드는 PHP5 지원이 필요합니다
** www.knowsky.com
*************************************************/
//먼저 DOMDocument 객체를 생성합니다.
$dom = 새로운 DomDocument();
//XML 파일을 로드합니다.
$dom -> load("test.xml");
//XML 파일 출력
//header("콘텐츠 유형: text/xml;charset=gb2312");
//echo $dom -> saveXML();
//XML 파일을 저장합니다. 반환 값은 int(파일 크기(바이트))입니다.
//$dom -> save("newfile.xml");
echo "<hr/>모든 제목 요소 가져오기:<hr/>";
$titles = $dom -> getElementsByTagName("제목");
foreach($titles를 $node로)
{
echo $node -> textContent "<br/>";
//이것도 괜찮습니다
//echo $node->firstChild->data "<br/>";
}
/*
echo "<hr/>루트 노드부터 모든 노드 탐색:<br/>";
foreach ($dom->documentElement->childNodes를 $items로) {
//노드가 요소(nodeType == 1)이고 이름이 항목인 경우 루프를 계속합니다.
if ($items->nodeType == 1 && $items->nodeName == "항목") {
foreach($items->childNodes를 $titles로) {
//노드가 요소이고 이름이 제목이면 인쇄합니다.
if ($titles->nodeType == 1 && $titles->nodeName == "제목") {
$titles->textContent를 인쇄합니다. "n";
}
}
}
}
*/
//XPath를 사용하여 데이터 쿼리
echo "<hr/>XPath 쿼리를 사용한 타이틀 노드 결과:<hr/>";
$xpath = 새로운 domxpath($dom);
$titles = $xpath->query("/rss/채널/항목/제목");
foreach($titles를 $node로)
{
echo $node->textContent."<br/>";
}
/*
이는 getElementsByTagName() 메서드를 사용하는 것과 비슷하지만 Xpath가 더 강력하고 심층적이라면 다음과 같을 수 있습니다.
/rss/channel/item[position() = 1]/title은 첫 번째 항목 요소의 모든 요소를 반환합니다.
/rss/channel/item/title[@id = '23'] id 속성을 포함하고 값이 23인 모든 제목을 반환합니다.
/rss/channel/&folder&/title은 모든 기사 요소 아래의 제목을 반환합니다(번역자 참고 사항: &folder&는 디렉토리 깊이를 나타냅니다).
*/
//DOM에 새 데이터 쓰기
$item = $dom->createElement("항목");
$title = $dom->createElement("제목");
$titleText = $dom->createTextNode("제목 텍스트");
$title->appendChild($titleText);
$item->appendChild($title);
$dom->documentElement->getElementsByTagName('channel')->item(0)->appendChild($item)
//DOM에서 노드 삭제
;
//$dom->documentElement->RemoveChild($dom->documentElement->getElementsByTagName("channel")->item(0));
//또는 xpath를 사용하여 노드를 쿼리하고 삭제합니다.
//$dom->documentElement->RemoveChild($xpath->query("/rss/channel")->item(0));
//$dom->save("newfile.xml");
//DOM에서 노드 데이터 수정
//첫 번째 타이틀 파일 수정
//이런 곳은 바보같습니다. 새 노드를 만든 다음 기존 노드를 교체하세요. 혹시 다른 좋은 방법 있으면 알려주세요.
$firstTitle = $xpath->query("/rss/채널/항목/제목")->항목(0);
$newTitle = $dom->createElement("제목");
$newTitle->appendChild(new DOMText("새 제목 텍스트입니다!!!"));
$firstTitle->parentNode->replaceChild($newTitle, $firstTitle);
//속성 수정
//$firstTitle = $xpath->query("/rss/채널/항목/제목")->item(0);
//$firstTitle->setAttribute("orderby", "4");
$dom->save("newfile.xml");
echo "<hr/><a href="newfile.xml">View newfile.xml</a>"
//다음 코드는 PHP를 가져오고 구문 분석합니다. .net 홈페이지는 첫 번째 제목 요소의 콘텐츠를 반환합니다.
/*
$dom->loadHTMLFile(" http://www.php.net/ ");
$title = $dom->getElementsByTagName("제목");
$title->item(0)->textContent를 인쇄합니다.
*/
?>
다음은 test.xml 파일 코드이다:
<?xml version="1.0" 인코딩="gb2312"?>
<rss 버전="2.0">
<채널>
<title>자바스크립트</title>
<link>http://blog.csdn.net/zhongmao/category/29515.aspx</link>
<설명>자바스크립트</description>
<언어>zh-chs</언어>
<generator>.text 버전 0.958.2004.2001</generator>
<아이템>
<creator>종마오</creator>
<title orderby="1">자바스크립트를 사용한 엑셀 출력</title>
<link>http://blog.csdn.net/zhongmao/archive/2004/09/15/105385.aspx</link>
<pubdate>2004년 9월 15일 수요일 13:32:00 GMT</pubdate>
<guid>http://blog.csdn.net/zhongmao/archive/2004/09/15/105385.aspx</guid>
<코멘트>http://blog.csdn.net/zhongmao/comments/105385.aspx</comment>
<코멘트>http://blog.csdn.net/zhongmao/archive/2004/09/15/105385.aspx#feedback</comments>
<comments>2</comments>
<commentrss>http://blog.csdn.net/zhongmao/comments/commentrss/105385.aspx</commentrss>
<ping>http://blog.csdn.net/zhongmao/services/trackbacks/105385.aspx</ping>
<description>테스트 설명</description>
</item>
<아이템>
<creator>종마오</creator>
<title orderby="2">자바스크립트를 사용한 단어 출력</title>
<link>http://blog.csdn.net/zhongmao/archive/2004/08/06/67161.aspx</link>
<pubdate>2004년 8월 6일 금요일 16:33:00 GMT</pubdate>
<guid>http://blog.csdn.net/zhongmao/archive/2004/08/06/67161.aspx</guid>
<코멘트>http://blog.csdn.net/zhongmao/comments/67161.aspx</comment>
<코멘트>http://blog.csdn.net/zhongmao/archive/2004/08/06/67161.aspx#feedback</comments>
<comments>0</comments>
<commentrss>http://blog.csdn.net/zhongmao/comments/commentrss/67161.aspx</commentrss>
<ping>http://blog.csdn.net/zhongmao/services/trackbacks/67161.aspx</ping>
<description>테스트 단어 설명</description>
</item>
<아이템>
<creator>종마오</creator>
<title orderby="3">xmlhttp</title>
<link>http://blog.csdn.net/zhongmao/archive/2004/08/02/58417.aspx</link>
<pubdate>2004년 8월 2일 월요일 10:11:00 GMT</pubdate>
<guid>http://blog.csdn.net/zhongmao/archive/2004/08/02/58417.aspx</guid>
<코멘트>http://blog.csdn.net/zhongmao/comments/58417.aspx</comment>
<코멘트>http://blog.csdn.net/zhongmao/archive/2004/08/02/58417.aspx#feedback</comments>
<comments>0</comments>
<commentrss>http://blog.csdn.net/zhongmao/comments/commentrss/58417.aspx</commentrss>
<ping>http://blog.csdn.net/zhongmao/services/trackbacks/58417.aspx</ping>
<description>xmlhttpaaa asd bb cc dd</description>
</item>
</채널>
</rss>