SDO_DataObject::createDataObject

(^) Create a child SDO_DataObject SDO_DataObject SDO_DataObject::createDataObject ( mixed $identifier ) Create a child SDO_DataObject of the default type for the property identified. The data object is automatically inserted into the tree and a reference to it is returned. Parameters: identifier Identifies the property for the data object type to be created. Can be eith

ps_show_xy2

(PECL ps >= 1.1.0) Output text at position bool ps_show_xy2 ( resource $psdoc, string $text, int $len, float $xcoor, float $ycoor ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

SplFileObject::next

(PHP 5 >= 5.1.0, PHP 7) Read next line public void SplFileObject::next ( void ) Moves ahead to the next line in the file. Returns: No value is returned. Examples: SplFileObject::next() example <?php // Read through file line by line $file = new SplFileObject("misc.txt"); while (!$file->eof()) {     echo $file-&g

mqseries_put

(PECL mqseries >= 0.10.0) MQSeries MQPUT void mqseries_put ( resource $hConn, resource $hObj, array &$md, array &$pmo, string $message, resource &$compCode, resource &$reason ) The mqseries_put() (MQPUT) call puts a message on a queue or distribution list. The queue or distribution list must already be open. Parameters: hConn Connection handle. This han

ingres_close

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Close an Ingres database connection bool ingres_close ( resource $link ) ingres_close() closes the connection to the Ingres server that is associated with the specified link. ingres_close() is usually unnecessary, as it will not close persistent connections and all non-persistent connections are automatically closed at the end of the script. P

CairoContext::clip

(PECL cairo >= 0.1.0) Establishes a new clip region public void CairoContext::clip ( void ) Object oriented style (method): Procedural style: void cairo_clip ( CairoContext $context ) Establishes a new clip region by intersecting the current clip region with the current path as it would be filled by CairoContext::fill() or cairo_fill() and according to the current fill rule (see CairoContext::setFillRule() or cairo_set_

radius_demangle

(PECL radius >= 1.2.0) Demangles data string radius_demangle ( resource $radius_handle, string $mangled ) Some data (Passwords, MS-CHAPv1 MPPE-Keys) is mangled for security reasons, and must be demangled before you can use them. Returns: Returns the demangled string, or FALSE on error.

db2_procedures

(PECL ibm_db2 >= 1.0.0) Returns a result set listing the stored procedures registered in a database resource db2_procedures ( resource $connection, string $qualifier, string $schema, string $procedure ) Returns a result set listing the stored procedures registered in a database. Parameters: connection A valid connection to an IBM DB2, Cloudscape, or Apache Derby data

MongoGridFS::put

(PECL mongo >=1.0.8) Stores a file in the database public mixed MongoGridFS::put ( string $filename [, array $metadata = array() [, array $options = array() ]] ) Note: MongoGridFS::put() is an alias of MongoGridFS::storeFile(). Parameters: filename Name of the file to store. metadata Other metadata fields to include in the file

imap_close

(PHP 4, PHP 5, PHP 7) Close an IMAP stream bool imap_close ( resource $imap_stream [, int $flag = 0 ] ) Closes the imap stream. Parameters: imap_stream An IMAP stream returned by imap_open(). flag If set to CL_EXPUNGE, the function will silently expunge the mailbox before closing, removing all messages marked for deletion. You can achiev