sqlite_next

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Seek to the next row number bool sqlite_next ( resource $result ) Object oriented style (method): bool SQLiteResult::next ( void ) bool SQLiteUnbuffered::next ( void ) sqlite_next() advances the result handle result to the next row. Parameters: result The SQLite result resource. This parameter is not required when using the ob

oci_field_name

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the name of a field from the statement string oci_field_name ( resource $statement, mixed $field ) Returns the name of the field. Parameters: statement A valid OCI statement identifier. field Can be the field's index (1-based) or name. Returns: Returns the name as a

EventBufferEvent::free

(PECL event >= 1.2.6-beta) Free a buffer event public void EventBufferEvent::free ( void ) Free resources allocated by buffer event. Usually there is no need to call this method, since normally it is done within internal object destructors. However, sometimes we have a long-time script allocating lots of instances, or a script with a heavy memory usage, where we need to free resources as soon as possible. In such cases

imagecolorallocate

(PHP 4, PHP 5, PHP 7) Allocate a color for an image int imagecolorallocate ( resource $image, int $red, int $green, int $blue ) Returns a color identifier representing the color composed of the given RGB components. imagecolorallocate() must be called to create each color that is to be used in the image represented by image. Note: The first call to imagecolorallocate() fills the background color in palette-based images

SphinxClient::close

(PECL sphinx >= 1.0.3) Closes previously opened persistent connection public bool SphinxClient::close ( void ) Closes previously opened persistent connection. Returns: Returns TRUE on success or FALSE on failure. Changelog: 1.0.3 Added SphinxClient::close(), available only if compiled with libsphinxclient >= 0.9.9.

Namespaces overview

(PHP 5 >= 5.3.0, PHP 7) Examples: Namespace syntax example PHP Namespaces provide a way in which to group related classes, interfaces, functions and constants. Here is an example of namespace syntax in PHP: <?php namespace my\name; // see "Defining Namespaces" section class MyClass {} function myfunction() {} const MYCONST = 1; $a = new MyClass; $c = new \my\name\MyClass; // see

maxdb_connect_errno

(PECL maxdb >= 1.0) Returns the error code from last connect call int maxdb_connect_errno ( void ) The maxdb_connect_errno() function will return the last error code number for last call to maxdb_connect(). If no errors have occurred, this function will return zero. Returns: An error code value for the last call to maxdb_connect(), if it failed. zero means no error occurred.

cairo_pattern_get_type

(PECL cairo >= 0.1.0) Description int cairo_pattern_get_type ( CairoPattern $pattern ) The function description goes here. Parameters: pattern Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.

sybase_min_server_severity

(PHP 4, PHP 5, PHP 7) Sets minimum server severity void sybase_min_server_severity ( int $severity ) sybase_min_server_severity() sets the minimum server severity level. Parameters: severity sybase_min_server_severity() sets the minimum server severity level. Returns: No value is returned. Notes: T

com_print_typeinfo

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Print out a PHP class definition for a dispatchable interface bool com_print_typeinfo ( object $comobject [, string $dispinterface [, bool $wantsink = false ]] ) The purpose of this function is to help generate a skeleton class for use as an event sink. You may also use it to generate a dump of any COM object, provided that it supports enough of the introspection interfaces, and that you kn