7

xml 파싱 예제

· 13년 전 · 4333 · 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,736
13년 전 조회 2,101
13년 전 조회 6,254
13년 전 조회 1,991
13년 전 조회 4,465
13년 전 조회 4,461
13년 전 조회 4,088
13년 전 조회 4,223
13년 전 조회 3,729
13년 전 조회 3,684
13년 전 조회 3,937
13년 전 조회 3,701
13년 전 조회 3,746
13년 전 조회 3,870
13년 전 조회 3,895
13년 전 조회 2,561
13년 전 조회 1,739
13년 전 조회 1,897
13년 전 조회 1,643
13년 전 조회 3,883
13년 전 조회 3,775
13년 전 조회 3,165
13년 전 조회 2,176
13년 전 조회 1,886
13년 전 조회 3,701
13년 전 조회 4,257
13년 전 조회 2,304
13년 전 조회 1.2만
13년 전 조회 2,230
13년 전 조회 1,486
13년 전 조회 2,415
13년 전 조회 4,151
13년 전 조회 8,194
13년 전 조회 1만
13년 전 조회 3,930
13년 전 조회 4,062
13년 전 조회 7,563
13년 전 조회 1.1만
13년 전 조회 5,118
13년 전 조회 1,674
13년 전 조회 1,794
13년 전 조회 3,261
13년 전 조회 1,801
13년 전 조회 4,652
13년 전 조회 1,502
13년 전 조회 4,033
13년 전 조회 4,529
13년 전 조회 2,989
13년 전 조회 3,274
13년 전 조회 4,334
13년 전 조회 1,796
13년 전 조회 3,931
13년 전 조회 6,279
13년 전 조회 2,726
13년 전 조회 2,419
13년 전 조회 2,339
13년 전 조회 2,259
13년 전 조회 1,992
13년 전 조회 4,228
13년 전 조회 1,903
13년 전 조회 2,589
13년 전 조회 6,925
13년 전 조회 4,290
13년 전 조회 3,678
13년 전 조회 4,170
13년 전 조회 2,505
13년 전 조회 1,820
13년 전 조회 2,267
13년 전 조회 2,323
13년 전 조회 1,484
13년 전 조회 4,501
13년 전 조회 5,021
13년 전 조회 3,366
13년 전 조회 9,383
13년 전 조회 1,823
13년 전 조회 9,779
13년 전 조회 1.8만
13년 전 조회 2,305
13년 전 조회 1,785
13년 전 조회 7,319
13년 전 조회 1,812
13년 전 조회 1,972
13년 전 조회 1,727
13년 전 조회 1,870
13년 전 조회 2,181
13년 전 조회 2,058
13년 전 조회 2,131
13년 전 조회 4,719
13년 전 조회 3,183
13년 전 조회 5,462
13년 전 조회 4,122
13년 전 조회 5,315
13년 전 조회 3,145
13년 전 조회 2,364
13년 전 조회 2,036
13년 전 조회 3,149
13년 전 조회 6,059
13년 전 조회 2,208
13년 전 조회 5,067
13년 전 조회 6,605