Imagick::clone

(PECL imagick 2.0.0) Makes an exact copy of the Imagick object Imagick Imagick::clone ( void ) Makes an exact copy of the Imagick object. Returns: A copy of the Imagick object is returned. This function has been DEPRECATED as of imagick 3.1.0 in favour of using the clone keyword. Changelog: 3.1.0

SQLite3::version

(PHP 5 >= 5.3.0, PHP 7) Returns the SQLite3 library version as a string constant and as a number public static array SQLite3::version ( void ) Returns the SQLite3 library version as a string constant and as a number. Returns: Returns an associative array with the keys "versionString" and "versionNumber". Examples: SQLite3::version

IntlChar::getCombiningClass

(PHP 7) Get the combining class of a code point public static int IntlChar::getCombiningClass ( mixed $codepoint ) Returns the combining class of the code point. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}") Returns: Returns the combining class of the

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