MongoDB::setProfilingLevel

(PECL mongo >=0.9.0) Sets this database's profiling level public int MongoDB::setProfilingLevel ( int $level ) This changes the current database profiling level. This function is equivalent to running: <?php public function setProfilingLevel($level) {     return $this->command(array('profile' => $level)); } ?> The options for level are 0 (off), 1 (queries > 100ms), and 2 (all queries). If you wou

GmagickDraw::setfontweight

(PECL gmagick >= Unknown) Sets the font weight public GmagickDraw GmagickDraw::setfontweight ( int $weight ) Sets the font weight to use when annotating with text. Parameters: weight Font weight (valid range 100-900) Returns: The GmagickDraw object on success

SolrQuery::getHighlightMergeContiguous

(PECL solr >= 0.9.2) Returns whether or not the collapse contiguous fragments into a single fragment public bool SolrQuery::getHighlightMergeContiguous ([ string $field_override ] ) Returns whether or not the collapse contiguous fragments into a single fragment. Accepts an optional field override. Parameters: field_override The name of the field Ret

px_update_record

(PECL paradox >= 1.4.0) Updates record in paradox database bool px_update_record ( resource $pxdoc, array $data, int $num ) Updates an exiting record in the database. The record starts at 0. The record data is passed as an array of field values. The elements in the array must correspond to the fields in the database. If the array has less elements than fields in the database, the remaining fields will be set to null.

MongoDB::authenticate

(PECL mongo >=1.0.1) Log in to this database public array MongoDB::authenticate ( string $username, string $password ) This method causes its connection to be authenticated. If authentication is enabled for the database server (it's not, by default), you need to log in before the database will allow you to do anything. In general, you should use the authenticate built into MongoClient::__construct() in preference to thi

SolrQuery::setMltMinTermFrequency

(PECL solr >= 0.9.2) Sets the frequency below which terms will be ignored in the source docs public SolrQuery SolrQuery::setMltMinTermFrequency ( int $minTermFrequency ) Sets the frequency below which terms will be ignored in the source docs Parameters: minTermFrequency The frequency below which terms will be ignored in the source docs Returns:

fann_get_cascade_activation_steepnesses

(PECL fann >= 1.0.0) Returns the cascade activation steepnesses array fann_get_cascade_activation_steepnesses ( resource $ann ) The cascade activation steepnesses array is an array of the different activation functions used by the candidates. See fann_get_cascade_num_candidates() for a description of which candidate neurons will be generated by this array. The default activation steepnesses are {0.25, 0.50, 0.75, 1.00

imagefilledarc

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Draw a partial arc and fill it bool imagefilledarc ( resource $image, int $cx, int $cy, int $width, int $height, int $start, int $end, int $color, int $style ) Draws a partial arc centered at the specified coordinate in the given image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreat

CairoScaledFont::textExtents

(PECL cairo >= 0.1.0) The textExtents purpose public array CairoScaledFont::textExtents ( string $text ) Object oriented style (method): Procedural style: array cairo_text_extents ( CairoContext $context ) Description here. Parameters: context Description... text Description... Returns: Description...

Lua::getVersion

(PECL lua >=0.9.0) The getversion purpose public string Lua::getVersion ( void ) Returns: Returns Lua::LUA_VERSION. This function is currently not documented; only its argument list is available.