/php-src/ext/dom/tests/ |
H A D | DOMDocumentType_publicId_error_001.phpt | 2 DOMDocumentType::publicId with invalid state. 12 $publicId = $doctype->publicId;
|
H A D | DOMEntity_fields.phpt | 30 echo "publicId: "; 31 var_dump($entity->publicId); 47 publicId: string(9) "public id" 61 publicId: string(0) "" 75 publicId: string(9) "public id" 89 publicId: string(0) "" 103 publicId: NULL 117 publicId: NULL 131 publicId: NULL
|
H A D | DOMDocumentType_basic_001.phpt | 10 // Access publicId, systemId, name, internalSubset all with values. 17 print "publicId: ".$doctype->publicId."\n"; 43 publicId: -//OASIS//DTD DocBook XML//EN
|
H A D | DOMDocumentType_publicId_basic_001.phpt | 2 DOMDocumentType::publicId with empty value. 16 var_dump($doctype->publicId);
|
H A D | entity_reference_stale_02.phpt | 28 var_dump($iter->current()->publicId);
|
H A D | dom007.phpt | 48 echo "Key $key: ".$node->nodeName." (".$node->systemId.") (".$node->publicId.")\n"; 52 …: ".$nots->item($x)->nodeName." (".$nots->item($x)->systemId.") (".$nots->item($x)->publicId.")\n";
|
/php-src/ext/opcache/tests/jit/ |
H A D | gh15101.phpt | 21 $publicId = $token->publicIdentifier; 26 || $publicId !== null 30 … $doctype = new DocumentType($context->document, $name ?? '', $publicId ?? '', $systemId ?? ''); 50 public readonly string $publicId; 56 string $publicId = '',
|
/php-src/ext/dom/tests/delayed_freeing/ |
H A D | notation_declaration.phpt | 16 var_dump($notation->nodeName, $notation->publicId, $notation->systemId); 18 var_dump($notation->nodeName, $notation->publicId, $notation->systemId); 20 var_dump($notation->nodeName, $notation->publicId, $notation->systemId);
|
/php-src/ext/xmlwriter/ |
H A D | php_xmlwriter.stub.php | 61 function xmlwriter_start_dtd(XMLWriter $writer, string $qualifiedName, ?string $publicId = null, ?s… argument 65 function xmlwriter_write_dtd(XMLWriter $writer, string $name, ?string $publicId = null, ?string $sy… argument 83 …$writer, string $name, string $content, bool $isParam = false, ?string $publicId = null, ?string $… argument 272 …public function startDtd(string $qualifiedName, ?string $publicId = null, ?string $systemId = null… argument 284 …public function writeDtd(string $name, ?string $publicId = null, ?string $systemId = null, ?string… argument 338 …tdEntity(string $name, string $content, bool $isParam = false, ?string $publicId = null, ?string $… argument
|
H A D | php_xmlwriter_arginfo.h | 117 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 1, "null") 126 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 1, "null") 163 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 1, "null") 287 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 1, "null") 295 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 1, "null") 328 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 1, "null")
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_implementation_createDocumentType.phpt | 35 ["publicId"]=> 86 ["publicId"]=> 137 ["publicId"]=> 188 ["publicId"]=>
|
H A D | clone_entity_reference.phpt | 25 ["publicId"]=>
|
/php-src/ext/dom/tests/modern/xml/ |
H A D | DTDNamedNodeMap.phpt | 36 ["publicId"]=> 82 ["publicId"]=> 118 ["publicId"]=>
|
/php-src/ext/xml/tests/ |
H A D | xml001.phpt | 70 function externalEntityRefHandler($parser, $openEntityNames, $base, $systemId, $publicId) 72 print '{EXTENTREF['.$openEntityNames.','.$base.','.$systemId.','.$publicId."]}\n";
|
H A D | xml003.phpt | 45 function externalEntityRefHandler($parser, $openEntityNames, $base, $systemId, $publicId) 47 print '{EXTENTREF['.$openEntityNames.','.$base.','.$systemId.','.$publicId."]}\n";
|
H A D | xml002.phpt | 45 function externalEntityRefHandler($parser, $openEntityNames, $base, $systemId, $publicId) 47 print '{EXTENTREF['.$openEntityNames.','.$base.','.$systemId.','.$publicId."]}\n";
|
/php-src/ext/dom/ |
H A D | php_dom.stub.php | 259 public string $publicId; variable in DOMDocumentType 557 …public function createDocumentType(string $qualifiedName, string $publicId = "", string $systemId … argument 1134 public ?string $publicId; variable in DOMEntity 1181 public string $publicId; variable in DOMNotation 1348 …public function createDocumentType(string $qualifiedName, string $publicId, string $systemId): Doc… argument 1842 public string $publicId; variable in Dom\\DocumentType 1903 public ?string $publicId; variable in Dom\\Entity 1924 public string $publicId; variable in Dom\\Notation
|
H A D | php_dom_arginfo.h | 138 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, publicId, IS_STRING, 0, "\"\"") 559 ZEND_ARG_TYPE_INFO(0, publicId, IS_STRING, 0)
|
/php-src/ext/xml/ |
H A D | xml.c | 868 const XML_Char *publicId, const XML_Char *notationName) in xml_unparsedEntityDeclHandler() argument 882 xml_xmlchar_zval(publicId, 0, parser->target_encoding, &args[4]); in xml_unparsedEntityDeclHandler() 897 const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) in xml_notationDeclHandler() argument 911 xml_xmlchar_zval(publicId, 0, parser->target_encoding, &args[4]); in xml_notationDeclHandler() 924 const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) in xml_externalEntityRefHandler() argument 940 xml_xmlchar_zval(publicId, 0, parser->target_encoding, &args[4]); in xml_externalEntityRefHandler()
|