blob: 35af7d4a4fbe85e81a1a1ea144ca8144fc6de13b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
--TEST--
Test prev() function : error conditions - Pass incorrect number of arguments
--FILE--
<?php
/* Prototype : mixed prev(array $array_arg)
* Description: Move array argument's internal pointer to the previous element and return it
* Source code: ext/standard/array.c
*/
/*
* Pass incorrect number of arguments to prev() to test behaviour
*/
echo "*** Testing prev() : error conditions ***\n";
// Zero arguments
echo "\n-- Testing prev() function with Zero arguments --\n";
var_dump( prev() );
//Test prev with one more than the expected number of arguments
echo "\n-- Testing prev() function with more than expected no. of arguments --\n";
$array_arg = array(1, 2);
$extra_arg = 10;
var_dump( prev($array_arg, $extra_arg) );
?>
===DONE===
--EXPECTF--
*** Testing prev() : error conditions ***
-- Testing prev() function with Zero arguments --
Warning: Wrong parameter count for prev() in %s on line %d
NULL
-- Testing prev() function with more than expected no. of arguments --
Warning: Wrong parameter count for prev() in %s on line %d
NULL
===DONE===
|