|
DomNode->append_sibling
Adds new sibling to a node
()
This functions appends a sibling to an existing node. The child can be created with e.g. domdocument_create_element(), domdocument_create_text() etc. or simply by using any other node. Before a new sibling is added it is first duplicated. Therefore the new child is a completely new copy which can be modified without changing the node which was passed to this function. If the node passed has children itself, they will be duplicated as well, which makes it quite easy to duplicate large parts of an XML document. The return value is the added sibling. If you plan to do further modifications on the added sibling you must use the returned node. This function has been added to provide the behaviour of domnode_append_child() as it works till PHP 4.2. See also domnode_append_before(). Code Examples / Notes » domnode_append_siblings dot girard
Small example on the use of domnode->append_sibling() This function creates a news.xml file, that will be later on parsed with XSLT. $doc = domxml_new_doc("1.0"); $root = $doc->create_element("rt"); $root = $doc->append_child($root); $page = $doc->create_element("page"); $page = $root->append_child($page); $page->set_attribute("pageimage","images/news.jpg"); while($row = mysql_fetch_row($result)) { $news = $doc->create_element("news"); $news = $page->append_child($news); $topic = $doc->create_element("topic"); $topic = $news->append_child($topic); $topic_content = $doc->create_text_node($row[0]); $topic_content = $topic->append_child($topic_content); $user = $doc->create_element("user"); $user = $topic->append_sibling($user); $user_content = $doc->create_text_node($row[3]); $user_content = $user->append_child($user_content); $date = $doc->create_element("date"); $date = $topic->append_sibling($date); $date_content = $doc->create_text_node($row[2]); $date_content = $date->append_child($date_content); $body = $doc->create_element("body"); $body = $topic->append_sibling($body); $body_content = $doc->create_text_node($row[1]); $body_content = $body->append_child($body_content); } unlink("./data/news.xml"); $doc->dump_file("./data/news.xml"); |
Change Language![]() DomAttribute->name DomAttribute->set_value DomAttribute->specified DomAttribute->value DomDocument->add_root DomDocument->create_attribute DomDocument->create_cdata_section DomDocument->create_comment DomDocument->create_element_ns DomDocument->create_element DomDocument->create_entity_reference DomDocument->create_processing_instruction DomDocument->create_text_node DomDocument->doctype DomDocument->document_element DomDocument->dump_file DomDocument->dump_mem DomDocument->get_element_by_id DomDocument->get_elements_by_tagname DomDocument->html_dump_mem DomDocument->xinclude DomDocumentType->entities() DomDocumentType->internal_subset() DomDocumentType->name() DomDocumentType->notations() DomDocumentType->public_id() DomDocumentType->system_id() DomElement->get_attribute_node() DomElement->get_attribute() DomElement->get_elements_by_tagname() DomElement->has_attribute() DomElement->remove_attribute() DomElement->set_attribute_node() DomElement->set_attribute() DomElement->tagname() DomNode->add_namespace DomNode->append_child DomNode->append_sibling DomNode->attributes DomNode->child_nodes DomNode->clone_node DomNode->dump_node DomNode->first_child DomNode->get_content DomNode->has_attributes DomNode->has_child_nodes DomNode->insert_before DomNode->is_blank_node DomNode->last_child DomNode->next_sibling DomNode->node_name DomNode->node_type DomNode->node_value DomNode->owner_document DomNode->parent_node DomNode->prefix DomNode->previous_sibling DomNode->remove_child DomNode->replace_child DomNode->replace_node DomNode->set_content DomNode->set_name DomNode->set_namespace DomNode->unlink_node DomProcessingInstruction->data DomProcessingInstruction->target DomXsltStylesheet->process() DomXsltStylesheet->result_dump_file() DomXsltStylesheet->result_dump_mem() domxml_new_doc domxml_open_file domxml_open_mem domxml_version domxml_xmltree domxml_xslt_stylesheet_doc domxml_xslt_stylesheet_file domxml_xslt_stylesheet domxml_xslt_version xpath_eval_expression xpath_eval xpath_new_context xpath_register_ns_auto xpath_register_ns xptr_eval xptr_new_context |