7

xml 파싱 예제

· 13년 전 · 4777 · 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,171
13년 전 조회 2,565
13년 전 조회 6,692
13년 전 조회 2,427
13년 전 조회 4,924
13년 전 조회 4,943
13년 전 조회 4,544
13년 전 조회 4,664
13년 전 조회 4,156
13년 전 조회 4,109
13년 전 조회 4,366
13년 전 조회 4,144
13년 전 조회 4,160
13년 전 조회 4,312
13년 전 조회 4,338
13년 전 조회 2,998
13년 전 조회 2,150
13년 전 조회 2,323
13년 전 조회 2,093
13년 전 조회 4,329
13년 전 조회 4,212
13년 전 조회 3,584
13년 전 조회 2,569
13년 전 조회 2,316
13년 전 조회 4,151
13년 전 조회 4,706
13년 전 조회 2,729
13년 전 조회 1.2만
13년 전 조회 2,711
13년 전 조회 1,937
13년 전 조회 2,850
13년 전 조회 4,610
13년 전 조회 8,670
13년 전 조회 1만
13년 전 조회 4,353
13년 전 조회 4,487
13년 전 조회 7,962
13년 전 조회 1.2만
13년 전 조회 5,552
13년 전 조회 2,086
13년 전 조회 2,235
13년 전 조회 3,713
13년 전 조회 2,219
13년 전 조회 5,043
13년 전 조회 1,960
13년 전 조회 4,457
13년 전 조회 4,988
13년 전 조회 3,410
13년 전 조회 3,706
13년 전 조회 4,778
13년 전 조회 2,207
13년 전 조회 4,379
13년 전 조회 6,753
13년 전 조회 3,182
13년 전 조회 2,861
13년 전 조회 2,780
13년 전 조회 2,690
13년 전 조회 2,419
13년 전 조회 4,696
13년 전 조회 2,321
13년 전 조회 3,041
13년 전 조회 7,385
13년 전 조회 4,755
13년 전 조회 4,151
13년 전 조회 4,617
13년 전 조회 2,978
13년 전 조회 2,291
13년 전 조회 2,717
13년 전 조회 2,773
13년 전 조회 1,939
13년 전 조회 4,893
13년 전 조회 5,472
13년 전 조회 3,798
13년 전 조회 9,814
13년 전 조회 2,248
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,762
13년 전 조회 2,233
13년 전 조회 7,753
13년 전 조회 2,261
13년 전 조회 2,436
13년 전 조회 2,199
13년 전 조회 2,322
13년 전 조회 2,672
13년 전 조회 2,488
13년 전 조회 2,577
13년 전 조회 5,183
13년 전 조회 3,608
13년 전 조회 5,887
13년 전 조회 4,592
13년 전 조회 5,778
13년 전 조회 3,567
13년 전 조회 2,821
13년 전 조회 2,483
13년 전 조회 3,608
13년 전 조회 6,521
13년 전 조회 2,604
13년 전 조회 5,461
13년 전 조회 7,002