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 /* 

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() -

gnupg_init

(PECL gnupg >= 0.4) Initialize a connection resource gnupg_init ( void ) Returns: A GnuPG resource connection used by other GnuPG functions. Examples: Procedural gnupg_init() example <?php $res = gnupg_init(); ?> OO gnupg initializer example <?php $gpg = new gnupg(); ?>

DOMNode::appendChild

(PHP 5, PHP 7) Adds new child at the end of the children public DOMNode DOMNode::appendChild ( DOMNode $newnode ) This function appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. DOMDocument::createElement(), DOMDocument::createTextNode() etc. or simply by using any other node. Parameters: newnode The ap

mcrypt_enc_get_modes_name

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Returns the name of the opened mode string mcrypt_enc_get_modes_name ( resource $td ) This function returns the name of the mode. Parameters: td The encryption descriptor. Returns: Returns the name as a string. Examples: mcrypt_enc_get_modes_name() ex

bcompiler_write_footer

(PECL bcompiler >= 0.4) Writes the single character \x00 to indicate End of compiled data bool bcompiler_write_footer ( resource $filehandle ) Writes the single character \x00 to indicate End of compiled data. Parameters: filehandle A file handle as returned by fopen(). Returns: Returns TRUE on success or FALSE on failure.