CachingIterator::setFlags

(PHP 5 >= 5.2.0, PHP 7) The setFlags purpose public void CachingIterator::setFlags ( int $flags ) Set the flags for the CachingIterator object. Parameters: flags Bitmask of the flags to set. Returns: No value is returned. This function is currently not documented; only its argument list is available.

variant_date_from_timestamp

(PHP 5, PHP 7) Returns a variant date representation of a Unix timestamp variant variant_date_from_timestamp ( int $timestamp ) Converts timestamp from a unix timestamp value into a variant of type VT_DATE. This allows easier interopability between the unix-ish parts of PHP and COM. Parameters: timestamp A unix timestamp. Returns: Returns a VT_DA

mime_content_type

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Detect MIME Content-type for a file string mime_content_type ( string $filename ) Returns the MIME content type for a file as determined by using information from the magic.mime file. Parameters: filename Path to the tested file. Returns: Returns the content type in MIME format, like text/plain or application/oct

Collator::sort

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Sort array using specified collator public bool Collator::sort ( array &$arr [, int $sort_flag ] ) Object oriented style Procedural style bool collator_sort ( Collator $coll , array &$arr [, int $sort_flag ] ) This function sorts an array according to current locale rules. Equivalent to standard PHP sort() . Parameters: co

variant_cat

(PHP 5, PHP 7) concatenates two variant values together and returns the result mixed variant_cat ( mixed $left, mixed $right ) Concatenates left with right and returns the result. This function is notionally equivalent to $left . $right. Parameters: left The left operand. right The right operand. Returns: Ret

DOMDocument::createAttribute

(PHP 5, PHP 7) Create new attribute public DOMAttr DOMDocument::createAttribute ( string $name ) This function creates a new instance of class DOMAttr. This node will not show up in the document unless it is inserted with (e.g.) DOMNode::appendChild(). Parameters: name The name of the attribute. Returns: The new DOMAttr or FALSE if an error occur

Yaf_Config_Simple::offsetUnset

(Yaf >=1.0.0) The offsetUnset purpose public void Yaf_Config_Simple::offsetUnset ( string $name ) Parameters: name Returns: This function is currently not documented; only its argument list is available.

ZipArchive::setCommentIndex

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.4.0) Set the comment of an entry defined by its index bool ZipArchive::setCommentIndex ( int $index, string $comment ) Set the comment of an entry defined by its index. Parameters: index Index of the entry. comment The contents of the comment. Returns: Returns TRUE on

ParentIterator::accept

(PHP 5 >= 5.1.0, PHP 7) Determines acceptability public bool ParentIterator::accept ( void ) Determines if the current element has children. Returns: TRUE if the current element is acceptable, otherwise FALSE. This function is currently not documented; only its argument list is available.

RarEntry::getAttr

(PECL rar >= 0.1) Get attributes of the entry public int RarEntry::getAttr ( void ) Returns the OS-dependent attributes of the archive entry. Returns: Returns the attributes or FALSE on error. Examples: RarEntry::getAttr() example <?php $rar_file = rar_open('example.rar') or die("Can't open Rar archive"); $entry =