DateInterval::createFromDateString

(PHP 5 >= 5.3.0, PHP 7) Sets up a DateInterval from the relative parts of the string public static DateInterval DateInterval::createFromDateString ( string $time ) Uses the normal date parsers and sets up a DateInterval from the relative parts of the parsed string. Parameters: time A date with relative parts. Specifically, the relative formats supported by the parser u

APCIterator::getTotalHits

(PECL apc >= 3.1.1) Get total cache hits public int APCIterator::getTotalHits ( void ) Gets the total number of cache hits. Returns: The number of hits on success, or FALSE on failure. This function is currently not documented; only its argument list is available. See also:

mb_ereg_search_getpos

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Returns start point for next regular expression match int mb_ereg_search_getpos ( void ) Returns the start point for the next regular expression match. Returns: mb_ereg_search_getpos() returns the point to start regular expression match for mb_ereg_search(), mb_ereg_search_pos(), mb_ereg_search_regs(). The position is represented by bytes from the head of string.

jdmonthname

(PHP 4, PHP 5, PHP 7) Returns a month name string jdmonthname ( int $julianday, int $mode ) Returns a string containing a month name. mode tells this function which calendar to convert the Julian Day Count to, and what type of month names are to be returned. Calendar modes Mode Meaning Values 0 Gregorian - abbreviated Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec 1 Gregorian January, February, March, April, May

exif_imagetype

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Determine the type of an image int exif_imagetype ( string $filename ) exif_imagetype() reads the first bytes of an image and checks its signature. exif_imagetype() can be used to avoid calls to other exif functions with unsupported file types or in conjunction with $_SERVER['HTTP_ACCEPT'] to check whether or not the viewer is able to see a specific image in the browser. P

event_buffer_disable

(PECL libevent >= 0.0.1) Disable a buffered event bool event_buffer_disable ( resource $bevent, int $events ) Disables the specified buffered event. Parameters: bevent Valid buffered event resource. events Any combination of EV_READ and EV_WRITE. Returns: event_buffer_disable() returns TRUE on success or FAL

cairo_pattern_set_filter

(PECL cairo >= 0.1.0) Description void cairo_pattern_set_filter ( CairoSurfacePattern $pattern, int $filter ) The function description goes here. Parameters: pattern Description... filter Description... Returns: What is returned on success and failure This function is cu

ZipArchive::addPattern

(PHP 5 >= 5.3.0, PHP 7, PECL zip >= 1.9.0) Add files from a directory by PCRE pattern bool ZipArchive::addPattern ( string $pattern [, string $path = "." [, array $options = array() ]] ) Add files from a directory which match the regular expression pattern. The operation is not recursive. The pattern will be matched against the file name only. Parameters: pattern

SphinxClient::buildExcerpts

(PECL sphinx >= 0.1.0) Build text snippets public array SphinxClient::buildExcerpts ( array $docs, string $index, string $words [, array $opts ] ) Connects to searchd, requests it to generate excerpts (snippets) from the given documents, and returns the results. Parameters: docs Array of strings with documents' contents. index Index

DOMNode::normalize

(PHP 5, PHP 7) Normalizes the node public void DOMNode::normalize ( void ) Remove empty text nodes and merge adjacent text nodes in this node and all its children. Returns: No value is returned. See also: » The DOM Specification - DOMDocument::normalizeDocument() -