(PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0)
はじめに
ラージバイナリ (BLOB) および キャラクタオブジェクト (CLOB) に対する
OCI8 ラージオブジェクト (LOB) 機能です。
注意:
OCI-Lob クラスは、
PHP 8 および PECL OCI8 3.0.0 以降、
PHP の名前付けの規約に従って OCILobに名前が変更されました。
クラス概要
class OCILob
{
public erase(
?int $offset = null,
?int $length = null):
int|false
public export(
string $filename,
?int $offset = null,
?int $length = null):
bool
public flush(
int $flag = 0):
bool
public import(
string $filename):
bool
public load():
string|false
public read(
int $length):
string|false
public save(
string $data,
int $offset = 0):
bool
public seek(
int $offset,
int $whence = OCI_SEEK_SET):
bool
public write(
string $data,
?int $length = null):
int|false
}