pg_unescape_bytea

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Unescape binary for bytea type string pg_unescape_bytea ( string $data ) pg_unescape_bytea() unescapes PostgreSQL bytea data values. It returns the unescaped string, possibly containing binary data. Note: When you SELECT a bytea type, PostgreSQL returns octal byte values prefixed with '\' (e.g. \032). Users are supposed to convert back to binary format manually. This function require

ReflectionProperty::__clone

(PHP 5, PHP 7) Clone final private void ReflectionProperty::__clone ( void ) Clones. Returns: This function is currently not documented; only its argument list is available. See also: ReflectionProperty::export() - Object cloning -

openal_listener_set

(PECL openal >= 0.1.0) Set a listener property bool openal_listener_set ( int $property, mixed $setting ) Parameters: property Property to set, one of: AL_GAIN (float), AL_POSITION (array(float,float,float)), AL_VELOCITY (array(float,float,float)) and AL_ORIENTATION (array(float,float,float)). setting Value to set, either float, or a

variant_get_type

(PHP 5, PHP 7) Returns the type of a variant object int variant_get_type ( variant $variant ) Returns the type of a variant object. Parameters: variant The variant object. Returns: This function returns an integer value that indicates the type of variant, which can be an instance of COM, DOTNET or VARIANT classes. The return value can be compared

openssl_pkey_free

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Frees a private key void openssl_pkey_free ( resource $key ) This function frees a private key created by openssl_pkey_new(). Parameters: key Resource holding the key. Returns: No value is returned.

fann_create_from_file

(PECL fann >= 1.0.0) Constructs a backpropagation neural network from a configuration file resource fann_create_from_file ( string $configuration_file ) Constructs a backpropagation neural network from a configuration file, which have been saved by fann_save(). Parameters: configuration_file The configuration file path. Returns: Returns a neur

gupnp_root_device_start

(PECL gupnp >= 0.1.0) Start main loop bool gupnp_root_device_start ( resource $root_device ) Start root server's main loop. Parameters: root_device A root device identifier, returned by gupnp_root_device_new(). Returns: Returns TRUE on success or FALSE on failure. See also:

newt_pop_window

(PECL newt >= 0.1) Removes the top window from the display void newt_pop_window ( void ) Removes the top window from the display, and redraws the display areas which the window overwrote. Returns: No value is returned. See also: newt_open_window() - newt_centered_window() -

mailparse_uudecode_all

(PECL mailparse >= 0.9.0) Scans the data from fp and extract each embedded uuencoded file array mailparse_uudecode_all ( resource $fp ) Scans the data from the given file pointer and extract each embedded uuencoded file into a temporary file. Parameters: fp A valid file pointer. Returns: Returns an array of associative arrays listing filenam

ReflectionFunction::invoke

(PHP 5, PHP 7) Invokes function public mixed ReflectionFunction::invoke ([ mixed $parameter [, mixed $... ]] ) Invokes a reflected function. Parameters: args The passed in argument list. It accepts a variable number of arguments which are passed to the function much like call_user_func() is. Returns: Returns the result of the invoked function cal