PHPExiftool\RDFParser::close PHP Method

close() public method

Close the current opened XML file and reset internals
public close ( ) : RDFParser
return RDFParser
    public function close()
    {
        $this->XML = null;
        $this->DOMXpath = null;
        $this->DOM = null;
        $this->registeredPrefixes = array();
        return $this;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * @covers PHPExiftool\RDFParser::close
  */
 public function testClose()
 {
     $this->object->close();
 }