gzopen

(PHP 4, PHP 5, PHP 7) Open gz-file resource gzopen ( string $filename, string $mode [, int $use_include_path = 0 ] ) Opens a gzip (.gz) file for reading or writing. gzopen() can be used to read a file which is not in gzip format; in this case gzread() will directly read from the file without decompression. Parameters: filename The file name. mode

sys_get_temp_dir

(PHP 5 >= 5.2.1, PHP 7) Returns directory path used for temporary files string sys_get_temp_dir ( void ) Returns the path of the directory PHP stores temporary files in by default. Returns: Returns the path of the temporary directory. Examples: sys_get_temp_dir() example <?php // Create a temporary file in the tempo

ingres_autocommit

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Switch autocommit on or off bool ingres_autocommit ( resource $link ) ingres_autocommit() is called before opening a transaction (before the first call to ingres_query() or just after a call to ingres_rollback() or ingres_commit()) to switch the autocommit mode of the server on or off (when the script begins the autocommit mode is off). When autocommit mode is

win32_query_service_status

(PECL win32service SVN) Queries the status of a service mixed win32_query_service_status ( string $servicename [, string $machine ] ) Queries the current status for a service, returning an array of information. Parameters: servicename The short name of the service. machine The optional machine name. If omitted, the local machine will be

mysqli_stmt::reset

(PHP 5, PHP 7) Resets a prepared statement bool mysqli_stmt::reset ( void ) Object oriented style Procedural style bool mysqli_stmt_reset ( mysqli_stmt $stmt ) Resets a prepared statement on client and server to state after prepare. It resets the statement on the server, data sent using mysqli_stmt_send_long_data(), unbuffered result sets and current errors. It does not clear bindings or stored result sets. Stored result

win32_stop_service

(PECL win32service SVN) Stops a service int win32_stop_service ( string $servicename [, string $machine ] ) Stops a named service. Requires administrative privileges. Parameters: servicename The short name of the service. machine Optional machine name. If omitted, the local machine is used. Returns: Returns WIN

imap_rfc822_write_address

(PHP 4, PHP 5, PHP 7) Returns a properly formatted email address given the mailbox, host, and personal info string imap_rfc822_write_address ( string $mailbox, string $host, string $personal ) Returns a properly formatted email address as defined in » RFC2822 given the needed information. Parameters: mailbox The mailbox name, see imap_open() for more information

simplexml_load_file

(PHP 5, PHP 7) Interprets an XML file into an object SimpleXMLElement simplexml_load_file ( string $filename [, string $class_name = "SimpleXMLElement" [, int $options = 0 [, string $ns = "" [, bool $is_prefix = false ]]]] ) Convert the well-formed XML document in the given file to an object. Parameters: filename Path to the XML file Note: Libxml 2 unescapes the

gupnp_control_point_browse_start

(PECL gupnp >= 0.1.0) Start browsing bool gupnp_control_point_browse_start ( resource $cpoint ) Start the search and calls user-defined callback. Parameters: cpoint A control point identifier, returned by gupnp_control_point_new(). Returns: Returns TRUE on success or FALSE on failure. Examples:

gupnp_control_point_browse_stop

(PECL gupnp >= 0.1.0) Stop browsing bool gupnp_control_point_browse_stop ( resource $cpoint ) Stop the search and calls user-defined callback. Parameters: cpoint A control point identifier, returned by gupnp_control_point_new(). Returns: Returns TRUE on success or FALSE on failure.