fann_create_standard

(PECL fann >= 1.0.0) Creates a standard fully connected backpropagation neural network resource fann_create_standard ( int $num_layers, int $num_neurons1, int $num_neurons2 [, int $... ] ) Creates a standard fully connected backpropagation neural network. There will be a bias neuron in each layer (except the output layer), and this bias neuron will be connected to all neurons in the next layer. When running the network,

ftp_nb_get

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Retrieves a file from the FTP server and writes it to a local file (non-blocking) int ftp_nb_get ( resource $ftp_stream, string $local_file, string $remote_file, int $mode [, int $resumepos = 0 ] ) ftp_nb_get() retrieves a remote file from the FTP server, and saves it into a local file. The difference between this function and ftp_get() is that this function retrieves the file asynchronou

SessionHandlerInterface::write

(PHP 5 >= 5.4.0, PHP 7) Write session data abstract public bool SessionHandlerInterface::write ( string $session_id, string $session_data ) Writes the session data to the session storage. Called by session_write_close(), when session_register_shutdown() fails, or during a normal shutdown. Note: SessionHandlerInterface::close() is called immediately after this function. PHP will call this method when the session is ready

pg_lo_unlink

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Delete a large object bool pg_lo_unlink ( resource $connection, int $oid ) pg_lo_unlink() deletes a large object with the oid. Returns TRUE on success or FALSE on failure. To use the large object interface, it is necessary to enclose it within a transaction block. Note: This function used to be called pg_lounlink(). Parameters: connection

mb_substr_count

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Count the number of substring occurrences int mb_substr_count ( string $haystack, string $needle [, string $encoding = mb_internal_encoding() ] ) Counts the number of times the needle substring occurs in the haystack string. Parameters: haystack The string being checked. needle The string being found.

ldap_explode_dn

(PHP 4, PHP 5, PHP 7) Splits DN into its component parts array ldap_explode_dn ( string $dn, int $with_attrib ) Splits the DN returned by ldap_get_dn() and breaks it up into its component parts. Each part is known as Relative Distinguished Name, or RDN. Parameters: dn The distinguished name of an LDAP entity. with_attrib Used to request

Imagick::readImage

(PECL imagick 0.9.0-0.9.9) Reads image from filename bool Imagick::readImage ( string $filename ) Reads image from filename Parameters: filename Reads image from filename Returns: Returns TRUE on success.

Event::signal

(PECL event >= 1.2.6-beta) Constructs signal event object public static Event Event::signal ( EventBase $base , int $signum , callable $cb [, mixed $arg ] ) Constructs signal event object. This is a straightforward method to create a signal event. Note, the generic Event::__construct() method can contruct signal event objects too. Parameters: base The associated even

SolrDocument::unserialize

(PECL solr >= 0.9.2) Custom serialization of SolrDocument objects public void SolrDocument::unserialize ( string $serialized ) Custom serialization of SolrDocument objects Parameters: serialized An XML representation of the document. Returns: None.

ibase_free_query

(PHP 5, PHP 7) Free memory allocated by a prepared query bool ibase_free_query ( resource $query ) Frees a prepared query. Parameters: query A query prepared with ibase_prepare(). Returns: Returns TRUE on success or FALSE on failure.