【函数功能】
该函数返回指定资源类型的字符串。
【函数语法】
get_resource_type ($handle)
【参数说明】
$handle:资源类型的参数变量。
【演示程序】
<?php
/**
* get_resource_type ($handle)
* **/
$handle = mysql_connect("localhost","root","");
var_dump(get_resource_type($handle));
$handle = fopen("test.txt", "w");
var_dump(get_resource_type($handle));
?>
【输出结果】
string(10) "mysql link" string(6) "stream"
【特别注意】
1.该函数返回一个字符串。
2.若传入的参数不是一个合法的resource类型则会出错。
3.PHP版本:PHP4+。
【原版定义】
/**
* Returns the resource type
* @link http://www.php.net/manual/en/function.get-resource-type.php
* @param handle resource <p>
* The evaluated resource handle.
* </p>
* @return string If the given handle is a resource, this function
* will return a string representing its type. If the type is not identified
* by this function, the return value will be the string
* Unknown.
* </p>
* <p>
* This function will return false and generate an error if
* handle is not a resource.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2017/0609/231.html