SWFDisplayItem::setRatio

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the object's ratio void SWFDisplayItem::setRatio ( float $ratio ) swfdisplayitem::setratio() sets the object's ratio to ratio. Obviously only useful for morphs. The object may be a swfshape(), a swfbutton(), a swftext() or a swfsprite() object. It must have been added using the swfmovie::add(). Returns: No value is returned.

spl_classes

(PHP 5, PHP 7) Return available SPL classes array spl_classes ( void ) This function returns an array with the current available SPL classes. Returns: Returns an array containing the currently available SPL classes. Examples: spl_classes() example <?php print_r(spl_classes()); ?> The above example will output s

lstat

(PHP 4, PHP 5, PHP 7) Gives information about a file or symbolic link array lstat ( string $filename ) Gathers the statistics of the file or symbolic link named by filename. Parameters: filename Path to a file or a symbolic link. Returns: See the manual page for stat() for information on the structure of the array that lstat() returns. This funct

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.

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