7

xml 파싱 예제

· 13년 전 · 4804 · 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,214
13년 전 조회 2,577
13년 전 조회 6,727
13년 전 조회 2,463
13년 전 조회 4,956
13년 전 조회 4,976
13년 전 조회 4,561
13년 전 조회 4,669
13년 전 조회 4,166
13년 전 조회 4,117
13년 전 조회 4,413
13년 전 조회 4,152
13년 전 조회 4,165
13년 전 조회 4,347
13년 전 조회 4,367
13년 전 조회 3,026
13년 전 조회 2,158
13년 전 조회 2,352
13년 전 조회 2,119
13년 전 조회 4,355
13년 전 조회 4,223
13년 전 조회 3,620
13년 전 조회 2,574
13년 전 조회 2,348
13년 전 조회 4,159
13년 전 조회 4,728
13년 전 조회 2,761
13년 전 조회 1.2만
13년 전 조회 2,719
13년 전 조회 1,960
13년 전 조회 2,868
13년 전 조회 4,635
13년 전 조회 8,698
13년 전 조회 1.1만
13년 전 조회 4,375
13년 전 조회 4,521
13년 전 조회 7,969
13년 전 조회 1.2만
13년 전 조회 5,585
13년 전 조회 2,113
13년 전 조회 2,245
13년 전 조회 3,723
13년 전 조회 2,255
13년 전 조회 5,055
13년 전 조회 1,981
13년 전 조회 4,491
13년 전 조회 5,015
13년 전 조회 3,423
13년 전 조회 3,735
13년 전 조회 4,805
13년 전 조회 2,234
13년 전 조회 4,400
13년 전 조회 6,784
13년 전 조회 3,209
13년 전 조회 2,891
13년 전 조회 2,807
13년 전 조회 2,714
13년 전 조회 2,454
13년 전 조회 4,718
13년 전 조회 2,347
13년 전 조회 3,069
13년 전 조회 7,412
13년 전 조회 4,780
13년 전 조회 4,180
13년 전 조회 4,638
13년 전 조회 2,997
13년 전 조회 2,320
13년 전 조회 2,745
13년 전 조회 2,799
13년 전 조회 1,943
13년 전 조회 4,902
13년 전 조회 5,494
13년 전 조회 3,832
13년 전 조회 9,846
13년 전 조회 2,257
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,793
13년 전 조회 2,263
13년 전 조회 7,787
13년 전 조회 2,295
13년 전 조회 2,475
13년 전 조회 2,224
13년 전 조회 2,356
13년 전 조회 2,695
13년 전 조회 2,511
13년 전 조회 2,602
13년 전 조회 5,213
13년 전 조회 3,635
13년 전 조회 5,915
13년 전 조회 4,618
13년 전 조회 5,805
13년 전 조회 3,596
13년 전 조회 2,841
13년 전 조회 2,514
13년 전 조회 3,628
13년 전 조회 6,548
13년 전 조회 2,613
13년 전 조회 5,469
13년 전 조회 7,010