downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

is_scalar> <is_real
[edit] Last updated: Fri, 14 Jun 2013

view this page in

is_resource

(PHP 4, PHP 5)

is_resource Finds whether a variable is a resource

Description

bool is_resource ( mixed $var )

Finds whether the given variable is a resource.

Parameters

var

The variable being evaluated.

Return Values

Returns TRUE if var is a resource, FALSE otherwise.

Examples

Example #1 is_resource() example

<?php

$db_link 
= @mysql_connect('localhost''mysql_user''mysql_pass');
if (!
is_resource($db_link)) {
    die(
'Can\'t connect : ' mysql_error());
}

?>

See Also



add a note add a note User Contributed Notes is_resource - [2 notes]