Imagick::getImageType

(PECL imagick 0.9.10-0.9.9) Gets the potential image type int Imagick::getImageType ( void ) Gets the potential image type. Returns: Returns the potential image type. imagick::IMGTYPE_UNDEFINED imagick::IMGTYPE_BILEVEL imagick::IMGTYPE_GRAYSCALE imagick::IMGTYPE_GRAYSCALEMATTE imagick::IMGTYPE_PALETTE imagick::IMGTYPE_PALETTEMATTE imagick::IMGTYPE_TRUECOLOR imagick::

VarnishAdmin::auth

(PECL varnish >= 0.3) Authenticate on a varnish instance public bool VarnishAdmin::auth ( void ) Returns: Returns TRUE on success or FALSE on failure.

ingres_num_rows

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the number of rows affected or returned by a query int ingres_num_rows ( resource $result ) This function primarily is meant to get the number of rows modified in the database. However, it can be used to retrieve the number of rows to fetch for a SELECT statement. Note: If scrollable cursors are disabled and this function is called before using ingres_fe

password_hash

(PHP 5 >= 5.5.0, PHP 7) Creates a password hash string password_hash ( string $password, integer $algo [, array $options ] ) password_hash() creates a new password hash using a strong one-way hashing algorithm. password_hash() is compatible with crypt(). Therefore, password hashes created by crypt() can be used with password_hash(). The following algorithms are currently supported: PASSWORD_DEFAULT - Use the bcrypt a

CairoImageSurface::getFormat

(PECL cairo >= 0.1.0) Get the image format public int CairoImageSurface::getFormat ( void ) Retrieves the image format, as one of the CairoFormat defined Returns: One of the CairoFormat enums Examples: CairoImageSurface::getFormat() example <?php $surface = new CairoImageSurface(CairoFormat::ARGB32, 50, 50); var_d

strptime

(PHP 5 >= 5.1.0, PHP 7) Parse a time/date generated with strftime() array strptime ( string $date, string $format ) strptime() returns an array with the date parsed, or FALSE on error. Month and weekday names and other language dependent strings respect the current locale set with setlocale() (LC_TIME). Parameters: date (string ) The string to parse (e.g. returned

fileinode

(PHP 4, PHP 5, PHP 7) Gets file inode int fileinode ( string $filename ) Gets the file inode. Parameters: filename Path to the file. Returns: Returns the inode number of the file, or FALSE on failure. Exception: Upon failure, an E_WARNING is emitted. Notes: The results of this func

clearstatcache

(PHP 4, PHP 5, PHP 7) Clears file status cache void clearstatcache ([ bool $clear_realpath_cache = false [, string $filename ]] ) When you use stat(), lstat(), or any of the other functions listed in the affected functions list (below), PHP caches the information those functions return in order to provide faster performance. However, in certain cases, you may want to clear the cached information. For instance, if the same

ImagickDraw::resetVectorGraphics

(No version information available, might only be in Git) Description public void ImagickDraw::resetVectorGraphics ( void ) Resets the vector graphics. Returns:

maxdb_affected_rows

(PECL maxdb >= 1.0) Gets the number of affected rows in a previous MaxDB operation int maxdb_affected_rows ( resource $link ) Procedural style Object oriented style int $maxdb->affected_rows; maxdb_affected_rows() returns the number of rows affected by the last INSERT, UPDATE, or DELETE query associated with the provided link parameter. If this number cannot be determined, this function will return -1. Note: For S