/php-src/ext/opcache/tests/jit/ |
H A D | gh15101.phpt | 22 $systemId = $token->systemIdentifier; 27 || ($systemId !== null && $systemId !== 'about:legacy-compat')) { 30 … $doctype = new DocumentType($context->document, $name ?? '', $publicId ?? '', $systemId ?? ''); 51 public readonly string $systemId; 57 string $systemId = '') {
|
/php-src/ext/dom/tests/ |
H A D | DOMDocumentType_systemId_error_001.phpt | 2 DOMDocumentType::systemId with invalid state. 12 $systemId = $doctype->systemId;
|
H A D | DOMEntity_fields.phpt | 32 echo "systemId: "; 33 var_dump($entity->systemId); 48 systemId: string(14) "external.stuff" 62 systemId: string(14) "external.stuff" 76 systemId: string(14) "external.stuff" 90 systemId: string(14) "external.stuff" 104 systemId: string(14) "external.stuff" 118 systemId: string(14) "external.stuff" 132 systemId: NULL
|
H A D | DOMDocumentType_basic_001.phpt | 10 // Access publicId, systemId, name, internalSubset all with values. 18 print "systemId: ".$doctype->systemId."\n"; 44 systemId: docbookx.dtd
|
H A D | DOMDocumentType_systemId_basic_001.phpt | 2 DOMDocumentType::systemId with empty value. 16 var_dump($doctype->systemId);
|
H A D | dom007.phpt | 48 echo "Key $key: ".$node->nodeName." (".$node->systemId.") (".$node->publicId.")\n"; 52 …echo "Index $x: ".$nots->item($x)->nodeName." (".$nots->item($x)->systemId.") (".$nots->item($x)->…
|
/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 …Writer $writer, string $qualifiedName, ?string $publicId = null, ?string $systemId = null): bool {} argument 65 …dtd(XMLWriter $writer, string $name, ?string $publicId = null, ?string $systemId = null, ?string $… argument 83 …ing $content, bool $isParam = false, ?string $publicId = null, ?string $systemId = 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 …ing $content, bool $isParam = false, ?string $publicId = null, ?string $systemId = null, ?string $… argument
|
H A D | php_xmlwriter_arginfo.h | 118 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 1, "null") 127 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 1, "null") 164 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 1, "null") 288 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 1, "null") 296 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 1, "null") 329 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 1, "null")
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_implementation_createDocumentType.phpt | 37 ["systemId"]=> 88 ["systemId"]=> 139 ["systemId"]=> 190 ["systemId"]=>
|
H A D | clone_entity_reference.phpt | 27 ["systemId"]=>
|
/php-src/ext/dom/tests/modern/xml/ |
H A D | DTDNamedNodeMap.phpt | 38 ["systemId"]=> 84 ["systemId"]=> 120 ["systemId"]=>
|
/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 | 265 public string $systemId; variable in DOMDocumentType 557 …function createDocumentType(string $qualifiedName, string $publicId = "", string $systemId = "") {} argument 1140 public ?string $systemId; variable in DOMEntity 1187 public string $systemId; variable in DOMNotation 1348 …tion createDocumentType(string $qualifiedName, string $publicId, string $systemId): DocumentType {} argument 1847 public string $systemId; variable in Dom\\DocumentType 1908 public ?string $systemId; variable in Dom\\Entity 1929 public string $systemId; variable in Dom\\Notation
|
H A D | php_dom_arginfo.h | 139 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, systemId, IS_STRING, 0, "\"\"") 560 ZEND_ARG_TYPE_INFO(0, systemId, IS_STRING, 0)
|
/php-src/ext/xml/ |
H A D | xml.c | 867 const XML_Char *entityName, const XML_Char *base, const XML_Char *systemId, in xml_unparsedEntityDeclHandler() argument 881 xml_xmlchar_zval(systemId, 0, parser->target_encoding, &args[3]); in xml_unparsedEntityDeclHandler() 897 const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) in xml_notationDeclHandler() argument 910 xml_xmlchar_zval(systemId, 0, parser->target_encoding, &args[3]); in xml_notationDeclHandler() 924 const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) in xml_externalEntityRefHandler() argument 939 xml_xmlchar_zval(systemId, 0, parser->target_encoding, &args[3]); in xml_externalEntityRefHandler()
|