欢迎访问服务器技术网-www.fuwuqijishu.com

PHP get_resource_type() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 130次浏览 0个评论 扫描二维码

PHP get_resource_type() 函数

PHP 可用的函数

get_resource_type() 返回资源(resource)类型。

版本要求:PHP 4 >= 4.0.2, PHP 5, PHP 7

语法

string get_resource_type ( resource $handle )

参数说明:

  • $handle:句柄。

返回值

此函数返回一个字符串,用于表示传递给它的 resource 的类型。如果参数不是合法的 resource,将产生错误。

实例

实例

<?php
$c = mysql_connect();
echo get_resource_type($c) . PHP_EOL;
// 打印:mysql link

$fp = fopen("foo","w");
echo get_resource_type($fp) . PHP_EOL;
// 打印:file

$doc = new_xmldoc("1.0");
echo get_resource_type($doc->doc) . PHP_EOL;
// 打印:domxml document
?>

PHP 可用的函数

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2116.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900