DOMElement::setIdAttributeNode

(PHP 5, PHP 7) Declares the attribute specified by node to be of type ID public void DOMElement::setIdAttributeNode ( DOMAttr $attr, bool $isId ) Declares the attribute specified by attr to be of type ID. Parameters: attr The attribute node. isId Set it to TRUE if you want name to be of type ID, FALSE otherwise. Ret

PDF_fit_pdi_page

(PECL pdflib >= 2.0.0) Place imported PDF page bool PDF_fit_pdi_page ( resource $pdfdoc, int $page, float $x, float $y, string $optlist ) Places an imported PDF page on the page, subject to various options. Returns TRUE on success or FALSE on failure.

SolrQuery::getFacetDateEnd

(PECL solr >= 0.9.2) Returns the value for the facet.date.end parameter public string SolrQuery::getFacetDateEnd ([ string $field_override ] ) Returns the value for the facet.date.end parameter. This method accepts an optional field override Parameters: field_override The name of the field Returns: Returns a string on success and NULL if not s

maxdb_disable_rpl_parse

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

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

openal_source_create

(PECL openal >= 0.1.0) Generate a source resource resource openal_source_create ( void ) Returns: Returns an Open AL(Source) resource on success or FALSE on failure. See also: openal_source_set() - openal_source_play() - openal_source_destroy() -

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)); ?>