PHP: Hypertext Preprocessor (original) (raw)

Change language:

The OCILob class

(PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0)

Introduction

OCI8 LOB functionality for large binary (BLOB) and character (CLOB) objects.

Note:

The OCI-Lob class was renamed to OCILob in PHP 8 and PECL OCI8 3.0.0 to align with PHP naming standards.

Class synopsis

class **OCILob {

/* Methods */

public append(OCILob $from): bool

public close(): bool

public eof(): bool

public erase(?int $offset = [null](reserved.constants.php#constant.null), ?int $length = [null](reserved.constants.php#constant.null)): int|false

public export(string $filename, ?int $offset = [null](reserved.constants.php#constant.null), ?int $length = [null](reserved.constants.php#constant.null)): bool

public flush(int $flag = 0): bool

public free(): bool

public getBuffering(): bool

public import(string $filename): bool

public load(): string|false

public read(int $length): string|false

public rewind(): bool

public save(string $data, int $offset = 0): bool

public seek(int $offset, int $whence = [OCI_SEEK_SET](oci8.constants.php#constant.oci-seek-set)): bool

public setBuffering(bool $mode): bool

public size(): int|false

public tell(): int|false

public truncate(int $length = 0): bool

public write(string $data, ?int $length = [null](reserved.constants.php#constant.null)): int|false

public writeTemporary(string $data, int $type = [OCI_TEMP_CLOB](oci8.constants.php#constant.oci-temp-clob)): bool

}

Table of Contents

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug

+add a note

User Contributed Notes

There are no user contributed notes for this page.