From:             
Operating system: 
PHP version:      5.3.3
Package:          DOM XML related
Bug Type:         Feature/Change Request
Bug description:no way to create an instance of a subclass of DOMDocument with 
a dtd

Description:
------------
DOMImplementation might have a registerClass(string $baseclass, string
$extendedclass) method similar to DOMDocument::registerNodeClass in order
to create custom subclass of DOMDocument with
DOMImplementation::createDocument

Test script:
---------------
$implementation = new DOMImplementation();

$dtd = $implementation->createDocumentType('html');



$implementation->registerClass('DOMDocument', 'My_DOMDocument');

$doc = $implementation->createDocument('http://www.w3.org/1999/xhtml',
null, $dtd);



echo get_class($doc);

Expected result:
----------------
output :

My_DOMDocument


-- 
Edit bug report at http://bugs.php.net/bug.php?id=53286&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=53286&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=53286&r=trysnapshot53
Try a snapshot (trunk):              
http://bugs.php.net/fix.php?id=53286&r=trysnapshottrunk
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=53286&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=53286&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=53286&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=53286&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=53286&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=53286&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=53286&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=53286&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=53286&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=53286&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=53286&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=53286&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=53286&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=53286&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=53286&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=53286&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=53286&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=53286&r=mysqlcfg

Reply via email to