cubrid_num_cols

(PECL CUBRID >= 8.3.0) Return the number of columns in the result set int cubrid_num_cols ( resource $result ) The cubrid_num_cols() function is used to get the number of columns from the query result. It can only be used when the query executed is a select statement. Parameters: result Result. Returns: Number of columns, when process is success

SplFixedArray::current

(PHP 5 >= 5.3.0, PHP 7) Return current array entry public mixed SplFixedArray::current ( void ) Get the current array element. Returns: The current element value. Exception: Throws RuntimeException when the internal array pointer points to an invalid index or is out of bounds.

xml_set_end_namespace_decl_handler

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Set up end namespace declaration handler bool xml_set_end_namespace_decl_handler ( resource $parser, callable $handler ) Set a handler to be called when leaving the scope of a namespace declaration. This will be called, for each namespace declaration, after the handler for the end tag of the element in which the namespace was declared. Parameters: par

SplFileInfo::getPerms

(PHP 5 >= 5.1.2, PHP 7) Gets file permissions public int SplFileInfo::getPerms ( void ) Gets the file permissions for the file. Returns: Returns the file permissions. Examples: SplFileInfo::getPerms() example <?php $info = new SplFileInfo('/tmp'); echo substr(sprintf('%o', $info->getPerms()), -4); $info = new Sp

hash_hmac

(PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1) Generate a keyed hash value using the HMAC method string hash_hmac ( string $algo, string $data, string $key [, bool $raw_output = false ] ) Parameters: algo Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..) See hash_algos() for a list of supported algorithms. data

ncurses_mvvline

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set new position and draw a vertical line using an attributed character and max. n characters long int ncurses_mvvline ( int $y, int $x, int $attrchar, int $n ) Parameters: y x attrchar n

SplMaxHeap::compare

(PHP 5 >= 5.3.0, PHP 7) Compare elements in order to place them correctly in the heap while sifting up. protected int SplMaxHeap::compare ( mixed $value1, mixed $value2 ) Compare value1 with value2. Parameters: value1 The value of the first node being compared. value2 The value of the second node being compared. R

MongoCollection::setReadPreference

(PECL mongo >=1.3.0) Set the read preference for this collection public bool MongoCollection::setReadPreference ( string $read_preference [, array $tags ] ) Parameters: read_preference The read preference mode: MongoClient::RP_PRIMARY, MongoClient::RP_PRIMARY_PREFERRED, MongoClient::RP_SECONDARY, MongoClient::RP_SECONDARY_PREFERRED, or MongoClient::RP_NEAREST.

GearmanClient::ping

(No version information available, might only be in Git) Send data to all job servers to see if they echo it back public bool GearmanClient::ping ( string $workload ) Sends some arbitrary data to all job servers to see if they echo it back. The data sent is not used or processed in any other way. Primarily used for testing and debugging. Parameters: workload Some arbitrar

Gmagick::setimageredprimary

(PECL gmagick >= Unknown) Sets the image chromaticity red primary point. public Gmagick Gmagick::setimageredprimary ( float $x, float $y ) Sets the image chromaticity red primary point. Parameters: x The red primary x-point. y The red primary y-point. Returns: The Gmagick object on success.