7

xml 파싱 예제

· 2012-12-28 (금) 14:26:26 · 5956 · 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,511
13-02-15 조회 3,907
13-02-12 조회 5,745
13-02-04 조회 4,063
13-01-30 조회 4,928
13-01-25 조회 3,660
13-01-18 조회 3,750
13-01-18 조회 5,481
13-01-18 조회 6,090
13-01-18 조회 3,772
13-01-18 조회 4,719
13-01-17 조회 4,036
13-01-17 조회 3,547
13-01-17 조회 3,610
13-01-17 조회 3,957
12-12-31 조회 3,483
12-12-28 조회 4,897
12-12-28 조회 5,957
12-12-28 조회 3,399
12-12-27 조회 3,545
12-12-27 조회 4,275
12-12-20 조회 5,184
12-12-18 조회 9,034
12-12-14 조회 4,885
12-12-10 조회 3,600
12-12-10 조회 3,077
12-12-01 조회 3,796
12-11-25 조회 7,274
12-11-22 조회 5,905
12-11-20 조회 2.4만
12-11-19 조회 4,305
12-11-13 조회 3,838
12-11-12 조회 3,851
12-10-23 조회 4,681
12-09-25 조회 4,315
12-09-05 조회 6,923
12-09-04 조회 7,484
12-09-04 조회 3,411
12-08-30 조회 3,359
12-08-30 조회 3,584
12-08-29 조회 3,325
12-08-29 조회 3,127
12-08-26 조회 3,448
12-08-18 조회 3,675
12-08-17 조회 3,963
12-08-16 조회 3,498
12-08-14 조회 3,166
12-08-13 조회 5,572
12-08-13 조회 3,328
12-08-11 조회 3,605
12-08-10 조회 3,161
12-08-07 조회 3,945
12-08-07 조회 3,181
12-08-06 조회 3,387
12-07-31 조회 3,165
12-07-30 조회 3,484
12-07-30 조회 3,116
12-07-29 조회 3,295
12-07-29 조회 3,044
12-07-27 조회 3,102
12-07-21 조회 2,975
12-07-19 조회 3,179
12-07-19 조회 2,760
12-07-17 조회 3,396
12-07-17 조회 3,007
12-07-17 조회 3,923
12-07-16 조회 2,950
12-07-15 조회 3,078
12-07-14 조회 3,127
12-07-13 조회 8,210
12-07-11 조회 3,372
12-07-10 조회 9,942
12-07-09 조회 3,145
12-07-08 조회 4,330
12-07-06 조회 3,614
12-07-05 조회 3,907
12-07-05 조회 3,320
12-07-05 조회 3,171
12-07-03 조회 3,217
12-07-03 조회 3,157
12-07-02 조회 3,186
12-07-02 조회 2,814
12-06-30 조회 3,425
12-06-26 조회 3,135
12-06-22 조회 3,177
12-06-22 조회 3,107
12-06-21 조회 3,099
12-06-21 조회 3,318
12-06-20 조회 3,485
12-06-20 조회 3,148
12-06-20 조회 3,061
12-06-18 조회 3,943
12-06-17 조회 3,373
12-06-15 조회 2,994
12-06-14 조회 2,870
12-06-13 조회 3,495
12-06-11 조회 3,317
12-06-08 조회 3,260
12-06-06 조회 3,117
12-06-06 조회 3,545