fbsql_set_transaction

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Set the transaction locking and isolation void fbsql_set_transaction ( resource $link_identifier, int $locking, int $isolation ) Sets the transaction locking and isolation. Parameters: link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function will try to find a

fam_pending

(PHP 5 <= 5.0.5) Check for pending FAM events int fam_pending ( resource $fam ) Checks for pending FAM events. Parameters: fam A resource representing a connection to the FAM service returned by fam_open() Returns: Returns non-zero if events are available to be fetched using fam_next_event(), zero otherwise.

ImagickPixel::setColorValue

(PECL imagick 2.0.0) Sets the normalized value of one of the channels bool ImagickPixel::setColorValue ( int $color, float $value ) Sets the value of the specified channel of this object to the provided value, which should be between 0 and 1. This function can be used to provide an opacity channel to an ImagickPixel object. Parameters: color One of the Imagick color const

SolrQuery::setHighlightSimplePost

(PECL solr >= 0.9.2) Sets the text which appears after a highlighted term public SolrQuery SolrQuery::setHighlightSimplePost ( string $simplePost [, string $field_override ] ) Sets the text which appears before a highlighted term Parameters: simplePost Sets the text which appears after a highlighted term The default is </em> field_overrid

mysqli::$server_info

(PHP 5, PHP 7) Returns the version of the MySQL server string mysqli_get_server_info ( mysqli $link ) Object oriented style string $mysqli->server_info; Procedural style Returns a string representing the version of the MySQL server that the MySQLi extension is connected to. Parameters: link Procedural style only: A link identifier returned by mysqli_connect() or mysqli

udm_free_ispell_data

(PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0) Free memory allocated for ispell data bool udm_free_ispell_data ( int $agent ) Frees the memory allocated for ispell data. Parameters: agent A link to Agent, received after call to udm_alloc_agent(). Returns: udm_free_ispell_data() always returns TRUE.

win32_delete_service

(PECL win32service SVN) Deletes a service entry from the SCM database mixed win32_delete_service ( string $servicename [, string $machine ] ) Attempts to delete a service from the SCM database. Administrative privileges are required for this to succeed. This function really just marks the service for deletion. If other processes (such as the Services Applet) are open, then the deletion will be deferred until those applicat

UConverter::__construct

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Create UConverter object public UConverter::__construct ([ string $destination_encoding [, string $source_encoding ]] ) Parameters: destination_encoding source_encoding Returns: This function is currently not documented; only its argument list

ftp_nb_put

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Stores a file on the FTP server (non-blocking) int ftp_nb_put ( resource $ftp_stream, string $remote_file, string $local_file, int $mode [, int $startpos = 0 ] ) ftp_nb_put() stores a local file on the FTP server. The difference between this function and the ftp_put() is that this function uploads the file asynchronously, so your program can perform other operations while the file is bein

msql_fetch_object

(PHP 4, PHP 5, PHP 7) Fetch row as object object msql_fetch_object ( resource $result ) msql_fetch_object() is similar to msql_fetch_array(), with one difference - an object is returned, instead of an array. Indirectly, that means that you can only access the data by the field names, and not by their offsets (numbers are illegal property names). Speed-wise, the function is identical to msql_fetch_array(), and almost as qui