imap_mime_header_decode

(PHP 4, PHP 5, PHP 7) Decode MIME header elements array imap_mime_header_decode ( string $text ) Decodes MIME message header extensions that are non ASCII text (see » RFC2047). Parameters: text The MIME text Returns: The decoded elements are returned in an array of objects, where each object has two properties, charset and text. If the element

Memcached::__construct

(PECL memcached >= 0.1.0) Create a Memcached instance public Memcached::__construct ([ string $persistent_id ] ) Creates a Memcached instance representing the connection to the memcache servers. Parameters: persistent_id By default the Memcached instances are destroyed at the end of the request. To create an instance that persists between requests, use persistent_id to specify a unique

Memcached::decrementByKey

(PECL memcached >= 2.0.0) Decrement numeric item's value, stored on a specific server public int Memcached::decrementByKey ( string $server_key, string $key [, int $offset = 1 [, int $initial_value = 0 [, int $expiry = 0 ]]] ) Memcached::decrementByKey() decrements a numeric item's value by the specified offset. If the item's value is not numeric, an error will result. If the operation would decrease the value below 0,

print_r

(PHP 4, PHP 5, PHP 7) Prints human-readable information about a variable mixed print_r ( mixed $expression [, bool $return = false ] ) print_r() displays information about a variable in a way that's readable by humans. print_r(), var_dump() and var_export() will also show protected and private properties of objects with PHP 5. Static class members will not be shown. Parameters: e

password_needs_rehash

(PHP 5 >= 5.5.0, PHP 7) Checks if the given hash matches the given options boolean password_needs_rehash ( string $hash, integer $algo [, array $options ] ) This function checks to see if the supplied hash implements the algorithm and options provided. If not, it is assumed that the hash needs to be rehashed. Parameters: hash A hash created by password_hash().

getallheaders

(PHP 4, PHP 5, PHP 7) Fetch all HTTP request headers array getallheaders ( void ) Fetches all HTTP headers from the current request. This function is an alias for apache_request_headers(). Please read the apache_request_headers() documentation for more information on how this function works. Returns: An associative array of all the HTTP headers in the current request, or FALSE on failure.

DOMNamedNodeMap::getNamedItemNS

(PHP 5, PHP 7) Retrieves a node specified by local name and namespace URI DOMNode DOMNamedNodeMap::getNamedItemNS ( string $namespaceURI, string $localName ) Retrieves a node specified by localName and namespaceURI. Parameters: namespaceURI The namespace URI of the node to retrieve. localName The local name of the node to retrieve.

posix_access

(PHP 5 >= 5.1.0, PHP 7) Determine accessibility of a file bool posix_access ( string $file [, int $mode = POSIX_F_OK ] ) posix_access() checks the user's permission of a file. Parameters: file The name of the file to be tested. mode A mask consisting of one or more of POSIX_F_OK, POSIX_R_OK, POSIX_W_OK and POSIX_X_OK. POSIX_R_OK

SWFText::moveTo

(PHP 5 <= 5.3.0, PECL ming SVN) Moves the pen void SWFText::moveTo ( float $x, float $y ) swftext::moveto() moves the pen (or cursor, if that makes more sense) to (x,y) in text object's coordinate space. If either is zero, though, value in that dimension stays the same. Annoying, should be fixed. Returns: No value is returned. This function is EXPERIMENTAL.

msg_remove_queue

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Destroy a message queue bool msg_remove_queue ( resource $queue ) msg_remove_queue() destroys the message queue specified by the queue. Only use this function when all processes have finished working with the message queue and you need to release the system resources held by it. Parameters: queue Message queue resource handle