7

xml 파싱 예제

· 13년 전 · 4325 · 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,734
13년 전 조회 2,083
13년 전 조회 6,251
13년 전 조회 1,985
13년 전 조회 4,451
13년 전 조회 4,450
13년 전 조회 4,077
13년 전 조회 4,217
13년 전 조회 3,714
13년 전 조회 3,669
13년 전 조회 3,931
13년 전 조회 3,688
13년 전 조회 3,732
13년 전 조회 3,860
13년 전 조회 3,883
13년 전 조회 2,553
13년 전 조회 1,725
13년 전 조회 1,888
13년 전 조회 1,634
13년 전 조회 3,873
13년 전 조회 3,763
13년 전 조회 3,156
13년 전 조회 2,157
13년 전 조회 1,880
13년 전 조회 3,695
13년 전 조회 4,251
13년 전 조회 2,296
13년 전 조회 1.2만
13년 전 조회 2,213
13년 전 조회 1,478
13년 전 조회 2,407
13년 전 조회 4,144
13년 전 조회 8,188
13년 전 조회 1만
13년 전 조회 3,922
13년 전 조회 4,055
13년 전 조회 7,555
13년 전 조회 1.1만
13년 전 조회 5,109
13년 전 조회 1,663
13년 전 조회 1,782
13년 전 조회 3,253
13년 전 조회 1,792
13년 전 조회 4,645
13년 전 조회 1,494
13년 전 조회 4,022
13년 전 조회 4,521
13년 전 조회 2,980
13년 전 조회 3,268
13년 전 조회 4,326
13년 전 조회 1,788
13년 전 조회 3,922
13년 전 조회 6,266
13년 전 조회 2,718
13년 전 조회 2,412
13년 전 조회 2,336
13년 전 조회 2,253
13년 전 조회 1,984
13년 전 조회 4,222
13년 전 조회 1,892
13년 전 조회 2,582
13년 전 조회 6,917
13년 전 조회 4,280
13년 전 조회 3,672
13년 전 조회 4,163
13년 전 조회 2,490
13년 전 조회 1,815
13년 전 조회 2,262
13년 전 조회 2,317
13년 전 조회 1,473
13년 전 조회 4,495
13년 전 조회 5,011
13년 전 조회 3,357
13년 전 조회 9,375
13년 전 조회 1,811
13년 전 조회 9,766
13년 전 조회 1.8만
13년 전 조회 2,297
13년 전 조회 1,773
13년 전 조회 7,309
13년 전 조회 1,801
13년 전 조회 1,959
13년 전 조회 1,719
13년 전 조회 1,859
13년 전 조회 2,165
13년 전 조회 2,051
13년 전 조회 2,128
13년 전 조회 4,705
13년 전 조회 3,175
13년 전 조회 5,453
13년 전 조회 4,114
13년 전 조회 5,299
13년 전 조회 3,134
13년 전 조회 2,356
13년 전 조회 2,029
13년 전 조회 3,141
13년 전 조회 6,046
13년 전 조회 2,201
13년 전 조회 5,058
13년 전 조회 6,596