MongoDB::forceError

(PECL mongo >=0.9.5) Creates a database error public bool MongoDB::forceError ( void ) This method is not very useful for normal MongoDB use. It forces a database error to occur. This means that MongoDB::lastError() will return a generic database error after running this command. This command is identical to running: <?php public function forceError() {     return $this->command(array('forceerror' => 1)); }

SplFileInfo::getPathInfo

(PHP 5 >= 5.1.2, PHP 7) Gets an SplFileInfo object for the path public SplFileInfo SplFileInfo::getPathInfo ([ string $class_name ] ) Gets an SplFileInfo object for the parent of the current file. Parameters: class_name Name of an SplFileInfo derived class to use. Returns: Returns an SplFileInfo object for the parent path of the file.

trader_var

(PECL trader >= 0.2.0) Variance array trader_var ( array $real [, integer $timePeriod [, float $nbDev ]] ) Parameters: real Array of real values. timePeriod Number of period. Valid range from 2 to 100000. nbDev Number of period. Valid range from 2 to 100000. Returns: Returns

kadm5_get_policies

(PECL kadm5 >= 0.2.3) Gets all policies from the Kerberos database array kadm5_get_policies ( resource $handle ) Gets an array containing the policies's names. Parameters: handle A KADM5 handle. Returns: Returns array of policies on success or FALSE on failure. Examples: kadm5_get_

dbplus_runlink

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Remove relation from filesystem int dbplus_runlink ( resource $relation ) dbplus_runlink() will close and remove the relation. Parameters: relation A relation opened by dbplus_open(). Returns:

IntlChar::getBidiPairedBracket

(PHP 7) Get the paired bracket character for a code point public static mixed IntlChar::getBidiPairedBracket ( mixed $codepoint ) Maps the specified character to its paired bracket character. For Bidi_Paired_Bracket_Type!=None, this is the same as IntlChar::charMirror(). Otherwise codepoint itself is returned. Parameters: codepoint The integer codepoint value (e.g. 0x260

SplFileInfo::getFileInfo

(PHP 5 >= 5.1.2, PHP 7) Gets an SplFileInfo object for the file public SplFileInfo SplFileInfo::getFileInfo ([ string $class_name ] ) This method gets an SplFileInfo object for the referenced file. Parameters: class_name Name of an SplFileInfo derived class to use. Returns: An SplFileInfo object created for the file.

Ev::time

(PECL ev >= 0.2.0) Returns the current time in fractional seconds since the epoch. final public static double Ev::time ( void ) Returns the current time in fractional seconds since the epoch. Consider using Ev::now() Returns: Returns the current time in fractional seconds since the epoch. See also: Ev::now()

cubrid_seq_put

(PECL CUBRID >= 8.3.0) Update the element value of sequence type column using OID bool cubrid_seq_put ( resource $conn_identifier, string $oid, string $attr_name, int $index, string $seq_element ) The cubrid_seq_put() function is used to update the content of the requested element in a sequent type attribute using OID. Parameters: conn_identifier Connection identifier.

ArrayAccess::offsetExists

(PHP 5 >= 5.0.0, PHP 7) Whether an offset exists abstract public boolean ArrayAccess::offsetExists ( mixed $offset ) Whether or not an offset exists. This method is executed when using isset() or empty() on objects implementing ArrayAccess. Note: When using empty() ArrayAccess::offsetGet() will be called and checked if empty only if ArrayAccess::offsetExists() returns TRUE. Parameters: