VarnishAdmin::isRunning

(PECL varnish >= 0.3) Check if the varnish slave process is currently running public bool VarnishAdmin::isRunning ( void ) Returns: Returns TRUE on success or FALSE on failure.

FANNConnection::getWeight

(PECL fann >= 1.0.0) Returns the connection weight public void FANNConnection::getWeight ( void ) Returns the connection weight. Returns: The connection weight.

ngettext

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Plural version of gettext string ngettext ( string $msgid1, string $msgid2, int $n ) The plural version of gettext(). Some languages have more than one form for plural messages dependent on the count. Parameters: msgid1 The singular message ID. msgid2 The plural message ID. n

MongoCollection::findAndModify

(PECL mongo >=1.3.0) Update a document and return it public array MongoCollection::findAndModify ( array $query [, array $update [, array $fields [, array $options ]]] ) The findAndModify command atomically modifies and returns a single document. By default, the returned document does not include the modifications made on the update. To return the document with the modifications made on the update, use the new option.

MultipleIterator::attachIterator

(PHP 5 >= 5.3.0, PHP 7) Attaches iterator information public void MultipleIterator::attachIterator ( Iterator $iterator [, string $infos ] ) Attaches iterator information. Parameters: iterator The new iterator to attach. infos The associative information for the Iterator, which must be an integer, a string, or NULL.

Yaf_Session::__get

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

ibase_blob_open

(PHP 5, PHP 7) Open blob for retrieving data parts resource ibase_blob_open ( resource $link_identifier, string $blob_id ) resource ibase_blob_open ( string $blob_id ) Opens an existing BLOB for reading. Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is assumed. blob_id A BLOB id.

PDF_setdash

(PHP 4, PECL pdflib >= 1.0.0) Set simple dash pattern bool PDF_setdash ( resource $pdfdoc, float $b, float $w ) Sets the current dash pattern to b black and w white units. Returns TRUE on success or FALSE on failure.

html_entity_decode

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Convert all HTML entities to their applicable characters string html_entity_decode ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = ini_get("default_charset") ]] ) html_entity_decode() is the opposite of htmlentities() in that it converts all HTML entities in the string to their applicable characters. More precisely, this function decodes all the entities (

Memcache::addServer

(PECL memcache >= 2.0.0) Add a memcached server to connection pool bool Memcache::addServer ( string $host [, int $port = 11211 [, bool $persistent [, int $weight [, int $timeout [, int $retry_interval [, bool $status [, callable $failure_callback [, int $timeoutms ]]]]]]]] ) Memcache::addServer() adds a server to the connection pool. You can also use the memcache_add_server() function. When using this method (as oppos