DirectoryIterator::isWritable

(PHP 5, PHP 7) Determine if current DirectoryIterator item can be written to public bool DirectoryIterator::isWritable ( void ) Determines if the current DirectoryIterator item is writable. Returns: Returns TRUE if the file/directory is writable, otherwise FALSE Examples: DirectoryIterator::isWritable() example This exampl

variant_cast

(PHP 5, PHP 7) Convert a variant into a new variant object of another type variant variant_cast ( variant $variant, int $type ) This function makes a copy of variant and then performs a variant cast operation to force the copy to have the type given by type. This function wraps VariantChangeType() in the COM library; consult MSDN for more information. Parameters: variant

EventHttpConnection::setMaxHeadersSize

(PECL event >= 1.2.6-beta) Sets maximum header size public void EventHttpConnection::setMaxHeadersSize ( string $max_size ) Sets maximum header size for the connection. Parameters: max_size The maximum header size in bytes. Returns: No value is returned. See also:

boolval

(PHP 5 >= 5.5.0, PHP 7) Get the boolean value of a variable boolean boolval ( mixed $var ) Returns the boolean value of var. Parameters: var The scalar value being converted to a boolean. Returns: The boolean value of var. Examples: boolval() examples <?php echo '0

QuickHashStringIntHash::loadFromString

(No version information available, might only be in Git) This factory method creates a hash from a string public static QuickHashStringIntHash QuickHashStringIntHash::loadFromString ( string $contents [, int $size = 0 [, int $options = 0 ]] ) This factory method creates a new hash from a definition in a string. The format is the same as the one used in "loadFromFile". Parameters: co

settype

(PHP 4, PHP 5, PHP 7) Set the type of a variable bool settype ( mixed &$var, string $type ) Set the type of variable var to type. Parameters: var The variable being converted. type Possibles values of type are: "boolean" (or, since PHP 4.2.0, "bool") "integer" (or, since PHP 4.2.0, "int") "float" (only possible since PHP

Locale::getScript

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Gets the script for the input locale public static string Locale::getScript ( string $locale ) Object oriented style Procedural style string locale_get_script ( string $locale ) Gets the script for the input locale. Parameters: locale The locale to extract the script code from Returns: The sc

Exception::getPrevious

(PHP 5 >= 5.3.0, PHP 7) Returns previous Exception final public Exception Exception::getPrevious ( void ) Returns previous Exception (the third parameter of Exception::__construct()). Returns: Returns the previous Exception if available or NULL otherwise. Examples: Exception::getPrevious() example Looping over, and prin

SDO_Model_Type::isInstance

(^) Test for an SDO_DataObject being an instance of this SDO_Model_Type bool SDO_Model_Type::isInstance ( SDO_DataObject $data_object ) Test for an SDO_DataObject being an instance of this SDO_Model_Type. Returns TRUE if the SDO_DataObject provided is an instance of this SDO_Model_Type, or a derived type, otherwise returns FALSE. Parameters: data_object The SDO_DataObje

MongoCursor::skip

(PECL mongo >=0.9.0) Skips a number of results public MongoCursor MongoCursor::skip ( int $num ) Parameters: num The number of results to skip. Returns: Returns this cursor. Exception: Throws MongoCursorException if this cursor has started iterating. See also: