/PHP-7.1/ext/xml/tests/ |
H A D | xml_parse_error.phpt | 2 Test xml_parse() function : error conditions 11 /* Prototype : proto int xml_parse(resource parser, string data [, int isFinal]) 17 echo "*** Testing xml_parse() : error conditions ***\n"; 20 //Test xml_parse with one more than the expected number of arguments 26 var_dump( xml_parse(null, $data, $isFinal, $extra_arg) ); 28 // Testing xml_parse with one less than the expected number of arguments 31 var_dump( xml_parse(null) ); 36 *** Testing xml_parse() : error conditions *** 38 -- Testing xml_parse() function with more than expected no. of arguments -- 40 Warning: xml_parse() expects at most 3 parameters, 4 given in %s on line %d [all …]
|
H A D | xml_parse_variation1.phpt | 2 Test xml_parse() function : usage variations - different types of parser 11 /* Prototype : proto int xml_parse(resource parser, string data [, int isFinal]) 17 echo "*** Testing xml_parse() : usage variations ***\n"; 93 var_dump( xml_parse($value, $data, $isFinal) ); 100 *** Testing xml_parse() : usage variations *** 124 Warning: xml_parse() expects parameter 1 to be resource, float given in %s on line %d 129 Warning: xml_parse() expects parameter 1 to be resource, float given in %s on line %d 134 Warning: xml_parse() expects parameter 1 to be resource, float given in %s on line %d 139 Warning: xml_parse() expects parameter 1 to be resource, float given in %s on line %d 174 Warning: xml_parse() expects parameter 1 to be resource, null given in %s on line %d [all …]
|
H A D | bug73135.phpt | 2 Bug #73135 (xml_parse() segmentation fault) 8 xml_parse($parser, $xml); 19 xml_parse($parser, $xml); 22 Warning: xml_parse(): Unable to call handler ahihi() in %s%ebug73135.php on line %d 24 Warning: xml_parse(): Unable to call handler ahihi() in %s%ebug73135.php on line %d
|
H A D | bug72085.phpt | 11 xml_parse($var1, str_repeat("<a>", 10)); 19 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 25 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 31 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 37 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 43 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 49 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 55 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 61 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d 67 Warning: xml_parse(): Unable to call handler in %s%ebug72085.php on line %d [all …]
|
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… 62 $success = @xml_parse($parser, $data, true); 66 $success = @xml_parse($parser, substr($data, $offset, $this->chunk_size), false); 72 $success = @xml_parse($parser, "", true);
|
H A D | bug27908.phpt | 16 xml_parse($xp, '<root></root>',TRUE);
|
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 | bug30266.phpt | 28 xml_parse($parser, $data, true);
|
H A D | bug25666.phpt | 29 xml_parse($parser, $xml);
|
H A D | xml009.phpt | 29 xml_parse($parser, $xml);
|
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_processing_instruction_handler_basic.phpt | 31 xml_parse($parser, $data, true);
|
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 | bug50576.phpt | 33 xml_parse($xml_parser, $XML);
|
H A D | xml_set_start_namespace_decl_handler_basic.phpt | 31 xml_parse( $parser, $xml, 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))) {
|
H A D | bug26614.phpt | 79 if (!xml_parse($xml_parser, $xml, true))
|
H A D | xml002.phpt | 67 if (!xml_parse($xml_parser, $data, feof($fp))) {
|
H A D | bug26614_libxml.phpt | 79 if (!xml_parse($xml_parser, $xml, true))
|
/PHP-7.1/ext/xml/ |
H A D | php_xml.h | 126 PHP_FUNCTION(xml_parse);
|