ZMQDevice::setIdleCallback

(No version information available, might only be in Git) Set the idle callback function public ZMQDevice ZMQDevice::setIdleCallback ( callable $cb_func, integer $timeout [, mixed $user_data ] ) Sets the idle callback function. If idle timeout is defined the idle callback function shall be called if the internal poll loop times out without events. If the callback function returns false or a value that evaluates to false the d

pg_put_line

(PHP 4 >= 4.0.3, PHP 5, PHP 7) Send a NULL-terminated string to PostgreSQL backend bool pg_put_line ([ resource $connection ], string $data ) pg_put_line() sends a NULL-terminated string to the PostgreSQL backend server. This is needed in conjunction with PostgreSQL's COPY FROM command. COPY is a high-speed data loading interface supported by PostgreSQL. Data is passed in without being parsed, and in a single transaction

cairo_surface_set_fallback_resolution

(PECL cairo >= 0.1.0) Description void cairo_surface_set_fallback_resolution ( CairoSurface $surface, float $x, float $y ) The function description goes here. Parameters: surface Description... x Description... y Description... Returns: What is returned on success and fai

db2_stmt_error

(PECL ibm_db2 >= 1.0.0) Returns a string containing the SQLSTATE returned by an SQL statement string db2_stmt_error ([ resource $stmt ] ) Returns a string containing the SQLSTATE value returned by an SQL statement. If you do not pass a statement resource as an argument to db2_stmt_error(), the driver returns the SQLSTATE value associated with the last attempt to return a statement resource, for example, from db2_prepa

IntlCalendar::getRepeatedWallTimeOption

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get behavior for handling repeating wall time public int IntlCalendar::getRepeatedWallTimeOption ( void ) Object oriented style Procedural style int intlcal_get_repeated_wall_time_option ( IntlCalendar $cal ) Gets the current strategy for dealing with wall times that are repeated whenever the clock is set back during dailight saving time end transitions. The default value is IntlCa

imap_last_error

(PHP 4, PHP 5, PHP 7) Gets the last IMAP error that occurred during this page request string imap_last_error ( void ) Gets the full text of the last IMAP error message that occurred on the current page. The error stack is untouched; calling imap_last_error() subsequently, with no intervening errors, will return the same error. Returns: Returns the full text of the last IMAP error message that occu

SphinxClient::setConnectTimeout

(PECL sphinx >= 0.1.0) Set connection timeout public bool SphinxClient::setConnectTimeout ( float $timeout ) Sets connection timeout (in seconds) for searchd connection. Parameters: timeout Timeout in seconds. Returns: Returns TRUE on success or FALSE on failure. See also:

SplObjectStorage::key

(PHP 5 >= 5.1.0, PHP 7) Returns the index at which the iterator currently is public int SplObjectStorage::key ( void ) Returns the index at which the iterator currently is. Returns: The index corresponding to the position of the iterator. Examples: SplObjectStorage::key() example <?php $s = new SplObjectStorage();

iconv_set_encoding

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Set current setting for character encoding conversion bool iconv_set_encoding ( string $type, string $charset ) Changes the value of the internal configuration variable specified by type to charset. Parameters: type The value of type can be any one of these: input_encoding output_encoding internal_encoding charset

SplFileObject::setMaxLineLen

(PHP 5 >= 5.1.0, PHP 7) Set maximum line length public void SplFileObject::setMaxLineLen ( int $max_len ) Sets the maximum length of a line to be read. Parameters: max_len The maximum length of a line. Returns: No value is returned. Exception: Throws DomainException when max_len is less than zero.