xml_get_current_byte_index

(PHP 4, PHP 5, PHP 7) Get current byte index for an XML parser int xml_get_current_byte_index ( resource $parser ) Gets the current byte index of the given XML parser. Parameters: parser A reference to the XML parser to get byte index from. Returns: This function returns FALSE if parser does not refer to a valid parser, or else it returns which b

mysqli::close

(PHP 5, PHP 7) Closes a previously opened database connection bool mysqli::close ( void ) Object oriented style Procedural style bool mysqli_close ( mysqli $link ) Closes a previously opened database connection. Open non-persistent MySQL connections and result sets are automatically destroyed when a PHP script finishes its execution. So, while explicitly closing open connections and freeing result sets is optional, doing

KTaglib_ID3v2_Tag::getFrameList

(0.0.1) Returns an array of ID3v2 frames, associated with the ID3v2 tag public array KTaglib_ID3v2_Tag::getFrameList ( void ) Returns an array of ID3v2 frames, associated with the ID3v2 tag. Returns: Return an array of KTaglib_ID3v2_Frame objects

socket_listen

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Listens for a connection on a socket bool socket_listen ( resource $socket [, int $backlog = 0 ] ) After the socket socket has been created using socket_create() and bound to a name with socket_bind(), it may be told to listen for incoming connections on socket. socket_listen() is applicable only to sockets of type SOCK_STREAM or SOCK_SEQPACKET. Parameters:

odbc_foreignkeys

(PHP 4, PHP 5, PHP 7) Retrieves a list of foreign keys resource odbc_foreignkeys ( resource $connection_id, string $pk_qualifier, string $pk_owner, string $pk_table, string $fk_qualifier, string $fk_owner, string $fk_table ) Retrieves a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table Parameters:

SolrInputDocument::addField

(PECL solr >= 0.9.2) Adds a field to the document public bool SolrInputDocument::addField ( string $fieldName, string $fieldValue [, float $fieldBoostValue = 0.0 ] ) For multi-value fields, if a valid boost value is specified, the specified value will be multiplied by the current boost value for this field. Parameters: fieldName The name of the field

ReflectionExtension::getName

(PHP 5, PHP 7) Gets extension name public string ReflectionExtension::getName ( void ) Gets the extensions name. Returns: The extensions name. Examples: ReflectionExtension::getName() example <?php $ext = new ReflectionExtension('mysqli'); var_dump($ext->getName()); ?> The above example will output something s

ifx_blobinfile_mode

(PHP 4, PHP <=5.2.0) Set the default blob mode for all select queries bool ifx_blobinfile_mode ( int $mode ) Set the default blob mode for all select queries. Parameters: mode Mode "0" means save Byte-Blobs in memory, and mode "1" means save Byte-Blobs in a file. Returns: Returns TRUE on success or FALSE on failure.

cairo_matrix_transform_point

(PECL cairo >= 0.1.0) Description array cairo_matrix_transform_point ( CairoMatrix $matrix, float $dx, float $dy ) The function description goes here. Parameters: matrix Description... dx Description... dy Description... Returns: What is returned on success and failure

odbc_result_all

(PHP 4, PHP 5, PHP 7) Print result as HTML table int odbc_result_all ( resource $result_id [, string $format ] ) Prints all rows from a result identifier produced by odbc_exec(). The result is printed in HTML table format. Parameters: result_id The result identifier. format Additional overall table formatting. Return