PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

cubrid_get_class_name

(PECL CUBRID >= 8.3.0)

cubrid_get_class_nameGet the class name using OID

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

The above example will output:

code

See Also

PHP Manual