사용자 정의 php 클래스(찾기/수정)xml 문서

3138 단어 xmlDOMDocument
최근 에 PHP 의 교육 영상 을 보고 있 는데 그 중에서 PHP 가 xml 문 서 를 조작 하고 DOMDocument 류 를 배 웠 습 니 다.스스로 수첩 을 찾 고 또 전부 영어 로 되 어 있어 서 잘 읽 을 수 없다.그러나 자신 이 종 류 를 써 서 xml 노드 를 찾 고 노드 값 을 수정 했다.배경 설명 이 끝 났 습 니 다.코드 를 보면 다음 과 같 습 니 다.
 
/*
<?xml version="1.0" encoding="UTF-8"?>
< >
< number="101">
< > </ >
< > </ >
< > </ >
< ></ >
</ >
< number="102">
< > </ >
< >140</ >
< > </ >
</ >
< number="103">
< > </ >
< > </ >
< >200</ >
< > </ >
</ >
</ >
*/
class xmlDom{
public $version;
public $encoding;
private $xml;
private $items;
private $seachNode = '';
private $seachItem = '';
private $seachValue = '';
public $writeBytes = 0;
function __construct($xmlFile ='', $version ='1.0', $encoding = 'UTF-8'){
$this->version = $version;
$this->encoding = $encoding;
$this->xml = new DOMDocument($version, $encoding);
if($xmlFile)$this->xml->load($xmlFile);
}
function getRootEle($rootTag){
$this->xmlRoot = $this->xml->getElementsByTagName($rootTag)->item(0);
}
function getSeachItem($itemsTag, $seachNode, $seachValue){
$this->items = $this->xml->getElementsByTagName($itemsTag);
$this->items->length;
for($i=0; $i<$this->items->length; $i++){
$item = $this->items->item($i);//
$node = $item->getElementsByTagName($seachNode);//
for($j = 0; $j< $node->length; $j++){
$subNode = $node->item($j);
if($seachValue == $subNode->nodeValue){
$this->seachNode = $subNode;
$this->seachItem = $item;
$this->seachValue = $subNode->nodeValue;
break(2);
}
}
}
return ($this->seachNode) ? true : false;
}
function update($nodeValue, $nodeTag = '',$append = false, $index = 0){
if($append){
if($nodeTag)
$this->seachItem->getElementsByTagName($nodeTag)->item($index)->nodeValue += $nodeValue;
else
$this->seachNode->nodeValue += $nodeValue;
}else{
if($nodeTag)
$this->seachItem->getElementsByTagName($nodeTag)->item($index)->nodeValue = $nodeValue;
else
$this->seachNode->nodeValue = $nodeValue;
}
}
function save($filename){
$this->writeBytes = $this->xml->save($filename);
return ($this->writeBytes) ? true : false;
}
}
$test = new xmlDom('student.xml');
$test->getSeachItem(' ',' ','103');// =103
$test->update(' ', ' ', false, 1); // :
$test->save('new.xml'); //

좋은 웹페이지 즐겨찾기