diff --git a/reference/dom/book.xml b/reference/dom/book.xml index d85eb0ed2e..b294270f93 100644 --- a/reference/dom/book.xml +++ b/reference/dom/book.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/dom/constants.xml b/reference/dom/constants.xml index fcda7492ea..4a3c735f92 100644 --- a/reference/dom/constants.xml +++ b/reference/dom/constants.xml @@ -1,5 +1,5 @@ - + &reftitle.constants; &extension.constants; diff --git a/reference/dom/domattr.xml b/reference/dom/domattr.xml index 0f7c649140..71ec43af8f 100644 --- a/reference/dom/domattr.xml +++ b/reference/dom/domattr.xml @@ -1,5 +1,5 @@ - + The <classname>DOMAttr</classname> class DOMAttr diff --git a/reference/dom/domattr/construct.xml b/reference/dom/domattr/construct.xml index 4d9818375d..74d2d19847 100644 --- a/reference/dom/domattr/construct.xml +++ b/reference/dom/domattr/construct.xml @@ -1,27 +1,22 @@ - - + + - DOMAttr->__construct() - - Creates a new DOMAttr object - + DOMAttr::__construct + Creates a new DOMAttr object &reftitle.description; - - DOMAttr - - __construct - stringname - stringvalue - - + + DOMAttr::__construct + stringname + stringvalue + - Creates a new DOMAttr object. This object is read only. + Creates a new DOMAttr object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use - . + . @@ -71,7 +66,7 @@ echo $dom->saveXML(); /* + diff --git a/reference/dom/domattr/isid.xml b/reference/dom/domattr/isid.xml index 6e0adf8a89..75a7d6c180 100644 --- a/reference/dom/domattr/isid.xml +++ b/reference/dom/domattr/isid.xml @@ -1,28 +1,25 @@ - - + + - DOMAttr->isId() + DOMAttr::isId Checks if attribute is a defined ID &reftitle.description; - - DOMAttr - - boolisId - - - + + boolDOMAttr::isId + + This function checks if the attribute is a defined ID. According to the DOM standard this requires a DTD which defines the attribute ID to be of type ID. You need to validate your document with - + or DOMDocument::validateOnParse before using this function. diff --git a/reference/dom/domcharacterdata.xml b/reference/dom/domcharacterdata.xml index 94e6aebf1c..6a64132168 100644 --- a/reference/dom/domcharacterdata.xml +++ b/reference/dom/domcharacterdata.xml @@ -1,5 +1,5 @@ - + The DOMCharacterData class DOMCharacterData diff --git a/reference/dom/domcharacterdata/appenddata.xml b/reference/dom/domcharacterdata/appenddata.xml index 9a30aa0990..5f57165443 100644 --- a/reference/dom/domcharacterdata/appenddata.xml +++ b/reference/dom/domcharacterdata/appenddata.xml @@ -1,21 +1,18 @@ - - + + - DOMCharacterData->appendData() + DOMCharacterData::appendData Append the string to the end of the character data of the node &reftitle.description; - - DOMCharacterData - - voidappendData - stringdata - - + + voidDOMCharacterData::appendData + stringdata + Append the string data to the end of the character data of the node. @@ -45,10 +42,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domcharacterdata/deletedata.xml b/reference/dom/domcharacterdata/deletedata.xml index 55e4373b00..061b7379ed 100644 --- a/reference/dom/domcharacterdata/deletedata.xml +++ b/reference/dom/domcharacterdata/deletedata.xml @@ -1,22 +1,19 @@ - - + + - DOMCharacterData->deleteData() + DOMCharacterData::deleteData Remove a range of characters from the node &reftitle.description; - - DOMCharacterData - - voiddeleteData - intoffset - intcount - - + + voidDOMCharacterData::deleteData + intoffset + intcount + Deletes count characters starting from position offset. @@ -74,10 +71,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domcharacterdata/insertdata.xml b/reference/dom/domcharacterdata/insertdata.xml index cbe232dea3..03d8d5a9a6 100644 --- a/reference/dom/domcharacterdata/insertdata.xml +++ b/reference/dom/domcharacterdata/insertdata.xml @@ -1,22 +1,19 @@ - - + + - DOMCharacterData->insertData() + DOMCharacterData::insertData Insert a string at the specified 16-bit unit offset &reftitle.description; - - DOMCharacterData - - voidinsertData - intoffset - stringdata - - + + voidDOMCharacterData::insertData + intoffset + stringdata + Inserts string data at position offset. @@ -70,10 +67,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domcharacterdata/replacedata.xml b/reference/dom/domcharacterdata/replacedata.xml index 7707556f61..0fb1b38cb2 100644 --- a/reference/dom/domcharacterdata/replacedata.xml +++ b/reference/dom/domcharacterdata/replacedata.xml @@ -1,23 +1,20 @@ - - + + - DOMCharacterData->replaceData() + DOMCharacterData::replaceData Replace a substring within the DOMCharacterData node &reftitle.description; - - DOMCharacterData - - voidreplaceData - intoffset - intcount - stringdata - - + + voidDOMCharacterData::replaceData + intoffset + intcount + stringdata + Replace count characters starting from position offset with data. @@ -83,10 +80,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domcharacterdata/substringdata.xml b/reference/dom/domcharacterdata/substringdata.xml index 3c2e0f789d..035e203c94 100644 --- a/reference/dom/domcharacterdata/substringdata.xml +++ b/reference/dom/domcharacterdata/substringdata.xml @@ -1,22 +1,19 @@ - - + + - DOMCharacterData->substringData() + DOMCharacterData::substringData Extracts a range of data from the node &reftitle.description; - - DOMCharacterData - - stringsubstringData - intoffset - intcount - - + + stringDOMCharacterData::substringData + intoffset + intcount + Returns the specified substring. @@ -73,10 +70,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domcomment.xml b/reference/dom/domcomment.xml index 0190432d11..a8dcf61eb6 100644 --- a/reference/dom/domcomment.xml +++ b/reference/dom/domcomment.xml @@ -1,5 +1,5 @@ - + The DOMComment class DOMComment diff --git a/reference/dom/domcomment/construct.xml b/reference/dom/domcomment/construct.xml index c99a345be1..4a17406286 100644 --- a/reference/dom/domcomment/construct.xml +++ b/reference/dom/domcomment/construct.xml @@ -1,8 +1,8 @@ - - + + - DOMComment->__construct() + DOMComment::__construct Creates a new DOMComment object @@ -11,16 +11,16 @@ &reftitle.description; DOMComment - + __construct stringvalue - + Creates a new DOMComment object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use - . + . @@ -62,7 +62,7 @@ echo $dom->saveXML(); /* + The DOMDocument class DOMDocument diff --git a/reference/dom/domdocument/construct.xml b/reference/dom/domdocument/construct.xml index ba761510af..b9d57e38e1 100644 --- a/reference/dom/domdocument/construct.xml +++ b/reference/dom/domdocument/construct.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->__construct() + DOMDocument::__construct Creates a new DOMDocument object &reftitle.description; - - DOMDocument - - __construct - stringversion - stringencoding - - + + DOMDocument::__construct + stringversion + stringencoding + Creates a new DOMDocument object. @@ -67,7 +64,7 @@ echo $dom->saveXML(); /* */ &reftitle.seealso; - + diff --git a/reference/dom/domdocument/createattribute.xml b/reference/dom/domdocument/createattribute.xml index d0d6101e42..028c462f28 100644 --- a/reference/dom/domdocument/createattribute.xml +++ b/reference/dom/domdocument/createattribute.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->createAttribute() + DOMDocument::createAttribute Create new attribute &reftitle.description; - - DOMDocument - - DOMAttrcreateAttribute - stringname - - + + DOMAttrDOMDocument::createAttribute + stringname + This function creates a new instance of class DOMAttr. &dom.node.inserted; @@ -59,16 +56,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createattributens.xml b/reference/dom/domdocument/createattributens.xml index 699b73a6eb..2a37b21877 100644 --- a/reference/dom/domdocument/createattributens.xml +++ b/reference/dom/domdocument/createattributens.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->createAttributeNS() + DOMDocument::createAttributeNS Create new attribute node with an associated namespace &reftitle.description; - - DOMDocument - - DOMAttrcreateAttributeNS - stringnamespaceURI - stringqualifiedName - - + + DOMAttrDOMDocument::createAttributeNS + stringnamespaceURI + stringqualifiedName + This function creates a new instance of class DOMAttr. &dom.node.inserted; @@ -80,16 +77,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createcdatasection.xml b/reference/dom/domdocument/createcdatasection.xml index d901844018..fe996e470f 100644 --- a/reference/dom/domdocument/createcdatasection.xml +++ b/reference/dom/domdocument/createcdatasection.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->createCDATASection() + DOMDocument::createCDATASection Create new cdata node &reftitle.description; - - DOMDocument - - DOMCDATASectioncreateCDATASection - stringdata - - + + DOMCDATASectionDOMDocument::createCDATASection + stringdata + This function creates a new instance of class DOMCDATASection. &dom.node.inserted; @@ -44,16 +41,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createcomment.xml b/reference/dom/domdocument/createcomment.xml index e869bb0fab..d8854296c8 100644 --- a/reference/dom/domdocument/createcomment.xml +++ b/reference/dom/domdocument/createcomment.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->createComment() + DOMDocument::createComment Create new comment node &reftitle.description; - - DOMDocument - - DOMCommentcreateComment - stringdata - - + + DOMCommentDOMDocument::createComment + stringdata + This function creates a new instance of class DOMComment. &dom.node.inserted; @@ -44,16 +41,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createdocumentfragment.xml b/reference/dom/domdocument/createdocumentfragment.xml index 8b4e783c55..894ae54b86 100644 --- a/reference/dom/domdocument/createdocumentfragment.xml +++ b/reference/dom/domdocument/createdocumentfragment.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->createDocumentFragment() + DOMDocument::createDocumentFragment Create new document fragment &reftitle.description; - - DOMDocument - - DOMDocumentFragmentcreateDocumentFragment - - - + + DOMDocumentFragmentDOMDocument::createDocumentFragment + + This function creates a new instance of class DOMDocumentFragment. &dom.node.inserted; @@ -28,16 +25,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createelement.xml b/reference/dom/domdocument/createelement.xml index 2e50308d78..08bd2543a4 100644 --- a/reference/dom/domdocument/createelement.xml +++ b/reference/dom/domdocument/createelement.xml @@ -1,20 +1,17 @@ - - + + - DOMDocument->createElement() + DOMDocument::createElement Create new element node &reftitle.description; - - DOMDocument - - DOMElementcreateElement - stringname - stringvalue - - + + DOMElementDOMDocument::createElement + stringname + stringvalue + This function creates a new instance of class DOMElement. &dom.node.inserted; @@ -100,16 +97,16 @@ echo $dom->saveXML(); &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createelementns.xml b/reference/dom/domdocument/createelementns.xml index ce66de7422..94a4289809 100644 --- a/reference/dom/domdocument/createelementns.xml +++ b/reference/dom/domdocument/createelementns.xml @@ -1,23 +1,20 @@ - - + + - DOMDocument->createElementNS() + DOMDocument::createElementNS Create new element node with an associated namespace &reftitle.description; - - DOMDocument - - DOMElementcreateElementNS - stringnamespaceURI - stringqualifiedName - stringvalue - - + + DOMElementDOMDocument::createElementNS + stringnamespaceURI + stringqualifiedName + stringvalue + This function creates a new element node with an associated namespace. &dom.node.inserted; @@ -119,16 +116,16 @@ echo $dom->saveXML(); &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createentityreference.xml b/reference/dom/domdocument/createentityreference.xml index c15802b343..080c494064 100644 --- a/reference/dom/domdocument/createentityreference.xml +++ b/reference/dom/domdocument/createentityreference.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->createEntityReference() + DOMDocument::createEntityReference Create new entity reference node &reftitle.description; - - DOMDocument - - DOMEntityReferencecreateEntityReference - stringname - - + + DOMEntityReferenceDOMDocument::createEntityReference + stringname + This function creates a new instance of class DOMEntityReference. &dom.node.inserted; @@ -62,16 +59,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createprocessinginstruction.xml b/reference/dom/domdocument/createprocessinginstruction.xml index 14d18f2dae..d1ec62a8ea 100644 --- a/reference/dom/domdocument/createprocessinginstruction.xml +++ b/reference/dom/domdocument/createprocessinginstruction.xml @@ -1,20 +1,17 @@ - - + + - DOMDocument->createProcessingInstruction() + DOMDocument::createProcessingInstruction Creates new PI node &reftitle.description; - - DOMDocument - - DOMProcessingInstructioncreateProcessingInstruction - stringtarget - stringdata - - + + DOMProcessingInstructionDOMDocument::createProcessingInstruction + stringtarget + stringdata + This function creates a new instance of class DOMProcessingInstruction. &dom.node.inserted; @@ -68,16 +65,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/createtextnode.xml b/reference/dom/domdocument/createtextnode.xml index c1c1436e95..b3236c73a1 100644 --- a/reference/dom/domdocument/createtextnode.xml +++ b/reference/dom/domdocument/createtextnode.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->createTextNode() + DOMDocument::createTextNode Create new text node &reftitle.description; - - DOMDocument - - DOMTextcreateTextNode - stringcontent - - + + DOMTextDOMDocument::createTextNode + stringcontent + This function creates a new instance of class DOMText. &dom.node.inserted; @@ -44,16 +41,16 @@ &reftitle.seealso; - - - - - - - - - - + + + + + + + + + + diff --git a/reference/dom/domdocument/getelementbyid.xml b/reference/dom/domdocument/getelementbyid.xml index a1d970dd4c..e0356172fe 100644 --- a/reference/dom/domdocument/getelementbyid.xml +++ b/reference/dom/domdocument/getelementbyid.xml @@ -1,30 +1,27 @@ - - + + - DOMDocument->getElementById() + DOMDocument::getElementById Searches for an element with a certain id &reftitle.description; - - DOMDocument - - DOMElementgetElementById - stringelementId - - + + DOMElementDOMDocument::getElementById + stringelementId + This function is similar to - but + but searches for an element with a given id. For this function to work, you will need either to set some ID attributes - with + with or a DTD which defines an attribute to be of type ID. In the later case, you will need to validate your document with - + or DOMDocument->validateOnParse before using this function. @@ -81,7 +78,7 @@ The element whose id is books is: chapter &reftitle.seealso; - + diff --git a/reference/dom/domdocument/getelementsbytagname.xml b/reference/dom/domdocument/getelementsbytagname.xml index 98d177ba8a..beafd2722b 100644 --- a/reference/dom/domdocument/getelementsbytagname.xml +++ b/reference/dom/domdocument/getelementsbytagname.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->getElementsByTagName() + DOMDocument::getElementsByTagName Searches for all elements with given tag name &reftitle.description; - - DOMDocument - - DOMNodeListgetElementsByTagName - stringname - - + + DOMNodeListDOMDocument::getElementsByTagName + stringname + This function returns a new instance of class DOMNodeList containing the elements with a given @@ -47,7 +44,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domdocument/getelementsbytagnamens.xml b/reference/dom/domdocument/getelementsbytagnamens.xml index 7677b997d0..64ff758592 100644 --- a/reference/dom/domdocument/getelementsbytagnamens.xml +++ b/reference/dom/domdocument/getelementsbytagnamens.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->getElementsByTagNameNS() + DOMDocument::getElementsByTagNameNS Searches for all elements with given tag name in specified namespace &reftitle.description; - - DOMDocument - - DOMNodeListgetElementsByTagNameNS - stringnamespaceURI - stringlocalName - - + + DOMNodeListDOMDocument::getElementsByTagNameNS + stringnamespaceURI + stringlocalName + Returns a DOMNodeList of all elements with a given local name and a namespace URI. @@ -104,7 +101,7 @@ local name: fallback, prefix: xi &reftitle.seealso; - + diff --git a/reference/dom/domdocument/importnode.xml b/reference/dom/domdocument/importnode.xml index 062d3d6cff..372c162c27 100644 --- a/reference/dom/domdocument/importnode.xml +++ b/reference/dom/domdocument/importnode.xml @@ -1,20 +1,17 @@ - - + + - DOMDocument->importNode() + DOMDocument::importNode Import node into current document &reftitle.description; - - DOMDocument - - DOMNodeimportNode - DOMNodeimportedNode - booldeep - - + + DOMNodeDOMDocument::importNode + DOMNodeimportedNode + booldeep + This function returns a copy of the node to import and associates it with the current document. diff --git a/reference/dom/domdocument/load.xml b/reference/dom/domdocument/load.xml index 721b637e4e..8c8462ceb7 100644 --- a/reference/dom/domdocument/load.xml +++ b/reference/dom/domdocument/load.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->load() + DOMDocument::load Load XML from a file &reftitle.description; - - DOMDocument - - mixedload - stringfilename - intoptions - - + + mixedDOMDocument::load + stringfilename + intoptions + Loads an XML document from a file. @@ -73,9 +70,9 @@ echo $doc->saveXML(); &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/loadhtml.xml b/reference/dom/domdocument/loadhtml.xml index e8657658da..fa95856f85 100644 --- a/reference/dom/domdocument/loadhtml.xml +++ b/reference/dom/domdocument/loadhtml.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->loadHTML() + DOMDocument::loadHTML Load HTML from a string &reftitle.description; - - DOMDocument - - boolloadHTML - stringsource - - + + boolDOMDocument::loadHTML + stringsource + The function parses the HTML contained in the string source. Unlike loading XML, HTML does not have to be well-formed to load. This @@ -75,9 +72,9 @@ echo $doc->saveHTML(); &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/loadhtmlfile.xml b/reference/dom/domdocument/loadhtmlfile.xml index 2d812d7cf5..fe04bbce03 100644 --- a/reference/dom/domdocument/loadhtmlfile.xml +++ b/reference/dom/domdocument/loadhtmlfile.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->loadHTMLFile() + DOMDocument::loadHTMLFile Load HTML from a file &reftitle.description; - - DOMDocument - - boolloadHTMLFile - stringfilename - - + + boolDOMDocument::loadHTMLFile + stringfilename + The function parses the HTML document in the file named filename. Unlike loading XML, HTML does not have @@ -79,9 +76,9 @@ echo $doc->saveHTML(); &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/loadxml.xml b/reference/dom/domdocument/loadxml.xml index 4709388a4c..99647044d3 100644 --- a/reference/dom/domdocument/loadxml.xml +++ b/reference/dom/domdocument/loadxml.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->loadXML() + DOMDocument::loadXML Load XML from a string &reftitle.description; - - DOMDocument - - mixedloadXML - stringsource - intoptions - - + + mixedDOMDocument::loadXML + stringsource + intoptions + Loads an XML document from a string. @@ -90,9 +87,9 @@ echo $doc->saveXML(); &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/normalizedocument.xml b/reference/dom/domdocument/normalizedocument.xml index b7062b0d76..b8779903ee 100644 --- a/reference/dom/domdocument/normalizedocument.xml +++ b/reference/dom/domdocument/normalizedocument.xml @@ -1,19 +1,16 @@ - - + + - DOMDocument->normalizeDocument() + DOMDocument::normalizeDocument Normalizes the document &reftitle.description; - - DOMDocument - - voidnormalizeDocument - - - + + voidDOMDocument::normalizeDocument + + This method acts as if you saved and then loaded the document, putting the @@ -35,7 +32,7 @@ The DOM Specification - + diff --git a/reference/dom/domdocument/registernodeclass.xml b/reference/dom/domdocument/registernodeclass.xml index d319bcbb47..c896df7749 100644 --- a/reference/dom/domdocument/registernodeclass.xml +++ b/reference/dom/domdocument/registernodeclass.xml @@ -1,20 +1,17 @@ - - + + - DOMDocument->registerNodeClass() + DOMDocument::registerNodeClass Register extended class used to create base node type &reftitle.description; - - DOMDocument - - boolregisterNodeClass - stringbaseclass - stringextendedclass - - + + boolDOMDocument::registerNodeClass + stringbaseclass + stringextendedclass + This method allows you to register your own extended DOM class to be used diff --git a/reference/dom/domdocument/relaxngvalidate.xml b/reference/dom/domdocument/relaxngvalidate.xml index 1beb86af10..d38d8278cb 100644 --- a/reference/dom/domdocument/relaxngvalidate.xml +++ b/reference/dom/domdocument/relaxngvalidate.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->relaxNGValidate() + DOMDocument::relaxNGValidate Performs relaxNG validation on the document &reftitle.description; - - DOMDocument - - boolrelaxNGValidate - stringfilename - - + + boolDOMDocument::relaxNGValidate + stringfilename + Performs relaxNG validation on the document based on the given RNG schema. @@ -46,10 +43,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domdocument/relaxngvalidatesource.xml b/reference/dom/domdocument/relaxngvalidatesource.xml index 44359d13e0..ac69790062 100644 --- a/reference/dom/domdocument/relaxngvalidatesource.xml +++ b/reference/dom/domdocument/relaxngvalidatesource.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->relaxNGValidateSource() + DOMDocument::relaxNGValidateSource Performs relaxNG validation on the document &reftitle.description; - - DOMDocument - - boolrelaxNGValidateSource - stringsource - - + + boolDOMDocument::relaxNGValidateSource + stringsource + Performs relaxNG validation on the document based on the given RNG source. @@ -46,10 +43,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domdocument/save.xml b/reference/dom/domdocument/save.xml index 118ecec078..660e45bd03 100644 --- a/reference/dom/domdocument/save.xml +++ b/reference/dom/domdocument/save.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->save() + DOMDocument::save Dumps the internal XML tree back into a file &reftitle.description; - - DOMDocument - - mixedsave - stringfilename - intoptions - - + + mixedDOMDocument::save + stringfilename + intoptions + Creates an XML document from the DOM representation. This function is usually called after building a new dom document from scratch as in the example below. @@ -113,9 +110,9 @@ echo 'Wrote: ' . $doc->save("/tmp/test.xml") . ' bytes'; // Wrote: 72 bytes &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/savehtml.xml b/reference/dom/domdocument/savehtml.xml index 36b4e5528f..852da051c5 100644 --- a/reference/dom/domdocument/savehtml.xml +++ b/reference/dom/domdocument/savehtml.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->saveHTML() + DOMDocument::saveHTML Dumps the internal document into a string using HTML formatting &reftitle.description; - - DOMDocument - - stringsaveHTML - - - + + stringDOMDocument::saveHTML + + Creates an HTML document from the DOM representation. This function is usually called after building a new dom document from scratch as in the example below. @@ -62,9 +59,9 @@ echo $doc->saveHTML(); &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/savehtmlfile.xml b/reference/dom/domdocument/savehtmlfile.xml index 6e3260ee7b..579f6d16c3 100644 --- a/reference/dom/domdocument/savehtmlfile.xml +++ b/reference/dom/domdocument/savehtmlfile.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->saveHTMLFile() + DOMDocument::saveHTMLFile Dumps the internal document into a file using HTML formatting &reftitle.description; - - DOMDocument - - intsaveHTMLFile - stringfilename - - + + intDOMDocument::saveHTMLFile + stringfilename + Creates an HTML document from the DOM representation. This function is usually called after building a new dom document from scratch as in the example below. @@ -79,9 +76,9 @@ echo 'Wrote: ' . $doc->saveHTMLFile("/tmp/test.html") . ' bytes'; // Wrote: 129 &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/savexml.xml b/reference/dom/domdocument/savexml.xml index 0ca84d6b96..81ac601232 100644 --- a/reference/dom/domdocument/savexml.xml +++ b/reference/dom/domdocument/savexml.xml @@ -1,22 +1,19 @@ - - + + - DOMDocument->saveXML() + DOMDocument::saveXML Dumps the internal XML tree back into a string &reftitle.description; - - DOMDocument - - stringsaveXML - DOMNodenode - intoptions - - + + stringDOMDocument::saveXML + DOMNodenode + intoptions + Creates an XML document from the DOM representation. This function is usually called after building a new dom document from scratch as in the example below. @@ -146,9 +143,9 @@ Saving only the title part: &reftitle.seealso; - - - + + + diff --git a/reference/dom/domdocument/schemavalidate.xml b/reference/dom/domdocument/schemavalidate.xml index 40e3aaae80..cb66ba818b 100644 --- a/reference/dom/domdocument/schemavalidate.xml +++ b/reference/dom/domdocument/schemavalidate.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->schemaValidate() + DOMDocument::schemaValidate Validates a document based on a schema &reftitle.description; - - DOMDocument - - boolschemaValidate - stringfilename - - + + boolDOMDocument::schemaValidate + stringfilename + Validates a document based on the given schema file. @@ -45,10 +42,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domdocument/schemavalidatesource.xml b/reference/dom/domdocument/schemavalidatesource.xml index 4a384c266f..9b5fedf6fe 100644 --- a/reference/dom/domdocument/schemavalidatesource.xml +++ b/reference/dom/domdocument/schemavalidatesource.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->schemaValidateSource() + DOMDocument::schemaValidateSource Validates a document based on a schema &reftitle.description; - - DOMDocument - - boolschemaValidateSource - stringsource - - + + boolDOMDocument::schemaValidateSource + stringsource + Validates a document based on a schema defined in the given string. @@ -45,10 +42,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domdocument/validate.xml b/reference/dom/domdocument/validate.xml index ce06e1d465..4fbd71a926 100644 --- a/reference/dom/domdocument/validate.xml +++ b/reference/dom/domdocument/validate.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->validate() + DOMDocument::validate Validates the document based on its DTD &reftitle.description; - - DOMDocument - - boolvalidate - - - + + boolDOMDocument::validate + + Validates the document based on its DTD. @@ -66,10 +63,10 @@ $dom->Load('book.xml'); &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domdocument/xinclude.xml b/reference/dom/domdocument/xinclude.xml index 86da01ae86..8b3f3d2f90 100644 --- a/reference/dom/domdocument/xinclude.xml +++ b/reference/dom/domdocument/xinclude.xml @@ -1,21 +1,18 @@ - - + + - DOMDocument->xinclude() + DOMDocument::xinclude Substitutes XIncludes in a DOMDocument Object &reftitle.description; - - DOMDocument - - intxinclude - intoptions - - + + intDOMDocument::xinclude + intoptions + This method substitutes XIncludes in a DOMDocument object. diff --git a/reference/dom/domdocumentfragment.xml b/reference/dom/domdocumentfragment.xml index 04205be368..5d6bc37f34 100644 --- a/reference/dom/domdocumentfragment.xml +++ b/reference/dom/domdocumentfragment.xml @@ -1,5 +1,5 @@ - + The DOMDocumentFragment class DOMDocumentFragment diff --git a/reference/dom/domdocumentfragment/appendxml.xml b/reference/dom/domdocumentfragment/appendxml.xml index 24b3f59d6e..bfd153110f 100644 --- a/reference/dom/domdocumentfragment/appendxml.xml +++ b/reference/dom/domdocumentfragment/appendxml.xml @@ -1,20 +1,17 @@ - + - + - DOMDocumentFragment->appendXML() + DOMDocumentFragment::appendXML Append raw XML data &reftitle.description; - - DOMDocumentFragment - - boolappendXML - stringdata - - + + boolDOMDocumentFragment::appendXML + stringdata + Appends raw XML data to a DOMDocumentFragment. diff --git a/reference/dom/domdocumenttype.xml b/reference/dom/domdocumenttype.xml index d5c8a3a479..719006be9b 100644 --- a/reference/dom/domdocumenttype.xml +++ b/reference/dom/domdocumenttype.xml @@ -1,5 +1,5 @@ - + The DOMDocumentType class DOMDocumentType diff --git a/reference/dom/domelement.xml b/reference/dom/domelement.xml index 88bf9d5546..4361791548 100644 --- a/reference/dom/domelement.xml +++ b/reference/dom/domelement.xml @@ -1,5 +1,5 @@ - + The DOMElement class DOMElement diff --git a/reference/dom/domelement/construct.xml b/reference/dom/domelement/construct.xml index f158fc9003..c5cf59b7e0 100644 --- a/reference/dom/domelement/construct.xml +++ b/reference/dom/domelement/construct.xml @@ -1,8 +1,8 @@ - - + + - DOMElement->__construct() + DOMElement::__construct Creates a new DOMElement object @@ -11,19 +11,19 @@ &reftitle.description; DOMElement - + __construct stringname stringvalue stringnamespaceURI - + Creates a new DOMElement object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use - or - . + or + . @@ -84,8 +84,8 @@ echo $dom->saveXML(); /* &reftitle.seealso; - - + + diff --git a/reference/dom/domelement/getattribute.xml b/reference/dom/domelement/getattribute.xml index f920f1d75c..0db0dca144 100644 --- a/reference/dom/domelement/getattribute.xml +++ b/reference/dom/domelement/getattribute.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->getAttribute() + DOMElement::getAttribute Returns value of attribute &reftitle.description; - - DOMElement - - stringgetAttribute - stringname - - + + stringDOMElement::getAttribute + stringname + Gets the value of the attribute with name name for the current node. @@ -45,9 +42,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/getattributenode.xml b/reference/dom/domelement/getattributenode.xml index bcf8d05e5c..a9bb12697d 100644 --- a/reference/dom/domelement/getattributenode.xml +++ b/reference/dom/domelement/getattributenode.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->getAttributeNode() + DOMElement::getAttributeNode Returns attribute node &reftitle.description; - - DOMElement - - DOMAttrgetAttributeNode - stringname - - + + DOMAttrDOMElement::getAttributeNode + stringname + Returns the attribute node with name name for the current element. @@ -44,9 +41,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/getattributenodens.xml b/reference/dom/domelement/getattributenodens.xml index cb27cf9191..8897d373e7 100644 --- a/reference/dom/domelement/getattributenodens.xml +++ b/reference/dom/domelement/getattributenodens.xml @@ -1,22 +1,19 @@ - - + + - DOMElement->getAttributeNodeNS() + DOMElement::getAttributeNodeNS Returns attribute node &reftitle.description; - - DOMElement - - DOMAttrgetAttributeNodeNS - stringnamespaceURI - stringlocalName - - + + DOMAttrDOMElement::getAttributeNodeNS + stringnamespaceURI + stringlocalName + Returns the attribute node in namespace namespaceURI with local name localName for the current node. @@ -55,9 +52,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/getattributens.xml b/reference/dom/domelement/getattributens.xml index 738a7df018..76048360f2 100644 --- a/reference/dom/domelement/getattributens.xml +++ b/reference/dom/domelement/getattributens.xml @@ -1,20 +1,17 @@ - - + + - DOMElement->getAttributeNS() + DOMElement::getAttributeNS Returns value of attribute &reftitle.description; - - DOMElement - - stringgetAttributeNS - stringnamespaceURI - stringlocalName - - + + stringDOMElement::getAttributeNS + stringnamespaceURI + stringlocalName + Gets the value of the attribute in namespace namespaceURI with local name localName for the current node. @@ -55,9 +52,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/getelementsbytagname.xml b/reference/dom/domelement/getelementsbytagname.xml index 48e2f66a5e..e5ff6719c4 100644 --- a/reference/dom/domelement/getelementsbytagname.xml +++ b/reference/dom/domelement/getelementsbytagname.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->getElementsByTagName() + DOMElement::getElementsByTagName Gets elements by tagname &reftitle.description; - - DOMElement - - DOMNodeListgetElementsByTagName - stringname - - + + DOMNodeListDOMElement::getElementsByTagName + stringname + This function returns a new instance of the class DOMNodeList of all descendant elements with a @@ -48,7 +45,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domelement/getelementsbytagnamens.xml b/reference/dom/domelement/getelementsbytagnamens.xml index 0950f1caca..452a39fd37 100644 --- a/reference/dom/domelement/getelementsbytagnamens.xml +++ b/reference/dom/domelement/getelementsbytagnamens.xml @@ -1,20 +1,17 @@ - - + + - DOMElement->getElementsByTagNameNS() + DOMElement::getElementsByTagNameNS Get elements by namespaceURI and localName &reftitle.description; - - DOMElement - - DOMNodeListgetElementsByTagNameNS - stringnamespaceURI - stringlocalName - - + + DOMNodeListDOMElement::getElementsByTagNameNS + stringnamespaceURI + stringlocalName + This function fetch all the descendant elements with a given localName and namespaceURI. @@ -56,7 +53,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domelement/hasattribute.xml b/reference/dom/domelement/hasattribute.xml index 1f579547f0..879e9a3e20 100644 --- a/reference/dom/domelement/hasattribute.xml +++ b/reference/dom/domelement/hasattribute.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->hasAttribute() + DOMElement::hasAttribute Checks to see if attribute exists &reftitle.description; - - DOMElement - - boolhasAttribute - stringname - - + + boolDOMElement::hasAttribute + stringname + Indicates whether attribute named name exists as a member of the element. @@ -44,10 +41,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domelement/hasattributens.xml b/reference/dom/domelement/hasattributens.xml index cf21fd164d..97406f5b50 100644 --- a/reference/dom/domelement/hasattributens.xml +++ b/reference/dom/domelement/hasattributens.xml @@ -1,22 +1,19 @@ - - + + - DOMElement->hasAttributeNS() + DOMElement::hasAttributeNS Checks to see if attribute exists &reftitle.description; - - DOMElement - - boolhasAttributeNS - stringnamespaceURI - stringlocalName - - + + boolDOMElement::hasAttributeNS + stringnamespaceURI + stringlocalName + Indicates whether attribute in namespace namespaceURI named localName exists as a member of the element. @@ -55,10 +52,10 @@ &reftitle.seealso; - - - - + + + + diff --git a/reference/dom/domelement/removeattribute.xml b/reference/dom/domelement/removeattribute.xml index d38b339dcc..a005a9ab2c 100644 --- a/reference/dom/domelement/removeattribute.xml +++ b/reference/dom/domelement/removeattribute.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->removeAttribute() + DOMElement::removeAttribute Removes attribute &reftitle.description; - - DOMElement - - boolremoveAttribute - stringname - - + + boolDOMElement::removeAttribute + stringname + Removes attribute named name from the element. @@ -58,9 +55,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/removeattributenode.xml b/reference/dom/domelement/removeattributenode.xml index f72bff4745..a168959d19 100644 --- a/reference/dom/domelement/removeattributenode.xml +++ b/reference/dom/domelement/removeattributenode.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->removeAttributeNode() + DOMElement::removeAttributeNode Removes attribute &reftitle.description; - - DOMElement - - boolremoveAttributeNode - DOMAttroldnode - - + + boolDOMElement::removeAttributeNode + DOMAttroldnode + Removes attribute oldnode from the element. @@ -66,9 +63,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/removeattributens.xml b/reference/dom/domelement/removeattributens.xml index f72d1d9f06..4349da0d49 100644 --- a/reference/dom/domelement/removeattributens.xml +++ b/reference/dom/domelement/removeattributens.xml @@ -1,20 +1,17 @@ - - + + - DOMElement->removeAttributeNS() + DOMElement::removeAttributeNS Removes attribute &reftitle.description; - - DOMElement - - boolremoveAttributeNS - stringnamespaceURI - stringlocalName - - + + boolDOMElement::removeAttributeNS + stringnamespaceURI + stringlocalName + Removes attribute is namespace namespaceURI named localName from the element. @@ -68,9 +65,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setattribute.xml b/reference/dom/domelement/setattribute.xml index 094033c339..671833d995 100644 --- a/reference/dom/domelement/setattribute.xml +++ b/reference/dom/domelement/setattribute.xml @@ -1,20 +1,17 @@ - - + + - DOMElement->setAttribute() + DOMElement::setAttribute Adds new attribute &reftitle.description; - - DOMElement - - boolsetAttribute - stringname - stringvalue - - + + boolDOMElement::setAttribute + stringname + stringvalue + Sets an attribute with name name to the given value. If the attribute does not exist, it will be created. @@ -86,9 +83,9 @@ $newnode->setAttribute("align", "left"); &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setattributenode.xml b/reference/dom/domelement/setattributenode.xml index 9bc3d72f3f..599b43579a 100644 --- a/reference/dom/domelement/setattributenode.xml +++ b/reference/dom/domelement/setattributenode.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->setAttributeNode() + DOMElement::setAttributeNode Adds new attribute node to element &reftitle.description; - - DOMElement - - DOMAttrsetAttributeNode - DOMAttrattr - - + + DOMAttrDOMElement::setAttributeNode + DOMAttrattr + Adds new attribute node attr to element. @@ -58,9 +55,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setattributenodens.xml b/reference/dom/domelement/setattributenodens.xml index 1584e62be7..ae1d674d43 100644 --- a/reference/dom/domelement/setattributenodens.xml +++ b/reference/dom/domelement/setattributenodens.xml @@ -1,19 +1,16 @@ - - + + - DOMElement->setAttributeNodeNS() + DOMElement::setAttributeNodeNS Adds new attribute node to element &reftitle.description; - - DOMElement - - DOMAttrsetAttributeNodeNS - DOMAttrattr - - + + DOMAttrDOMElement::setAttributeNodeNS + DOMAttrattr + Adds new attribute node attr to element. @@ -58,9 +55,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setattributens.xml b/reference/dom/domelement/setattributens.xml index bf92fabe32..923ba3b184 100644 --- a/reference/dom/domelement/setattributens.xml +++ b/reference/dom/domelement/setattributens.xml @@ -1,21 +1,18 @@ - - + + - DOMElement->setAttributeNS() + DOMElement::setAttributeNS Adds new attribute &reftitle.description; - - DOMElement - - voidsetAttributeNS - stringnamespaceURI - stringqualifiedName - stringvalue - - + + voidDOMElement::setAttributeNS + stringnamespaceURI + stringqualifiedName + stringvalue + Sets an attribute with namespace namespaceURI and name name to the given value. If the attribute @@ -88,9 +85,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setidattribute.xml b/reference/dom/domelement/setidattribute.xml index c5549dd986..07677294a8 100644 --- a/reference/dom/domelement/setidattribute.xml +++ b/reference/dom/domelement/setidattribute.xml @@ -1,20 +1,17 @@ - - + + - DOMElement->setIdAttribute() + DOMElement::setIdAttribute Declares the attribute specified by name to be of type ID &reftitle.description; - - DOMElement - - voidsetIdAttribute - stringname - boolisId - - + + voidDOMElement::setIdAttribute + stringname + boolisId + Declares the attribute name to be of type ID. @@ -79,9 +76,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setidattributenode.xml b/reference/dom/domelement/setidattributenode.xml index 21a51aca4b..c787fd6d2e 100644 --- a/reference/dom/domelement/setidattributenode.xml +++ b/reference/dom/domelement/setidattributenode.xml @@ -1,20 +1,17 @@ - - + + - DOMElement->setIdAttributeNode() + DOMElement::setIdAttributeNode Declares the attribute specified by node to be of type ID &reftitle.description; - - DOMElement - - voidsetIdAttributeNode - DOMAttrattr - boolisId - - + + voidDOMElement::setIdAttributeNode + DOMAttrattr + boolisId + Declares the attribute specified by attr to be of type ID. @@ -80,9 +77,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domelement/setidattributens.xml b/reference/dom/domelement/setidattributens.xml index 25cc1bab98..7870ee03a9 100644 --- a/reference/dom/domelement/setidattributens.xml +++ b/reference/dom/domelement/setidattributens.xml @@ -1,21 +1,18 @@ - - + + - DOMElement->setIdAttributeNS() + DOMElement::setIdAttributeNS Declares the attribute specified by local name and namespace URI to be of type ID &reftitle.description; - - DOMElement - - voidsetIdAttributeNS - stringnamespaceURI - stringlocalName - boolisId - - + + voidDOMElement::setIdAttributeNS + stringnamespaceURI + stringlocalName + boolisId + Declares the attribute specified by localName and namespaceURI to be of type ID. @@ -89,9 +86,9 @@ &reftitle.seealso; - - - + + + diff --git a/reference/dom/domentity.xml b/reference/dom/domentity.xml index b0a54fb077..20b0dd82f3 100644 --- a/reference/dom/domentity.xml +++ b/reference/dom/domentity.xml @@ -1,5 +1,5 @@ - + The DOMEntity class DOMEntity diff --git a/reference/dom/domentityreference.xml b/reference/dom/domentityreference.xml index 688e02cfe3..bb3c378c34 100644 --- a/reference/dom/domentityreference.xml +++ b/reference/dom/domentityreference.xml @@ -1,5 +1,5 @@ - + - + + - DOMEntityReference->__construct() + DOMEntityReference::__construct Creates a new DOMEntityReference object @@ -11,10 +11,10 @@ &reftitle.description; DOMEntityReference - + __construct stringname - + Creates a new DOMEntityReference object. @@ -59,7 +59,7 @@ echo $dom->saveXML(); /*   &reftitle.seealso; - + diff --git a/reference/dom/domexception.xml b/reference/dom/domexception.xml index b73b399060..e73f78daa8 100644 --- a/reference/dom/domexception.xml +++ b/reference/dom/domexception.xml @@ -1,5 +1,5 @@ - + + - + + - DOMImplementation->__construct() + DOMImplementation::__construct Creates a new DOMImplementation object @@ -11,10 +11,10 @@ &reftitle.description; DOMImplementation - + __construct - + Creates a new DOMImplementation object. diff --git a/reference/dom/domimplementation/createdocument.xml b/reference/dom/domimplementation/createdocument.xml index c9b160da4c..1e4eb438fd 100644 --- a/reference/dom/domimplementation/createdocument.xml +++ b/reference/dom/domimplementation/createdocument.xml @@ -1,23 +1,20 @@ - - + + - DOMImplementation->createDocument() + DOMImplementation::createDocument Creates a DOMDocument object of the specified type with its document element &reftitle.description; - - DOMImplementation - - DOMDocumentcreateDocument - stringnamespaceURI - stringqualifiedName - DOMDocumentTypedoctype - - + + DOMDocumentDOMImplementation::createDocument + stringnamespaceURI + stringqualifiedName + DOMDocumentTypedoctype + Creates a DOMDocument object of the specified type with its document element. @@ -92,8 +89,8 @@ &reftitle.seealso; - - + + diff --git a/reference/dom/domimplementation/createdocumenttype.xml b/reference/dom/domimplementation/createdocumenttype.xml index ab19e3a535..71c5a74078 100644 --- a/reference/dom/domimplementation/createdocumenttype.xml +++ b/reference/dom/domimplementation/createdocumenttype.xml @@ -1,23 +1,20 @@ - - + + - DOMImplementation->createDocumentType() + DOMImplementation::createDocumentType Creates an empty DOMDocumentType object &reftitle.description; - - DOMImplementation - - DOMDocumentTypecreateDocumentType - stringqualifiedName - stringpublicId - stringsystemId - - + + DOMDocumentTypeDOMImplementation::createDocumentType + stringqualifiedName + stringpublicId + stringsystemId + Creates an empty DOMDocumentType object. Entity declarations and notations are not made available. Entity reference @@ -127,7 +124,7 @@ echo $dom->saveXML(); &reftitle.seealso; - + diff --git a/reference/dom/domimplementation/hasfeature.xml b/reference/dom/domimplementation/hasfeature.xml index 49309074c7..3a4a033e66 100644 --- a/reference/dom/domimplementation/hasfeature.xml +++ b/reference/dom/domimplementation/hasfeature.xml @@ -1,22 +1,19 @@ - - + + - DOMImplementation->hasFeature() + DOMImplementation::hasFeature Test if the DOM implementation implements a specific feature &reftitle.description; - - DOMImplementation - - boolhasFeature - stringfeature - stringversion - - + + boolDOMImplementation::hasFeature + stringfeature + stringversion + Test if the DOM implementation implements a specific feature. @@ -100,7 +97,7 @@ foreach ($features as $key => $name) { &reftitle.seealso; - + diff --git a/reference/dom/domnamednodemap.xml b/reference/dom/domnamednodemap.xml index b54c0fa9a0..3ece6ddb2d 100644 --- a/reference/dom/domnamednodemap.xml +++ b/reference/dom/domnamednodemap.xml @@ -1,5 +1,5 @@ - + - + + - DOMNamedNodeMap->getNamedItem() + DOMNamedNodeMap::getNamedItem Retrieves a node specified by name &reftitle.description; - - DOMNamedNodeMap - - DOMNodegetNamedItem - stringname - - + + DOMNodeDOMNamedNodeMap::getNamedItem + stringname + Retrieves a node specified by its nodeName. @@ -46,7 +43,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnamednodemap/getnameditemns.xml b/reference/dom/domnamednodemap/getnameditemns.xml index 9e1e294edb..81507502eb 100644 --- a/reference/dom/domnamednodemap/getnameditemns.xml +++ b/reference/dom/domnamednodemap/getnameditemns.xml @@ -1,22 +1,19 @@ - - + + - DOMNamedNodeMap->getNamedItemNS() + DOMNamedNodeMap::getNamedItemNS Retrieves a node specified by local name and namespace URI &reftitle.description; - - DOMNamedNodeMap - - DOMNodegetNamedItemNS - stringnamespaceURI - stringlocalName - - + + DOMNodeDOMNamedNodeMap::getNamedItemNS + stringnamespaceURI + stringlocalName + Retrieves a node specified by localName and namespaceURI. @@ -56,7 +53,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnamednodemap/item.xml b/reference/dom/domnamednodemap/item.xml index fdcb3297ca..9e2ec42f9f 100644 --- a/reference/dom/domnamednodemap/item.xml +++ b/reference/dom/domnamednodemap/item.xml @@ -1,19 +1,16 @@ - - + + - DOMNamedNodeMap->item() + DOMNamedNodeMap::item Retrieves a node specified by index &reftitle.description; - - DOMNamedNodeMap - - DOMNodeitem - intindex - - + + DOMNodeDOMNamedNodeMap::item + intindex + Retrieves a node specified by index within the DOMNamedNodeMap object. diff --git a/reference/dom/domnode.xml b/reference/dom/domnode.xml index d43c625e65..bd36e891cb 100644 --- a/reference/dom/domnode.xml +++ b/reference/dom/domnode.xml @@ -1,5 +1,5 @@ - + The DOMNode class DOMNode diff --git a/reference/dom/domnode/appendchild.xml b/reference/dom/domnode/appendchild.xml index 614b695051..b5e16e1a19 100644 --- a/reference/dom/domnode/appendchild.xml +++ b/reference/dom/domnode/appendchild.xml @@ -1,26 +1,23 @@ - - + + - DOMNode->appendChild() + DOMNode::appendChild Adds new child at the end of the children &reftitle.description; - - DOMNode - - DOMNodeappendChild - DOMNodenewnode - - + + DOMNodeDOMNode::appendChild + DOMNodenewnode + This functions appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. , etc. or simply by using + linkend="domdocument.createelement" />, etc. or simply by using any other node. @@ -106,8 +103,8 @@ echo $doc->saveXML(); &reftitle.seealso; - - + + diff --git a/reference/dom/domnode/clonenode.xml b/reference/dom/domnode/clonenode.xml index 57a1431e21..196a58c819 100644 --- a/reference/dom/domnode/clonenode.xml +++ b/reference/dom/domnode/clonenode.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->cloneNode() + DOMNode::cloneNode Clones a node &reftitle.description; - - DOMNode - - DOMNodecloneNode - booldeep - - + + DOMNodeDOMNode::cloneNode + booldeep + Creates a copy of the node. diff --git a/reference/dom/domnode/hasattributes.xml b/reference/dom/domnode/hasattributes.xml index 3884705e71..2b0be44fb8 100644 --- a/reference/dom/domnode/hasattributes.xml +++ b/reference/dom/domnode/hasattributes.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->hasAttributes() + DOMNode::hasAttributes Checks if node has attributes &reftitle.description; - - DOMNode - - boolhasAttributes - - - + + boolDOMNode::hasAttributes + + This method checks if the node has attributes. The tested node have to be an XML_ELEMENT_NODE. @@ -31,7 +28,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnode/haschildnodes.xml b/reference/dom/domnode/haschildnodes.xml index cdc451b38e..3781b306ef 100644 --- a/reference/dom/domnode/haschildnodes.xml +++ b/reference/dom/domnode/haschildnodes.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->hasChildNodes() + DOMNode::hasChildNodes Checks if node has children &reftitle.description; - - DOMNode - - boolhasChildNodes - - - + + boolDOMNode::hasChildNodes + + This function checks if the node has children. @@ -30,7 +27,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnode/insertbefore.xml b/reference/dom/domnode/insertbefore.xml index 56f1389191..b990e4ba53 100644 --- a/reference/dom/domnode/insertbefore.xml +++ b/reference/dom/domnode/insertbefore.xml @@ -1,22 +1,19 @@ - - + + - DOMNode->insertBefore() + DOMNode::insertBefore Adds a new child before a reference node &reftitle.description; - - DOMNode - - DOMNodeinsertBefore - DOMNodenewnode - DOMNoderefnode - - + + DOMNodeDOMNode::insertBefore + DOMNodenewnode + DOMNoderefnode + This function inserts a new node right before the reference node. If you plan to do further modifications on the appended child you must use diff --git a/reference/dom/domnode/isdefaultnamespace.xml b/reference/dom/domnode/isdefaultnamespace.xml index 2f086ecf7f..7e6e2be5b5 100644 --- a/reference/dom/domnode/isdefaultnamespace.xml +++ b/reference/dom/domnode/isdefaultnamespace.xml @@ -1,19 +1,16 @@ - - + + - DOMNode->isDefaultNamespace() + DOMNode::isDefaultNamespace Checks if the specified namespaceURI is the default namespace or not &reftitle.description; - - DOMNode - - boolisDefaultNamespace - stringnamespaceURI - - + + boolDOMNode::isDefaultNamespace + stringnamespaceURI + Tells whether namespaceURI is the default namespace. diff --git a/reference/dom/domnode/issamenode.xml b/reference/dom/domnode/issamenode.xml index 602410d001..7b566f117c 100644 --- a/reference/dom/domnode/issamenode.xml +++ b/reference/dom/domnode/issamenode.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->isSameNode() + DOMNode::isSameNode Indicates if two nodes are the same node &reftitle.description; - - DOMNode - - boolisSameNode - DOMNodenode - - + + boolDOMNode::isSameNode + DOMNodenode + This function indicates if two nodes are the same node. The comparison is not based on content diff --git a/reference/dom/domnode/issupported.xml b/reference/dom/domnode/issupported.xml index 3abd7ba516..e9dbb367a1 100644 --- a/reference/dom/domnode/issupported.xml +++ b/reference/dom/domnode/issupported.xml @@ -1,22 +1,19 @@ - - + + - DOMNode->isSupported() + DOMNode::isSupported Checks if feature is supported for specified version &reftitle.description; - - DOMNode - - boolisSupported - stringfeature - stringversion - - + + boolDOMNode::isSupported + stringfeature + stringversion + Checks if the asked feature is supported for the specified version. @@ -31,7 +28,7 @@ The feature to test. See the example of - for a + for a list of features. @@ -57,7 +54,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnode/lookupnamespaceuri.xml b/reference/dom/domnode/lookupnamespaceuri.xml index 589f3d7400..585f276e0a 100644 --- a/reference/dom/domnode/lookupnamespaceuri.xml +++ b/reference/dom/domnode/lookupnamespaceuri.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->lookupNamespaceURI() + DOMNode::lookupNamespaceURI Gets the namespace URI of the node based on the prefix &reftitle.description; - - DOMNode - - stringlookupNamespaceURI - stringprefix - - + + stringDOMNode::lookupNamespaceURI + stringprefix + Gets the namespace URI of the node based on the prefix. @@ -46,7 +43,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnode/lookupprefix.xml b/reference/dom/domnode/lookupprefix.xml index 1567c7b503..8ff5ee86b7 100644 --- a/reference/dom/domnode/lookupprefix.xml +++ b/reference/dom/domnode/lookupprefix.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->lookupPrefix() + DOMNode::lookupPrefix Gets the namespace prefix of the node based on the namespace URI &reftitle.description; - - DOMNode - - stringlookupPrefix - stringnamespaceURI - - + + stringDOMNode::lookupPrefix + stringnamespaceURI + Gets the namespace prefix of the node based on the namespace URI. @@ -45,7 +42,7 @@ &reftitle.seealso; - + diff --git a/reference/dom/domnode/normalize.xml b/reference/dom/domnode/normalize.xml index 5b2499b5c2..99c1f8da96 100644 --- a/reference/dom/domnode/normalize.xml +++ b/reference/dom/domnode/normalize.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->normalize() + DOMNode::normalize Normalizes the node &reftitle.description; - - DOMNode - - voidnormalize - - - + + voidDOMNode::normalize + + Normalizes the node. @@ -33,7 +30,7 @@ The DOM Specification - + diff --git a/reference/dom/domnode/removechild.xml b/reference/dom/domnode/removechild.xml index bf8b78e6f8..86387c790a 100644 --- a/reference/dom/domnode/removechild.xml +++ b/reference/dom/domnode/removechild.xml @@ -1,21 +1,18 @@ - - + + - DOMNode->removeChild() + DOMNode::removeChild Removes child from list of children &reftitle.description; - - DOMNode - - DOMNoderemoveChild - DOMNodeoldnode - - + + DOMNodeDOMNode::removeChild + DOMNodeoldnode + This functions removes a child from a list of children. @@ -105,8 +102,8 @@ echo $doc->saveXML(); &reftitle.seealso; - - + + diff --git a/reference/dom/domnode/replacechild.xml b/reference/dom/domnode/replacechild.xml index 6f544504c4..9d7530a19d 100644 --- a/reference/dom/domnode/replacechild.xml +++ b/reference/dom/domnode/replacechild.xml @@ -1,22 +1,19 @@ - - + + - DOMNode->replaceChild() + DOMNode::replaceChild Replaces a child &reftitle.description; - - DOMNode - - DOMNodereplaceChild - DOMNodenewnode - DOMNodeoldnode - - + + DOMNodeDOMNode::replaceChild + DOMNodenewnode + DOMNodeoldnode + This function replaces the child oldnode with the passed new node. If the new node is already a child it @@ -34,7 +31,7 @@ The new node. It must be a member of the target document, i.e. created by one of the DOMDocument->createXXX() methods or imported in - the document by . + the document by . @@ -102,8 +99,8 @@ &reftitle.seealso; - - + + diff --git a/reference/dom/domnodelist.xml b/reference/dom/domnodelist.xml index 8f52b5a1eb..3388acf1db 100644 --- a/reference/dom/domnodelist.xml +++ b/reference/dom/domnodelist.xml @@ -1,5 +1,5 @@ - + - + + - DOMNodelist->item() + DOMNodelist::item Retrieves a node specified by index &reftitle.description; - - DOMNodeList - - DOMNodeitem - intindex - - + + DOMNodeDOMNodelist::item + intindex + Retrieves a node specified by index within the DOMNodeList object. diff --git a/reference/dom/domnotation.xml b/reference/dom/domnotation.xml index ffbce3ea39..cfa0ee798d 100644 --- a/reference/dom/domnotation.xml +++ b/reference/dom/domnotation.xml @@ -1,5 +1,5 @@ - + + The DOMProcessingInstruction class DOMProcessingInstruction diff --git a/reference/dom/domprocessinginstruction/construct.xml b/reference/dom/domprocessinginstruction/construct.xml index 849bf4ef0b..e974e7c680 100644 --- a/reference/dom/domprocessinginstruction/construct.xml +++ b/reference/dom/domprocessinginstruction/construct.xml @@ -1,8 +1,8 @@ - - + + - DOMProcessingInstruction->__construct() + DOMProcessingInstruction::__construct Creates a new DOMProcessingInstruction object @@ -11,17 +11,17 @@ &reftitle.description; DOMProcessingInstruction - + __construct stringname stringvalue - + Creates a new DOMProcessingInstruction object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use - . + . @@ -80,7 +80,7 @@ echo $dom->saveXML(); &reftitle.seealso; - + diff --git a/reference/dom/domtext.xml b/reference/dom/domtext.xml index 6b8bac3782..948ae94df9 100644 --- a/reference/dom/domtext.xml +++ b/reference/dom/domtext.xml @@ -1,5 +1,5 @@ - + The DOMText class DOMText diff --git a/reference/dom/domtext/construct.xml b/reference/dom/domtext/construct.xml index 820d23b538..039a1eac07 100644 --- a/reference/dom/domtext/construct.xml +++ b/reference/dom/domtext/construct.xml @@ -1,8 +1,8 @@ - - + + - DOMText->__construct() + DOMText::__construct Creates a new DOMText object @@ -11,10 +11,10 @@ &reftitle.description; DOMText - + __construct stringvalue - + Creates a new DOMText object. @@ -59,7 +59,7 @@ echo $dom->saveXML(); /* root v &reftitle.seealso; - + diff --git a/reference/dom/domtext/iswhitespaceinelementcontent.xml b/reference/dom/domtext/iswhitespaceinelementcontent.xml index 8608da2694..b9d5afb82b 100644 --- a/reference/dom/domtext/iswhitespaceinelementcontent.xml +++ b/reference/dom/domtext/iswhitespaceinelementcontent.xml @@ -1,21 +1,18 @@ - - + + - DOMText->isWhitespaceInElementContent() + DOMText::isWhitespaceInElementContent Indicates whether this text node contains whitespace &reftitle.description; - - DOMText - - boolisWhitespaceInElementContent - - - + + boolDOMText::isWhitespaceInElementContent + + Indicates whether this text node contains whitespace. The text node is determined to contain whitespace in element content during the load of the diff --git a/reference/dom/domtext/splittext.xml b/reference/dom/domtext/splittext.xml index 568007f375..b368a1008a 100644 --- a/reference/dom/domtext/splittext.xml +++ b/reference/dom/domtext/splittext.xml @@ -1,21 +1,18 @@ - - + + - DOMText->splitText() + DOMText::splitText Breaks this node into two nodes at the specified offset &reftitle.description; - - DOMText - - DOMTextsplitText - intoffset - - + + DOMTextDOMText::splitText + intoffset + Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings. diff --git a/reference/dom/domxpath.xml b/reference/dom/domxpath.xml index f1c9ec39a0..758ed01238 100644 --- a/reference/dom/domxpath.xml +++ b/reference/dom/domxpath.xml @@ -1,5 +1,5 @@ - + - + + - DOMXPath->__construct() + DOMXPath::__construct Creates a new DOMXPath object @@ -11,10 +11,10 @@ &reftitle.description; DOMXPath - + __construct DOMDocumentdoc - + Creates a new DOMXPath object. diff --git a/reference/dom/domxpath/evaluate.xml b/reference/dom/domxpath/evaluate.xml index 26b3d325f8..00fcca4664 100644 --- a/reference/dom/domxpath/evaluate.xml +++ b/reference/dom/domxpath/evaluate.xml @@ -1,22 +1,19 @@ - - + + - DOMXPath->evaluate() + DOMXPath::evaluate Evaluates the given XPath expression and returns a typed result if possible. &reftitle.description; - - DOMXPath - - mixedevaluate - stringexpression - DOMNodecontextnode - - + + mixedDOMXPath::evaluate + stringexpression + DOMNodecontextnode + Executes the given XPath expression and returns a typed result if possible. @@ -93,7 +90,7 @@ There are 2 english books &reftitle.seealso; - + diff --git a/reference/dom/domxpath/query.xml b/reference/dom/domxpath/query.xml index 0aa4835604..d92f3b63e4 100644 --- a/reference/dom/domxpath/query.xml +++ b/reference/dom/domxpath/query.xml @@ -1,22 +1,19 @@ - - + + - DOMXPath->query() + DOMXPath::query Evaluates the given XPath expression &reftitle.description; - - DOMXPath - - DOMNodeListquery - stringexpression - DOMNodecontextnode - - + + DOMNodeListDOMXPath::query + stringexpression + DOMNodecontextnode + Executes the given XPath expression. @@ -127,7 +124,7 @@ foreach ($entries as $entry) { &reftitle.seealso; - + diff --git a/reference/dom/domxpath/registernamespace.xml b/reference/dom/domxpath/registernamespace.xml index 612b7603c5..405b353273 100644 --- a/reference/dom/domxpath/registernamespace.xml +++ b/reference/dom/domxpath/registernamespace.xml @@ -1,22 +1,19 @@ - - + + - DOMXPath->registerNamespace() + DOMXPath::registerNamespace Registers the namespace with the DOMXPath object &reftitle.description; - - DOMXPath - - boolregisterNamespace - stringprefix - stringnamespaceURI - - + + boolDOMXPath::registerNamespace + stringprefix + stringnamespaceURI + Registers the namespaceURI and prefix with the DOMXPath object. diff --git a/reference/dom/reference.xml b/reference/dom/reference.xml index 6705db1f7c..912a617cef 100644 --- a/reference/dom/reference.xml +++ b/reference/dom/reference.xml @@ -1,5 +1,7 @@ - + + + DOM Functions diff --git a/reference/dom/setup.xml b/reference/dom/setup.xml index 1020272af9..ec60174ac4 100644 --- a/reference/dom/setup.xml +++ b/reference/dom/setup.xml @@ -1,5 +1,5 @@ - + &reftitle.setup;