/PHP-7.0/ext/xml/tests/ |
H A D | xml_parser_set_option_error.phpt | 2 Test xml_parser_set_option() function : error conditions 11 /* Prototype : proto int xml_parser_set_option(resource parser, int option, mixed value) 17 echo "*** Testing xml_parser_set_option() : error conditions ***\n"; 20 //Test xml_parser_set_option with one more than the expected number of arguments 26 var_dump( xml_parser_set_option(null, $option, $value, $extra_arg) ); 28 // Testing xml_parser_set_option with one less than the expected number of arguments 32 var_dump( xml_parser_set_option(null, $option) ); 37 *** Testing xml_parser_set_option() : error conditions *** 39 -- Testing xml_parser_set_option() function with more than expected no. of arguments -- 41 Warning: xml_parser_set_option() expects exactly 3 parameters, 4 given in %s on line %d [all …]
|
H A D | xml_parser_set_option_variation1.phpt | 2 Test xml_parser_set_option() function : usage variations 11 /* Prototype : proto int xml_parser_set_option(resource parser, int option, mixed value) 17 echo "*** Testing xml_parser_set_option() : usage variations ***\n"; 92 var_dump( xml_parser_set_option($value, $option, 1) ); 99 *** Testing xml_parser_set_option() : usage variations *** 123 Warning: xml_parser_set_option() expects parameter 1 to be resource, float given in %s on line %d 128 Warning: xml_parser_set_option() expects parameter 1 to be resource, float given in %s on line %d 133 Warning: xml_parser_set_option() expects parameter 1 to be resource, float given in %s on line %d 138 Warning: xml_parser_set_option() expects parameter 1 to be resource, float given in %s on line %d 173 Warning: xml_parser_set_option() expects parameter 1 to be resource, null given in %s on line %d [all …]
|
H A D | xml_parser_set_option_variation2.phpt | 2 Test xml_parser_set_option() function : usage variations 18 echo "*** Testing xml_parser_set_option() : usage variations ***\n"; 86 var_dump( xml_parser_set_option($parser, $value, 1) ); 93 *** Testing xml_parser_set_option() : usage variations *** 97 Warning: xml_parser_set_option(): Unknown option in %s on line %d 102 Warning: xml_parser_set_option(): Unknown option in %s on line %d 107 Warning: xml_parser_set_option(): Unknown option in %s on line %d 112 Warning: xml_parser_set_option(): Unknown option in %s on line %d 117 Warning: xml_parser_set_option(): Unknown option in %s on line %d 122 Warning: xml_parser_set_option(): Unknown option in %s on line %d [all …]
|
H A D | xml_parser_set_option_basic.phpt | 24 var_dump(xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 1)); 25 var_dump(xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "ISO-8859-1")); 30 var_dump(xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0)); 31 var_dump(xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8")); 36 var_dump(xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "US-ASCII"));
|
H A D | xml_parser_set_option_variation3.phpt | 2 Test xml_parser_set_option() function : usage variations 11 /* Prototype : proto int xml_parser_set_option(resource parser, int option, mixed value) 17 echo "*** Testing xml_parser_set_option() : usage variations ***\n"; 94 var_dump( xml_parser_set_option($parser, $option, $value) ); 102 *** Testing xml_parser_set_option() : usage variations ***
|
H A D | bug72714.phpt | 21 xml_parser_set_option($xml_parser, XML_OPTION_SKIP_TAGSTART, $tagstart); 32 Notice: xml_parser_set_option(): tagstart ignored, because it is out of range in %s%ebug72714.php o…
|
H A D | xml004.phpt | 10 xml_parser_set_option($xp, XML_OPTION_CASE_FOLDING, false); 18 xml_parser_set_option($xp, XML_OPTION_CASE_FOLDING, true);
|
H A D | bug50576.phpt | 20 xml_parser_set_option($xml_parser, XML_OPTION_SKIP_TAGSTART, 4); 32 xml_parser_set_option($xml_parser, XML_OPTION_SKIP_TAGSTART, 4);
|
H A D | xml_closures_001.phpt | 26 xml_parser_set_option($xp, XML_OPTION_CASE_FOLDING, false);
|
H A D | bug25666.phpt | 28 xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
|
H A D | xml009.phpt | 28 xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
|
H A D | bug35447.phpt | 24 xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
|
H A D | bug46699.phpt | 25 xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
|
H A D | xml010.phpt | 32 xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
|
H A D | xml011.phpt | 26 xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
|
H A D | xml_set_start_namespace_decl_handler_basic.phpt | 26 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
|
H A D | xml001.phpt | 13 xml_parser_set_option($xml_parser, XML_OPTION_CASE_FOLDING, 1);
|
H A D | xml003.phpt | 54 xml_parser_set_option($xml_parser, XML_OPTION_CASE_FOLDING, 1);
|
H A D | xml002.phpt | 53 xml_parser_set_option($xml_parser, XML_OPTION_CASE_FOLDING, 1);
|
H A D | bug32001b.phpt | 57 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
|
H A D | bug32001.phpt | 101 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
|
/PHP-7.0/ext/xml/ |
H A D | php_xml.h | 133 PHP_FUNCTION(xml_parser_set_option);
|
H A D | xml.c | 244 PHP_FE(xml_parser_set_option, arginfo_xml_parser_set_option) 1590 PHP_FUNCTION(xml_parser_set_option) in PHP_FUNCTION() argument
|