cubrid_lob_close
(PECL CUBRID >= 8.3.1)
cubrid_lob_close — Close BLOB/CLOB data
Description
bool cubrid_lob_close
( array
$lob_identifier_array
)cubrid_lob_close() is used to close all BLOB/CLOB returned from cubrid_lob_get().
Parameters
-
lob_identifier_array -
LOB identifier array return from cubrid_lob_get.
Return Values
TRUE, when process is successful.
FALSE, when process is unsuccessful.
Examples
Example #1 cubrid_lob_close() example
<?php
$lobs = cubrid_lob_get($con, "SELECT doc_content FROM doc WHERE doc_id=5");
cubrid_lob_export($conn, $lobs[0], "doc_5.txt");
cubrid_lob_close($lobs);
?>
See Also
- cubrid_lob_get() - Get BLOB/CLOB data
- cubrid_lob_size() - Get BLOB/CLOB data size
- cubrid_lob_export() - Export BLOB/CLOB data to file
- cubrid_lob_send() - Read BLOB/CLOB data and send straight to browser
There are no user contributed notes for this page.
