mysqli_driver::embedded_server_start

(PHP 5, PHP 7) Initialize and start embedded server bool mysqli_driver::embedded_server_start ( bool $start, array $arguments, array $groups ) Object oriented style Procedural style bool mysqli_embedded_server_start ( bool $start , array $arguments , array $groups ) This function is currently not documented; only its argument list is available.

socket_sendto

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Sends a message to a socket, whether it is connected or not int socket_sendto ( resource $socket, string $buf, int $len, int $flags, string $addr [, int $port = 0 ] ) The function socket_sendto() sends len bytes from buf through the socket socket to the port at the address addr. Parameters: socket A valid socket resource created using s

SQLite3::exec

(PHP 5 >= 5.3.0, PHP 7) Executes a result-less query against a given database public bool SQLite3::exec ( string $query ) Executes a result-less query against a given database. Parameters: query The SQL query to execute (typically an INSERT, UPDATE, or DELETE query). Returns: Returns TRUE if the query succeeded, FALSE on failure.

Locale::getDisplayRegion

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Returns an appropriately localized display name for region of the input locale public static string Locale::getDisplayRegion ( string $locale [, string $in_locale ] ) Object oriented style Procedural style string locale_get_display_region ( string $locale [, string $in_locale ] ) Returns an appropriately localized display name for region of the input locale. If is NULL t

SwishResult::stem

(PECL swish >= 0.1.0) Stems the given word array SwishResult::stem ( string $word ) Stems the word based on the fuzzy mode used during indexing. Each result object is linked with its index, so the results are based on this index. Parameters: word The word to stem. Returns: Returns array containing the stemmed word variants (usually just one).

Gmagick::getimagecompose

(PECL gmagick >= Unknown) Returns the composite operator associated with the image public int Gmagick::getimagecompose ( void ) Returns the composite operator associated with the image. Returns: Returns the composite operator associated with the image. Exception: Throws an GmagickException on error.

Cond::signal

(PECL pthreads >= 2.0.0) Signal a Condition final public static boolean Cond::signal ( long $condition ) Parameters: condition A handle returned by a previous call to Cond::create() Returns: A boolean indication of success. Examples: Condition Signalling <?php /** You 

pg_num_fields

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Returns the number of fields in a result int pg_num_fields ( resource $result ) pg_num_fields() returns the number of fields (columns) in a PostgreSQL result resource. Note: This function used to be called pg_numfields(). Parameters: result PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute() (a

streamWrapper::stream_flush

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Flushes the output public bool streamWrapper::stream_flush ( void ) This method is called in response to fflush() and when the stream is being closed while any unflushed data has been written to it before. If you have cached data in your stream but not yet stored it into the underlying storage, you should do so now. Returns: Should return TRUE if the cached data

mysqli::close

(PHP 5, PHP 7) Closes a previously opened database connection bool mysqli::close ( void ) Object oriented style Procedural style bool mysqli_close ( mysqli $link ) Closes a previously opened database connection. Open non-persistent MySQL connections and result sets are automatically destroyed when a PHP script finishes its execution. So, while explicitly closing open connections and freeing result sets is optional, doing