7

xml 파싱 예제

· 2012-12-28 (금) 14:26:26 · 5959 · 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개

좋은 자료네요
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
13-07-14 조회 5,390
13-07-14 조회 5,359
13-07-14 조회 4,638
13-07-14 조회 4,238
13-07-14 조회 4,093
13-07-14 조회 4,163
13-07-14 조회 4,875
13-07-14 조회 4,524
13-07-14 조회 4,310
13-07-14 조회 5,353
13-07-14 조회 5,230
13-07-14 조회 5,023
13-07-14 조회 4,728
13-07-14 조회 5,390
13-07-13 조회 3,567
13-07-01 조회 5,609
13-07-01 조회 5,754
13-07-01 조회 3,845
13-07-01 조회 5,201
13-05-27 조회 3,947
13-05-21 조회 4,851
13-05-02 조회 1만
13-04-29 조회 5,176
13-04-15 조회 5,439
13-04-13 조회 6,326
13-02-27 조회 3,825
13-02-26 조회 6,430
13-02-12 조회 5,013
13-02-01 조회 2.3만
13-01-23 조회 3,386
13-01-09 조회 7,988
13-01-07 조회 4,919
13-01-07 조회 3,636
13-01-04 조회 1.3만
13-01-03 조회 1.2만
12-12-31 조회 6,126
12-12-27 조회 4,424
12-12-27 조회 4,074
12-12-27 조회 8,707
12-12-18 조회 3,606
12-12-12 조회 3,665
12-12-12 조회 6,646
12-12-12 조회 8,119
12-12-05 조회 5,240
12-12-01 조회 6,646
12-11-22 조회 4,586
12-11-09 조회 5,411
12-11-09 조회 7,486
12-10-29 조회 4,749
12-10-16 조회 6,292
12-10-09 조회 5,266
12-09-02 조회 4,444
12-09-01 조회 3,536
12-08-30 조회 4,200
12-08-30 조회 4,194
12-08-28 조회 3,521
12-08-21 조회 7,136
12-08-20 조회 3,661
12-08-18 조회 5,056
12-08-18 조회 3,427
12-08-11 조회 3,587
12-08-09 조회 3,689
12-08-07 조회 3,617
12-08-07 조회 4,203
12-08-01 조회 4,544
12-08-01 조회 4,345
12-07-20 조회 9,817
12-07-17 조회 4,106
12-07-15 조회 3,901
12-07-10 조회 4,200
12-07-09 조회 6,918
12-07-05 조회 3,249
12-07-04 조회 3,412
12-06-30 조회 5,673
12-06-28 조회 3,743
12-06-20 조회 3,878
12-06-16 조회 3,153
12-06-14 조회 3,843
12-06-07 조회 3,848
12-06-06 조회 6,108
12-05-27 조회 4,397
12-05-25 조회 3,179
12-05-25 조회 3,001
12-05-24 조회 3,064
12-05-24 조회 4,508
12-05-23 조회 3,871
12-05-22 조회 6,482
12-05-15 조회 3,827
12-05-15 조회 3,612
12-05-14 조회 3,039
12-05-12 조회 3,510
12-05-11 조회 6,957
12-05-07 조회 4,409
12-04-28 조회 3,616
12-04-25 조회 5,235
12-04-15 조회 3,832
12-04-12 조회 4,670
12-04-11 조회 3,417
12-04-08 조회 3,226
12-03-21 조회 6,350