/PHP-8.0/ext/xml/tests/ |
H A D | bug81351.phpt | 2 Bug #81351 (xml_parse may fail, but has no error code) 17 $success = xml_parse($parser, $xml, false); 20 echo "xml_parse returned $success, xml_get_error_code = $code, xml_error_string = $error\r\n"; 21 $success = xml_parse($parser, 'Y>', true); 24 echo "xml_parse returned $success, xml_get_error_code = $code, xml_error_string = $error\r\n"; 27 xml_parse returned 1, xml_get_error_code = 0, xml_error_string = No error 28 xml_parse returned 0, xml_get_error_code = 5, xml_error_string = Invalid document end
|
H A D | bug72085.phpt | 11 xml_parse($var1, str_repeat("<a>", 10)); 16 Warning: xml_parse(): Unable to call handler in %s on line %d 20 Warning: xml_parse(): Unable to call handler in %s on line %d 24 Warning: xml_parse(): Unable to call handler in %s on line %d 28 Warning: xml_parse(): Unable to call handler in %s on line %d 32 Warning: xml_parse(): Unable to call handler in %s on line %d 36 Warning: xml_parse(): Unable to call handler in %s on line %d 40 Warning: xml_parse(): Unable to call handler in %s on line %d 44 Warning: xml_parse(): Unable to call handler in %s on line %d 48 Warning: xml_parse(): Unable to call handler in %s on line %d [all …]
|
H A D | bug73135.phpt | 2 Bug #73135 (xml_parse() segmentation fault) 10 xml_parse($parser, $xml); 21 xml_parse($parser, $xml);
|
H A D | bug46699.phpt | 2 Bug #46699: (xml_parse crash when parser is namespace aware) 26 xml_parse($parser, $xml);
|
H A D | xml004.phpt | 14 xml_parse($xp, $data, feof($fp)); 22 xml_parse($xp, $data, feof($fp));
|
H A D | bug32001b.phpt | 2 Bug #32001 (xml_parse*() goes into infinite loop when autodetection in effect), using EUC-JP, Shift… 66 $success = @xml_parse($parser, $data, true); 70 $success = @xml_parse($parser, substr($data, $offset, $this->chunk_size), false); 76 $success = @xml_parse($parser, "", true);
|
H A D | bug27908.phpt | 16 xml_parse($xp, '<root></root>',TRUE);
|
H A D | bug72793.phpt | 19 xml_parse($this->parser, $data);
|
H A D | bug72714.phpt | 22 xml_parse($xml_parser, $xml);
|
H A D | xml_closures_001.phpt | 30 xml_parse($xp, $data, feof($fp));
|
H A D | xml_error_string_basic.phpt | 21 if (!xml_parse($xml_parser, $xml, true)) {
|
H A D | bug30266.phpt | 28 xml_parse($parser, $data, true);
|
H A D | bug71592.phpt | 26 xml_parse($parser, $xml);
|
H A D | bug25666.phpt | 29 xml_parse($parser, $xml);
|
H A D | xml009.phpt | 29 xml_parse($parser, $xml);
|
H A D | xml_set_processing_instruction_handler_basic.phpt | 25 xml_parse($parser, $data, true);
|
H A D | xml010.phpt | 33 xml_parse($parser, $xml);
|
H A D | xml011.phpt | 29 xml_parse($parser, $xml, TRUE);
|
H A D | xml_set_start_namespace_decl_handler_basic.phpt | 25 xml_parse( $parser, $xml, true);
|
H A D | bug50576.phpt | 33 xml_parse($xml_parser, $XML);
|
H A D | bug32001.phpt | 2 Bug #32001 (xml_parse*() goes into infinite loop when autodetection in effect), using UTF-* 106 $success = @xml_parse($parser, $data, true); 110 $success = @xml_parse($parser, substr($data, $offset, $this->chunk_size), false); 116 $success = @xml_parse($parser, "", true);
|
H A D | xml001.phpt | 25 if (!xml_parse($xml_parser, $data, feof($fp))) {
|
H A D | xml003.phpt | 66 if (!xml_parse($xml_parser, $data, feof($fp))) {
|
/PHP-8.0/ext/xml/ |
H A D | xml_arginfo.h | 98 ZEND_FUNCTION(xml_parse); 123 ZEND_FE(xml_parse, arginfo_xml_parse)
|
H A D | xml.stub.php | 41 function xml_parse(XMLParser $parser, string $data, bool $is_final = false): int {} function
|