7

xml 파싱 예제

· 13년 전 · 4104 · 1

<?xml version="1.0" encoding="utf-8"?>
<CATEGORIES type="day">
<CATEGORY label="22" data="20101022"/>
<CATEGORY label="23" data="20101023"/>
</CATEGORIES>

// XML 파일 열고 루트 테그 가져오기
$dom = DOMDocument::load($filepath);
$temp = $dom->getElementsByTagName('CATEGORIES');
$root = $temp->item(0);

// 노드 추가 하기 위해 추가할 위치 검색
// 여기서는 날짜를 기준으로 정렬하는 부분인데, 현재 입력된 날짜가 크면 다음으로, 작으면 그 노드의 앞을 지정
$childs = $root->getElementsByTagName('CATEGORY');
for ($L1 = 0, $C1 = $childs->length; $L1 < $C1; $L1++)
{
$child = $childs->item($L1);
$label = $child->getAttribute('label');

if ($data == $label) { $isFound = -1; break; }
elseif ($data < $label) { $isFound = 1; break; }
}

// 신규 XML 파일 생성
// <?xml version="1.0" encoding="utf-8"?><CATEGORIES type="day" />
$dom = new DOMDocument('1.0', 'utf-8');
$root = $dom->createElement('CATEGORIES');
$root->setAttribute('type', 'day');
$dom->appendChild($root);

// 신규 노드 생성
//<CATEGORY label="22" data="20101022"/>
$node = $dom->createElement('CATEGORY');
$node->setAttribute('label', '22');
$node->setAttribute('data', '20101022');

// 추가할 위치가 있는 경우 그 앞에 추가하고, 없다면 맨 뒤의 노드에 추가
if ($isFound == 1) { $root->insertBefore($node, $child); }
elseif ($isFound == 0) { $root->appendChild($node); }

// 저장
//echo htmlspecialchars($dom->saveXML());
createDirectory($filepath);
$dom->save($filepath);
chmod($filepath, 0646);

|

댓글 1개

좋은 자료네요
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 2,548
13년 전 조회 2,012
13년 전 조회 6,081
13년 전 조회 1,745
13년 전 조회 4,240
13년 전 조회 4,249
13년 전 조회 3,840
13년 전 조회 4,138
13년 전 조회 3,663
13년 전 조회 3,609
13년 전 조회 3,684
13년 전 조회 3,644
13년 전 조회 3,679
13년 전 조회 3,632
13년 전 조회 3,665
13년 전 조회 2,321
13년 전 조회 1,667
13년 전 조회 1,650
13년 전 조회 1,425
13년 전 조회 3,660
13년 전 조회 3,717
13년 전 조회 2,989
13년 전 조회 2,098
13년 전 조회 1,717
13년 전 조회 3,645
13년 전 조회 4,033
13년 전 조회 2,057
13년 전 조회 1.1만
13년 전 조회 2,152
13년 전 조회 1,252
13년 전 조회 2,201
13년 전 조회 3,927
13년 전 조회 7,988
13년 전 조회 9,901
13년 전 조회 3,706
13년 전 조회 3,829
13년 전 조회 7,495
13년 전 조회 1.1만
13년 전 조회 4,870
13년 전 조회 1,434
13년 전 조회 1,716
13년 전 조회 3,202
13년 전 조회 1,571
13년 전 조회 4,583
13년 전 조회 1,293
13년 전 조회 3,796
13년 전 조회 4,303
13년 전 조회 2,919
13년 전 조회 3,039
13년 전 조회 4,105
13년 전 조회 1,567
13년 전 조회 3,705
13년 전 조회 6,064
13년 전 조회 2,566
13년 전 조회 2,200
13년 전 조회 2,174
13년 전 조회 2,017
13년 전 조회 1,773
13년 전 조회 4,002
13년 전 조회 1,676
13년 전 조회 2,366
13년 전 조회 6,764
13년 전 조회 4,052
13년 전 조회 3,445
13년 전 조회 3,964
13년 전 조회 2,301
13년 전 조회 1,599
13년 전 조회 2,045
13년 전 조회 2,100
13년 전 조회 1,412
13년 전 조회 4,453
13년 전 조회 4,807
13년 전 조회 3,135
13년 전 조회 9,143
13년 전 조회 1,761
13년 전 조회 9,567
13년 전 조회 1.8만
13년 전 조회 2,073
13년 전 조회 1,547
13년 전 조회 7,105
13년 전 조회 1,646
13년 전 조회 1,730
13년 전 조회 1,489
13년 전 조회 1,636
13년 전 조회 1,979
13년 전 조회 1,833
13년 전 조회 1,911
13년 전 조회 4,492
13년 전 조회 2,977
13년 전 조회 5,244
13년 전 조회 3,910
13년 전 조회 5,090
13년 전 조회 2,924
13년 전 조회 2,149
13년 전 조회 1,799
13년 전 조회 2,919
13년 전 조회 5,835
13년 전 조회 2,156
13년 전 조회 5,021
13년 전 조회 6,557