is_resource
(PHP 4, PHP 5, PHP 7, PHP 8)
is_resource — Finds whether a variable is a resource
Parameters
valueThe variable being evaluated.
Examples
Example #1 is_resource() example
<?php
$handle = fopen("php://stdout", "w");
if (is_resource($handle)) {
echo '$handle is a resource';
}
?>The above example will output:
$handle is a resource
Notes
Note:
is_resource() is not a strict type-checking method: it will return
falseifvalueis a resource variable that has been closed.
See Also
- The resource-type documentation
- get_resource_type() - Returns the resource type
↑ and ↓ to navigate • Enter to select • Esc to close • / to open