Imagick::nextImage

(PECL imagick 2.0.0) Moves to the next image bool Imagick::nextImage ( void ) Associates the next image in the image list with an Imagick object. Returns: Returns TRUE on success.

stream_socket_get_name

(PHP 5, PHP 7) Retrieve the name of the local or remote sockets string stream_socket_get_name ( resource $handle, bool $want_peer ) Returns the local or remote name of a given socket connection. Parameters: handle The socket to get the name of. want_peer If set to TRUE the remote socket name will be returned, if set to FALSE the local s

SplObjectStorage::getHash

(PHP 5 >= 5.4.0, PHP 7) Calculate a unique identifier for the contained objects public string SplObjectStorage::getHash ( object $object ) This method calculates an identifier for the objects added to an SplObjectStorage object. The implementation in SplObjectStorage returns the same value as spl_object_hash(). The storage object will never contain more than one object with the same identifier. As such, it can be us

SWFTextField::setFont

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the text field font void SWFTextField::setFont ( SWFFont $font ) swftextfield::setfont() sets the text field font to the [browser-defined?] font font. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future

addcslashes

(PHP 4, PHP 5, PHP 7) Quote string with slashes in a C style string addcslashes ( string $str, string $charlist ) Returns a string with backslashes before characters that are listed in charlist parameter. Parameters: str The string to be escaped. charlist A list of characters to be escaped. If charlist contains characters \n, \r etc., t

SWFMovie::stopSound

(PHP 5 <= 5.3.0, PECL ming SVN) void SWFMovie::stopSound ( SWFSound $sound ) Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: SWFMovie::startSound() -

cairo_font_options_set_antialias

(PECL cairo >= 0.1.0) Description void cairo_font_options_set_antialias ( CairoFontOptions $options, int $antialias ) The function description goes here. Parameters: options Description... antialias Description... Returns: What is returned on success and failure This fun

svn_delete

(PECL svn >= 0.4.0) Delete items from a working copy or repository. bool svn_delete ( string $path [, bool $force = false ] ) Deletes the file, directory or symbolic link at path from the working directory. The item will be deleted from the repository the next time you call svn_commit() on the working copy. Parameters: path Path of item to delete. Note: Relative path

SplObjectStorage::addAll

(PHP 5 >= 5.3.0, PHP 7) Adds all objects from another storage public void SplObjectStorage::addAll ( SplObjectStorage $storage ) Adds all objects-data pairs from a different storage in the current storage. Parameters: storage The storage you want to import. Returns: No value is returned. Examp

Lapack::singularValues

(PECL lapack >= 0.1.0) Calculated the singular values of a matrix public static array Lapack::singularValues ( array $a ) Calculate the singular values of the matrix A. Parameters: a The matrix to calculate the singular values for Returns: The singular values Examples: Using Lapack