wordwrap

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Wraps a string to a given number of characters string wordwrap ( string $str [, int $width = 75 [, string $break = "\n" [, bool $cut = false ]]] ) Wraps a string to a given number of characters using a string break character. Parameters: str The input string. width The number of characters at which t

Imagick::getImageMagickLicense

(PECL imagick 2.0.0) Returns a string containing the ImageMagick license string Imagick::getImageMagickLicense ( void ) Returns a string containing the ImageMagick license Returns: Returns a string containing the ImageMagick license.

SplPriorityQueue::top

(PHP 5 >= 5.3.0, PHP 7) Peeks at the node from the top of the queue public mixed SplPriorityQueue::top ( void ) Returns: The value or priority (or both) of the top node, depending on the extract flag.

DateTime::getLastErrors

(PHP 5 >= 5.3.0, PHP 7) Returns the warnings and errors public static array DateTime::getLastErrors ( void ) Object oriented style Procedural style array date_get_last_errors ( void ) Returns an array of warnings and errors found while parsing a date/time string. Returns: Returns array containing info about warnings and errors. Examples:

hw_api::insertcollection

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Inserts a new object of type collection hw_api_object hw_api::insertcollection ( array $parameter ) This function is a shortcut for hwapi_insert(). It inserts an object of type collection and sets some of the attributes required for a collection. Parameters: parameter The parameter array contains the required elements 'object' an

MongoDB::getGridFS

(PECL mongo >=0.9.0) Fetches toolkit for dealing with files stored in this database public MongoGridFS MongoDB::getGridFS ([ string $prefix = "fs" ] ) Parameters: prefix The prefix for the files and chunks collections. Returns: Returns a new gridfs object for this database. Examples:

SplFileInfo::getInode

(PHP 5 >= 5.1.2, PHP 7) Gets the inode for the file public int SplFileInfo::getInode ( void ) Gets the inode number for the filesystem object. Returns: Returns the inode number for the filesystem object. Exception: Throws RuntimeException on error. See also: fileinode() -

SplObjectStorage::removeAllExcept

(PHP 5 >= 5.3.6, PHP 7) Removes all objects except for those contained in another storage from the current storage public void SplObjectStorage::removeAllExcept ( SplObjectStorage $storage ) Removes all objects except for those contained in another storage from the current storage. Parameters: storage The storage containing the elements to retain in the current storag

Lapack::leastSquaresBySVD

(PECL lapack >= 0.1.0) Solve the linear least squares problem, using SVD public static array Lapack::leastSquaresBySVD ( array $a, array $b ) Solve the linear least squares problem, find min x in || B - Ax || Returns an array representing x. Expects arrays of arrays, and will return an array of arrays in the dimension B num cols x A num cols. Uses SVD with a divide and conquer algorithm. Parameters:

GearmanClient::setDataCallback

(PECL gearman >= 0.6.0) Callback function when there is a data packet for a task public bool GearmanClient::setDataCallback ( callable $callback ) Sets the callback function for accepting data packets for a task. The callback function should take a single argument, a GearmanTask object. Parameters: callback A function or method to call Returns: