7

xml 파싱 예제

· 2012-12-28 (금) 14:26:26 · 5954 · 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개

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

프로그램

8,188건
+
제목 글쓴이 날짜 조회
13-02-18 조회 3,507
13-02-15 조회 3,900
13-02-12 조회 5,737
13-02-04 조회 4,061
13-01-30 조회 4,924
13-01-25 조회 3,650
13-01-18 조회 3,749
13-01-18 조회 5,477
13-01-18 조회 6,081
13-01-18 조회 3,765
13-01-18 조회 4,715
13-01-17 조회 4,031
13-01-17 조회 3,541
13-01-17 조회 3,606
13-01-17 조회 3,951
12-12-31 조회 3,475
12-12-28 조회 4,897
12-12-28 조회 5,955
12-12-28 조회 3,397
12-12-27 조회 3,543
12-12-27 조회 4,275
12-12-20 조회 5,177
12-12-18 조회 9,022
12-12-14 조회 4,881
12-12-10 조회 3,594
12-12-10 조회 3,070
12-12-01 조회 3,796
12-11-25 조회 7,273
12-11-22 조회 5,905
12-11-20 조회 2.4만
12-11-19 조회 4,302
12-11-13 조회 3,833
12-11-12 조회 3,842
12-10-23 조회 4,676
12-09-25 조회 4,309
12-09-05 조회 6,919
12-09-04 조회 7,481
12-09-04 조회 3,411
12-08-30 조회 3,354
12-08-30 조회 3,578
12-08-29 조회 3,325
12-08-29 조회 3,120
12-08-26 조회 3,444
12-08-18 조회 3,671
12-08-17 조회 3,960
12-08-16 조회 3,493
12-08-14 조회 3,161
12-08-13 조회 5,569
12-08-13 조회 3,323
12-08-11 조회 3,602
12-08-10 조회 3,154
12-08-07 조회 3,941
12-08-07 조회 3,178
12-08-06 조회 3,383
12-07-31 조회 3,165
12-07-30 조회 3,484
12-07-30 조회 3,115
12-07-29 조회 3,295
12-07-29 조회 3,043
12-07-27 조회 3,101
12-07-21 조회 2,974
12-07-19 조회 3,176
12-07-19 조회 2,758
12-07-17 조회 3,389
12-07-17 조회 3,001
12-07-17 조회 3,917
12-07-16 조회 2,940
12-07-15 조회 3,072
12-07-14 조회 3,124
12-07-13 조회 8,205
12-07-11 조회 3,368
12-07-10 조회 9,939
12-07-09 조회 3,140
12-07-08 조회 4,326
12-07-06 조회 3,609
12-07-05 조회 3,905
12-07-05 조회 3,313
12-07-05 조회 3,167
12-07-03 조회 3,216
12-07-03 조회 3,155
12-07-02 조회 3,179
12-07-02 조회 2,812
12-06-30 조회 3,423
12-06-26 조회 3,134
12-06-22 조회 3,173
12-06-22 조회 3,101
12-06-21 조회 3,098
12-06-21 조회 3,315
12-06-20 조회 3,482
12-06-20 조회 3,147
12-06-20 조회 3,058
12-06-18 조회 3,942
12-06-17 조회 3,371
12-06-15 조회 2,993
12-06-14 조회 2,864
12-06-13 조회 3,495
12-06-11 조회 3,316
12-06-08 조회 3,255
12-06-06 조회 3,108
12-06-06 조회 3,545