<?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개
게시판 목록
팁게시판
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5852 | 9년 전 | 632 | ||
| 5851 | 9년 전 | 562 | ||
| 5850 | 9년 전 | 407 | ||
| 5849 | 9년 전 | 308 | ||
| 5848 | 9년 전 | 309 | ||
| 5847 | 9년 전 | 304 | ||
| 5846 | 9년 전 | 290 | ||
| 5845 | 9년 전 | 310 | ||
| 5844 | 9년 전 | 335 | ||
| 5843 | 9년 전 | 431 | ||
| 5842 | 9년 전 | 323 | ||
| 5841 | 9년 전 | 1093 | ||
| 5840 |
|
9년 전 | 1215 | |
| 5839 | 9년 전 | 600 | ||
| 5838 | 9년 전 | 328 | ||
| 5837 | 9년 전 | 380 | ||
| 5836 | 9년 전 | 375 | ||
| 5835 | 9년 전 | 503 | ||
| 5834 | 9년 전 | 344 | ||
| 5833 | 9년 전 | 457 | ||
| 5832 | 9년 전 | 292 | ||
| 5831 | 9년 전 | 282 | ||
| 5830 | 9년 전 | 301 | ||
| 5829 | 9년 전 | 347 | ||
| 5828 | 9년 전 | 326 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기