The cubrid_current_oid function gets the OID of the current cursor location from the query result. To use cubrid_current_oid(), the query executed must be an updatable query, and the CUBRID_INCLUDE_OID option must be included during the query execution.
string cubrid_current_oid (resource $req_identifier)
<?php
$conn = cubrid_connect("localhost", 33000, "demodb");
$req = cubrid_execute($conn, "SELECT * FROM code", CUBRID_INCLUDE_OID);
$oid = cubrid_current_oid($req);
$res = cubrid_get($conn, $oid);
print_r($res);
cubrid_disconnect($conn);
?>
The above example will output:
Array
(
[s_name] => X
[f_name] => Mixed
)