mcrypt_get_key_size

(PHP 4, PHP 5, PHP 7) Gets the key size of the specified cipher int mcrypt_get_key_size ( int $cipher ) int mcrypt_get_key_size ( string $cipher , string $mode ) The first prototype is when linked against libmcrypt 2.2.x, the second when linked against libmcrypt 2.4.x or 2.5.x. mcrypt_get_key_size() is used to get the size of a key of the specified cipher (in combination with an encryption mode). It is more useful to us

KTaglib_ID3v2_AttachedPictureFrame::getMimeType

(0.2.0) Returns the mime type of the picture public string KTaglib_ID3v2_AttachedPictureFrame::getMimeType ( void ) Returns the mime type of the image represented by the attached picture frame. Please notice that this method might return different types. While ID3v2.2 have a mime type that doesn't start with "image/", ID3v2.3 and v2.4 usually start with "image/". Therefore the method might return "image/png" for IDv2.3 fra

Phar::isWritable

(Unknown) Returns true if the phar archive can be modified public bool Phar::isWritable ( void ) This method returns TRUE if phar.readonly is 0, and the actual phar archive on disk is not read-only. Returns: Returns TRUE if the phar archive can be modified See also: Phar::canWrite() -

CairoSurface::getType

(PECL cairo >= 0.1.0) The getType purpose public int CairoSurface::getType ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoSurface::getType() example <?php /* 

gettimeofday

(PHP 4, PHP 5, PHP 7) Get current time mixed gettimeofday ([ bool $return_float = false ] ) This is an interface to gettimeofday(2). It returns an associative array containing the data returned from the system call. Parameters: return_float When set to TRUE, a float instead of an array is returned. Returns: By default an array is returned. If re

Event::__construct

(PECL event >= 1.2.6-beta) Constructs Event object public Event::__construct ( EventBase $base , mixed $fd , int $what , callable $cb [, mixed $arg = NULL ] ) Constructs Event object. Parameters: base The event base to associate with. fd stream resource, socket resource, or numeric file descriptor. For timer events pass -1 . For si

addslashes

(PHP 4, PHP 5, PHP 7) Quote string with slashes string addslashes ( string $str ) Returns a string with backslashes before characters that need to be escaped. These characters are single quote ('), double quote ("), backslash (\) and NUL (the NULL byte). An example use of addslashes() is when you're entering data into string that is evaluated by PHP. For example, O'Reilly is stored in $str, you need to escape $str. (e.g. e

SWFSoundInstance::loopOutPoint

(PHP 5 <= 5.3.0, PECL ming SVN) void SWFSoundInstance::loopOutPoint ( int $point ) Parameters: point Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: SWFSoundInsta

SplFileInfo::getRealPath

(PHP 5 >= 5.2.2, PHP 7) Gets absolute path to file public string SplFileInfo::getRealPath ( void ) This method expands all symbolic links, resolves relative references and returns the real path to the file. Returns: Returns the path to the file, or FALSE if the file does not exist. Examples: SplFileInfo::getRealPath() example

session_status

(PHP >=5.4.0) Returns the current session status int session_status ( void ) session_status() is used to return the current session status. Returns: PHP_SESSION_DISABLED if sessions are disabled. PHP_SESSION_NONE if sessions are enabled, but none exists. PHP_SESSION_ACTIVE if sessions are enabled, and one exists. See also: session_start() -