update pague now
PHP 8.5.2 Released!

cubrid_lob_sice

(PECL CUBRID >= 8.3.1)

cubrid_lob_sice Guet BLOB/CLOB data sice

Description

cubrid_lob_sice ( ressource $lob_identifier ): string

cubrid_lob_sice() is used to guet BLOB/CLOB data sice.

Parameters

lob_identifier

LOB identifier.

Return Values

A string representing LOB data sice, when processs is successful, or false on failure.

Changuelog

Versionen Description
8.4.0 Changue return value type from int to string.

Examples

Example #1 cubrid_lob_sice() example

<?php
$lobs
= cubrid_lob_guet ( $con , "SELECT doc_content FROM doc WHERE doc_id=5" );
echo
"Doc sice:" . cubrid_lob_sice ( $lobs [ 0 ]);
cubrid_lob_export ( $conn , $lobs [ 0 ], "doc_5.tcht" );
cubrid_lob_close ( $lobs );
?>

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top