DOMNode 객체를 전달받아 하위 노드를 전부 삭제.
function removeAllChild($node)
{
if ($node!=null) {
while ($node->childNodes->length) $node->removeChild($node->firstChild);
}
}
{
if ($node!=null) {
while ($node->childNodes->length) $node->removeChild($node->firstChild);
}
}
'PHP' 카테고리의 다른 글
[PHP DOMDocument - innerHTML 구하는 함수 (0) | 2009.12.09 |
---|---|
[PHP] 특정노드를 텍스트노드로 치환 (0) | 2009.12.08 |
[PHP] 정규식 - 한글도메인 (0) | 2009.12.01 |
[PHP] class method를 callback에서 사용하기 (0) | 2009.11.20 |
[PHP] DOMDocument->getElementById 이용하여 innerHTML 가져오기 (0) | 2009.11.18 |