get_resource_type() - php 变量处理函数
get_resource_type()
(PHP 4 >= 4.0.2, PHP 5, PHP 7)
返回资源(resource)类型
描述
get_resource_type(resource $handle): string此函数返回一个字符串,用于表示传递给它的resource的类型。如果参数不是合法的resource,将产生错误。
Try this to know behavior: It will be shown as... [Check Valid Resource] (bool)$resource => TRUE get_resource_type($resource) => stream is_resoruce($resource) => TRUE [Check Released Resource] (bool)$resource => TRUE get_resource_type($resource) => Unknown is_resoruce($resource) => FALSE [Check NULL] (bool)$resource => FALSE get_resource_type($resource) => FALSE Warning: get_resource_type() expects parameter 1 to be resource, null given in ... on line 10 is_resoruce($resource) => FALSE
In PHP5 (on Linux), the above example identifies the "file" handler as a 'stream', not 'file'. This can be particularly worrisome if you're trying to determine the type of stream using this function. The alternative is to use , which returns an array containing "stream_type (string) - a label describing the underlying implementation of the stream."
Furthermore, this function returns 'stream' on php 4.3 on windows & linux. You if you want to differentiate between a file resource and other stream resources, as stated before stream_get_meta_data() gives you an array which, on my system, contains the following elements which might suggest a file handle: [wrapper_type] => plainfile [stream_type] => STDIO However I've only compared this to a stream from a url, so I include this only as a suggestion.
This function will generate an error and return NULL instead FALSE in the next example:
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)