eio_truncate

(PECL eio >= 0.0.1dev) Truncate a file resource eio_truncate ( string $path [, int $offset = 0 [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]]] ) eio_truncate() causes the regular file named by path to be truncated to a size of precisely length bytes Parameters: path File path offset Offset fr

variant_or

(PHP 5, PHP 7) Performs a logical disjunction on two variants mixed variant_or ( mixed $left, mixed $right ) Performs a bitwise OR operation. Note that this is slightly different from a regular OR operation. Parameters: left The left operand. right The right operand. Returns: Variant OR Rules If left is If right

SolrQuery::getMltMinTermFrequency

(PECL solr >= 0.9.2) Returns the frequency below which terms will be ignored in the source document public int SolrQuery::getMltMinTermFrequency ( void ) Returns the frequency below which terms will be ignored in the source document Returns: Returns an integer on success and NULL if not set.

fann_num_input_train_data

(PECL fann >= 1.0.0) Returns the number of inputs in each of the training patterns in the train data int fann_num_input_train_data ( resource $data ) Returns the number of inputs in each of the training patterns in the train data resource. Parameters: data Neural network training data resource. Returns: The number of inputs, or FALSE on error.

ImagickPixel::setColorValue

(PECL imagick 2.0.0) Sets the normalized value of one of the channels bool ImagickPixel::setColorValue ( int $color, float $value ) Sets the value of the specified channel of this object to the provided value, which should be between 0 and 1. This function can be used to provide an opacity channel to an ImagickPixel object. Parameters: color One of the Imagick color const

iconv_mime_decode

(PHP 5, PHP 7) Decodes a MIME header field string iconv_mime_decode ( string $encoded_header [, int $mode = 0 [, string $charset = ini_get("iconv.internal_encoding") ]] ) Decodes a MIME header field. Parameters: encoded_header The encoded header, as a string. mode mode determines the behaviour in the event iconv_mime_decode() encounte

XMLReader::getAttributeNo

(PHP 5 >= 5.1.0, PHP 7) Get the value of an attribute by index public string XMLReader::getAttributeNo ( int $index ) Returns the value of an attribute based on its position or an empty string if attribute does not exist or not positioned on an element node. Parameters: index The position of the attribute. Returns: The value of the attribute,

DirectoryIterator::getBasename

(PHP 5 >= 5.2.2, PHP 7) Get base name of current DirectoryIterator item. public string DirectoryIterator::getBasename ([ string $suffix ] ) Get the base name of the current DirectoryIterator item. Parameters: suffix If the base name ends in suffix, this will be cut. Returns: The base name of the current DirectoryIterator item.

curl_init

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Initialize a cURL session resource curl_init ([ string $url = NULL ] ) Initializes a new session and return a cURL handle for use with the curl_setopt(), curl_exec(), and curl_close() functions. Parameters: url If provided, the CURLOPT_URL option will be set to its value. You can manually set this using the curl_setopt() function. Note

imap_base64

(PHP 4, PHP 5, PHP 7) Decode BASE64 encoded text string imap_base64 ( string $text ) Decodes the given BASE-64 encoded text. Parameters: text The encoded text Returns: Returns the decoded message as a string. See also: imap_binary() -