7

xml 파싱 예제

· 13년 전 · 4593 · 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년 전 조회 2,987
13년 전 조회 2,494
13년 전 조회 6,491
13년 전 조회 2,216
13년 전 조회 4,686
13년 전 조회 4,714
13년 전 조회 4,317
13년 전 조회 4,586
13년 전 조회 4,085
13년 전 조회 4,031
13년 전 조회 4,154
13년 전 조회 4,069
13년 전 조회 4,079
13년 전 조회 4,093
13년 전 조회 4,115
13년 전 조회 2,788
13년 전 조회 2,080
13년 전 조회 2,136
13년 전 조회 1,875
13년 전 조회 4,119
13년 전 조회 4,141
13년 전 조회 3,384
13년 전 조회 2,506
13년 전 조회 2,120
13년 전 조회 4,075
13년 전 조회 4,488
13년 전 조회 2,526
13년 전 조회 1.2만
13년 전 조회 2,633
13년 전 조회 1,736
13년 전 조회 2,636
13년 전 조회 4,392
13년 전 조회 8,445
13년 전 조회 1만
13년 전 조회 4,141
13년 전 조회 4,284
13년 전 조회 7,890
13년 전 조회 1.2만
13년 전 조회 5,328
13년 전 조회 1,887
13년 전 조회 2,161
13년 전 조회 3,639
13년 전 조회 2,025
13년 전 조회 4,968
13년 전 조회 1,743
13년 전 조회 4,266
13년 전 조회 4,749
13년 전 조회 3,341
13년 전 조회 3,512
13년 전 조회 4,594
13년 전 조회 2,013
13년 전 조회 4,188
13년 전 조회 6,550
13년 전 조회 3,001
13년 전 조회 2,663
13년 전 조회 2,581
13년 전 조회 2,487
13년 전 조회 2,242
13년 전 조회 4,506
13년 전 조회 2,144
13년 전 조회 2,822
13년 전 조회 7,174
13년 전 조회 4,548
13년 전 조회 3,937
13년 전 조회 4,413
13년 전 조회 2,785
13년 전 조회 2,067
13년 전 조회 2,519
13년 전 조회 2,564
13년 전 조회 1,860
13년 전 조회 4,819
13년 전 조회 5,262
13년 전 조회 3,599
13년 전 조회 9,591
13년 전 조회 2,176
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,560
13년 전 조회 2,033
13년 전 조회 7,551
13년 전 조회 2,045
13년 전 조회 2,230
13년 전 조회 2,000
13년 전 조회 2,116
13년 전 조회 2,452
13년 전 조회 2,276
13년 전 조회 2,375
13년 전 조회 4,948
13년 전 조회 3,405
13년 전 조회 5,680
13년 전 조회 4,365
13년 전 조회 5,550
13년 전 조회 3,353
13년 전 조회 2,588
13년 전 조회 2,258
13년 전 조회 3,381
13년 전 조회 6,309
13년 전 조회 2,528
13년 전 조회 5,389
13년 전 조회 6,932