Searched refs:createDocumentType (Results 1 – 12 of 12) sorted by relevance
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_implementation_createDocumentType_errors.phpt | 2 Document::$implementation createDocumentType errors 10 $dom->implementation->createDocumentType("invalid name", "public", "system"); 15 $dom->implementation->createDocumentType("", "public", "system"); 20 $dom->implementation->createDocumentType("@", "", "");
|
H A D | Document_implementation_createDocument.phpt | 28 $dtd = $dom->implementation->createDocumentType("mydoc", "", ""); 34 $dtd = $dom2->implementation->createDocumentType("mydoc", "", "");
|
H A D | appendChild_dtd_legacy.phpt | 26 $other->appendChild($other->implementation->createDocumentType('doc', '', ''));
|
H A D | Document_implementation_createDocumentType.phpt | 2 Document::$implementation createDocumentType 17 …$dtd = $dom->implementation->createDocumentType($test_item['uri'], $test_item['public'], $test_ite…
|
/php-src/ext/dom/tests/ |
H A D | DOMImplementation_createDocumentType_basic.phpt | 2 DOMImplementation::createDocumentType() 8 $doctype = $imp->createDocumentType("html", 14 $doctype = $imp->createDocumentType("html"); 18 $doctype = $imp->createDocumentType("html", "", "");
|
H A D | bug79971_2.phpt | 14 var_dump($imp->createDocumentType("$uri%00foo")); 17 Warning: DOMImplementation::createDocumentType(): URI must not contain percent-encoded NUL bytes in…
|
H A D | bug79271.phpt | 8 $type = $dom->createDocumentType('html');
|
H A D | bug79451.phpt | 10 $dt = $impl->createDocumentType("html_replace", "", "");
|
/php-src/ext/dom/tests/delayed_freeing/ |
H A D | dtd_node.phpt | 8 $dtd = $doc->implementation->createDocumentType('qualified name', 'public', 'system');
|
/php-src/ext/dom/ |
H A D | domimplementation.c | 54 PHP_METHOD(DOMImplementation, createDocumentType) in PHP_METHOD() argument 111 PHP_METHOD(Dom_Implementation, createDocumentType) in PHP_METHOD() argument
|
H A D | php_dom.stub.php | 557 …public function createDocumentType(string $qualifiedName, string $publicId = "", string $systemId … function in DOMImplementation 1348 …public function createDocumentType(string $qualifiedName, string $publicId, string $systemId): Doc… function in Dom\\Implementation
|
H A D | php_dom_arginfo.h | 1162 ZEND_METHOD(DOMImplementation, createDocumentType); 1260 ZEND_METHOD(Dom_Implementation, createDocumentType); 1397 …ZEND_ME(DOMImplementation, createDocumentType, arginfo_class_DOMImplementation_createDocumentType,… 1572 …ZEND_ME(Dom_Implementation, createDocumentType, arginfo_class_Dom_Implementation_createDocumentTyp…
|
Completed in 36 milliseconds