1--TEST--
2Test array_values() function : error conditions - Pass incorrect number of functions
3--FILE--
4<?php
5/* Prototype  : array array_values(array $input)
6 * Description: Return just the values from the input array
7 * Source code: ext/standard/array.c
8 */
9
10/*
11 * Pass incorrect number of arguments to array_values to test behaviour
12 */
13
14echo "*** Testing array_values() : error conditions ***\n";
15
16// Zero arguments
17echo "\n-- Testing array_values() function with Zero arguments --\n";
18var_dump( array_values() );
19
20//Test array_values with one more than the expected number of arguments
21echo "\n-- Testing array_values() function with more than expected no. of arguments --\n";
22$input = array(1, 2);
23$extra_arg = 10;
24var_dump( array_values($input, $extra_arg) );
25
26echo "Done";
27?>
28
29--EXPECTF--
30*** Testing array_values() : error conditions ***
31
32-- Testing array_values() function with Zero arguments --
33
34Warning: array_values() expects exactly 1 parameter, 0 given in %s on line %d
35NULL
36
37-- Testing array_values() function with more than expected no. of arguments --
38
39Warning: array_values() expects exactly 1 parameter, 2 given in %s on line %d
40NULL
41Done
42
43