Compzone.Org :: Podręcznik PHP :: is_resource
Pytania w drugiej edycji Testu PHP powinny być:
Trudniejsze
Łatwiejsze
Skomplikowane
Na myślenie
Do liczenia
Sonda Wyniki

Add to Google

is_resource

(PHP 4, PHP 5)

is_resource --  Finds whether a variable is a resource

Opis

bool is_resource ( mixed var )

Finds whether the given variable is a resource.

Parametry

var

The variable being evaluated.

Zwracane wartości

Returns TRUE if var is a resource, FALSE otherwise.

Przykłady

Przykład 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());
}

?>
Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!