mssql_close

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Close MS SQL Server connection bool mssql_close ([ resource $link_identifier ] ) Closes the link to a MS SQL Server database that's associated with the specified link identifier. If the link identifier isn't specified, the last opened link is assumed. Note that this isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution.

pg_lo_truncate

(No version information available, might only be in Git) Truncates a large object bool pg_lo_truncate ( resource $large_object, int $size ) pg_lo_truncate() truncates a large object resource. To use the large object interface, it is necessary to enclose it within a transaction block. Parameters: large_object PostgreSQL large object (LOB) resource, returned by pg_lo_op

set_magic_quotes_runtime

(PHP 4, PHP 5) Sets the current active configuration setting of magic_quotes_runtime bool set_magic_quotes_runtime ( bool $new_setting ) Set the current active configuration setting of magic_quotes_runtime. Parameters: new_setting FALSE for off, TRUE for on. Returns: Returns TRUE on success or FALSE on failure. Exception:

Closure::bind

(PHP 5 >= 5.4.0, PHP 7) Duplicates a closure with a specific bound object and class scope public static Closure Closure::bind ( Closure $closure, object $newthis [, mixed $newscope = "static" ] ) This method is a static version of Closure::bindTo(). See the documentation of that method for more information. Parameters: closure The anonymous functions to bind.

GearmanWorker::removeOptions

(PECL gearman >= 0.6.0) Remove worker options public bool GearmanWorker::removeOptions ( int $option ) Removes (unsets) one or more worker options. Parameters: option The options to be removed (unset) Returns: Always returns TRUE. See also: GearmanWorker::op

ifx_getsqlca

(PHP 4, PHP <=5.2.0) Get the contents of sqlca.sqlerrd[0..5] after a query array ifx_getsqlca ( resource $result_id ) Returns a pseudo-row with sqlca.sqlerrd[0] ... sqlca.sqlerrd[5] after the query associated with result_id. For inserts, updates and deletes the values returned are those as set by the server after executing the query. This gives access to the number of affected rows and the serial insert value. For SELEC

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

SolrDocument::sort

(PECL solr >= 0.9.2) Sorts the fields in the document public bool SolrDocument::sort ( int $sortOrderBy [, int $sortDirection = SolrDocument::SORT_ASC ] ) The fields are rearranged according to the specified criteria and sort direction Fields can be sorted by boost values, field names and number of values. The sortOrderBy parameter must be one of : * SolrDocument::SORT_FIELD_NAME * SolrDocument::S

sybase_min_error_severity

(PHP 4, PHP 5, PHP 7) Sets minimum error severity void sybase_min_error_severity ( int $severity ) sybase_min_error_severity() sets the minimum error severity level. Parameters: severity sybase_min_error_severity() sets the minimum error severity level. Returns: No value is returned. Notes: This fu

SplFileInfo::getBasename

(PHP 5 >= 5.2.2, PHP 7) Gets the base name of the file public string SplFileInfo::getBasename ([ string $suffix ] ) This method returns the base name of the file, directory, or link without path info. Parameters: suffix Optional suffix to omit from the base name returned. Returns: Returns the base name without path information.