7

xml 파싱 예제

· 13년 전 · 4702 · 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,085
13년 전 조회 2,535
13년 전 조회 6,611
13년 전 조회 2,341
13년 전 조회 4,820
13년 전 조회 4,842
13년 전 조회 4,446
13년 전 조회 4,617
13년 전 조회 4,123
13년 전 조회 4,066
13년 전 조회 4,275
13년 전 조회 4,105
13년 전 조회 4,116
13년 전 조회 4,224
13년 전 조회 4,242
13년 전 조회 2,913
13년 전 조회 2,110
13년 전 조회 2,239
13년 전 조회 2,009
13년 전 조회 4,238
13년 전 조회 4,173
13년 전 조회 3,501
13년 전 조회 2,540
13년 전 조회 2,234
13년 전 조회 4,116
13년 전 조회 4,621
13년 전 조회 2,658
13년 전 조회 1.2만
13년 전 조회 2,669
13년 전 조회 1,860
13년 전 조회 2,764
13년 전 조회 4,526
13년 전 조회 8,588
13년 전 조회 1만
13년 전 조회 4,262
13년 전 조회 4,404
13년 전 조회 7,922
13년 전 조회 1.2만
13년 전 조회 5,466
13년 전 조회 2,009
13년 전 조회 2,192
13년 전 조회 3,674
13년 전 조회 2,141
13년 전 조회 4,997
13년 전 조회 1,885
13년 전 조회 4,382
13년 전 조회 4,900
13년 전 조회 3,377
13년 전 조회 3,627
13년 전 조회 4,703
13년 전 조회 2,139
13년 전 조회 4,315
13년 전 조회 6,668
13년 전 조회 3,119
13년 전 조회 2,793
13년 전 조회 2,713
13년 전 조회 2,619
13년 전 조회 2,358
13년 전 조회 4,619
13년 전 조회 2,269
13년 전 조회 2,965
13년 전 조회 7,301
13년 전 조회 4,679
13년 전 조회 4,077
13년 전 조회 4,532
13년 전 조회 2,913
13년 전 조회 2,204
13년 전 조회 2,652
13년 전 조회 2,685
13년 전 조회 1,903
13년 전 조회 4,853
13년 전 조회 5,390
13년 전 조회 3,738
13년 전 조회 9,729
13년 전 조회 2,212
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,693
13년 전 조회 2,151
13년 전 조회 7,685
13년 전 조회 2,174
13년 전 조회 2,365
13년 전 조회 2,117
13년 전 조회 2,238
13년 전 조회 2,577
13년 전 조회 2,420
13년 전 조회 2,503
13년 전 조회 5,100
13년 전 조회 3,526
13년 전 조회 5,802
13년 전 조회 4,492
13년 전 조회 5,678
13년 전 조회 3,478
13년 전 조회 2,727
13년 전 조회 2,396
13년 전 조회 3,518
13년 전 조회 6,438
13년 전 조회 2,570
13년 전 조회 5,417
13년 전 조회 6,965