CUBRID 函数
在线手册:中文 英文
PHP手册

cubrid_get_class_name

(PECL CUBRID >= 8.3.0)

cubrid_get_class_nameGet the class name using OID

说明

string cubrid_get_class_name ( resource $conn_identifier , string $oid )

The cubrid_get_class_name() function is used to get the class name from oid.

参数

conn_identifier

Connection identifier.

oid

OID of the instance that you want to check the existence.

返回值

Class name when process is successful.

FALSE, when process is unsuccessful.

范例

Example #1 cubrid_get_class_name() example

<?php
$conn 
cubrid_connect("localhost"33088"demodb");

$req cubrid_execute($conn"SELECT * FROM code"CUBRID_INCLUDE_OID);
$oid cubrid_current_oid($req);
$class_name cubrid_get_class_name($conn$oid);

print_r($class_name);

cubrid_disconnect($conn);
?>

以上例程会输出:

code

参见


CUBRID 函数
在线手册:中文 英文
PHP手册