SolrCollapseFunction::setMin

(PECL solr >= 2.2.0) Sets the initial size of the collapse data structures when collapsing on a numeric field only public SolrCollapseFunction SolrCollapseFunction::setMin ( string $min ) Sets the initial size of the collapse data structures when collapsing on a numeric field only Parameters: min Sets the initial size of the collapse data structures when collapsing on

xdiff_string_diff

(PECL xdiff >= 0.2.0) Make unified diff of two strings string xdiff_string_diff ( string $old_data, string $new_data [, int $context = 3 [, bool $minimal = false ]] ) Makes an unified diff containing differences between old_data string and new_data string and returns it. The resulting diff is human-readable. An optional context parameter specifies how many lines of context should be added around each change. Setting min

cubrid_affected_rows

(PECL CUBRID >= 8.3.0) Return the number of rows affected by the last SQL statement int cubrid_affected_rows ([ resource $conn_identifier ] ) int cubrid_affected_rows ([ resource $req_identifier ] ) The cubrid_affected_rows() function is used to get the number of rows affected by the SQL statement (INSERT, DELETE, UPDATE). Parameters: conn_identifier The CUBRID connect

DateTimeZone::listIdentifiers

(PHP 5 >= 5.2.0, PHP 7) Returns a numerically indexed array containing all defined timezone identifiers public static array DateTimeZone::listIdentifiers ([ int $what = DateTimeZone::ALL [, string $country = NULL ]] ) Object oriented style Procedural style array timezone_identifiers_list ([ int $what = DateTimeZone::ALL [, string $country = NULL ]] ) Parameters: what

socket_getsockname

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Queries the local side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type bool socket_getsockname ( resource $socket, string &$addr [, int &$port ] ) Note: socket_getsockname() should not be used with AF_UNIX sockets created with socket_connect(). Only sockets created with socket_accept() or a primary server socket foll

SolrParams::setParam

(PECL solr >= 0.9.2) Sets the parameter to the specified value public SolrParams SolrParams::setParam ( string $name, string $value ) Sets the query parameter to the specified value. This is used for parameters that can only be specified once. Subsequent calls with the same parameter name will override the existing value Parameters: name Name of the parameter

PDOStatement::fetch

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Fetches the next row from a result set public mixed PDOStatement::fetch ([ int $fetch_style [, int $cursor_orientation = PDO::FETCH_ORI_NEXT [, int $cursor_offset = 0 ]]] ) Fetches a row from a result set associated with a PDOStatement object. The fetch_style parameter determines how PDO returns the row. Parameters: fetch_style

db2_client_info

(PECL ibm_db2 >= 1.1.1) Returns an object with properties that describe the DB2 database client object db2_client_info ( resource $connection ) This function returns an object with read-only properties that return information about the DB2 database client. The following table lists the DB2 client properties: DB2 client properties Property name Return type Description APPL_CODEPAGE int The application code page. CONN_CODE

mysqli::$sqlstate

(PHP 5, PHP 7) Returns the SQLSTATE error from previous MySQL operation string mysqli_sqlstate ( mysqli $link ) Object oriented style string $mysqli->sqlstate; Procedural style Returns a string containing the SQLSTATE error code for the last error. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC. For a list of possible values, see » http://dev.mysql.com/do

soundex

(PHP 4, PHP 5, PHP 7) Calculate the soundex key of a string string soundex ( string $str ) Calculates the soundex key of str. Soundex keys have the property that words pronounced similarly produce the same soundex key, and can thus be used to simplify searches in databases where you know the pronunciation but not the spelling. This soundex function returns a string 4 characters long, starting with a letter. This particul