From professional translators, enterprises, web pages and freely available translation repositories.
if the destination id is 0 the objects will be unlinked from the source collection.
moves the objects with object ids as specified in the second parameter from the collection with id source id to the collection with the id destination id. if the destination id is 0 the objects will be unlinked from the source collection. if this is the last instance of that object it will be deleted. if you want to delete all instances at once, use hw_deleteobject().
if newnode was already inserted in the document it is first unlinked from its existing context.
(php 4.3) this function replaces the child oldnode with the passed newnode, even if the new node already is a child of the domnode. if newnode was already inserted in the document it is first unlinked from its existing context. if the old node cannot be found the function returns false. if the replacement succeds the old node is returned. (this behaviour is according to the w3c specs).
(php = 4.3) the new child newnode is first unlinked from its existing context, if it already existed in a document.
(php = 4.3) the new child newnode is first unlinked from its existing context, if it already existed in a document. therefore the node is moved and not copies anymore. this is the behaviour according to the w3c specifications. if you want to duplicate large parts of a xml document, use domnode- clone_node() before appending.