7

xml 파싱 예제

· 13년 전 · 4712 · 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,098
13년 전 조회 2,540
13년 전 조회 6,620
13년 전 조회 2,347
13년 전 조회 4,835
13년 전 조회 4,850
13년 전 조회 4,459
13년 전 조회 4,623
13년 전 조회 4,126
13년 전 조회 4,075
13년 전 조회 4,294
13년 전 조회 4,115
13년 전 조회 4,124
13년 전 조회 4,235
13년 전 조회 4,258
13년 전 조회 2,927
13년 전 조회 2,116
13년 전 조회 2,252
13년 전 조회 2,025
13년 전 조회 4,248
13년 전 조회 4,180
13년 전 조회 3,519
13년 전 조회 2,546
13년 전 조회 2,245
13년 전 조회 4,123
13년 전 조회 4,633
13년 전 조회 2,667
13년 전 조회 1.2만
13년 전 조회 2,678
13년 전 조회 1,874
13년 전 조회 2,777
13년 전 조회 4,539
13년 전 조회 8,597
13년 전 조회 1만
13년 전 조회 4,273
13년 전 조회 4,416
13년 전 조회 7,927
13년 전 조회 1.2만
13년 전 조회 5,478
13년 전 조회 2,019
13년 전 조회 2,200
13년 전 조회 3,681
13년 전 조회 2,153
13년 전 조회 5,007
13년 전 조회 1,896
13년 전 조회 4,393
13년 전 조회 4,915
13년 전 조회 3,386
13년 전 조회 3,641
13년 전 조회 4,713
13년 전 조회 2,150
13년 전 조회 4,324
13년 전 조회 6,688
13년 전 조회 3,130
13년 전 조회 2,805
13년 전 조회 2,721
13년 전 조회 2,635
13년 전 조회 2,368
13년 전 조회 4,630
13년 전 조회 2,276
13년 전 조회 2,971
13년 전 조회 7,311
13년 전 조회 4,686
13년 전 조회 4,086
13년 전 조회 4,548
13년 전 조회 2,917
13년 전 조회 2,216
13년 전 조회 2,658
13년 전 조회 2,697
13년 전 조회 1,910
13년 전 조회 4,861
13년 전 조회 5,399
13년 전 조회 3,745
13년 전 조회 9,742
13년 전 조회 2,219
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,703
13년 전 조회 2,162
13년 전 조회 7,698
13년 전 조회 2,185
13년 전 조회 2,373
13년 전 조회 2,135
13년 전 조회 2,253
13년 전 조회 2,597
13년 전 조회 2,436
13년 전 조회 2,513
13년 전 조회 5,106
13년 전 조회 3,537
13년 전 조회 5,811
13년 전 조회 4,511
13년 전 조회 5,689
13년 전 조회 3,489
13년 전 조회 2,733
13년 전 조회 2,409
13년 전 조회 3,532
13년 전 조회 6,445
13년 전 조회 2,577
13년 전 조회 5,423
13년 전 조회 6,970