SWFButton::__construct

(PHP 5 <= 5.3.0, PECL ming SVN) Creates a new Button SWFButton::__construct ( void ) Creates a new Button. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. Examples:

SAMConnection::__construct

(PECL sam >= 0.1.0) Creates a new connection to a Messaging Server SAMConnection::__construct ( void ) Creates a new SAMConnection object. Examples: Creating a connection object and connecting to a Messaging Server <?php $conn = new SAMConnection(); $conn->connect(SAM_WMQ, array(SAM_HOST => localhost, SAM_PORT => 1414, SAM_BROKER => 'b

pg_fetch_row

(PHP 4, PHP 5, PHP 7) Get a row as an enumerated array array pg_fetch_row ( resource $result [, int $row ] ) pg_fetch_row() fetches one row of data from the result associated with the specified result resource. Note: This function sets NULL fields to the PHP NULL value. Parameters: result PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_ex

Imagick::morphology

(No version information available, might only be in Git) Description public void Imagick::morphology ( int $morphologyMethod, int $iterations, ImagickKernel $ImagickKernel [, string $CHANNEL ] ) Applies a user supplied kernel to the image according to the given morphology method. Parameters: morphologyMethod Which morphology method to use one of the \Imagick::MORPHOLOGY_

odbc_columnprivileges

(PHP 4, PHP 5, PHP 7) Lists columns and associated privileges for the given table resource odbc_columnprivileges ( resource $connection_id, string $qualifier, string $owner, string $table_name, string $column_name ) Lists columns and associated privileges for the given table. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details.

pg_transaction_status

(PHP 5 >= 5.1.0, PHP 7) Returns the current in-transaction status of the server. int pg_transaction_status ( resource $connection ) Returns the current in-transaction status of the server. Caution pg_transaction_status() will give incorrect results when using a PostgreSQL 7.3 server that has the parameter autocommit set to off. The server-side autocommit feature has been deprecated and does not exist in later server ve

spl_autoload

(PHP 5 >= 5.1.2, PHP 7) Default implementation for __autoload() void spl_autoload ( string $class_name [, string $file_extensions = spl_autoload_extensions() ] ) This function is intended to be used as a default implementation for __autoload(). If nothing else is specified and spl_autoload_register() is called without any parameters then this function will be used for any later call to __autoload(). Par

APCUIterator::current

(PECL apcu >= 5.0.0) Get current item public mixed APCUIterator::current ( void ) Gets the current item from the APCUIterator stack. Returns: Returns the current item on success, or FALSE if no more items or exist, or on failure. See also: APCUIterator::next() - Iterator::current()

Gmagick::cyclecolormapimage

(PECL gmagick >= Unknown) Displaces an image's colormap public Gmagick Gmagick::cyclecolormapimage ( int $displace ) Displaces an image's colormap by a given number of positions. If you cycle the colormap a number of times you can produce a psychedelic effect. Parameters: displace The amount to displace the colormap. Returns: Returns self on s

Worker::getStacked

(PECL pthreads >= 2.0.0) Stack Analysis public integer Worker::getStacked ( void ) Returns the number of objects waiting to be executed by the referenced Worker Returns: An numeric value Examples: Returns the number of objects currently waiting to be executed by the referenced Worker <?php class Work extends Threade