7

xml 파싱 예제

· 13년 전 · 4760 · 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,153
13년 전 조회 2,561
13년 전 조회 6,672
13년 전 조회 2,404
13년 전 조회 4,893
13년 전 조회 4,918
13년 전 조회 4,523
13년 전 조회 4,659
13년 전 조회 4,151
13년 전 조회 4,106
13년 전 조회 4,343
13년 전 조회 4,141
13년 전 조회 4,153
13년 전 조회 4,290
13년 전 조회 4,314
13년 전 조회 2,980
13년 전 조회 2,139
13년 전 조회 2,304
13년 전 조회 2,069
13년 전 조회 4,308
13년 전 조회 4,207
13년 전 조회 3,568
13년 전 조회 2,567
13년 전 조회 2,292
13년 전 조회 4,144
13년 전 조회 4,686
13년 전 조회 2,709
13년 전 조회 1.2만
13년 전 조회 2,702
13년 전 조회 1,918
13년 전 조회 2,827
13년 전 조회 4,592
13년 전 조회 8,650
13년 전 조회 1만
13년 전 조회 4,328
13년 전 조회 4,465
13년 전 조회 7,956
13년 전 조회 1.2만
13년 전 조회 5,530
13년 전 조회 2,071
13년 전 조회 2,227
13년 전 조회 3,707
13년 전 조회 2,203
13년 전 조회 5,032
13년 전 조회 1,945
13년 전 조회 4,431
13년 전 조회 4,972
13년 전 조회 3,405
13년 전 조회 3,684
13년 전 조회 4,761
13년 전 조회 2,190
13년 전 조회 4,367
13년 전 조회 6,739
13년 전 조회 3,164
13년 전 조회 2,841
13년 전 조회 2,764
13년 전 조회 2,675
13년 전 조회 2,410
13년 전 조회 4,679
13년 전 조회 2,307
13년 전 조회 3,017
13년 전 조회 7,365
13년 전 조회 4,738
13년 전 조회 4,137
13년 전 조회 4,597
13년 전 조회 2,957
13년 전 조회 2,267
13년 전 조회 2,706
13년 전 조회 2,748
13년 전 조회 1,931
13년 전 조회 4,890
13년 전 조회 5,452
13년 전 조회 3,782
13년 전 조회 9,793
13년 전 조회 2,238
13년 전 조회 1만
13년 전 조회 1.8만
13년 전 조회 2,745
13년 전 조회 2,211
13년 전 조회 7,736
13년 전 조회 2,244
13년 전 조회 2,417
13년 전 조회 2,184
13년 전 조회 2,304
13년 전 조회 2,640
13년 전 조회 2,474
13년 전 조회 2,554
13년 전 조회 5,158
13년 전 조회 3,590
13년 전 조회 5,862
13년 전 조회 4,567
13년 전 조회 5,756
13년 전 조회 3,547
13년 전 조회 2,793
13년 전 조회 2,460
13년 전 조회 3,587
13년 전 조회 6,498
13년 전 조회 2,594
13년 전 조회 5,451
13년 전 조회 6,994