php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
php_xmlwriter.stub.php
Go to the documentation of this file.
1<?php
2
4
5function xmlwriter_open_uri(string $uri): XMLWriter|false {}
6
8
9function xmlwriter_set_indent(XMLWriter $writer, bool $enable): bool {}
10
11function xmlwriter_set_indent_string(XMLWriter $writer, string $indentation): bool {}
12
14
16
18
20
21function xmlwriter_write_attribute(XMLWriter $writer, string $name, string $value): bool {}
22
23function xmlwriter_start_attribute_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace): bool {}
24
25function xmlwriter_write_attribute_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace, string $value): bool {}
26
28
30
32
33function xmlwriter_start_element_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace): bool {}
34
35function xmlwriter_write_element(XMLWriter $writer, string $name, ?string $content = null): bool {}
36
37function xmlwriter_write_element_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace, ?string $content = null): bool {}
38
39function xmlwriter_start_pi(XMLWriter $writer, string $target): bool {}
40
42
43function xmlwriter_write_pi(XMLWriter $writer, string $target, string $content): bool {}
44
46
48
50
51function xmlwriter_text(XMLWriter $writer, string $content): bool {}
52
54
55function xmlwriter_start_document(XMLWriter $writer, ?string $version = "1.0", ?string $encoding = null, ?string $standalone = null): bool {}
56
58
60
61function xmlwriter_start_dtd(XMLWriter $writer, string $qualifiedName, ?string $publicId = null, ?string $systemId = null): bool {}
62
64
65function xmlwriter_write_dtd(XMLWriter $writer, string $name, ?string $publicId = null, ?string $systemId = null, ?string $content = null): bool {}
66
67function xmlwriter_start_dtd_element(XMLWriter $writer, string $qualifiedName): bool {}
68
70
72
74
76
78
79function xmlwriter_start_dtd_entity(XMLWriter $writer, string $name, bool $isParam): bool {}
80
82
83function xmlwriter_write_dtd_entity(XMLWriter $writer, string $name, string $content, bool $isParam = false, ?string $publicId = null, ?string $systemId = null, ?string $notationData = null): bool {}
84
85function xmlwriter_output_memory(XMLWriter $writer, bool $flush = true): string {}
86
87function xmlwriter_flush(XMLWriter $writer, bool $empty = true): string|int {}
88
90{
96 public function openUri(string $uri): bool {}
97
98 public static function toUri(string $uri): static {}
99
105 public function openMemory(): bool {}
106
107 public static function toMemory(): static {}
108
110 public static function toStream($stream): static {}
111
116 public function setIndent(bool $enable): bool {}
117
122 public function setIndentString(string $indentation): bool {}
123
128 public function startComment(): bool {}
129
134 public function endComment(): bool {}
135
140 public function startAttribute(string $name): bool {}
141
146 public function endAttribute(): bool {}
147
152 public function writeAttribute(string $name, string $value): bool {}
153
158 public function startAttributeNs(?string $prefix, string $name, ?string $namespace): bool {}
159
164 public function writeAttributeNs(?string $prefix, string $name, ?string $namespace, string $value): bool {}
165
170 public function startElement(string $name): bool {}
171
176 public function endElement(): bool {}
177
182 public function fullEndElement(): bool {}
183
188 public function startElementNs(?string $prefix, string $name, ?string $namespace): bool {}
189
194 public function writeElement(string $name, ?string $content = null): bool {}
195
200 public function writeElementNs(?string $prefix, string $name, ?string $namespace, ?string $content = null): bool {}
201
206 public function startPi(string $target): bool {}
207
212 public function endPi(): bool {}
213
218 public function writePi(string $target, string $content): bool {}
219
224 public function startCdata(): bool {}
225
230 public function endCdata(): bool {}
231
236 public function writeCdata(string $content): bool {}
237
242 public function text(string $content): bool {}
243
248 public function writeRaw(string $content): bool {}
249
254 public function startDocument(?string $version = "1.0", ?string $encoding = null, ?string $standalone = null): bool {}
255
260 public function endDocument(): bool {}
261
266 public function writeComment(string $content): bool {}
267
272 public function startDtd(string $qualifiedName, ?string $publicId = null, ?string $systemId = null): bool {}
273
278 public function endDtd(): bool {}
279
284 public function writeDtd(string $name, ?string $publicId = null, ?string $systemId = null, ?string $content = null): bool {}
285
290 public function startDtdElement(string $qualifiedName): bool {}
291
296 public function endDtdElement(): bool {}
297
302 public function writeDtdElement(string $name, string $content): bool {}
303
308 public function startDtdAttlist(string $name): bool {}
309
314 public function endDtdAttlist(): bool {}
315
320 public function writeDtdAttlist(string $name, string $content): bool {}
321
326 public function startDtdEntity(string $name, bool $isParam): bool {}
327
332 public function endDtdEntity(): bool {}
333
338 public function writeDtdEntity(string $name, string $content, bool $isParam = false, ?string $publicId = null, ?string $systemId = null, ?string $notationData = null): bool {}
339
344 public function outputMemory(bool $flush = true): string {}
345
350 public function flush(bool $empty = true): string|int {}
351}
startDtdAttlist(string $name)
writeElementNs(?string $prefix, string $name, ?string $namespace, ?string $content=null)
startDtdEntity(string $name, bool $isParam)
writeElement(string $name, ?string $content=null)
setIndent(bool $enable)
writeComment(string $content)
writePi(string $target, string $content)
startAttributeNs(?string $prefix, string $name, ?string $namespace)
outputMemory(bool $flush=true)
writeDtdElement(string $name, string $content)
writeRaw(string $content)
startElement(string $name)
openUri(string $uri)
writeCdata(string $content)
startDocument(?string $version="1.0", ?string $encoding=null, ?string $standalone=null)
static toStream($stream)
startDtdElement(string $qualifiedName)
writeAttributeNs(?string $prefix, string $name, ?string $namespace, string $value)
startDtd(string $qualifiedName, ?string $publicId=null, ?string $systemId=null)
writeDtd(string $name, ?string $publicId=null, ?string $systemId=null, ?string $content=null)
writeDtdEntity(string $name, string $content, bool $isParam=false, ?string $publicId=null, ?string $systemId=null, ?string $notationData=null)
startPi(string $target)
setIndentString(string $indentation)
static toUri(string $uri)
startAttribute(string $name)
writeDtdAttlist(string $name, string $content)
text(string $content)
writeAttribute(string $name, string $value)
startElementNs(?string $prefix, string $name, ?string $namespace)
flush(bool $empty=true)
$content
Definition fopen.php:20
xmlwriter_write_pi(XMLWriter $writer, string $target, string $content)
xmlwriter_output_memory(XMLWriter $writer, bool $flush=true)
xmlwriter_end_dtd_entity(XMLWriter $writer)
xmlwriter_end_document(XMLWriter $writer)
xmlwriter_write_dtd_element(XMLWriter $writer, string $name, string $content)
xmlwriter_start_cdata(XMLWriter $writer)
xmlwriter_text(XMLWriter $writer, string $content)
xmlwriter_start_pi(XMLWriter $writer, string $target)
xmlwriter_start_dtd(XMLWriter $writer, string $qualifiedName, ?string $publicId=null, ?string $systemId=null)
xmlwriter_end_pi(XMLWriter $writer)
xmlwriter_end_comment(XMLWriter $writer)
xmlwriter_start_dtd_attlist(XMLWriter $writer, string $name)
xmlwriter_start_attribute(XMLWriter $writer, string $name)
xmlwriter_write_raw(XMLWriter $writer, string $content)
xmlwriter_start_dtd_element(XMLWriter $writer, string $qualifiedName)
xmlwriter_start_element_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace)
xmlwriter_end_dtd_attlist(XMLWriter $writer)
xmlwriter_write_cdata(XMLWriter $writer, string $content)
xmlwriter_flush(XMLWriter $writer, bool $empty=true)
xmlwriter_write_element_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace, ?string $content=null)
xmlwriter_write_dtd_entity(XMLWriter $writer, string $name, string $content, bool $isParam=false, ?string $publicId=null, ?string $systemId=null, ?string $notationData=null)
xmlwriter_write_comment(XMLWriter $writer, string $content)
xmlwriter_start_attribute_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace)
xmlwriter_end_attribute(XMLWriter $writer)
xmlwriter_open_memory()
xmlwriter_set_indent(XMLWriter $writer, bool $enable)
xmlwriter_full_end_element(XMLWriter $writer)
xmlwriter_end_dtd_element(XMLWriter $writer)
xmlwriter_write_attribute(XMLWriter $writer, string $name, string $value)
xmlwriter_write_attribute_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $namespace, string $value)
xmlwriter_end_cdata(XMLWriter $writer)
xmlwriter_start_dtd_entity(XMLWriter $writer, string $name, bool $isParam)
xmlwriter_open_uri(string $uri)
xmlwriter_start_document(XMLWriter $writer, ?string $version="1.0", ?string $encoding=null, ?string $standalone=null)
xmlwriter_write_dtd_attlist(XMLWriter $writer, string $name, string $content)
xmlwriter_end_dtd(XMLWriter $writer)
xmlwriter_set_indent_string(XMLWriter $writer, string $indentation)
xmlwriter_end_element(XMLWriter $writer)
xmlwriter_start_element(XMLWriter $writer, string $name)
xmlwriter_write_element(XMLWriter $writer, string $name, ?string $content=null)
xmlwriter_write_dtd(XMLWriter $writer, string $name, ?string $publicId=null, ?string $systemId=null, ?string $content=null)
xmlwriter_start_comment(XMLWriter $writer)
function(EX_VAR(opline->result.var))
$prefix