1--TEST--
2Test xml_parse_into_struct() 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_parse_into_struct(resource parser, string data, array &struct, array &index)
12 * Description: Parsing a XML document
13 * Source code: ext/xml/xml.c
14 * Alias to functions:
15 */
16
17echo "*** Testing xml_parse_into_struct() : error conditions ***\n";
18
19//Test xml_parse_into_struct with one more than the expected number of arguments
20echo "\n-- Testing xml_parse_into_struct() function with more than expected no. of arguments --\n";
21
22$data = 'string_val';
23$struct = array(1, 2);
24$index = array(1, 2);
25$extra_arg = 10;
26var_dump( xml_parse_into_struct(null, $data, $struct, $index, $extra_arg) );
27
28// Testing xml_parse_into_struct with one less than the expected number of arguments
29echo "\n-- Testing xml_parse_into_struct() function with less than expected no. of arguments --\n";
30
31$data = 'string_val';
32var_dump( xml_parse_into_struct(null, $data) );
33
34echo "Done";
35?>
36--EXPECTF--
37*** Testing xml_parse_into_struct() : error conditions ***
38
39-- Testing xml_parse_into_struct() function with more than expected no. of arguments --
40
41Warning: xml_parse_into_struct() expects at most 4 parameters, 5 given in %s on line %d
42NULL
43
44-- Testing xml_parse_into_struct() function with less than expected no. of arguments --
45
46Warning: xml_parse_into_struct() expects at least 3 parameters, 2 given in %s on line %d
47NULL
48Done
49
50