1--TEST--
2Test xml_parser_set_option() function : error conditions
3--SKIPIF--
4<?php
5if (!extension_loaded("xml")) {
6	print "skip - XML extension not loaded";
7}
8?>
9--FILE--
10<?php
11/* Prototype  : proto int xml_parser_set_option(resource parser, int option, mixed value)
12 * Description: Set options in an XML parser
13 * Source code: ext/xml/xml.c
14 * Alias to functions:
15 */
16
17echo "*** Testing xml_parser_set_option() : error conditions ***\n";
18
19
20//Test xml_parser_set_option with one more than the expected number of arguments
21echo "\n-- Testing xml_parser_set_option() function with more than expected no. of arguments --\n";
22
23$option = 10;
24$value = 1;
25$extra_arg = 10;
26var_dump( xml_parser_set_option(null, $option, $value, $extra_arg) );
27
28// Testing xml_parser_set_option with one less than the expected number of arguments
29echo "\n-- Testing xml_parser_set_option() function with less than expected no. of arguments --\n";
30
31$option = 10;
32var_dump( xml_parser_set_option(null, $option) );
33
34echo "Done";
35?>
36--EXPECTF--
37*** Testing xml_parser_set_option() : error conditions ***
38
39-- Testing xml_parser_set_option() function with more than expected no. of arguments --
40
41Warning: xml_parser_set_option() expects exactly 3 parameters, 4 given in %s on line %d
42NULL
43
44-- Testing xml_parser_set_option() function with less than expected no. of arguments --
45
46Warning: xml_parser_set_option() expects exactly 3 parameters, 2 given in %s on line %d
47NULL
48Done
49
50