7

xml 파싱 예제

· 13년 전 · 4721 · 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,108
13년 전 조회 2,546
13년 전 조회 6,629
13년 전 조회 2,361
13년 전 조회 4,849
13년 전 조회 4,861
13년 전 조회 4,475
13년 전 조회 4,633
13년 전 조회 4,134
13년 전 조회 4,084
13년 전 조회 4,306
13년 전 조회 4,123
13년 전 조회 4,131
13년 전 조회 4,244
13년 전 조회 4,267
13년 전 조회 2,937
13년 전 조회 2,122
13년 전 조회 2,261
13년 전 조회 2,029
13년 전 조회 4,260
13년 전 조회 4,185
13년 전 조회 3,525
13년 전 조회 2,550
13년 전 조회 2,250
13년 전 조회 4,127
13년 전 조회 4,640
13년 전 조회 2,678
13년 전 조회 1.2만
13년 전 조회 2,683
13년 전 조회 1,879
13년 전 조회 2,788
13년 전 조회 4,546
13년 전 조회 8,610
13년 전 조회 1만
13년 전 조회 4,285
13년 전 조회 4,424
13년 전 조회 7,934
13년 전 조회 1.2만
13년 전 조회 5,490
13년 전 조회 2,030
13년 전 조회 2,206
13년 전 조회 3,684
13년 전 조회 2,158
13년 전 조회 5,017
13년 전 조회 1,906
13년 전 조회 4,399
13년 전 조회 4,923
13년 전 조회 3,390
13년 전 조회 3,645
13년 전 조회 4,722
13년 전 조회 2,157
13년 전 조회 4,332
13년 전 조회 6,695
13년 전 조회 3,133
13년 전 조회 2,808
13년 전 조회 2,727
13년 전 조회 2,644
13년 전 조회 2,376
13년 전 조회 4,639
13년 전 조회 2,281
13년 전 조회 2,981
13년 전 조회 7,321
13년 전 조회 4,695
13년 전 조회 4,098
13년 전 조회 4,559
13년 전 조회 2,921
13년 전 조회 2,226
13년 전 조회 2,663
13년 전 조회 2,702
13년 전 조회 1,913
13년 전 조회 4,866
13년 전 조회 5,409
13년 전 조회 3,751
13년 전 조회 9,754
13년 전 조회 2,224
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,710
13년 전 조회 2,169
13년 전 조회 7,702
13년 전 조회 2,196
13년 전 조회 2,378
13년 전 조회 2,139
13년 전 조회 2,262
13년 전 조회 2,602
13년 전 조회 2,442
13년 전 조회 2,517
13년 전 조회 5,115
13년 전 조회 3,549
13년 전 조회 5,816
13년 전 조회 4,518
13년 전 조회 5,703
13년 전 조회 3,497
13년 전 조회 2,740
13년 전 조회 2,422
13년 전 조회 3,540
13년 전 조회 6,451
13년 전 조회 2,582
13년 전 조회 5,432
13년 전 조회 6,977