DOMImplementation
class DOMImplementation (View source)
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
Methods
                    never
                
                
                    getFeature(string $feature, string $version)
        
                                            
                
            No description
                    bool
                
                
                    hasFeature(string $feature, string $version)
        
                                            
                
            Test if the DOM implementation implements a specific feature
                    DOMDocumentType|false
                
                
                    createDocumentType(string $qualifiedName, string $publicId = '', string $systemId = '')
        
                                            
                
            Creates an empty DOMDocumentType object
                    DOMDocument|false
                
                
                    createDocument(string|null $namespace = null, string $qualifiedName = '', DOMDocumentType|null $doctype = null)
        
                                            
                
            Creates a DOMDocument object of the specified type with its document element
Details
        
                            never
    getFeature(string $feature, string $version)
        
    
    No description
        
                            bool
    hasFeature(string $feature, string $version)
        
    
    Test if the DOM implementation implements a specific feature
        
                            DOMDocumentType|false
    createDocumentType(string $qualifiedName, string $publicId = '', string $systemId = '')
        
    
    Creates an empty DOMDocumentType object
        
                            DOMDocument|false
    createDocument(string|null $namespace = null, string $qualifiedName = '', DOMDocumentType|null $doctype = null)
        
    
    Creates a DOMDocument object of the specified type with its document element