ncurses_flushinp

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Flush keyboard input buffer bool ncurses_flushinp ( void ) Throws away any typeahead that has been typed and has not yet been read by your program. Returns: Returns FALSE on success, otherwise TRUE. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentat

gc_disable

(PHP 5 >= 5.3.0, PHP 7) Deactivates the circular reference collector void gc_disable ( void ) Deactivates the circular reference collector, setting zend.enable_gc to 0. Returns: No value is returned. See also: Garbage Collection -

svn_repos_fs_begin_txn_for_commit

(PECL svn >= 0.2.0) Create a new transaction resource svn_repos_fs_begin_txn_for_commit ( resource $repos, int $rev, string $author, string $log_msg ) Create a new transaction This function is currently not documented; only its argument list is available.

maxdb_enable_rpl_parse

(PECL maxdb >= 1.0) Enable RPL parse bool maxdb_enable_rpl_parse ( resource $link ) This function is currently not documented; only its argument list is available.

MongoCursor::fields

(PECL mongo >=1.0.6) Sets the fields for a query public MongoCursor MongoCursor::fields ( array $f ) Fields are specified by "fieldname" : bool. TRUE indicates that a field should be returned, FALSE indicates that it should not be returned. You can also use 1 and 0 instead of TRUE and FALSE. Thus, to return only the "summary" field, one could say: <?php $cursor->fields(array("summary" => true)); ?>

IntlChar::getFC_NFKC_Closure

(PHP 7) Get the FC_NFKC_Closure property for a code point public static string IntlChar::getFC_NFKC_Closure ( mixed $codepoint ) Gets the FC_NFKC_Closure property string for a character. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}") Returns: Returns t

SolrQuery::getFacetFields

(PECL solr >= 0.9.2) Returns all the facet fields public array SolrQuery::getFacetFields ( void ) Returns all the facet fields Returns: Returns an array of all the fields and NULL if none was set

FANNConnection::__construct

(PECL fann >= 1.0.0) The connection constructor public FANNConnection::__construct ( int $from_neuron, int $to_neuron, float $weight ) Create new connection and initialize its params. After creating the connection, only weight can be changed. Parameters: from_neuron The postion number of starting neuron. to_neuron The postion number

PDF_define_layer

(PECL pdflib >= 2.0.0) Create layer definition int PDF_define_layer ( resource $pdfdoc, string $name, string $optlist ) Creates a new layer definition. This function requires PDF 1.5.

readline_write_history

(PHP 4, PHP 5, PHP 7) Writes the history bool readline_write_history ([ string $filename ] ) This function writes the command history to a file. Parameters: filename Path to the saved file. Returns: Returns TRUE on success or FALSE on failure.