Yar_Client::__construct

(PECL yar >= 1.0.0) Create a client final public Yar_Client::__construct ( string $url ) Create a Yar_Client to a Yar_Server. Parameters: url Yar Server URL. Returns: Yar_Client instance. Examples: Yar_Client::__construct() example <?php $client = new Yar_Client("h

SessionHandler::gc

(PHP 5 >= 5.4.0, PHP 7) Cleanup old sessions public bool SessionHandler::gc ( int $maxlifetime ) Cleans up expired sessions. Called randomly by PHP internally when a session starts or when session_start() is invoked. The frequency this is called is based on the session.gc_divisor and session.gc_probability configuration directives. This method wraps the internal PHP save handler defined in the session.save_handler ini s

fann_get_total_connections

(PECL fann >= 1.0.0) Get the total number of connections in the entire network int fann_get_total_connections ( resource $ann ) Get the total number of connections in the entire network. Parameters: ann Neural network resource. Returns: Total number of connections in the entire network, or FALSE on error

syslog

(PHP 4, PHP 5, PHP 7) Generate a system log message bool syslog ( int $priority, string $message ) syslog() generates a log message that will be distributed by the system logger. For information on setting up a user defined log handler, see the syslog.conf (5) Unix manual page. More information on the syslog facilities and option can be found in the man pages for syslog (3) on Unix machines. Parameters:

MongoDB::dropCollection

(PECL mongo >=0.9.0) Drops a collection [deprecated] public array MongoDB::dropCollection ( mixed $coll ) Parameters: coll MongoCollection or name of collection to drop. Returns: Returns the database response. Deprecated Use MongoCollection::drop() instead. This function leaks memory in version 1.0.7 and

fdf_next_field_name

(PHP 4, PHP 5, PHP 7) Get the next field name string fdf_next_field_name ( resource $fdf_document [, string $fieldname ] ) Gets the name of the field after the given field. This name can be used with several functions. Parameters: fdf_document The FDF document handle, returned by fdf_create(), fdf_open() or fdf_open_string(). fieldname

EventBufferEvent::sslFilter

(PECL event >= 1.2.6-beta) Create a new SSL buffer event to send its data over another buffer event public static EventBufferEvent EventBufferEvent::sslFilter ( EventBase $base , EventBufferEvent $underlying , EventSslContext $ctx , int $state [, int $options = 0 ] ) Create a new SSL buffer event to send its data over another buffer event Note: This function is available only if Event is compiled with OpenSSL suppor

show_source

(PHP 4, PHP 5, PHP 7) Alias of highlight_file() This function is an alias of: highlight_file().

SQLite3Stmt::reset

(PHP 5 >= 5.3.0, PHP 7) Resets the prepared statement public bool SQLite3Stmt::reset ( void ) Resets the prepared statement to its state prior to execution. All bindings remain intact after reset. Returns: Returns TRUE if the statement is successfully reset, FALSE on failure.

gc_enable

(PHP 5 >= 5.3.0, PHP 7) Activates the circular reference collector void gc_enable ( void ) Activates the circular reference collector, setting zend.enable_gc to 1. Returns: No value is returned. See also: Garbage Collection -