7

xml 파싱 예제

· 13년 전 · 4710 · 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,095
13년 전 조회 2,539
13년 전 조회 6,618
13년 전 조회 2,347
13년 전 조회 4,832
13년 전 조회 4,850
13년 전 조회 4,456
13년 전 조회 4,620
13년 전 조회 4,126
13년 전 조회 4,073
13년 전 조회 4,287
13년 전 조회 4,114
13년 전 조회 4,121
13년 전 조회 4,232
13년 전 조회 4,257
13년 전 조회 2,923
13년 전 조회 2,115
13년 전 조회 2,249
13년 전 조회 2,020
13년 전 조회 4,245
13년 전 조회 4,179
13년 전 조회 3,515
13년 전 조회 2,544
13년 전 조회 2,244
13년 전 조회 4,123
13년 전 조회 4,631
13년 전 조회 2,665
13년 전 조회 1.2만
13년 전 조회 2,675
13년 전 조회 1,870
13년 전 조회 2,773
13년 전 조회 4,538
13년 전 조회 8,595
13년 전 조회 1만
13년 전 조회 4,273
13년 전 조회 4,414
13년 전 조회 7,926
13년 전 조회 1.2만
13년 전 조회 5,478
13년 전 조회 2,018
13년 전 조회 2,197
13년 전 조회 3,679
13년 전 조회 2,151
13년 전 조회 5,004
13년 전 조회 1,893
13년 전 조회 4,390
13년 전 조회 4,910
13년 전 조회 3,384
13년 전 조회 3,639
13년 전 조회 4,711
13년 전 조회 2,147
13년 전 조회 4,319
13년 전 조회 6,685
13년 전 조회 3,128
13년 전 조회 2,804
13년 전 조회 2,721
13년 전 조회 2,634
13년 전 조회 2,368
13년 전 조회 4,629
13년 전 조회 2,273
13년 전 조회 2,970
13년 전 조회 7,307
13년 전 조회 4,684
13년 전 조회 4,084
13년 전 조회 4,548
13년 전 조회 2,917
13년 전 조회 2,216
13년 전 조회 2,657
13년 전 조회 2,696
13년 전 조회 1,907
13년 전 조회 4,860
13년 전 조회 5,395
13년 전 조회 3,744
13년 전 조회 9,739
13년 전 조회 2,217
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,701
13년 전 조회 2,158
13년 전 조회 7,694
13년 전 조회 2,183
13년 전 조회 2,373
13년 전 조회 2,133
13년 전 조회 2,250
13년 전 조회 2,596
13년 전 조회 2,434
13년 전 조회 2,513
13년 전 조회 5,104
13년 전 조회 3,535
13년 전 조회 5,810
13년 전 조회 4,505
13년 전 조회 5,686
13년 전 조회 3,487
13년 전 조회 2,731
13년 전 조회 2,408
13년 전 조회 3,527
13년 전 조회 6,444
13년 전 조회 2,575
13년 전 조회 5,419
13년 전 조회 6,970