« PHP:is_string()関数 | メイン | PHP:print_r()関数 »

2006年02月05日

PHP:get_resource_type()関数

get_resource_type()関数は、指定したリソース型変数の情報を返します。

$con = mysql_connect("localhost", "id", "pw");
print get_resource_type($con);

※上記の結果、リソース型として「mysql link」を出力します。

投稿者 wing : 2006年02月05日 00:38

コメント