7

xml 파싱 예제

· 13년 전 · 4796 · 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,203
13년 전 조회 2,573
13년 전 조회 6,720
13년 전 조회 2,453
13년 전 조회 4,947
13년 전 조회 4,962
13년 전 조회 4,557
13년 전 조회 4,668
13년 전 조회 4,164
13년 전 조회 4,116
13년 전 조회 4,403
13년 전 조회 4,151
13년 전 조회 4,164
13년 전 조회 4,332
13년 전 조회 4,361
13년 전 조회 3,022
13년 전 조회 2,154
13년 전 조회 2,348
13년 전 조회 2,111
13년 전 조회 4,350
13년 전 조회 4,222
13년 전 조회 3,613
13년 전 조회 2,574
13년 전 조회 2,345
13년 전 조회 4,158
13년 전 조회 4,721
13년 전 조회 2,753
13년 전 조회 1.2만
13년 전 조회 2,718
13년 전 조회 1,956
13년 전 조회 2,862
13년 전 조회 4,628
13년 전 조회 8,691
13년 전 조회 1.1만
13년 전 조회 4,369
13년 전 조회 4,512
13년 전 조회 7,968
13년 전 조회 1.2만
13년 전 조회 5,577
13년 전 조회 2,109
13년 전 조회 2,244
13년 전 조회 3,722
13년 전 조회 2,249
13년 전 조회 5,054
13년 전 조회 1,975
13년 전 조회 4,483
13년 전 조회 5,008
13년 전 조회 3,422
13년 전 조회 3,730
13년 전 조회 4,797
13년 전 조회 2,230
13년 전 조회 4,394
13년 전 조회 6,772
13년 전 조회 3,203
13년 전 조회 2,887
13년 전 조회 2,806
13년 전 조회 2,707
13년 전 조회 2,443
13년 전 조회 4,713
13년 전 조회 2,343
13년 전 조회 3,064
13년 전 조회 7,406
13년 전 조회 4,772
13년 전 조회 4,173
13년 전 조회 4,630
13년 전 조회 2,991
13년 전 조회 2,314
13년 전 조회 2,736
13년 전 조회 2,790
13년 전 조회 1,943
13년 전 조회 4,901
13년 전 조회 5,490
13년 전 조회 3,820
13년 전 조회 9,836
13년 전 조회 2,254
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,785
13년 전 조회 2,256
13년 전 조회 7,778
13년 전 조회 2,286
13년 전 조회 2,462
13년 전 조회 2,219
13년 전 조회 2,348
13년 전 조회 2,690
13년 전 조회 2,507
13년 전 조회 2,592
13년 전 조회 5,207
13년 전 조회 3,631
13년 전 조회 5,912
13년 전 조회 4,613
13년 전 조회 5,803
13년 전 조회 3,590
13년 전 조회 2,833
13년 전 조회 2,508
13년 전 조회 3,626
13년 전 조회 6,542
13년 전 조회 2,613
13년 전 조회 5,469
13년 전 조회 7,010