<?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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5430 | 13년 전 | 1444 | ||
| 5429 |
phpman
|
13년 전 | 860 | |
| 5428 | 13년 전 | 1257 | ||
| 5427 |
phpman
|
13년 전 | 847 | |
| 5426 |
PHPㅡASP프로그래머
|
13년 전 | 1088 | |
| 5425 | 13년 전 | 792 | ||
| 5424 | 13년 전 | 733 | ||
| 5423 | 13년 전 | 731 | ||
| 5422 | 13년 전 | 1835 | ||
| 5421 |
PHPㅡASP프로그래머
|
13년 전 | 808 | |
| 5420 |
|
13년 전 | 1633 | |
| 5419 | 13년 전 | 816 | ||
| 5418 | 13년 전 | 708 | ||
| 5417 | 13년 전 | 623 | ||
| 5416 | 13년 전 | 988 | ||
| 5415 | 13년 전 | 790 | ||
| 5414 | 13년 전 | 725 | ||
| 5413 | 13년 전 | 790 | ||
| 5412 | 13년 전 | 1353 | ||
| 5411 | 13년 전 | 864 | ||
| 5410 | 13년 전 | 1270 | ||
| 5409 | 13년 전 | 4251 | ||
| 5408 | 13년 전 | 987 | ||
| 5407 |
ckflower
|
13년 전 | 2426 | |
| 5406 |
ddokkani
|
13년 전 | 1379 | |
| 5405 | 13년 전 | 1591 | ||
| 5404 | 13년 전 | 662 | ||
| 5403 | 13년 전 | 694 | ||
| 5402 |
밤거리빵빵
|
13년 전 | 6023 | |
| 5401 |
PHPㅡASP프로그래머
|
13년 전 | 975 | |
| 5400 |
|
13년 전 | 1191 | |
| 5399 | 13년 전 | 4990 | ||
| 5398 |
부산아무개
|
13년 전 | 1646 | |
| 5397 | 13년 전 | 2449 | ||
| 5396 | 13년 전 | 1845 | ||
| 5395 | 13년 전 | 1052 | ||
| 5394 | 13년 전 | 1125 | ||
| 5393 | 13년 전 | 1043 | ||
| 5392 |
아르toria
|
13년 전 | 760 | |
| 5391 |
|
13년 전 | 1145 | |
| 5390 |
디지털홍익인간
|
13년 전 | 7701 | |
| 5389 | 13년 전 | 3106 | ||
| 5388 | 13년 전 | 869 | ||
| 5387 |
WaaNee
|
13년 전 | 1905 | |
| 5386 | 13년 전 | 2103 | ||
| 5385 | 13년 전 | 4624 | ||
| 5384 | 13년 전 | 934 | ||
| 5383 | 13년 전 | 2131 | ||
| 5382 | 13년 전 | 663 | ||
| 5381 |
JacobJeon
|
13년 전 | 1083 | |
| 5380 | 13년 전 | 1137 | ||
| 5379 | 13년 전 | 686 | ||
| 5378 | 13년 전 | 10466 | ||
| 5377 | 13년 전 | 858 | ||
| 5376 | 13년 전 | 1459 | ||
| 5375 | 13년 전 | 838 | ||
| 5374 | 13년 전 | 846 | ||
| 5373 | 13년 전 | 2066 | ||
| 5372 | 13년 전 | 1691 | ||
| 5371 |
|
13년 전 | 1638 | |
| 5370 | 13년 전 | 2906 | ||
| 5369 |
아자12345
|
13년 전 | 1012 | |
| 5368 | 13년 전 | 706 | ||
| 5367 | 13년 전 | 1085 | ||
| 5366 | 13년 전 | 2150 | ||
| 5365 | 13년 전 | 1568 | ||
| 5364 | 13년 전 | 1094 | ||
| 5363 |
|
13년 전 | 1356 | |
| 5362 | 13년 전 | 816 | ||
| 5361 | 13년 전 | 1347 | ||
| 5360 | 13년 전 | 709 | ||
| 5359 | 13년 전 | 1368 | ||
| 5358 | 13년 전 | 1199 | ||
| 5357 | 13년 전 | 1597 | ||
| 5356 | 13년 전 | 1095 | ||
| 5355 |
techer
|
13년 전 | 1351 | |
| 5354 |
|
13년 전 | 1011 | |
| 5353 | 13년 전 | 741 | ||
| 5352 | 13년 전 | 822 | ||
| 5351 | 13년 전 | 1196 | ||
| 5350 | 13년 전 | 741 | ||
| 5349 |
|
13년 전 | 1444 | |
| 5348 | 13년 전 | 853 | ||
| 5347 | 13년 전 | 759 | ||
| 5346 | 13년 전 | 872 | ||
| 5345 | 13년 전 | 815 | ||
| 5344 |
후라보노보노
|
13년 전 | 1960 | |
| 5343 | 13년 전 | 1158 | ||
| 5342 | 13년 전 | 1125 | ||
| 5341 | 13년 전 | 2073 | ||
| 5340 |
|
13년 전 | 1117 | |
| 5339 |
AMDbest
|
13년 전 | 739 | |
| 5338 | 13년 전 | 737 | ||
| 5337 |
프로프리랜서
|
13년 전 | 1476 | |
| 5336 |
프로프리랜서
|
13년 전 | 922 | |
| 5335 | 13년 전 | 720 | ||
| 5334 |
|
13년 전 | 974 | |
| 5333 | 13년 전 | 2835 | ||
| 5332 | 13년 전 | 1519 | ||
| 5331 | 13년 전 | 1322 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기