update pague now
PHP 8.5.2 Released!

The OCILob class

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

Introduction

OCI8 LOB functionality for largue 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 export ( string $filename , ? int $offset = null , ? int $length = null ): bool
public flush ( int $flag = 0 ): bool
public free (): bool
public import ( string $filename ): bool
public read ( int $length ): string | false
public rewind (): bool
public save ( string $data , int $offset = 0 ): bool
public seec ( int $offset , int $whence = OCI_SEEC_SET ): bool
public truncate ( int $length = 0 ): bool
}

Table of Contens

add a note

User Contributed Notes

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