Yaf_Request_Abstract::isDispatched

(Yaf >=1.0.0) The isDispatched purpose public void Yaf_Request_Abstract::isDispatched ( void ) Returns: This function is currently not documented; only its argument list is available.

Integers

Examples: Integer literals Integers can be specified in decimal (base 10), hexadecimal (base 16), octal (base 8) or binary (base 2) notation, optionally preceded by a sign (- or +). Binary integer literals are available since PHP 5.4.0. To use octal notation, precede the number with a 0 (zero). To use hexadecimal notation precede the number with 0x. To use binary notation precede the number with 0b. <?php $a = 1234; // decimal number $a = -123; // a negative 

apcu_inc

(PECL apcu >= 4.0.0) Increase a stored number int apcu_inc ( string $key [, int $step = 1 [, bool &$success ]] ) Increases a stored number. Parameters: key The key of the value being increased. step The step, or value to increase. success Optionally pass the success or fail boolean value to th

gmp_gcdext

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Calculate GCD and multipliers array gmp_gcdext ( GMP $a, GMP $b ) Calculates g, s, and t, such that a*s + b*t = g = gcd(a,b), where gcd is the greatest common divisor. Returns an array with respective elements g, s and t. This function can be used to solve linear Diophantine equations in two variables. These are equations that allow only integer solutions and have the form: a*x + b*y = c.

fann_set_sarprop_step_error_threshold_factor

(PECL fann >= 1.0.0) Sets the sarprop step error threshold factor bool fann_set_sarprop_step_error_threshold_factor ( resource $ann, float $sarprop_step_error_threshold_factor ) Sets the sarprop step error threshold factor. Parameters: ann Neural network resource. sarprop_step_error_threshold_factor The sarprop step error threshold fac

trader_cdlladderbottom

(PECL trader >= 0.2.0) Ladder Bottom array trader_cdlladderbottom ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Closing

ldap_get_dn

(PHP 4, PHP 5, PHP 7) Get the DN of a result entry string ldap_get_dn ( resource $link_identifier, resource $result_entry_identifier ) Finds out the DN of an entry in the result. Parameters: link_identifier An LDAP link identifier, returned by ldap_connect(). result_entry_identifier An LDAP link identifier, returned by ldap_connect().

stats_cdf_poisson

(PECL stats >= 1.0.0) Calculates any one parameter of the Poisson distribution given values for the others. float stats_cdf_poisson ( float $par1, float $par2, int $which ) Parameters: par1 par2 which Returns: This function is currently not docum

gnupg_verify

(PECL gnupg >= 0.1) Verifies a signed text array gnupg_verify ( resource $identifier, string $signed_text, string $signature [, string &$plaintext ] ) Verifies the given signed_text and returns information about the signature. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. signed_text The signed

gmp_mul

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Multiply numbers GMP gmp_mul ( GMP $a, GMP $b ) Multiplies a by b and returns the result. Parameters: a A number that will be multiplied by b. Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. b