7

xml 파싱 예제

· 13년 전 · 4168 · 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,585
13년 전 조회 2,014
13년 전 조회 6,130
13년 전 조회 1,799
13년 전 조회 4,283
13년 전 조회 4,302
13년 전 조회 3,895
13년 전 조회 4,153
13년 전 조회 3,666
13년 전 조회 3,613
13년 전 조회 3,747
13년 전 조회 3,647
13년 전 조회 3,684
13년 전 조회 3,688
13년 전 조회 3,713
13년 전 조회 2,383
13년 전 조회 1,670
13년 전 조회 1,700
13년 전 조회 1,470
13년 전 조회 3,711
13년 전 조회 3,721
13년 전 조회 3,033
13년 전 조회 2,101
13년 전 조회 1,753
13년 전 조회 3,650
13년 전 조회 4,079
13년 전 조회 2,115
13년 전 조회 1.1만
13년 전 조회 2,152
13년 전 조회 1,306
13년 전 조회 2,252
13년 전 조회 3,970
13년 전 조회 8,046
13년 전 조회 9,948
13년 전 조회 3,764
13년 전 조회 3,884
13년 전 조회 7,501
13년 전 조회 1.1만
13년 전 조회 4,931
13년 전 조회 1,482
13년 전 조회 1,721
13년 전 조회 3,204
13년 전 조회 1,628
13년 전 조회 4,594
13년 전 조회 1,345
13년 전 조회 3,850
13년 전 조회 4,358
13년 전 조회 2,921
13년 전 조회 3,098
13년 전 조회 4,169
13년 전 조회 1,619
13년 전 조회 3,757
13년 전 조회 6,107
13년 전 조회 2,607
13년 전 조회 2,245
13년 전 조회 2,215
13년 전 조회 2,065
13년 전 조회 1,820
13년 전 조회 4,057
13년 전 조회 1,729
13년 전 조회 2,417
13년 전 조회 6,799
13년 전 조회 4,107
13년 전 조회 3,499
13년 전 조회 4,007
13년 전 조회 2,339
13년 전 조회 1,648
13년 전 조회 2,097
13년 전 조회 2,152
13년 전 조회 1,417
13년 전 조회 4,458
13년 전 조회 4,860
13년 전 조회 3,205
13년 전 조회 9,197
13년 전 조회 1,764
13년 전 조회 9,618
13년 전 조회 1.8만
13년 전 조회 2,138
13년 전 조회 1,608
13년 전 조회 7,156
13년 전 조회 1,685
13년 전 조회 1,790
13년 전 조회 1,543
13년 전 조회 1,678
13년 전 조회 2,017
13년 전 조회 1,886
13년 전 조회 1,964
13년 전 조회 4,535
13년 전 조회 3,027
13년 전 조회 5,295
13년 전 조회 3,953
13년 전 조회 5,142
13년 전 조회 2,967
13년 전 조회 2,188
13년 전 조회 1,855
13년 전 조회 2,971
13년 전 조회 5,892
13년 전 조회 2,160
13년 전 조회 5,028
13년 전 조회 6,561