The OCILob class

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

简介

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

注意:

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

类摘要

class OCILob {
/* 方法 */
public function append(OCILob $from): bool
public function close(): bool
public function eof(): bool
public function erase(?int $offset = null, ?int $length = null): int|false
public function export(string $filename, ?int $offset = null, ?int $length = null): bool
public function flush(int $flag = 0): bool
public function free(): bool
public function getBuffering(): bool
public function import(string $filename): bool
public function load(): string|false
public function read(int $length): string|false
public function rewind(): bool
public function save(string $data, int $offset = 0): bool
public function seek(int $offset, int $whence = OCI_SEEK_SET): bool
public function setBuffering(bool $mode): bool
public function size(): int|false
public function tell(): int|false
public function truncate(int $length = 0): bool
public function write(string $data, ?int $length = null): int|false
public function writeTemporary(string $data, int $type = OCI_TEMP_CLOB): bool
}

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top