SWFShape::drawCubic

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a cubic bezier curve using the current position and the three given points as control points int SWFShape::drawCubic ( float $bx, float $by, float $cx, float $cy, float $dx, float $dy ) This function is currently not documented; only its argument list is available. See

Phar::apiVersion

(PHP >= 5.3.0, PECL phar >= 1.0.0) Returns the api version final public static string Phar::apiVersion ( void ) Return the API version of the phar file format that will be used when creating phars. The Phar extension supports reading API version 1.0.0 or newer. API version 1.1.0 is required for SHA-256 and SHA-512 hash, and API version 1.1.1 is required to store empty directories. Returns: T

fdf_errno

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Return error code for last fdf operation int fdf_errno ( void ) Gets the error code set by the last FDF function call. A textual description of the error may be obtained using with fdf_error(). Returns: Returns the error code as an integer, or zero if there was no errors. See also:

pos

(PHP 4, PHP 5, PHP 7) Alias of current() This function is an alias of: current()

classkit_method_redefine

(PECL classkit >= 0.1) Dynamically changes the code of the given method bool classkit_method_redefine ( string $classname, string $methodname, string $args, string $code [, int $flags = CLASSKIT_ACC_PUBLIC ] ) Note: This function cannot be used to manipulate the currently running (or chained) method. Parameters: classname The class in which to redefine the

pg_options

(PHP 4, PHP 5, PHP 7) Get the options associated with the connection string pg_options ([ resource $connection ] ) pg_options() will return a string containing the options specified on the given PostgreSQL connection resource. Parameters: connection PostgreSQL database connection resource. When connection is not present, the default connection is used. The default connect

ReflectionClass::getDefaultProperties

(PHP 5, PHP 7) Gets default properties public array ReflectionClass::getDefaultProperties ( void ) Gets default properties from a class (including inherited properties). Note: This method only works for static properties when used on internal classes. The default value of a static class property can not be tracked when using this method on user defined classes. Returns: An array of default pr

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

SplObjectStorage::getInfo

(PHP 5 >= 5.3.0, PHP 7) Returns the data associated with the current iterator entry public mixed SplObjectStorage::getInfo ( void ) Returns the data, or info, associated with the object pointed by the current iterator position. Returns: The data associated with the current iterator position. Examples: SplObjectStorage::getInfo() exa