CUBRID Функции
PHP Manual

cubrid_get_class_name

(PECL CUBRID >= 8.3.0)

cubrid_get_class_nameIs used to get the class name

Описание

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.

Примеры

Пример #1 cubrid_get_class_name() example

<?php
$target_oid 
cubrid_get ($con$oid"customer");
$class_name cubrid_get_class_name ($con$target_oid);
if (
$class_name) {
  echo 
"class name of $oid is $class_name\n";
} else {
  echo 
"error\n";
}
?>

Смотрите также


CUBRID Функции
PHP Manual