summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/get_resource_type_error.phpt
blob: a010f7eba4f8b435fdd56fc6a58160ad6fddbabd (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
--TEST--
Test get_resource_type() function : error conditions
--FILE--
<?php
/* Prototype  : string get_resource_type  ( resource $handle  )
 * Description:  Returns the resource type
 * Source code: Zend/zend_builtin_functions.c
 */

echo "*** Testing get_resource_type() : error conditions ***\n";

echo "\n-- Testing get_resource_type() function with Zero arguments --\n";
var_dump( get_resource_type() );

echo "\n-- Testing get_resource_type() function with more than expected no. of arguments --\n";
$res = fopen(__FILE__, "r");
$extra_arg = 10;
var_dump( get_resource_type($res, $extra_arg) );

?>
===DONE===
--EXPECTF--
*** Testing get_resource_type() : error conditions ***

-- Testing get_resource_type() function with Zero arguments --

Warning: get_resource_type() expects exactly 1 parameter, 0 given in %s on line %d
NULL

-- Testing get_resource_type() function with more than expected no. of arguments --

Warning: get_resource_type() expects exactly 1 parameter, 2 given in %s on line %d
NULL
===DONE===