Statement on glibc/iconv Vulnerability

A classe OCILob

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

Introdução

Funcionalidade OCI8 LOB para objetos binários (BLOB) e caracteres (CLOB) grandes.

Nota:

A classe OCI-Lob foi renomeada para OCILob no PHP 8 e PECL OCI8 3.0.0 para adequação ao padrão de nomes do PHP.

Resumo da classe

class OCILob {
/* Métodos */
public append(OCILob $from): bool
public close(): bool
public eof(): bool
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 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): 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): int|false
public writeTemporary(string $data, int $type = OCI_TEMP_CLOB): bool
}

Índice

add a note

User Contributed Notes

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