PHP Doku:: Get BLOB/CLOB data size - function.cubrid-lob-size.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_lob_size

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_lob_send

cubrid_lock_read>>

cubrid_lob_size

(PECL CUBRID >= 8.3.1)

cubrid_lob_sizeGet BLOB/CLOB data size

Beschreibung

int cubrid_lob_size ( resource $lob_identifier )

cubrid_lob_size() is used to get BLOB/CLOB data size.

Hinweis:

The maximum length of BLOB/CLOB data is the maximum file size creatable in an external storage. But there is no integer type such as long long in PHP. If you do need it, maybe you should use 64bit PHP.

Parameter-Liste

lob_identifier

LOB identifier.

Rückgabewerte

LOB data size, when process is successful.

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_lob_size() example

<?php
$lobs 
cubrid_lob_get($con"SELECT doc_content FROM doc WHERE doc_id=5");
echo 
"Doc size:".cubrid_lob_size($lobs[0]);
cubrid_lob_export($conn$lobs[0], "doc_5.txt");
cubrid_lob_close($lobs);
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)