ocicollappend

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Alias of OCI-Collection::append() Alias of OCI-Collection::append() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

OCI-Lob::writeTemporary

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Writes a temporary large object bool OCI-Lob::writeTemporary ( string $data [, int $lob_type = OCI_TEMP_CLOB ] ) Creates a temporary large object and writes data to it. You should use OCI-Lob::close when you are done with this object. Parameters: data The data to write. lob_type Can be one of the

OCI-Lob::truncate

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Truncates large object bool OCI-Lob::truncate ([ int $length = 0 ] ) Truncates the LOB. Parameters: length If provided, this method will truncate the LOB to length bytes. Otherwise, it will completely purge the LOB. Returns: Returns TRUE on success or FALSE on failure.

ocicloselob

(PHP 4 >= 4.0.6, PECL OCI8 1.0) Alias of OCI-Lob::close() Alias of OCI-Lob::close() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

OCI-Lob::rewind

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Moves the internal pointer to the beginning of the large object bool OCI-Lob::rewind ( void ) Sets the internal pointer to the beginning of the large object. Returns: Returns TRUE on success or FALSE on failure. See also: OCI-Lob::seek - Lob::seek O

OCI-Lob::size

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns size of large object int OCI-Lob::size ( void ) Gets the size of the large object. Returns: Returns length of large object value or FALSE on failure. Empty objects have zero length.

OCI-Lob::save

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Saves data to the large object bool OCI-Lob::save ( string $data [, int $offset ] ) Saves data to the large object. Parameters: data The data to be saved. offset Can be used to indicate offset from the beginning of the large object. Returns: Returns TRUE on success or FALSE

OCI-Lob::read

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Reads part of the large object string OCI-Lob::read ( int $length ) Reads length bytes from the current position of LOB's internal pointer. Reading stops when length bytes have been read or end of the large object is reached. Internal pointer of the large object will be shifted on the amount of bytes read. Parameters: length The len

OCI-Lob::seek

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Sets the internal pointer of the large object bool OCI-Lob::seek ( int $offset [, int $whence = OCI_SEEK_SET ] ) Sets the internal pointer of the large object. Parameters: offset Indicates the amount of bytes, on which internal pointer should be moved from the position, pointed by whence. whence Ma

OCI-Lob::tell

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the current position of internal pointer of large object int OCI-Lob::tell ( void ) Gets the current position of a LOB's internal pointer. Returns: Returns current position of a LOB's internal pointer or FALSE if an error occurred. See also: OCI-Lob::rewind - Lob::re