QuickHashIntStringHash::loadFromString

(PECL quickhash >= Unknown) This factory method creates a hash from a string public static QuickHashIntStringHash QuickHashIntStringHash::loadFromString ( string $contents [, int $size = 0 [, int $options = 0 ]] ) This factory method creates a new hash from a definition in a string. The format is the same as the one used in "loadFromFile". Parameters: contents The st

Autoloading Classes

Examples: Autoload example Note: Prior to PHP 5.3, exceptions thrown in the __autoload() function could not be caught in the catch block and would result in a fatal error. From PHP 5.3 and upwards, this is possible provided that if a custom exception is thrown, then the custom exception class is available. The __autoload() function may be used recursively to autoload the custom exception class. Note: Autoloading is not available if using PHP in CLI interactive m

ZipArchive::unchangeAll

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Undo all changes done in the archive bool ZipArchive::unchangeAll ( void ) Undo all changes done in the archive. Returns: Returns TRUE on success or FALSE on failure.

ps_moveto

(PECL ps >= 1.1.0) Sets current point bool ps_moveto ( resource $psdoc, float $x, float $y ) Sets the current point to new coordinates. If this is the first call of ps_moveto() after a previous path has been ended then it will start a new path. If this function is called in the middle of a path it will just set the current point and start a subpath. Parameters: psdoc R

event_buffer_fd_set

(PECL libevent >= 0.0.1) Change a buffered event file descriptor void event_buffer_fd_set ( resource $bevent, resource $fd ) Changes the file descriptor on which the buffered event operates. Parameters: bevent Valid buffered event resource. fd Valid PHP stream, must be castable to file descriptor.

SplFixedArray::fromArray

(PHP 5 >= 5.3.0, PHP 7) Import a PHP array in a SplFixedArray instance public static SplFixedArray SplFixedArray::fromArray ( array $array [, bool $save_indexes = true ] ) Import the PHP array array in a new SplFixedArray instance Parameters: array The array to import. save_indexes Try to save the numeric indexes used in the origina

Transliterator::getErrorCode

(PHP >= 5.4.0, PECL intl >= 2.0.0) Get last error code public int Transliterator::getErrorCode ( void ) Object oriented style Procedural style int transliterator_get_error_code ( void ) Gets the last error code for this transliterator. Returns: The error code on success, or FALSE if none exists, or on failure. This function is currently not documented; o

fann_get_bit_fail_limit

(PECL fann >= 1.0.0) Returns the bit fail limit used during training float fann_get_bit_fail_limit ( resource $ann ) Returns the bit fail limit used during training. The bit fail limit is used during training where the stop function is set to FANN_STOPFUNC_BIT. The limit is the maximum accepted difference between the desired output and the actual output during training. Each output that diverges more than this limit i

ImagickDraw::circle

(PECL imagick 2.0.0) Draws a circle bool ImagickDraw::circle ( float $ox, float $oy, float $px, float $py ) Draws a circle on the image. Parameters: ox origin x coordinate oy origin y coordinate px perimeter x coordinate py perimeter y coordinate

zip_entry_compressedsize

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Retrieve the compressed size of a directory entry int zip_entry_compressedsize ( resource $zip_entry ) Returns the compressed size of the specified directory entry. Parameters: zip_entry A directory entry returned by zip_read(). Returns: The compressed size.