/php-src/ext/xmlwriter/ |
H A D | php_xmlwriter.stub.php | 5 function xmlwriter_open_uri(string $uri): XMLWriter|false {} 7 function xmlwriter_open_memory(): XMLWriter|false {} 13 function xmlwriter_start_comment(XMLWriter $writer): bool {} 15 function xmlwriter_end_comment(XMLWriter $writer): bool {} 19 function xmlwriter_end_attribute(XMLWriter $writer): bool {} 29 function xmlwriter_end_element(XMLWriter $writer): bool {} 41 function xmlwriter_end_pi(XMLWriter $writer): bool {} 45 function xmlwriter_start_cdata(XMLWriter $writer): bool {} 47 function xmlwriter_end_cdata(XMLWriter $writer): bool {} 63 function xmlwriter_end_dtd(XMLWriter $writer): bool {} [all …]
|
H A D | php_xmlwriter_arginfo.h | 12 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 17 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 22 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 28 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 35 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 41 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 48 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 64 ZEND_ARG_OBJ_INFO(0, writer, XMLWriter, 0) 383 ZEND_METHOD(XMLWriter, toUri); 384 ZEND_METHOD(XMLWriter, toMemory); [all …]
|
H A D | config.m4 | 2 [whether to enable XMLWriter support], 4 [Disable XMLWriter support])],
|
/php-src/ext/xmlwriter/tests/ |
H A D | xmlwriter_toStream_open_invalidated_stream.phpt | 2 XMLWriter::toStream() - open invalidated stream 12 XMLWriter::toStream($h); 19 XMLWriter::toStream(): supplied resource is not a valid stream resource
|
H A D | bug79029.phpt | 2 #79029 (Use After Free's in XMLReader / XMLWriter) 8 $x = array( new XMLWriter() ); 12 $y = new XMLWriter();
|
H A D | xmlwriter_toMemory_custom_constructor_error.phpt | 2 XMLWriter::toMemory() - custom constructor error 8 class CustomXMLWriter extends XMLWriter {
|
H A D | xmlwriter_toMemory_normal_usage.phpt | 2 XMLWriter::toMemory() - normal usage 8 $writer = XMLWriter::toMemory();
|
H A D | xmlwriter_toStream_encoding_utf8.phpt | 2 XMLWriter::toStream() with encoding - test UTF-8 10 $writer = XMLWriter::toStream($h);
|
H A D | xmlwriter_toStream_invalidate_stream.phpt | 2 XMLWriter::toStream() - invalidating stream 10 $writer = XMLWriter::toStream($h);
|
H A D | xmlwriter_toStream_encoding_shiftjis.phpt | 2 XMLWriter::toStream() with encoding - test SHIFT_JIS 10 $writer = XMLWriter::toStream($h);
|
H A D | xmlwriter_toStream_custom_constructor_error.phpt | 2 XMLWriter::toStream() - custom constructor error 8 class CustomXMLWriter extends XMLWriter {
|
H A D | OO_002.phpt | 2 XMLWriter: libxml2 XML Writer, membuffer, flush 8 $xw = new XMLWriter();
|
H A D | xmlwriter_toMemory_custom_constructor.phpt | 2 XMLWriter::toMemory() - custom constructor 8 class CustomXMLWriter extends XMLWriter {
|
H A D | xmlwriter_toStream_custom_constructor.phpt | 2 XMLWriter::toStream() - custom constructor 8 class CustomXMLWriter extends XMLWriter {
|
H A D | xmlwriter_toMemory_flush_combinations.phpt | 2 XMLWriter::toMemory() with combinations of empty flush and non-empty flush 8 $writer = XMLWriter::toMemory();
|
H A D | OO_001.phpt | 2 XMLWriter: libxml2 XML Writer, file buffer, flush 9 $xw = new XMLWriter();
|
H A D | OO_005.phpt | 2 XMLWriter: libxml2 XML Writer, comments 9 $xw = new XMLWriter();
|
H A D | xmlwriter_toStream_normal_usage.phpt | 2 XMLWriter::toStream() - normal usage 10 $writer = XMLWriter::toStream($h);
|
H A D | OO_006.phpt | 2 XMLWriter: libxml2 XML Writer, startDTD/writeElementNS 9 $xw = new XMLWriter();
|
H A D | OO_004.phpt | 2 XMLWriter: libxml2 XML Writer, file buffer, flush 9 $xw = new XMLWriter();
|
H A D | OO_003.phpt | 2 XMLWriter: libxml2 XML Writer, membuffer, flush, text, attribute 8 $xw = new XMLWriter();
|
H A D | OO_008.phpt | 2 XMLWriter: libxml2 XML Writer DTD Element & Attlist 8 $xw = new XMLWriter();
|
H A D | OO_010.phpt | 2 XMLWriter: libxml2 XML Writer, writeAttributeNS method 11 $xw = new XMLWriter();
|
H A D | OO_011.phpt | 2 XMLWriter: libxml2 XML Writer, fullEndElement method 11 $xw = new XMLWriter();
|
/php-src/ext/reflection/tests/ |
H A D | ReflectionClass_isCloneable_001.phpt | 47 print "Internal class - XMLWriter\n"; 50 $obj = new ReflectionObject(new XMLWriter); 68 Internal class - XMLWriter 72 Fatal error: Uncaught Error: Trying to clone an uncloneable object of class XMLWriter in %s:%d
|