cubrid_fetch

(PECL CUBRID >= 8.3.0) Fetch the next row from a result set mixed cubrid_fetch ( resource $result [, int $type = CUBRID_BOTH ] ) The cubrid_fetch() function is used to get a single row from the query result. The cursor automatically moves to the next row after getting the result. Parameters: result result comes from a call to cubrid_execute() type

MongoCollection::ensureIndex

(PECL mongo >=0.9.0) Creates an index on the specified field(s) if it does not already exist. public bool MongoCollection::ensureIndex ( string|array $key|keys [, array $options = array() ] ) Creates an index on the specified field(s) if it does not already exist. Fields may be indexed with a direction (e.g. ascending or descending) or a special type (e.g. text, geospatial, hashed). Note: This method will use the

filter_var

(PHP 5 >= 5.2.0, PHP 7) Filters a variable with a specified filter mixed filter_var ( mixed $variable [, int $filter = FILTER_DEFAULT [, mixed $options ]] ) Parameters: variable Value to filter. filter The ID of the filter to apply. The Types of filters manual page lists the available filters. If omitted, FILTER_DEFAULT will be used

sqlsrv_fetch

(No version information available, might only be in Git) Makes the next row in a result set available for reading mixed sqlsrv_fetch ( resource $stmt [, int $row [, int $offset ]] ) Makes the next row in a result set available for reading. Use sqlsrv_get_field() to read the fields of the row. Parameters: stmt A statement resource created by executing sqlsrv_query() or sql

maxdb_fetch_array

(PECL maxdb >= 1.0) Fetch a result row as an associative, a numeric array, or both mixed maxdb_fetch_array ( resource $result [, int $resulttype ] ) Procedural style Object oriented style mixed maxdb_result::fetch_array ([ int $resulttype ] ) Returns an array that corresponds to the fetched row or NULL if there are no more rows for the resultset represented by the result parameter. maxdb_fetch_array() is an extended ve

QuickHashStringIntHash::loadFromFile

(No version information available, might only be in Git) This factory method creates a hash from a file public static QuickHashStringIntHash QuickHashStringIntHash::loadFromFile ( string $filename [, int $size = 0 [, int $options = 0 ]] ) This factory method creates a new hash from a definition file on disk. The file format consists of a signature 'QH\0x21\0', the number of elements as a 32 bit signed integer in system End

EventListener::__construct

(PECL event >= 1.2.6-beta) Creates new connection listener associated with an event base public EventListener::__construct ( EventBase $base , callable $cb , mixed $data , int $flags , int $backlog , mixed $target ) Creates new connection listener associated with an event base. Parameters: base Associated event base. cb A callable t

SoapClient::__soapCall

(PHP 5 >= 5.0.1, PHP 7) Calls a SOAP function public mixed SoapClient::__soapCall ( string $function_name, array $arguments [, array $options [, mixed $input_headers [, array &$output_headers ]]] ) This is a low level API function that is used to make a SOAP call. Usually, in WSDL mode, SOAP functions can be called as methods of the SoapClient object. This method is useful in non-WSDL mode when soapaction is unknown,

Runkit_Sandbox_Parent

(PECL runkit >= 0.7.0) Runkit Anti-Sandbox Class void Runkit_Sandbox_Parent::__construct ( void ) Instantiating the Runkit_Sandbox_Parent class from within a sandbox environment created from the Runkit_Sandbox class provides some (controlled) means for a sandbox child to access its parent. Note: Sandbox support (required for runkit_lint(), runkit_lint_file(), and the Runkit_Sandbox class) is only available as of PHP 5

echo

(PHP 4, PHP 5, PHP 7) Output one or more strings void echo ( string $arg1 [, string $... ] ) Outputs all parameters. No additional newline is appended. echo is not actually a function (it is a language construct), so you are not required to use parentheses with it. echo (unlike some other language constructs) does not behave like a function, so it cannot always be used in the context of a function. Additionally, if you wa