summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/get_resource_type_basic.phpt
blob: 58a49e713f49805ceb2378fa99e7bd06040333fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Test get_resource_type() function : basic functionality
--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() : basic functionality ***\n";

$res = fopen(__FILE__, "r");
var_dump(get_resource_type($res));

?>
===DONE===
--EXPECT--
*** Testing get_resource_type() : basic functionality ***
string(6) "stream"
===DONE===