The XMLReader::moveToNextAttribute() function is an inbuilt function in PHP which is used to move cursor to the next attribute if positioned on an attribute or… Read More
Category Archives: PHP
The XMLReader::setParserProperty() function is an inbuilt function in PHP which is used to set parser options. This function can be used to validate the document.Syntax: … Read More
The XMLWriter::endDtdElement() function is an inbuilt function in PHP which is used to end current DTD element. DTD stands for Document Type Definition which defines… Read More
The XMLReader::readString() function is an inbuilt function in PHP which is used to read the contents of the current node as a string. Difference between… Read More
The XMLWriter::startCdata() function is an inbuilt function in PHP which is used to start the CDATA. This element then needs to be closed with XMLWriter::endCdata()… Read More
The XMLWriter::startDocument() function is an inbuilt function in PHP which is used to start the document. This document then needs to be ended with XMLWriter::endDocument… Read More
The XMLWriter::startComment() function is an inbuilt function in PHP which is used to start comment. This comment later needs to be closed using XMLWriter::endComment() function.… Read More
The XMLWriter::startAttributeNs() function is an inbuilt function in PHP which is used to start namespaced attribute. This attribute can be later closed with XMLWriter::endAttribute() function.… Read More
The XMLReader::close() function is an inbuilt function in PHP which is used to close the input of XMLReader object which is currently parsing. Syntax: bool… Read More
The XMLWriter::startDtdAttlist() function is an inbuilt function in PHP which is used to start DTD AttList. DTD stands for Document Type Definition which defines the… Read More
The XMLReader::setSchema() function is an inbuilt function in PHP which is used to validate the document using a XSD schema. This XSD schema is nothing… Read More
The XMLReader::readInnerXml() function is an inbuilt function in PHP which is used to read the contents of the current node, including child nodes and markup.… Read More
The XMLReader::setRelaxNGSchemaSource() function is an inbuilt function in PHP which is used to set the data containing a RelaxNG Schema to use for validation. The… Read More
The XMLWriter::fullEndElement() function is an inbuilt function in PHP which is used to end current element which is started using XMLWriter::startElement() function. Difference between endElement()… Read More
The DOMXPath::evaluate() function is an inbuilt function in PHP which is used to execute the given XPath expression which is a pattern defined to select… Read More