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--EXPECTF-- 29*** Testing array_values() : error conditions *** 30 31-- Testing array_values() function with Zero arguments -- 32 33Warning: array_values() expects exactly 1 parameter, 0 given in %s on line %d 34NULL 35 36-- Testing array_values() function with more than expected no. of arguments -- 37 38Warning: array_values() expects exactly 1 parameter, 2 given in %s on line %d 39NULL 40Done 41