MongoDB::createCollection

(PECL mongo >=0.9.0) Creates a collection public MongoCollection MongoDB::createCollection ( string $name [, array $options ] ) This method is used to create capped collections and other collections requiring special options. It is identical to running: <?php $collection = $db->command(array(     "create" => $name,     "capped" => $options["capped"],     "size" => $options["size"],     "max" => $opti

SolrQuery::getHighlightFragmenter

(PECL solr >= 0.9.2) Returns the text snippet generator for highlighted text public string SolrQuery::getHighlightFragmenter ([ string $field_override ] ) Returns the text snippet generator for highlighted text. Accepts an optional field override. Parameters: field_override The name of the field Returns: Returns a string on success and NULL if

SimpleXMLElement::registerXPathNamespace

(PHP 5 >= 5.2.0, PHP 7) Creates a prefix/ns context for the next XPath query public bool SimpleXMLElement::registerXPathNamespace ( string $prefix, string $ns ) Creates a prefix/ns context for the next XPath query. In particular, this is helpful if the provider of the given XML document alters the namespace prefixes. registerXPathNamespace will create a prefix for the associated namespace, allowing one to access nodes i

KTaglib_ID3v2_Tag::addFrame

(0.0.1) Add a frame to the ID3v2 tag public bool KTaglib_ID3v2_Tag::addFrame ( KTaglib_ID3v2_Frame $frame ) Adds a frame to the ID3v2 tag. The frame must be a valid KTaglib_ID3v2_Frame object. To save the tag, the save function needs to be invoked. Returns: Returns true on success, otherwise false.

ocicolumntyperaw

(PHP 4, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Alias of oci_field_type_raw() Alias of oci_field_type_raw() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

Yaf_Session::__unset

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

SplDoublyLinkedList::isEmpty

(PHP 5 >= 5.3.0, PHP 7) Checks whether the doubly linked list is empty. public bool SplDoublyLinkedList::isEmpty ( void ) Returns: Returns whether the doubly linked list is empty.

PDF_add_thumbnail

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Add thumbnail for current page bool PDF_add_thumbnail ( resource $pdfdoc, int $image ) Adds an existing image as thumbnail for the current page. Returns TRUE on success or FALSE on failure.

IntlBreakIterator::createSentenceInstance

(No version information available, might only be in Git) Create break iterator for sentence breaks public static ReturnType IntlBreakIterator::createSentenceInstance ([ string $"locale" ] ) Parameters: "locale" Returns: This function is currently not documented; only its argument list is available.

headers_sent

(PHP 4, PHP 5, PHP 7) Checks if or where headers have been sent bool headers_sent ([ string &$file [, int &$line ]] ) Checks if or where headers have been sent. You can't add any more header lines using the header() function once the header block has already been sent. Using this function you can at least prevent getting HTTP header related error messages. Another option is to use Output Buffering.