(PECL CUBRID >= 8.3.0)
cubrid_get_class_name — Is used to get the class name
The cubrid_get_class_name() function is used to get the class name from oid.
Connection identifier.
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";
}
?>