The DOMElement::getElementsByTagName() function is an inbuilt function in PHP which is used to get the elements by tagname. Syntax: DOMNodeList DOMElement::getElementsByTagName( string $name ) Parameters:… Read More
Tag Archives: PHP-function
The DOMImplementation::createDocument() function is an inbuilt function in PHP which is used to create a DOMDocument object of the specified type with its document element.… Read More
The DOMNode::cloneNode() function is an inbuilt function in PHP which is used to create a copy of the node. Syntax: DOMNode DOMNode::cloneNode( bool $deep )… Read More
The DOMNode::getLineNo() function is an inbuilt function in PHP which is used to get the line number for where the node is defined. Syntax: DOMNode… Read More
Javascript arrays are variables that can hold more than one value. There are many methods associated with these arrays. The methods slice() and splice() are… Read More
The imagexbm() function is an inbuilt function in PHP which is used to display image to browser a file. The main use of this function… Read More
The DOMDocument::getElementsByTagNameNS() function is an inbuilt function in PHP which is used to search for all elements with given tag name in specified namespace. Syntax: … Read More
The DOMCharacterData::insertData() function is an inbuilt function in PHP which is used to insert a string at the specified 16-bit unit offset. Syntax: void DOMCharacterData::insertData(… Read More
The DOMDocument::schemaValidate() function is an inbuilt function in PHP which is used to validate a document based on the given schema file. The schema file… Read More
The DOMDocument::getElementById() function is an inbuilt function in PHP which is used to search for an element with a certain id. Syntax: DOMElement DOMDocument::getElementById( string… Read More
The DOMCharacterData::substringData() function is an inbuilt function in PHP which is used to extracts a range of data from the node. Syntax: string DOMCharacterData::substringData( int… Read More
The image2wbmp() function is an inbuilt function in PHP which is used to display image to browser or file. The main use of this function… Read More
The DOMDocument::appendXML() function is an inbuilt function in PHP which is used to append raw XML data to a DOMDocumentFragment. Syntax: bool DOMDocumentFragment::appendXML( string $data… Read More
The read_exif_data() function is an inbuilt function in PHP which is used to read the EXIF headers from an image file and is an alternate… Read More
The DOMDocument::schemaValidateSource() function is an inbuilt function in PHP which is used to validate a document based on a schema defined in the given string.… Read More