ReflectionClass::newInstanceArgs

(PHP 5 >= 5.1.3, PHP 7) Creates a new class instance from given arguments. public object ReflectionClass::newInstanceArgs ([ array $args ] ) Creates a new instance of the class, the given arguments are passed to the class constructor. Parameters: args The parameters to be passed to the class constructor as an array. Returns: Returns a new inst

PDOStatement::columnCount

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.0) Returns the number of columns in the result set public int PDOStatement::columnCount ( void ) Use PDOStatement::columnCount() to return the number of columns in the result set represented by the PDOStatement object. If the PDOStatement object was returned from PDO::query(), the column count is immediately available. If the PDOStatement object was returned from PDO::prepa

DOMImplementation::createDocumentType

(PHP 5, PHP 7) Creates an empty DOMDocumentType object public DOMDocumentType DOMImplementation::createDocumentType ([ string $qualifiedName = NULL [, string $publicId = NULL [, string $systemId = NULL ]]] ) Creates an empty DOMDocumentType object. Entity declarations and notations are not made available. Entity reference expansions and default attribute additions do not occur. Parameters:

cubrid_errno

(PECL CUBRID >= 8.3.1) Return the numerical value of the error message from previous CUBRID operation int cubrid_errno ([ resource $conn_identifier ] ) Returns the error number from the last CUBRID function. The cubrid_errno() function is used to get the error code of the error that occurred during the API execution. Usually, it gets the error code when API returns false as its return value. Parameters:

Imagick::setImageBackgroundColor

(PECL imagick 2.0.0) Sets the image background color bool Imagick::setImageBackgroundColor ( mixed $background ) Sets the image background color. Parameters: background Sets the image background color. Returns: Returns TRUE on success. Exception: Throws ImagickException on error. Changelog:

shmop_delete

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Delete shared memory block bool shmop_delete ( int $shmid ) shmop_delete() is used to delete a shared memory block. Parameters: shmid The shared memory block identifier created by shmop_open() Returns: Returns TRUE on success or FALSE on failure. Examples:

ReflectionClass::export

(PHP 5, PHP 7) Exports a class public static string ReflectionClass::export ( mixed $argument [, bool $return = false ] ) Exports a reflected class. Parameters: argument The reflection to export. return Setting to TRUE will return the export, as opposed to emitting it. Setting to FALSE (the default) will do the opposite.

imagesavealpha

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images bool imagesavealpha ( resource $image, bool $saveflag ) imagesavealpha() sets the flag to attempt to save full alpha channel information (as opposed to single-color transparency) when saving PNG images. You have to unset alphablending (imagealphablending($im, false)), to use

IntlChar::getPropertyValueEnum

(PHP 7) Get the property value for a given value name public static int IntlChar::getPropertyValueEnum ( int $property, string $name ) Returns the property value integer for a given value name, as specified in the Unicode database file PropertyValueAliases.txt. Short, long, and any other variants are recognized. Note: Some of the names in PropertyValueAliases.txt will only be recognized with IntlChar::PROPERTY_GENERAL_CA

IntlChar::charType

(PHP 7) Get the general category value for a code point public static int IntlChar::charType ( mixed $codepoint ) Returns the general category value for 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 general categor