m_maxconntimeout

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) The maximum amount of time the API will attempt a connection to MCVE bool m_maxconntimeout ( resource $conn, int $secs ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). secs An MCVE_CONN resource returned by m_initengine(). Returns:

fgetcsv

(PHP 4, PHP 5, PHP 7) Gets line from file pointer and parse for CSV fields array fgetcsv ( resource $handle [, int $length = 0 [, string $delimiter = "," [, string $enclosure = '"' [, string $escape = "\" ]]]] ) Similar to fgets() except that fgetcsv() parses the line it reads for fields in CSV format and returns an array containing the fields read. Parameters: handle

Collator::getErrorMessage

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get text for collator's last error code public string Collator::getErrorMessage ( void ) Object oriented style Procedural style string collator_get_error_message ( Collator $coll ) Retrieves the message for the last error. Parameters: coll Collator object. Returns: Description of an error occ

session_cache_expire

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Return current cache expire int session_cache_expire ([ string $new_cache_expire ] ) session_cache_expire() returns the current setting of session.cache_expire. The cache expire is reset to the default value of 180 stored in session.cache_expire at request startup time. Thus, you need to call session_cache_expire() for every request (and before session_start() is called).

posix_setgid

(PHP 4, PHP 5, PHP 7) Set the GID of the current process bool posix_setgid ( int $gid ) Set the real group ID of the current process. This is a privileged function and needs appropriate privileges (usually root) on the system to be able to perform this function. The appropriate order of function calls is posix_setgid() first, posix_setuid() last. Note: If the caller is a super user, this will also set the effective group

quoted_printable_encode

(PHP 5 >= 5.3.0, PHP 7) Convert a 8 bit string to a quoted-printable string string quoted_printable_encode ( string $str ) Returns a quoted printable string created according to » RFC2045, section 6.7. This function is similar to imap_8bit(), except this one does not require the IMAP module to work. Parameters: str The input string. Returns:

fann_set_learning_momentum

(PECL fann >= 1.0.0) Sets the learning momentum bool fann_set_learning_momentum ( resource $ann, float $learning_momentum ) Sets the learning momentum. More info available in fann_get_learning_momentum(). Parameters: ann Neural network resource. learning_momentum The learning momentum. Returns: Returns TRUE o

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

fam_resume_monitor

(PHP 5 <= 5.0.5) Resume suspended monitoring bool fam_resume_monitor ( resource $fam, resource $fam_monitor ) Resumes monitoring of a resource previously suspended using fam_suspend_monitor(). Parameters: fam A resource representing a connection to the FAM service returned by fam_open() fam_monitor A resource returned by one of the f

str_ireplace

(PHP 5, PHP 7) Case-insensitive version of str_replace(). mixed str_ireplace ( mixed $search, mixed $replace, mixed $subject [, int &$count ] ) This function returns a string or an array with all occurrences of search in subject (ignoring case) replaced with the given replace value. If you don't need fancy replacing rules, you should generally use this function instead of preg_replace() with the i modifier.