update : 2015.11.03
php.shukuma.com검색:
|
DOMNode::appendChild(PHP 5, PHP 7) DOMNode::appendChild — Adds new child at the end of the children 설명This function appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. DOMDocument::createElement(), DOMDocument::createTextNode() etc. or simply by using any other node. 인수
반환값The node added. 오류/예외
예제The following example will add a new element node to a fresh document. Example #1 Adding a child
<?php 참고
|