fbsql_fetch_assoc

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Fetch a result row as an associative array array fbsql_fetch_assoc ( resource $result ) Calling fbsql_fetch_assoc() is equivalent to calling fbsql_fetch_array() with FBSQL_ASSOC as second parameter. It only returns an associative array. This is the way fbsql_fetch_array() originally worked. If you need the numeric indices as well as the associative, use fbsql_fetch_array(). An important

fann_get_cascade_weight_multiplier

(PECL fann >= 1.0.0) Returns the weight multiplier float fann_get_cascade_weight_multiplier ( resource $ann ) The weight multiplier is a parameter which is used to multiply the weights from the candidate neuron before adding the neuron to the neural network. This parameter is usually between 0 and 1, and is used to make the training a bit less aggressive. The default weight multiplier is 0.4. Parameters

ldap_sasl_bind

(PHP 5, PHP 7) Bind to LDAP directory using SASL bool ldap_sasl_bind ( resource $link [, string $binddn = NULL [, string $password = NULL [, string $sasl_mech = NULL [, string $sasl_realm = NULL [, string $sasl_authc_id = NULL [, string $sasl_authz_id = NULL [, string $props = NULL ]]]]]]] ) Returns: Returns TRUE on success or FALSE on failure. This functi

pg_parameter_status

(PHP 5, PHP 7) Looks up a current parameter setting of the server. string pg_parameter_status ([ resource $connection ], string $param_name ) Looks up a current parameter setting of the server. Certain parameter values are reported by the server automatically at connection startup or whenever their values change. pg_parameter_status() can be used to interrogate these settings. It returns the current value of a parameter if

trader_dx

(PECL trader >= 0.2.0) Directional Movement Index array trader_dx ( array $high, array $low, array $close [, integer $timePeriod ] ) Parameters: high High price, array of real values. low Low price, array of real values. close Closing price, array of real values. timePeriod

fbsql_fetch_row

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get a result row as an enumerated array array fbsql_fetch_row ( resource $result ) fbsql_fetch_row() fetches one row of data from the result associated with the specified result identifier. Subsequent call to fbsql_fetch_row() would return the next row in the result set, or FALSE if there are no more rows. Parameters: result A result ide

bcompiler_write_exe_footer

(PECL bcompiler >= 0.4) Writes the start pos, and sig to the end of a exe type file bool bcompiler_write_exe_footer ( resource $filehandle, int $startpos ) An EXE (or self executable) file consists of 3 parts: The stub (executable code, e.g. a compiled C program) that loads PHP interpreter, bcompiler extension, stored Bytecodes and initiates a call for the specified function (e.g. main) or class method (e.g. main::main)

CachingIterator::current

(PHP 5, PHP 7) Return the current element public void CachingIterator::current ( void ) May return the current element in the iteration. Returns: Mixed This function is currently not documented; only its argument list is available. See also: Iterator::current() -

fdf_remove_item

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Sets target frame for form bool fdf_remove_item ( resource $fdf_document, string $fieldname, int $item ) This function is currently not documented; only its argument list is available.

MongoCursor::dead

(PECL mongo >=0.9.6) Checks if there are results that have not yet been sent from the database public bool MongoCursor::dead ( void ) The database sends responses in batches of documents, up to 4MB of documents per response. This method checks if the database has more batches or if the result set has been exhausted. A cursor being "dead" does not mean that MongoCursor::hasNext() will return FALSE, it only means that the