Lines Matching refs:XMLWriter

5 function xmlwriter_open_uri(string $uri): XMLWriter|false {}
7 function xmlwriter_open_memory(): XMLWriter|false {}
9 function xmlwriter_set_indent(XMLWriter $writer, bool $enable): bool {}
11 function xmlwriter_set_indent_string(XMLWriter $writer, string $indentation): bool {}
13 function xmlwriter_start_comment(XMLWriter $writer): bool {}
15 function xmlwriter_end_comment(XMLWriter $writer): bool {}
17 function xmlwriter_start_attribute(XMLWriter $writer, string $name): bool {}
19 function xmlwriter_end_attribute(XMLWriter $writer): bool {}
21 function xmlwriter_write_attribute(XMLWriter $writer, string $name, string $value): bool {}
23 function xmlwriter_start_attribute_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $na…
25 function xmlwriter_write_attribute_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $na…
27 function xmlwriter_start_element(XMLWriter $writer, string $name): bool {}
29 function xmlwriter_end_element(XMLWriter $writer): bool {}
31 function xmlwriter_full_end_element(XMLWriter $writer): bool {}
33 function xmlwriter_start_element_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $name…
35 function xmlwriter_write_element(XMLWriter $writer, string $name, ?string $content = null): bool {}
37 function xmlwriter_write_element_ns(XMLWriter $writer, ?string $prefix, string $name, ?string $name…
39 function xmlwriter_start_pi(XMLWriter $writer, string $target): bool {}
41 function xmlwriter_end_pi(XMLWriter $writer): bool {}
43 function xmlwriter_write_pi(XMLWriter $writer, string $target, string $content): bool {}
45 function xmlwriter_start_cdata(XMLWriter $writer): bool {}
47 function xmlwriter_end_cdata(XMLWriter $writer): bool {}
49 function xmlwriter_write_cdata(XMLWriter $writer, string $content): bool {}
51 function xmlwriter_text(XMLWriter $writer, string $content): bool {}
53 function xmlwriter_write_raw(XMLWriter $writer, string $content): bool {}
55 function xmlwriter_start_document(XMLWriter $writer, ?string $version = "1.0", ?string $encoding = …
57 function xmlwriter_end_document(XMLWriter $writer): bool {}
59 function xmlwriter_write_comment(XMLWriter $writer, string $content): bool {}
61 function xmlwriter_start_dtd(XMLWriter $writer, string $qualifiedName, ?string $publicId = null, ?s…
63 function xmlwriter_end_dtd(XMLWriter $writer): bool {}
65 function xmlwriter_write_dtd(XMLWriter $writer, string $name, ?string $publicId = null, ?string $sy…
67 function xmlwriter_start_dtd_element(XMLWriter $writer, string $qualifiedName): bool {}
69 function xmlwriter_end_dtd_element(XMLWriter $writer): bool {}
71 function xmlwriter_write_dtd_element(XMLWriter $writer, string $name, string $content): bool {}
73 function xmlwriter_start_dtd_attlist(XMLWriter $writer, string $name): bool {}
75 function xmlwriter_end_dtd_attlist(XMLWriter $writer): bool {}
77 function xmlwriter_write_dtd_attlist(XMLWriter $writer, string $name, string $content): bool {}
79 function xmlwriter_start_dtd_entity(XMLWriter $writer, string $name, bool $isParam): bool {}
81 function xmlwriter_end_dtd_entity(XMLWriter $writer): bool {}
83 function xmlwriter_write_dtd_entity(XMLWriter $writer, string $name, string $content, bool $isParam…
85 function xmlwriter_output_memory(XMLWriter $writer, bool $flush = true): string {}
87 function xmlwriter_flush(XMLWriter $writer, bool $empty = true): string|int {}
89 class XMLWriter class