7

xml 파싱 예제

· 13년 전 · 4433 · 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,821
13년 전 조회 2,322
13년 전 조회 6,331
13년 전 조회 2,067
13년 전 조회 4,546
13년 전 조회 4,561
13년 전 조회 4,166
13년 전 조회 4,413
13년 전 조회 3,922
13년 전 조회 3,870
13년 전 조회 4,015
13년 전 조회 3,925
13년 전 조회 3,940
13년 전 조회 3,946
13년 전 조회 3,969
13년 전 조회 2,639
13년 전 조회 1,935
13년 전 조회 1,976
13년 전 조회 1,732
13년 전 조회 3,973
13년 전 조회 3,973
13년 전 조회 3,249
13년 전 조회 2,340
13년 전 조회 1,965
13년 전 조회 3,921
13년 전 조회 4,349
13년 전 조회 2,393
13년 전 조회 1.2만
13년 전 조회 2,453
13년 전 조회 1,583
13년 전 조회 2,508
13년 전 조회 4,249
13년 전 조회 8,314
13년 전 조회 1만
13년 전 조회 4,004
13년 전 조회 4,142
13년 전 조회 7,727
13년 전 조회 1.2만
13년 전 조회 5,202
13년 전 조회 1,754
13년 전 조회 2,000
13년 전 조회 3,478
13년 전 조회 1,886
13년 전 조회 4,834
13년 전 조회 1,599
13년 전 조회 4,117
13년 전 조회 4,605
13년 전 조회 3,194
13년 전 조회 3,369
13년 전 조회 4,434
13년 전 조회 1,874
13년 전 조회 4,041
13년 전 조회 6,385
13년 전 조회 2,833
13년 전 조회 2,513
13년 전 조회 2,445
13년 전 조회 2,353
13년 전 조회 2,088
13년 전 조회 4,341
13년 전 조회 2,012
13년 전 조회 2,695
13년 전 조회 7,020
13년 전 조회 4,377
13년 전 조회 3,782
13년 전 조회 4,260
13년 전 조회 2,626
13년 전 조회 1,917
13년 전 조회 2,367
13년 전 조회 2,411
13년 전 조회 1,684
13년 전 조회 4,686
13년 전 조회 5,117
13년 전 조회 3,459
13년 전 조회 9,461
13년 전 조회 2,030
13년 전 조회 9,887
13년 전 조회 1.8만
13년 전 조회 2,403
13년 전 조회 1,884
13년 전 조회 7,417
13년 전 조회 1,903
13년 전 조회 2,072
13년 전 조회 1,845
13년 전 조회 1,980
13년 전 조회 2,290
13년 전 조회 2,135
13년 전 조회 2,232
13년 전 조회 4,814
13년 전 조회 3,267
13년 전 조회 5,559
13년 전 조회 4,211
13년 전 조회 5,412
13년 전 조회 3,231
13년 전 조회 2,447
13년 전 조회 2,123
13년 전 조회 3,236
13년 전 조회 6,157
13년 전 조회 2,369
13년 전 조회 5,235
13년 전 조회 6,769