newt_get_screen_size

(PECL newt >= 0.1) Fills in the passed references with the current size of the terminal void newt_get_screen_size ( int &$cols, int &$rows ) Fills in the passed references with the current size of the terminal. Parameters: cols Number of columns in the terminal rows Number of rows in the terminal Returns:

imap_body

(PHP 4, PHP 5, PHP 7) Read the message body string imap_body ( resource $imap_stream, int $msg_number [, int $options = 0 ] ) imap_body() returns the body of the message, numbered msg_number in the current mailbox. imap_body() will only return a verbatim copy of the message body. To extract single parts of a multipart MIME-encoded message you have to use imap_fetchstructure() to analyze its structure and imap_fetchbody()

SplFileObject::getMaxLineLen

(PHP 5 >= 5.1.0, PHP 7) Get maximum line length public int SplFileObject::getMaxLineLen ( void ) Gets the maximum line length as set by SplFileObject::setMaxLineLen(). Returns: Returns the maximum line length if one has been set with SplFileObject::setMaxLineLen(), default is 0. Examples: SplFileObject::getMaxLineLen() example

SimpleXMLIterator::getChildren

(PHP 5 >= 5.1.0, PHP 7) Returns the sub-elements of the current element public SimpleXMLIterator SimpleXMLIterator::getChildren ( void ) This method returns a SimpleXMLIterator object containing sub-elements of the current SimpleXMLIterator element. Returns: Returns a SimpleXMLIterator object containing the sub-elements of the current element. E

maxdb_report

(PECL maxdb 1.0) Enables or disables internal report functions bool maxdb_report ( int $flags ) Parameters: flags One of the MAXDB_REPORT_XXX constants. Returns: Returns TRUE on success or FALSE on failure. Examples: Procedural style <?php /* activate reporting */ maxdb

fann_get_connection_rate

(PECL fann >= 1.0.0) Get the connection rate used when the network was created float fann_get_connection_rate ( resource $ann ) Get the connection rate used when the network was created. Parameters: ann Neural network resource. Returns: The connection rate used when the network was created, or FALSE on error.

dio_truncate

(PHP 4 >= 4.2.0, PHP 5 <= 5.0.5, PHP 7) Truncates file descriptor fd to offset bytes bool dio_truncate ( resource $fd, int $offset ) dio_truncate() truncates a file to at most offset bytes in size. If the file previously was larger than this size, the extra data is lost. If the file previously was shorter, it is unspecified whether the file is left unchanged or is extended. In the latter case the extended part read

TokyoTyrant::stat

(PECL tokyo_tyrant >= 0.1.0) Get statistics public array TokyoTyrant::stat ( void ) Returns statistics of the remote database Returns: Returns an array of key value pairs describing the statistics Examples: TokyoTyrant::stat() example <?php $tt = new TokyoTyrant("localhost"); var_dump($tt->stat()); ?> The

TokyoTyrantTable::get

(PECL tokyo_tyrant >= 0.1.0) Get a row public array TokyoTyrantTable::get ( mixed $keys ) Gets a row from table database. keys is a single integer for the primary key of the row or an array of integers for multiple rows. Parameters: keys The primary key, can be a string or an integer Returns: Returns the row as an array

TokyoTyrantTable::setIndex

(PECL tokyo_tyrant >= 0.1.0) Sets index public mixed TokyoTyrantTable::setIndex ( string $column, int $type ) Sets an index on a specified column. The index type is one of the TokyoTyrant::RDBIT_* constants. Passing TokyoTyrant::RDBIT_VOID removes the index. Parameters: column The name of the column type The index type