php8.5
Home/ Manual/ cubrid / functions/ cubrid_get_class_name

cubrid_get_class_name

PHP function Edit on GitHub ✎

(PECL CUBRID >= 8.3.0)

Get the class name using OID

Description

cubrid_get_class_name(resource $conn_identifier, string $oid): string

The cubrid_get_class_name() function is used to get the class name from oid. It doesn't work when selecting data from the system tables, for example db_class.

Parameters

conn_identifier

Connection identifier.

oid

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

Return Values

Class name when process is successful,Falseforfailure.

Examples

cubrid_get_class_name() example

php
<?php
$conn = cubrid_connect("localhost", 33000, "demodb", "dba");

$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);
?>

The above example will output:

output
code

See Also

Source: reference/cubrid/functions/cubrid-get-class-name.xml · from the official PHP manual (php/doc-en)