7

xml 파싱 예제

· 13년 전 · 4649 · 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,045
13년 전 조회 2,505
13년 전 조회 6,561
13년 전 조회 2,284
13년 전 조회 4,761
13년 전 조회 4,779
13년 전 조회 4,396
13년 전 조회 4,600
13년 전 조회 4,097
13년 전 조회 4,039
13년 전 조회 4,215
13년 전 조회 4,076
13년 전 조회 4,092
13년 전 조회 4,162
13년 전 조회 4,186
13년 전 조회 2,852
13년 전 조회 2,088
13년 전 조회 2,192
13년 전 조회 1,951
13년 전 조회 4,188
13년 전 조회 4,154
13년 전 조회 3,450
13년 전 조회 2,514
13년 전 조회 2,175
13년 전 조회 4,084
13년 전 조회 4,558
13년 전 조회 2,596
13년 전 조회 1.2만
13년 전 조회 2,646
13년 전 조회 1,802
13년 전 조회 2,707
13년 전 조회 4,465
13년 전 조회 8,523
13년 전 조회 1만
13년 전 조회 4,210
13년 전 조회 4,360
13년 전 조회 7,897
13년 전 조회 1.2만
13년 전 조회 5,400
13년 전 조회 1,955
13년 전 조회 2,171
13년 전 조회 3,656
13년 전 조회 2,092
13년 전 조회 4,978
13년 전 조회 1,825
13년 전 조회 4,330
13년 전 조회 4,826
13년 전 조회 3,354
13년 전 조회 3,570
13년 전 조회 4,650
13년 전 조회 2,092
13년 전 조회 4,263
13년 전 조회 6,612
13년 전 조회 3,067
13년 전 조회 2,729
13년 전 조회 2,661
13년 전 조회 2,566
13년 전 조회 2,302
13년 전 조회 4,569
13년 전 조회 2,216
13년 전 조회 2,899
13년 전 조회 7,244
13년 전 조회 4,621
13년 전 조회 4,008
13년 전 조회 4,481
13년 전 조회 2,862
13년 전 조회 2,137
13년 전 조회 2,589
13년 전 조회 2,631
13년 전 조회 1,871
13년 전 조회 4,833
13년 전 조회 5,329
13년 전 조회 3,665
13년 전 조회 9,671
13년 전 조회 2,184
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,630
13년 전 조회 2,100
13년 전 조회 7,616
13년 전 조회 2,113
13년 전 조회 2,307
13년 전 조회 2,054
13년 전 조회 2,183
13년 전 조회 2,523
13년 전 조회 2,351
13년 전 조회 2,444
13년 전 조회 5,031
13년 전 조회 3,459
13년 전 조회 5,740
13년 전 조회 4,438
13년 전 조회 5,614
13년 전 조회 3,421
13년 전 조회 2,665
13년 전 조회 2,335
13년 전 조회 3,454
13년 전 조회 6,376
13년 전 조회 2,539
13년 전 조회 5,399
13년 전 조회 6,944