cubrid_get_class_name

(PECL CUBRID >= 8.3.0)

cubrid_get_class_nameIs used to get the class name

Description

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.

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.

FALSE, when process is unsuccessful.

Examples

Example #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";
}
?>

See Also


Copyright © 2010-2024 Platon Technologies, s.r.o.           Home | Man pages | tLDP | Documents | Utilities | About
Design by styleshout