DirectoryIterator::getCTime

(PHP 5, PHP 7) Get inode change time of the current DirectoryIterator item public int DirectoryIterator::getCTime ( void ) Get the inode change time for the current DirectoryIterator item. Returns: Returns the last change time of the file, as a Unix timestamp. Examples: DirectoryIterator::getCTime() example This example di

natcasesort

(PHP 4, PHP 5, PHP 7) Sort an array using a case insensitive "natural order" algorithm bool natcasesort ( array &$array ) natcasesort() is a case insensitive version of natsort(). This function implements a sort algorithm that orders alphanumeric strings in the way a human being would while maintaining key/value associations. This is described as a "natural ordering". Parameters:

NumberFormatter::setAttribute

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Set an attribute public bool NumberFormatter::setAttribute ( int $attr, int $value ) Object oriented style Procedural style bool numfmt_set_attribute ( NumberFormatter $fmt , int $attr , int $value ) Set a numeric attribute associated with the formatter. An example of a numeric attribute is the number of integer digits the formatter will produce. Paramet

imap_createmailbox

(PHP 4, PHP 5, PHP 7) Create a new mailbox bool imap_createmailbox ( resource $imap_stream, string $mailbox ) Creates a new mailbox specified by mailbox. Parameters: imap_stream An IMAP stream returned by imap_open(). mailbox The mailbox name, see imap_open() for more information. Names containing international characters should be encode

OAuth::getLastResponseInfo

(PECL OAuth >= 0.99.1) Get HTTP information about the last response public array OAuth::getLastResponseInfo ( void ) Get HTTP information about the last response. Returns: Returns an array containing the response information for the last request. Constants from curl_getinfo() may be used. See also: OAuth::fet

variant_cast

(PHP 5, PHP 7) Convert a variant into a new variant object of another type variant variant_cast ( variant $variant, int $type ) This function makes a copy of variant and then performs a variant cast operation to force the copy to have the type given by type. This function wraps VariantChangeType() in the COM library; consult MSDN for more information. Parameters: variant

fann_create_sparse_array

(PECL fann >= 1.0.0) Creates a standard backpropagation neural network, which is not fully connected using an array of layer sizes ReturnType fann_create_sparse_array ( float $connection_rate, int $num_layers, array $layers ) Creates a standard backpropagation neural network, which is not fully connected using an array of layer sizes. Parameters: connection_rate The c

Gmagick::setimageunits

(PECL gmagick >= Unknown) Sets the image units of resolution. public Gmagick Gmagick::setimageunits ( int $resolution ) Sets the image units of resolution. Parameters: resolution The image units of resolution : Undefinedresolution, PixelsPerInchResolution, or PixelsPerCentimeterResolution. Returns: The Gmagick object on success.

hash_algos

(PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1) Return a list of registered hashing algorithms array hash_algos ( void ) Returns: Returns a numerically indexed array containing the list of supported hashing algorithms. Changelog: 5.6.0 Support for gost-crypto was added. This implements the GOST hash function using the CryptoPro S-box tables as

strnatcasecmp

(PHP 4, PHP 5, PHP 7) Case insensitive string comparisons using a "natural order" algorithm int strnatcasecmp ( string $str1, string $str2 ) This function implements a comparison algorithm that orders alphanumeric strings in the way a human being would. The behaviour of this function is similar to strnatcmp(), except that the comparison is not case sensitive. For more information see: Martin Pool's » Natural Order String Com