7

xml 파싱 예제

· 13년 전 · 4728 · 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년 전 조회 3,113
13년 전 조회 2,549
13년 전 조회 6,636
13년 전 조회 2,363
13년 전 조회 4,856
13년 전 조회 4,867
13년 전 조회 4,477
13년 전 조회 4,638
13년 전 조회 4,135
13년 전 조회 4,088
13년 전 조회 4,310
13년 전 조회 4,126
13년 전 조회 4,135
13년 전 조회 4,249
13년 전 조회 4,271
13년 전 조회 2,940
13년 전 조회 2,122
13년 전 조회 2,266
13년 전 조회 2,032
13년 전 조회 4,265
13년 전 조회 4,191
13년 전 조회 3,531
13년 전 조회 2,554
13년 전 조회 2,258
13년 전 조회 4,131
13년 전 조회 4,645
13년 전 조회 2,683
13년 전 조회 1.2만
13년 전 조회 2,686
13년 전 조회 1,881
13년 전 조회 2,789
13년 전 조회 4,552
13년 전 조회 8,617
13년 전 조회 1만
13년 전 조회 4,292
13년 전 조회 4,431
13년 전 조회 7,940
13년 전 조회 1.2만
13년 전 조회 5,494
13년 전 조회 2,036
13년 전 조회 2,209
13년 전 조회 3,689
13년 전 조회 2,163
13년 전 조회 5,018
13년 전 조회 1,912
13년 전 조회 4,401
13년 전 조회 4,929
13년 전 조회 3,391
13년 전 조회 3,648
13년 전 조회 4,729
13년 전 조회 2,160
13년 전 조회 4,336
13년 전 조회 6,700
13년 전 조회 3,137
13년 전 조회 2,810
13년 전 조회 2,732
13년 전 조회 2,647
13년 전 조회 2,379
13년 전 조회 4,643
13년 전 조회 2,284
13년 전 조회 2,987
13년 전 조회 7,328
13년 전 조회 4,700
13년 전 조회 4,103
13년 전 조회 4,563
13년 전 조회 2,925
13년 전 조회 2,232
13년 전 조회 2,670
13년 전 조회 2,708
13년 전 조회 1,915
13년 전 조회 4,871
13년 전 조회 5,412
13년 전 조회 3,754
13년 전 조회 9,757
13년 전 조회 2,225
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,712
13년 전 조회 2,175
13년 전 조회 7,704
13년 전 조회 2,201
13년 전 조회 2,385
13년 전 조회 2,144
13년 전 조회 2,265
13년 전 조회 2,609
13년 전 조회 2,444
13년 전 조회 2,520
13년 전 조회 5,118
13년 전 조회 3,554
13년 전 조회 5,820
13년 전 조회 4,522
13년 전 조회 5,705
13년 전 조회 3,498
13년 전 조회 2,746
13년 전 조회 2,426
13년 전 조회 3,542
13년 전 조회 6,459
13년 전 조회 2,583
13년 전 조회 5,434
13년 전 조회 6,978