OCI-Lob::close

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Closes LOB descriptor bool OCI-Lob::close ( void ) Closes descriptor of LOB or FILE. This function should be used only with OCI-Lob::writeTemporary. Returns: Returns TRUE on success or FALSE on failure. See also: OCI-Lob::writeTemporary - Lob::writeTemporary

OCI-Lob::append

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Appends data from the large object to another large object bool OCI-Lob::append ( OCI-Lob $lob_from ) Appends data from the large object to the end of another large object. Writing to the large object with this method will fail if buffering was previously enabled. You must disable buffering before appending. You may need to flush buffers with OCI-Lob::flush before disabling buffering.

OCI-Collection::trim

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Trims elements from the end of the collection bool OCI-Collection::trim ( int $num ) Trims num of elements from the end of the collection. Parameters: num The number of elements to be trimmed. Returns: Returns TRUE on success or FALSE on failure.

OCI-Collection::size

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns size of the collection int OCI-Collection::size ( void ) Returns the size of the collection. Returns: Returns the number of elements in the collection or FALSE on error. See also: OCI-Collection::max - Collection::max

OCI-Collection::max

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the maximum number of elements in the collection int OCI-Collection::max ( void ) Returns the maximum number of elements in the collection. Returns: Returns the maximum number as an integer, or FALSE on errors. If the returned value is 0, then the number of elements is not limited. See

OCI-Collection::getElem

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns value of the element mixed OCI-Collection::getElem ( int $index ) Returns element's value with the index index (0-based). Parameters: index The element index. First index is 0. Returns: Returns FALSE if such element doesn't exist; NULL if element is NULL; string if element is column of a string dataty

OCI-Collection::free

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Frees the resources associated with the collection object bool OCI-Collection::free ( void ) Frees the resources associated with the collection object. Returns: Returns TRUE on success or FALSE on failure. See also: oci_new_collection -

OCI-Collection::assignElem

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Assigns a value to the element of the collection bool OCI-Collection::assignElem ( int $index, mixed $value ) Assigns a value to the element with index index. Parameters: index The element index. First index is 0. value Can be a string or a number. Returns: Returns TRUE on

OCI-Collection::assign

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Assigns a value to the collection from another existing collection bool OCI-Collection::assign ( OCI-Collection $from ) Assigns a value to the collection from another, previously created collection. Both collections must be created with oci_new_collection() prior to using them. Parameters: from An instance of OCI-Collection.

OCI-Collection::append

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Appends element to the collection bool OCI-Collection::append ( mixed $value ) Appends element to the end of the collection. Parameters: value The value to be added to the collection. Can be a string or a number. Returns: Returns TRUE on success or FALSE on failure.