1#chars -$[]':
2
3global $_COOKIE |HTTP Cookies
4global $_ENV |Environment variables
5global $_FILES |HTTP File upload variables
6global $_GET |HTTP GET variables
7global $_POST |HTTP POST variables
8global $_REQUEST |An associative array consisting of the contents of $_GET, $_POST, and $_COOKIE
9global $_SESSION |Session variables
10global $_SERVER |Server variables
11global $_SERVER['argc'] |Contains the number of command line parameters passed to the script (if run on the command line).
12global $_SERVER['argv'] |Array of arguments passed to the script. When the script is run on the command line.
13global $_SERVER['AUTH_TYPE'] |When running under Apache as module doing HTTP authenticated this variable is set to the authentication type.
14global $_SERVER['DOCUMENT_ROOT'] |The document root directory under which the current script is executing.
15global $_SERVER['GATEWAY_INTERFACE'] |What revision of the CGI specification the server is using; i.e. 'CGI/1.1'.
16global $_SERVER['HTTP_ACCEPT'] |Contents of the Accept: header from the current request, if there is one.
17global $_SERVER['HTTP_ACCEPT_CHARSET'] |Contents of the Accept-Charset: header from the current request, if there is one. Example: 'iso-8859-1,*,utf-8'.
18global $_SERVER['HTTP_ACCEPT_ENCODING'] |Contents of the Accept-Encoding: header from the current request, if there is one. Example: 'gzip'
19global $_SERVER['HTTP_ACCEPT_LANGUAGE'] |Contents of the Accept-Language: header from the current request, if there is one. Example: 'en'
20global $_SERVER['HTTP_CONNECTION'] |Contents of the Connection: header from the current request, if there is one. Example: 'Keep-Alive'.
21global $_SERVER['HTTP_HOST'] |Contents of the Host: header from the current request, if there is one.
22global $_SERVER['HTTP_REFERER'] |The address of the page (if any) which referred the user agent to the current page
23global $_SERVER['HTTP_USER_AGENT'] |Contents of the User-Agent: header from the current request, if there is one
24global $_SERVER['PATH_TRANSLATED'] |Filesystem- (not document root-) based path to the current script
25global $_SERVER['PHP_AUTH_PW'] |When running under Apache as module doing HTTP authentication this variable is set to the password provided by the user.
26global $_SERVER['PHP_AUTH_USER'] |When running under Apache as module doing HTTP authentication this variable is set to the username provided by the user
27global $_SERVER['PHP_SELF'] |The filename of the currently executing script, relative to the document root.
28global $_SERVER['QUERY_STRING'] |The query string, if any, via which the page was accessed.
29global $_SERVER['REMOTE_ADDR'] |The IP address from which the user is viewing the current page
30global $_SERVER['REMOTE_HOST'] |The Host name from which the user is viewing the current page
31global $_SERVER['REMOTE_PORT'] |The port being used on the user's machine to communicate with the web server
32global $_SERVER['REQUEST_METHOD'] |Which request method was used to access the page; i.e. 'GET', 'HEAD', 'POST', 'PUT'.
33global $_SERVER['REQUEST_URI'] |The URI which was given in order to access this page; for instance, '/index.html'
34global $_SERVER['SCRIPT_FILENAME'] |The absolute pathname of the currently executing script.
35global $_SERVER['SCRIPT_NAME'] |Contains the current script's path.
36global $_SERVER['SERVER_ADMIN'] |The value given to the SERVER_ADMIN (for Apache) directive in the web server configuration file
37global $_SERVER['SERVER_NAME'] |The name of the server host under which the current script is executing
38global $_SERVER['SERVER_PORT'] |The port on the server machine being used by the web server for communication
39global $_SERVER['SERVER_PROTOCOL'] |Name and revision of the information protocol via which the page was requested; i.e. 'HTTP/1.0';
40global $_SERVER['SERVER_SIGNATURE'] |String containing the server version and virtual host name which are added to server-generated pages, if enabled
41global $_SERVER['SERVER_SOFTWARE'] |Server identification string, given in the headers when responding to requests
42global $HTTP_COOKIE_VARS |HTTP Cookies (Deprecated, use $_COOKIE)
43global $HTTP_ENV_VARS |Environment variables (Deprecated, use $_ENV)
44global $HTTP_FILES_VARS |HTTP File upload variables (Deprecated, use $_FILES)
45global $HTTP_GET_VARS |HTTP GET variables (Deprecated, use $_GET)
46global $HTTP_POST_VARS |HTTP POST variables (Deprecated, use $_POST)
47global $HTTP_REQUEST_VARS |Request variables (Deprecated, use $_REQUEST)
48global $HTTP_SESSION_VARS |Session variables (Deprecated, use $_SESSION)
49global $HTTP_SERVER_VARS |Server variables (Deprecated, use $_SERVER)
50global $GLOBALS |Global variables
51global $php_errormsg |The previous error message
52
53keyword as
54keyword break
55keyword case
56keyword catch
57keyword class
58keyword const
59keyword continue
60keyword debugger
61keyword declare
62keyword default
63keyword delete
64keyword do
65keyword do-while
66keyword else
67keyword elseif(expression)
68keyword endfor
69keyword endforeach
70keyword endif
71keyword endswitch
72keyword endwhile
73keyword enum
74keyword export
75keyword extends
76keyword false
77keyword finally
78keyword for(init_expr, loop_expr, end_expr)
79keyword foreach(array_expr as $value)
80keyword function
81keyword if(expr)
82keyword import
83keyword in
84keyword include
85keyword include_once
86keyword new
87keyword null
88keyword require
89keyword require_once
90keyword return
91keyword super
92keyword switch
93keyword switch-case
94keyword this
95keyword throw
96keyword true
97keyword try
98keyword typeof
99keyword var
100keyword void
101keyword while(expression)
102keyword with
103
104number abs(mixed $number) |Absolute value (PHP 4, PHP 5)
105float acos(float $arg) |Arc cosine (PHP 4, PHP 5)
106float acosh(float $arg) |Inverse hyperbolic cosine (PHP 4 >= 4.1.0, PHP 5)
107string addcslashes(string $str, string $charlist) |Quote string with slashes in a C style (PHP 4, PHP 5)
108string addslashes(string $str) |Quote string with slashes (PHP 4, PHP 5)
109array aggregate_info(object $object) |Gets aggregation information for a given object (PHP 4 >= 4.3.0)
110void aggregate_methods_by_list(object $object, string $class_name, array $methods_list [, bool $exclude=false]) |Selective dynamic class methods aggregation to an object (PHP 4 >= 4.2.0)
111void aggregate_methods_by_regexp(object $object, string $class_name, string $regexp [, bool $exclude=false]) |Selective class methods aggregation to an object using a regular expression (PHP 4 >= 4.2.0)
112void aggregate_methods(object $object, string $class_name) |Dynamic class and object aggregation of methods (PHP 4 >= 4.2.0)
113void aggregate_properties_by_list(object $object, string $class_name, array $properties_list [, bool $exclude=false]) |Selective dynamic class properties aggregation to an object (PHP 4 >= 4.2.0)
114void aggregate_properties_by_regexp(object $object, string $class_name, string $regexp [, bool $exclude=false]) |Selective class properties aggregation to an object using a regular expression (PHP 4 >= 4.2.0)
115void aggregate_properties(object $object, string $class_name) |Dynamic aggregation of class properties to an object (PHP 4 >= 4.2.0)
116void aggregate(object $object, string $class_name) |Dynamic class and object aggregation of methods and properties (PHP 4 >= 4.2.0)
117bool apache_child_terminate() |Terminate apache process after this request (PHP 4 >= 4.0.5, PHP 5)
118array apache_get_modules() |Get a list of loaded Apache modules (PHP 4 >= 4.3.2, PHP 5)
119string apache_get_version() |Fetch Apache version (PHP 4 >= 4.3.2, PHP 5)
120string apache_getenv(string $variable [, bool $walk_to_top=false]) |Get an Apache subprocess_env variable (PHP 4 >= 4.3.0, PHP 5)
121object apache_lookup_uri(string $filename) |Perform a partial request for the specified URI and return all info about it (PHP 4, PHP 5)
122string apache_note(string $note_name [, string $note_value=""]) |Get and set apache request notes (PHP 4, PHP 5)
123array apache_request_headers() |Fetch all HTTP request headers (PHP 4 >= 4.3.0, PHP 5)
124bool apache_reset_timeout() |Reset the Apache write timer (PHP 5 >= 5.1.0)
125array apache_response_headers() |Fetch all HTTP response headers (PHP 4 >= 4.3.0, PHP 5)
126bool apache_setenv(string $variable, string $value [, bool $walk_to_top=false]) |Set an Apache subprocess_env variable (PHP 4 >= 4.2.0, PHP 5)
127bool apc_add(string $key [, mixed $var [, int $ttl=0]]) |Cache a new variable in the data store (PECL apc >= 3.0.13)
128string apc_bin_dump( [array $files [, array $user_vars]]) |Get a binary dump of the given files and user variables (PECL apc >= 3.1.4)
129int apc_bin_dumpfile(array $files, array $user_vars, string $filename [, int $flags=0 [, resource $context]]) |Output a binary dump of cached files and user variables to a file (PECL apc >= 3.1.4)
130bool apc_bin_load(string $data [, int $flags=0]) |Load a binary dump into the APC file/user cache (PECL apc >= 3.1.4)
131bool apc_bin_loadfile(string $filename [, resource $context [, int $flags]]) |Load a binary dump from a file into the APC file/user cache (PECL apc >= 3.1.4)
132array apc_cache_info( [string $cache_type [, bool $limited=false]]) |Retrieves cached information from APC's data store (PECL apc >= 2.0.0)
133bool apc_cas(string $key, int $old, int $new) |Updates an old value with a new value (PECL apc >= 3.1.1)
134bool apc_clear_cache( [string $cache_type]) |Clears the APC cache (PECL apc >= 2.0.0)
135mixed apc_compile_file(string $filename [, bool $atomic=true]) |Stores a file in the bytecode cache, bypassing all filters. (PECL apc >= 3.0.13)
136int apc_dec(string $key [, int $step=1 [, bool& $success]]) |Decrease a stored number (PECL apc >= 3.1.1)
137bool apc_define_constants(string $key, array $constants [, bool $case_sensitive=true]) |Defines a set of constants for retrieval and mass-definition (PECL apc >= 3.0.0)
138mixed apc_delete_file(mixed $keys) |Deletes files from the opcode cache (PECL apc >= 3.1.1)
139mixed apc_delete(string $key) |Removes a stored variable from the cache (PECL apc >= 3.0.0)
140mixed apc_exists(mixed $keys) |Checks if APC key exists (PECL apc >= 3.1.4)
141mixed apc_fetch(mixed $key [, bool& $success]) |Fetch a stored variable from the cache (PECL apc >= 3.0.0)
142int apc_inc(string $key [, int $step=1 [, bool& $success]]) |Increase a stored number (PECL apc >= 3.1.1)
143bool apc_load_constants(string $key [, bool $case_sensitive=true]) |Loads a set of constants from the cache (PECL apc >= 3.0.0)
144array apc_sma_info( [bool $limited=false]) |Retrieves APC's Shared Memory Allocation information (PECL apc >= 2.0.0)
145bool apc_store(string $key, mixed $var [, int $ttl=0]) |Cache a variable in the data store (PECL apc >= 3.0.0)
146bool apd_breakpoint(int $debug_level) |Stops the interpreter and waits on a CR from the socket (PECL apd >= 0.2)
147array apd_callstack() |Returns the current call stack as an array (PECL apd 0.2-0.4)
148void apd_clunk(string $warning [, string $delimiter]) |Throw a warning and a callstack (PECL apd 0.2-0.4)
149bool apd_continue(int $debug_level) |Restarts the interpreter (PECL apd >= 0.2)
150void apd_croak(string $warning [, string $delimiter]) |Throw an error, a callstack and then exit (PECL apd 0.2-0.4)
151void apd_dump_function_table() |Outputs the current function table (Unknown)
152array apd_dump_persistent_resources() |Return all persistent resources as an array (PECL apd 0.2-0.4)
153array apd_dump_regular_resources() |Return all current regular resources as an array (PECL apd 0.2-0.4)
154bool apd_echo(string $output) |Echo to the debugging socket (PECL apd >= 0.2)
155array apd_get_active_symbols() |Get an array of the current variables names in the local scope (PECL apd 0.2)
156string apd_set_pprof_trace( [string $dump_directory [, string $fragment="pprof"]]) |Starts the session debugging (PECL apd >= 0.2)
157bool apd_set_session_trace_socket(string $tcp_server, int $socket_type, int $port, int $debug_level) |Starts the remote session debugging (PECL apd >= 0.2)
158void apd_set_session_trace(int $debug_level [, string $dump_directory]) |Starts the session debugging (PECL apd 0.2-0.4)
159void apd_set_session(int $debug_level) |Changes or sets the current debugging level (PECL apd 0.2-0.4)
160array array_change_key_case(array $input [, int $case=CASE_LOWER]) |Changes all keys in an array (PHP 4 >= 4.2.0, PHP 5)
161array array_chunk(array $input, int $size [, bool $preserve_keys=false]) |Split an array into chunks (PHP 4 >= 4.2.0, PHP 5)
162array array_combine(array $keys, array $values) |Creates an array by using one array for keys and another for its values (PHP 5)
163array array_count_values(array $input) |Counts all the values of an array (PHP 4, PHP 5)
164array array_diff_assoc(array $array1, array $array2 [, array $...]) |Computes the difference of arrays with additional index check (PHP 4 >= 4.3.0, PHP 5)
165array array_diff_key(array $array1, array $array2 [, array $...]) |Computes the difference of arrays using keys for comparison (PHP 5 >= 5.1.0)
166array array_diff_uassoc(array $array1, array $array2 [, array $...], callable $key_compare_func) |Computes the difference of arrays with additional index check which is performed by a user supplied callback function (PHP 5)
167array array_diff_ukey(array $array1, array $array2 [, array $...], callable $key_compare_func) |Computes the difference of arrays using a callback function on the keys for comparison (PHP 5 >= 5.1.0)
168array array_diff(array $array1, array $array2 [, array $...]) |Computes the difference of arrays (PHP 4 >= 4.0.1, PHP 5)
169array array_fill_keys(array $keys, mixed $value) |Fill an array with values, specifying keys (PHP 5 >= 5.2.0)
170array array_fill(int $start_index, int $num, mixed $value) |Fill an array with values (PHP 4 >= 4.2.0, PHP 5)
171array array_filter(array $input [, callable $callback=""]) |Filters elements of an array using a callback function (PHP 4 >= 4.0.6, PHP 5)
172array array_flip(array $trans) |Exchanges all keys with their associated values in an array (PHP 4, PHP 5)
173array array_intersect_assoc(array $array1, array $array2 [, array $...]) |Computes the intersection of arrays with additional index check (PHP 4 >= 4.3.0, PHP 5)
174array array_intersect_key(array $array1, array $array2 [, array $...]) |Computes the intersection of arrays using keys for comparison (PHP 5 >= 5.1.0)
175array array_intersect_uassoc(array $array1, array $array2 [, array $...], callable $key_compare_func) |Computes the intersection of arrays with additional index check, compares indexes by a callback function (PHP 5)
176array array_intersect_ukey(array $array1, array $array2 [, array $...], callable $key_compare_func) |Computes the intersection of arrays using a callback function on the keys for comparison (PHP 5 >= 5.1.0)
177array array_intersect(array $array1, array $array2 [, array $...]) |Computes the intersection of arrays (PHP 4 >= 4.0.1, PHP 5)
178bool array_key_exists(mixed $key, array $search) |Checks if the given key or index exists in the array (PHP 4 >= 4.0.7, PHP 5)
179array array_keys(array $input [, mixed $search_value= NULL [, bool $strict=false]]) |Return all the keys or a subset of the keys of an array (PHP 4, PHP 5)
180array array_map(callable $callback, array $arr1 [, array $...]) |Applies the callback to the elements of the given arrays (PHP 4 >= 4.0.6, PHP 5)
181array array_merge_recursive(array $array1 [, array $...]) |Merge two or more arrays recursively (PHP 4 >= 4.0.1, PHP 5)
182array array_merge(array $array1 [, array $...]) |Merge one or more arrays (PHP 4, PHP 5)
183bool array_multisort(array& $arr [, mixed $arg=SORT_ASC [, mixed $arg=SORT_REGULAR [, mixed $...]]]) |Sort multiple or multi-dimensional arrays (PHP 4, PHP 5)
184array array_pad(array $input, int $pad_size, mixed $pad_value) |Pad array to the specified length with a value (PHP 4, PHP 5)
185mixed array_pop(array& $array) |Pop the element off the end of array (PHP 4, PHP 5)
186number array_product(array $array) |Calculate the product of values in an array (PHP 5 >= 5.1.0)
187int array_push(array& $array, mixed $var [, mixed $...]) |Push one or more elements onto the end of array (PHP 4, PHP 5)
188mixed array_rand(array $input [, int $num_req=1]) |Pick one or more random entries out of an array (PHP 4, PHP 5)
189mixed array_reduce(array $input, callable $function [, mixed $initial= NULL]) |Iteratively reduce the array to a single value using a callback function (PHP 4 >= 4.0.5, PHP 5)
190array array_replace_recursive(array $array, array $array1 [, array $...]) |Replaces elements from passed arrays into the first array recursively (PHP 5 >= 5.3.0)
191array array_replace(array $array, array $array1 [, array $...]) |Replaces elements from passed arrays into the first array (PHP 5 >= 5.3.0)
192array array_reverse(array $array [, bool $preserve_keys=false]) |Return an array with elements in reverse order (PHP 4, PHP 5)
193mixed array_search(mixed $needle, array $haystack [, bool $strict=false]) |Searches the array for a given value and returns the corresponding key if successful (PHP 4 >= 4.0.5, PHP 5)
194mixed array_shift(array& $array) |Shift an element off the beginning of array (PHP 4, PHP 5)
195array array_slice(array $array, int $offset [, int $length= NULL [, bool $preserve_keys=false]]) |Extract a slice of the array (PHP 4, PHP 5)
196array array_splice(array& $input, int $offset [, int $length=0 [, mixed $replacement]]) |Remove a portion of the array and replace it with something else (PHP 4, PHP 5)
197number array_sum(array $array) |Calculate the sum of values in an array (PHP 4 >= 4.0.4, PHP 5)
198array array_udiff_assoc(array $array1, array $array2 [, array $...], callable $data_compare_func) |Computes the difference of arrays with additional index check, compares data by a callback function (PHP 5)
199array array_udiff_uassoc(array $array1, array $array2 [, array $...], callable $data_compare_func, callable $key_compare_func) |Computes the difference of arrays with additional index check, compares data and indexes by a callback function (PHP 5)
200array array_udiff(array $array1, array $array2 [, array $...], callable $data_compare_func) |Computes the difference of arrays by using a callback function for data comparison (PHP 5)
201array array_uintersect_assoc(array $array1, array $array2 [, array $...], callable $data_compare_func) |Computes the intersection of arrays with additional index check, compares data by a callback function (PHP 5)
202array array_uintersect_uassoc(array $array1, array $array2 [, array $...], callable $data_compare_func, callable $key_compare_func) |Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions (PHP 5)
203array array_uintersect(array $array1, array $array2 [, array $...], callable $data_compare_func) |Computes the intersection of arrays, compares data by a callback function (PHP 5)
204array array_unique(array $array [, int $sort_flags=SORT_STRING]) |Removes duplicate values from an array (PHP 4 >= 4.0.1, PHP 5)
205int array_unshift(array& $array, mixed $var [, mixed $...]) |Prepend one or more elements to the beginning of an array (PHP 4, PHP 5)
206array array_values(array $input) |Return all the values of an array (PHP 4, PHP 5)
207bool array_walk_recursive(array& $input, callable $funcname [, mixed $userdata= NULL]) |Apply a user function recursively to every member of an array (PHP 5)
208bool array_walk(array& $array, callable $funcname [, mixed $userdata= NULL]) |Apply a user function to every member of an array (PHP 4, PHP 5)
209array array( [mixed $...]) |Create an array (PHP 4, PHP 5)
210bool arsort(array& $array [, int $sort_flags=SORT_REGULAR]) |Sort an array in reverse order and maintain index association (PHP 4, PHP 5)
211float asin(float $arg) |Arc sine (PHP 4, PHP 5)
212float asinh(float $arg) |Inverse hyperbolic sine (PHP 4 >= 4.1.0, PHP 5)
213bool asort(array& $array [, int $sort_flags=SORT_REGULAR]) |Sort an array and maintain index association (PHP 4, PHP 5)
214mixed assert_options(int $what [, mixed $value]) |Set/get the various assert flags (PHP 4, PHP 5)
215bool assert(mixed $assertion [, string $description]) |Checks if assertion is FALSE (PHP 4, PHP 5)
216float atan(float $arg) |Arc tangent (PHP 4, PHP 5)
217float atan2(float $y, float $x) |Arc tangent of two variables (PHP 4, PHP 5)
218float atanh(float $arg) |Inverse hyperbolic tangent (PHP 4 >= 4.1.0, PHP 5)
219void __autoload(string $class) |Attempt to load undefined class (No version information available, might only be in SVN)
220string base_convert(string $number, int $frombase, int $tobase) |Convert a number between arbitrary bases (PHP 4, PHP 5)
221string base64_decode(string $data [, bool $strict=false]) |Decodes data encoded with MIME base64 (PHP 4, PHP 5)
222string base64_encode(string $data) |Encodes data with MIME base64 (PHP 4, PHP 5)
223string basename(string $path [, string $suffix]) |Returns trailing name component of path (PHP 4, PHP 5)
224bool bbcode_add_element(resource $bbcode_container, string $tag_name, array $tag_rules) |Adds a bbcode element (PECL bbcode >= 0.9.0)
225bool bbcode_add_smiley(resource $bbcode_container, string $smiley, string $replace_by) |Adds a smiley to the parser (PECL bbcode >= 0.10.2)
226resource bbcode_create( [array $bbcode_initial_tags]) |Create a BBCode Resource (PECL bbcode >= 0.9.0)
227bool bbcode_destroy(resource $bbcode_container) |Close BBCode_container resource (PECL bbcode >= 0.9.0)
228string bbcode_parse(resource $bbcode_container, string $to_parse) |Parse a string following a given rule set (PECL bbcode >= 0.9.0)
229bool bbcode_set_arg_parser(resource $bbcode_container, resource $bbcode_arg_parser) |Attach another parser in order to use another rule set for argument parsing (PECL bbcode >= 0.10.2)
230bool bbcode_set_flags(resource $bbcode_container, int $flags [, int $mode=BBCODE_SET_FLAGS_SET]) |Set or alter parser options (PECL bbcode >= 0.10.2)
231string bcadd(string $left_operand, string $right_operand [, int $scale]) |Add two arbitrary precision numbers (PHP 4, PHP 5)
232int bccomp(string $left_operand, string $right_operand [, int $scale]) |Compare two arbitrary precision numbers (PHP 4, PHP 5)
233string bcdiv(string $left_operand, string $right_operand [, int $scale]) |Divide two arbitrary precision numbers (PHP 4, PHP 5)
234string bcmod(string $left_operand, string $modulus) |Get modulus of an arbitrary precision number (PHP 4, PHP 5)
235string bcmul(string $left_operand, string $right_operand [, int $scale]) |Multiply two arbitrary precision number (PHP 4, PHP 5)
236bool bcompiler_load_exe(string $filename) |Reads and creates classes from a bcompiler exe file (PECL bcompiler >= 0.4)
237bool bcompiler_load(string $filename) |Reads and creates classes from a bz compressed file (PECL bcompiler >= 0.4)
238bool bcompiler_parse_class(string $class, string $callback) |Reads the bytecodes of a class and calls back to a user function (PECL bcompiler >= 0.4)
239bool bcompiler_read(resource $filehandle) |Reads and creates classes from a filehandle (PECL bcompiler >= 0.4)
240bool bcompiler_write_class(resource $filehandle, string $className [, string $extends]) |Writes a defined class as bytecodes (PECL bcompiler >= 0.4)
241bool bcompiler_write_constant(resource $filehandle, string $constantName) |Writes a defined constant as bytecodes (PECL bcompiler >= 0.5)
242bool bcompiler_write_exe_footer(resource $filehandle, int $startpos) |Writes the start pos, and sig to the end of a exe type file (PECL bcompiler >= 0.4)
243bool bcompiler_write_file(resource $filehandle, string $filename) |Writes a php source file as bytecodes (PECL bcompiler >= 0.6)
244bool bcompiler_write_footer(resource $filehandle) |Writes the single character \x00 to indicate End of compiled data (PECL bcompiler >= 0.4)
245bool bcompiler_write_function(resource $filehandle, string $functionName) |Writes a defined function as bytecodes (PECL bcompiler >= 0.5)
246bool bcompiler_write_functions_from_file(resource $filehandle, string $fileName) |Writes all functions defined in a file as bytecodes (PECL bcompiler >= 0.5)
247bool bcompiler_write_header(resource $filehandle [, string $write_ver]) |Writes the bcompiler header (PECL bcompiler >= 0.3)
248bool bcompiler_write_included_filename(resource $filehandle, string $filename) |Writes an included file as bytecodes (PECL bcompiler >= 0.5)
249string bcpow(string $left_operand, string $right_operand [, int $scale]) |Raise an arbitrary precision number to another (PHP 4, PHP 5)
250string bcpowmod(string $left_operand, string $right_operand, string $modulus [, int $scale]) |Raise an arbitrary precision number to another, reduced by a specified modulus (PHP 5)
251bool bcscale(int $scale) |Set default scale parameter for all bc math functions (PHP 4, PHP 5)
252string bcsqrt(string $operand [, int $scale]) |Get the square root of an arbitrary precision number (PHP 4, PHP 5)
253string bcsub(string $left_operand, string $right_operand [, int $scale]) |Subtract one arbitrary precision number from another (PHP 4, PHP 5)
254string bin2hex(string $str) |Convert binary data into hexadecimal representation (PHP 4, PHP 5)
255string bind_textdomain_codeset(string $domain, string $codeset) |Specify the character encoding in which the messages from the DOMAIN message catalog will be returned (PHP 4 >= 4.2.0, PHP 5)
256number bindec(string $binary_string) |Binary to decimal (PHP 4, PHP 5)
257string bindtextdomain(string $domain, string $directory) |Sets the path for a domain (PHP 4, PHP 5)
258boolean boolval(mixed $var) |Get the boolean value of a variable (PHP 5 >= 5.5.0)
259array bson_decode(string $bson) |Deserializes a BSON object into a PHP array (PECL mongo >=1.0.1)
260string bson_encode(mixed $anything) |Serializes a PHP variable into a BSON string (PECL mongo >=1.0.1)
261int bzclose(resource $bz) |Close a bzip2 file (PHP 4 >= 4.0.4, PHP 5)
262mixed bzcompress(string $source [, int $blocksize=4 [, int $workfactor=0]]) |Compress a string into bzip2 encoded data (PHP 4 >= 4.0.4, PHP 5)
263mixed bzdecompress(string $source [, int $small=0]) |Decompresses bzip2 encoded data (PHP 4 >= 4.0.4, PHP 5)
264int bzerrno(resource $bz) |Returns a bzip2 error number (PHP 4 >= 4.0.4, PHP 5)
265array bzerror(resource $bz) |Returns the bzip2 error number and error string in an array (PHP 4 >= 4.0.4, PHP 5)
266string bzerrstr(resource $bz) |Returns a bzip2 error string (PHP 4 >= 4.0.4, PHP 5)
267int bzflush(resource $bz) |Force a write of all buffered data (PHP 4 >= 4.0.4, PHP 5)
268resource bzopen(string $filename, string $mode) |Opens a bzip2 compressed file (PHP 4 >= 4.0.4, PHP 5)
269string bzread(resource $bz [, int $length=1024]) |Binary safe bzip2 file read (PHP 4 >= 4.0.4, PHP 5)
270int bzwrite(resource $bz, string $data [, int $length]) |Binary safe bzip2 file write (PHP 4 >= 4.0.4, PHP 5)
271CairoContext cairo_create(CairoSurface $surface) |Returns a new CairoContext object on the requested surface. (PECL cairo >= 0.1.0)
272int cairo_font_face_get_type(CairoFontFace $fontface) |Description (PECL cairo >= 0.1.0)
273intcairo_font_face_status(CairoFontFace $fontface) |Description (PECL cairo >= 0.1.0)
274CairoFontOptions cairo_font_options_create() |Description (PECL cairo >= 0.1.0)
275bool cairo_font_options_equal(CairoFontOptions $options, CairoFontOptions $other) |Description (PECL cairo >= 0.1.0)
276int cairo_font_options_get_antialias(CairoFontOptions $options) |Description (PECL cairo >= 0.1.0)
277int cairo_font_options_get_hint_metrics(CairoFontOptions $options) |Description (PECL cairo >= 0.1.0)
278int cairo_font_options_get_hint_style(CairoFontOptions $options) |Description (PECL cairo >= 0.1.0)
279int cairo_font_options_get_subpixel_order(CairoFontOptions $options) |Description (PECL cairo >= 0.1.0)
280int cairo_font_options_hash(CairoFontOptions $options) |Description (PECL cairo >= 0.1.0)
281void cairo_font_options_merge(CairoFontOptions $options, CairoFontOptions $other) |Description (PECL cairo >= 0.1.0)
282void cairo_font_options_set_antialias(CairoFontOptions $options, int $antialias) |Description (PECL cairo >= 0.1.0)
283void cairo_font_options_set_hint_metrics(CairoFontOptions $options, int $hint_metrics) |Description (PECL cairo >= 0.1.0)
284void cairo_font_options_set_hint_style(CairoFontOptions $options, int $hint_style) |Description (PECL cairo >= 0.1.0)
285void cairo_font_options_set_subpixel_order(CairoFontOptions $options, int $subpixel_order) |Description (PECL cairo >= 0.1.0)
286int cairo_font_options_status(CairoFontOptions $options) |Description (PECL cairo >= 0.1.0)
287int cairo_format_stride_for_width(int $format, int $width) |Description (PECL cairo >= 0.1.0)
288CairoImageSurface cairo_image_surface_create_for_data(string $data, int $format, int $width, int $height [, int $stride=-1]) |Description (PECL cairo >= 0.1.0)
289CairoImageSurface cairo_image_surface_create_from_png(string $file) |Description (PECL cairo >= 0.1.0)
290CairoImageSurface cairo_image_surface_create(int $format, int $width, int $height) |Description (PECL cairo >= 0.1.0)
291string cairo_image_surface_get_data(CairoImageSurface $surface) |Description (PECL cairo >= 0.1.0)
292int cairo_image_surface_get_format(CairoImageSurface $surface) |Description (PECL cairo >= 0.1.0)
293int cairo_image_surface_get_height(CairoImageSurface $surface) |Description (PECL cairo >= 0.1.0)
294int cairo_image_surface_get_stride(CairoImageSurface $surface) |Description (PECL cairo >= 0.1.0)
295int cairo_image_surface_get_width(CairoImageSurface $surface) |Description (PECL cairo >= 0.1.0)
296void cairo_matrix_invert(CairoMatrix $matrix) |Description (PECL cairo >= 0.1.0)
297CairoMatrix cairo_matrix_multiply(CairoMatrix $matrix1, CairoMatrix $matrix2) |Description (PECL cairo >= 0.1.0)
298void cairo_matrix_rotate(CairoMatrix $matrix, float $radians) |Description (PECL cairo >= 0.1.0)
299array cairo_matrix_transform_distance(CairoMatrix $matrix, float $dx, float $dy) |Description (PECL cairo >= 0.1.0)
300array cairo_matrix_transform_point(CairoMatrix $matrix, float $dx, float $dy) |Description (PECL cairo >= 0.1.0)
301void cairo_matrix_translate(CairoMatrix $matrix, float $tx, float $ty) |Description (PECL cairo >= 0.1.0)
302void cairo_pattern_add_color_stop_rgb(CairoGradientPattern $pattern, float $offset, float $red, float $green, float $blue) |Description (PECL cairo >= 0.1.0)
303void cairo_pattern_add_color_stop_rgba(CairoGradientPattern $pattern, float $offset, float $red, float $green, float $blue, float $alpha) |Description (PECL cairo >= 0.1.0)
304CairoPattern cairo_pattern_create_for_surface(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
305CairoPattern cairo_pattern_create_linear(float $x0, float $y0, float $x1, float $y1) |Description (PECL cairo >= 0.1.0)
306CairoPattern cairo_pattern_create_radial(float $x0, float $y0, float $r0, float $x1, float $y1, float $r1) |Description (PECL cairo >= 0.1.0)
307CairoPattern cairo_pattern_create_rgb(float $red, float $green, float $blue) |Description (PECL cairo >= 0.1.0)
308CairoPattern cairo_pattern_create_rgba(float $red, float $green, float $blue, float $alpha) |Description (PECL cairo >= 0.1.0)
309int cairo_pattern_get_color_stop_count(CairoGradientPattern $pattern) |Description (PECL cairo >= 0.1.0)
310array cairo_pattern_get_color_stop_rgba(CairoGradientPattern $pattern, int $index) |Description (PECL cairo >= 0.1.0)
311int cairo_pattern_get_extend(string $pattern) |Description (PECL cairo >= 0.1.0)
312int cairo_pattern_get_filter(CairoSurfacePattern $pattern) |Description (PECL cairo >= 0.1.0)
313array cairo_pattern_get_linear_points(CairoLinearGradient $pattern) |Description (PECL cairo >= 0.1.0)
314CairoMatrix cairo_pattern_get_matrix(CairoPattern $pattern) |Description (PECL cairo >= 0.1.0)
315array cairo_pattern_get_radial_circles(CairoRadialGradient $pattern) |Description (PECL cairo >= 0.1.0)
316array cairo_pattern_get_rgba(CairoSolidPattern $pattern) |Description (PECL cairo >= 0.1.0)
317CairoSurface cairo_pattern_get_surface(CairoSurfacePattern $pattern) |Description (PECL cairo >= 0.1.0)
318int cairo_pattern_get_type(CairoPattern $pattern) |Description (PECL cairo >= 0.1.0)
319void cairo_pattern_set_extend(string $pattern, string $extend) |Description (PECL cairo >= 0.1.0)
320void cairo_pattern_set_filter(CairoSurfacePattern $pattern, int $filter) |Description (PECL cairo >= 0.1.0)
321void cairo_pattern_set_matrix(CairoPattern $pattern, CairoMatrix $matrix) |Description (PECL cairo >= 0.1.0)
322int cairo_pattern_status(CairoPattern $pattern) |Description (PECL cairo >= 0.1.0)
323CairoPdfSurface cairo_pdf_surface_create(string $file, float $width, float $height) |Description (PECL cairo >= 0.1.0)
324void cairo_pdf_surface_set_size(CairoPdfSurface $surface, float $width, float $height) |Description (PECL cairo >= 0.1.0)
325array cairo_ps_get_levels() |Description (PECL cairo >= 0.1.0)
326string cairo_ps_level_to_string(int $level) |Description (PECL cairo >= 0.1.0)
327CairoPsSurface cairo_ps_surface_create(string $file, float $width, float $height) |Description (PECL cairo >= 0.1.0)
328void cairo_ps_surface_dsc_begin_page_setup(CairoPsSurface $surface) |Description (PECL cairo >= 0.1.0)
329void cairo_ps_surface_dsc_begin_setup(CairoPsSurface $surface) |Description (PECL cairo >= 0.1.0)
330void cairo_ps_surface_dsc_comment(CairoPsSurface $surface, string $comment) |Description (PECL cairo >= 0.1.0)
331bool cairo_ps_surface_get_eps(CairoPsSurface $surface) |Description (PECL cairo >= 0.1.0)
332void cairo_ps_surface_restrict_to_level(CairoPsSurface $surface, int $level) |Description (PECL cairo >= 0.1.0)
333void cairo_ps_surface_set_eps(CairoPsSurface $surface, bool $level) |Description (PECL cairo >= 0.1.0)
334void cairo_ps_surface_set_size(CairoPsSurface $surface, float $width, float $height) |Description (PECL cairo >= 0.1.0)
335CairoScaledFont cairo_scaled_font_create(CairoFontFace $fontface, CairoMatrix $matrix, CairoMatrix $ctm, CairoFontOptions $fontoptions) |Description (PECL cairo >= 0.1.0)
336array cairo_scaled_font_extents(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
337CairoMatrix cairo_scaled_font_get_ctm(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
338CairoFontFace cairo_scaled_font_get_font_face(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
339CairoFontOptions cairo_scaled_font_get_font_matrix(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
340CairoFontOptions cairo_scaled_font_get_font_options(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
341CairoMatrix cairo_scaled_font_get_scale_matrix(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
342int cairo_scaled_font_get_type(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
343array cairo_scaled_font_glyph_extents(CairoScaledFont $scaledfont, array $glyphs) |Description (PECL cairo >= 0.1.0)
344int cairo_scaled_font_status(CairoScaledFont $scaledfont) |Description (PECL cairo >= 0.1.0)
345array cairo_scaled_font_text_extents(CairoScaledFont $scaledfont, string $text) |Description (PECL cairo >= 0.1.0)
346void cairo_surface_copy_page(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
347CairoSurface cairo_surface_create_similar(CairoSurface $surface, int $content, float $width, float $height) |Description (PECL cairo >= 0.1.0)
348void cairo_surface_finish(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
349void cairo_surface_flush(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
350int cairo_surface_get_content(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
351array cairo_surface_get_device_offset(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
352CairoFontOptions cairo_surface_get_font_options(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
353int cairo_surface_get_type(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
354void cairo_surface_mark_dirty_rectangle(CairoSurface $surface, float $x, float $y, float $width, float $height) |Description (PECL cairo >= 0.1.0)
355void cairo_surface_mark_dirty(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
356void cairo_surface_set_device_offset(CairoSurface $surface, float $x, float $y) |Description (PECL cairo >= 0.1.0)
357void cairo_surface_set_fallback_resolution(CairoSurface $surface, float $x, float $y) |Description (PECL cairo >= 0.1.0)
358void cairo_surface_show_page(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
359int cairo_surface_status(CairoSurface $surface) |Description (PECL cairo >= 0.1.0)
360void cairo_surface_write_to_png(CairoSurface $surface, resource $stream) |Description (PECL cairo >= 0.1.0)
361CairoSvgSurface cairo_svg_surface_create(string $file, float $width, float $height) |Description (PECL cairo >= 0.1.0)
362void cairo_svg_surface_restrict_to_version(CairoSvgSurface $surface, int $version) |Description (PECL cairo >= 0.1.0)
363string cairo_svg_version_to_string(int $version) |Description (PECL cairo >= 0.1.0)
364int cal_days_in_month(int $calendar, int $month, int $year) |Return the number of days in a month for a given year and calendar (PHP 4 >= 4.1.0, PHP 5)
365array cal_from_jd(int $jd, int $calendar) |Converts from Julian Day Count to a supported calendar (PHP 4 >= 4.1.0, PHP 5)
366array cal_info( [int $calendar=-1]) |Returns information about a particular calendar (PHP 4 >= 4.1.0, PHP 5)
367int cal_to_jd(int $calendar, int $month, int $day, int $year) |Converts from a supported calendar to Julian Day Count (PHP 4 >= 4.1.0, PHP 5)
368string calcul_hmac(string $clent, string $siretcode, string $price, string $reference, string $validity, string $taxation, string $devise, string $language) |Obtain a hmac key (needs 8 arguments) (PECL spplus >= 1.0.0)
369string calculhmac(string $clent, string $data) |Obtain a hmac key (needs 2 arguments) (PECL spplus >= 1.0.0)
370mixed call_user_func_array(callable $callback, array $param_arr) |Call a callback with an array of parameters (PHP 4 >= 4.0.4, PHP 5)
371mixed call_user_func(callable $callback [, mixed $parameter [, mixed $...]]) |Call the callback given by the first parameter (PHP 4, PHP 5)
372mixed call_user_method_array(string $method_name, object& $obj, array $params) |Call a user method given with an array of parameters [deprecated] (PHP 4 >= 4.0.5, PHP 5)
373mixed call_user_method(string $method_name, object& $obj [, mixed $parameter [, mixed $...]]) |Call a user method on an specific object [deprecated] (PHP 4, PHP 5)
374float ceil(float $value) |Round fractions up (PHP 4, PHP 5)
375bool chdb_create(string $pathname, array $data) |Creates a chdb file (PECL chdb >= 0.1.0)
376bool chdir(string $directory) |Change directory (PHP 4, PHP 5)
377bool checkdate(int $month, int $day, int $year) |Validate a Gregorian date (PHP 4, PHP 5)
378bool checkdnsrr(string $host [, string $type="MX"]) |Check DNS records corresponding to a given Internet host name or IP address (PHP 4, PHP 5)
379bool chgrp(string $filename, mixed $group) |Changes file group (PHP 4, PHP 5)
380bool chmod(string $filename, int $mode) |Changes file mode (PHP 4, PHP 5)
381bool chown(string $filename, mixed $user) |Changes file owner (PHP 4, PHP 5)
382string chr(int $ascii) |Return a specific character (PHP 4, PHP 5)
383bool chroot(string $directory) |Change the root directory (PHP 4 >= 4.0.5, PHP 5)
384string chunk_split(string $body [, int $chunklen=76 [, string $end="\r\n"]]) |Split a string into smaller chunks (PHP 4, PHP 5)
385bool class_alias(string $original, string $alias [, bool $autoload= TRUE]) |Creates an alias for a class (PHP 5 >= 5.3.0)
386bool class_exists(string $class_name [, bool $autoload=true]) |Checks if the class has been defined (PHP 4, PHP 5)
387array class_implements(mixed $class [, bool $autoload=true]) |Return the interfaces which are implemented by the given class (PHP 5 >= 5.1.0)
388array class_parents(mixed $class [, bool $autoload=true]) |Return the parent classes of the given class (PHP 5 >= 5.1.0)
389array class_uses(mixed $class [, bool $autoload=true]) |Return the traits used by the given class (PHP 5 >= 5.4.0)
390array classkit_import(string $filename) |Import new class method definitions from a file (PECL classkit >= 0.3)
391bool classkit_method_add(string $classname, string $methodname, string $args, string $code [, int $flags=CLASSKIT_ACC_PUBLIC]) |Dynamically adds a new method to a given class (PECL classkit >= 0.1)
392bool classkit_method_copy(string $dClass, string $dMethod, string $sClass [, string $sMethod]) |Copies a method from class to another (PECL classkit >= 0.2)
393bool classkit_method_redefine(string $classname, string $methodname, string $args, string $code [, int $flags=CLASSKIT_ACC_PUBLIC]) |Dynamically changes the code of the given method (PECL classkit >= 0.1)
394bool classkit_method_remove(string $classname, string $methodname) |Dynamically removes the given method (PECL classkit >= 0.1)
395bool classkit_method_rename(string $classname, string $methodname, string $newname) |Dynamically changes the name of the given method (PECL classkit >= 0.1)
396void clearstatcache( [bool $clear_realpath_cache=false [, string $filename]]) |Clears file status cache (PHP 4, PHP 5)
397void closedir( [resource $dir_handle]) |Close directory handle (PHP 4, PHP 5)
398bool closelog() |Close connection to system logger (PHP 4, PHP 5)
399void com_addref() |Increases the components reference counter [deprecated] (PHP 4 >= 4.1.0)
400string com_create_guid() |Generate a globally unique identifier (GUID) (PHP 5)
401bool com_event_sink(variant $comobject, object $sinkobject [, mixed $sinkinterface]) |Connect events from a COM object to a PHP object (PHP 4 >= 4.2.0, PHP 5)
402variant com_get_active_object(string $progid [, int $code_page]) |Returns a handle to an already running instance of a COM object (PHP 5)
403mixed com_invoke(resource $com_object, string $function_name [, mixed $function_parameters]) |Calls a COM component's method [deprecated] (PHP 4)
404bool com_isenum(variant $com_module) |Indicates if a COM object has an IEnumVariant interface for iteration [deprecated] (PHP 4 >= 4.1.0)
405bool com_load_typelib(string $typelib_name [, bool $case_insensitive=true]) |Loads a Typelib (PHP 4 >= 4.1.0, PHP 5)
406bool com_message_pump( [int $timeoutms=0]) |Process COM messages, sleeping for up to timeoutms milliseconds (PHP 4 >= 4.2.0, PHP 5)
407bool com_print_typeinfo(object $comobject [, string $dispinterface [, bool $wantsink=false]]) |Print out a PHP class definition for a dispatchable interface (PHP 4 >= 4.2.0, PHP 5)
408void com_release() |Decreases the components reference counter [deprecated] (PHP 4 >= 4.1.0)
409array compact(mixed $varname [, mixed $...]) |Create array containing variables and their values (PHP 4, PHP 5)
410int connection_aborted() |Check whether client disconnected (PHP 4, PHP 5)
411int connection_status() |Returns connection status bitfield (PHP 4, PHP 5)
412int connection_timeout() |Check if the script timed out (PHP 4 <= 4.0.4)
413mixed constant(string $name) |Returns the value of a constant (PHP 4 >= 4.0.4, PHP 5)
414string convert_cyr_string(string $str, string $from, string $to) |Convert from one Cyrillic character set to another (PHP 4, PHP 5)
415string convert_uudecode(string $data) |Decode a uuencoded string (PHP 5)
416string convert_uuencode(string $data) |Uuencode a string (PHP 5)
417bool copy(string $source, string $dest [, resource $context]) |Copies file (PHP 4, PHP 5)
418float cos(float $arg) |Cosine (PHP 4, PHP 5)
419float cosh(float $arg) |Hyperbolic cosine (PHP 4 >= 4.1.0, PHP 5)
420mixed count_chars(string $string [, int $mode=0]) |Return information about characters used in a string (PHP 4, PHP 5)
421int count(mixed $var [, int $mode=COUNT_NORMAL]) |Count all elements in an array, or something in an object (PHP 4, PHP 5)
422bool crack_check(resource $dictionary, string $password) |Performs an obscure check with the given password (PECL crack >= 0.1)
423bool crack_closedict( [resource $dictionary]) |Closes an open CrackLib dictionary (PECL crack >= 0.1)
424string crack_getlastmessage() |Returns the message from the last obscure check (PECL crack >= 0.1)
425resource crack_opendict(string $dictionary) |Opens a new CrackLib dictionary (PECL crack >= 0.1)
426int crc32(string $str) |Calculates the crc32 polynomial of a string (PHP 4 >= 4.0.1, PHP 5)
427string create_function(string $args, string $code) |Create an anonymous (lambda-style) function (PHP 4 >= 4.0.1, PHP 5)
428string crypt(string $str [, string $salt]) |One-way string hashing (PHP 4, PHP 5)
429bool ctype_alnum(string $text) |Check for alphanumeric character(s) (PHP 4 >= 4.0.4, PHP 5)
430bool ctype_alpha(string $text) |Check for alphabetic character(s) (PHP 4 >= 4.0.4, PHP 5)
431bool ctype_cntrl(string $text) |Check for control character(s) (PHP 4 >= 4.0.4, PHP 5)
432bool ctype_digit(string $text) |Check for numeric character(s) (PHP 4 >= 4.0.4, PHP 5)
433bool ctype_graph(string $text) |Check for any printable character(s) except space (PHP 4 >= 4.0.4, PHP 5)
434bool ctype_lower(string $text) |Check for lowercase character(s) (PHP 4 >= 4.0.4, PHP 5)
435bool ctype_print(string $text) |Check for printable character(s) (PHP 4 >= 4.0.4, PHP 5)
436bool ctype_punct(string $text) |Check for any printable character which is not whitespace or an alphanumeric character (PHP 4 >= 4.0.4, PHP 5)
437bool ctype_space(string $text) |Check for whitespace character(s) (PHP 4 >= 4.0.4, PHP 5)
438bool ctype_upper(string $text) |Check for uppercase character(s) (PHP 4 >= 4.0.4, PHP 5)
439bool ctype_xdigit(string $text) |Check for character(s) representing a hexadecimal digit (PHP 4 >= 4.0.4, PHP 5)
440int cubrid_affected_rows( [resource $conn_identifier]) |Return the number of rows affected by the last SQL statement (PECL CUBRID >= 8.3.0)
441bool cubrid_bind(resource $req_identifier, int $bind_index, mixed $bind_value [, string $bind_value_type]) |Bind variables to a prepared statement as parameters (PECL CUBRID >= 8.3.0)
442string cubrid_client_encoding( [resource $conn_identifier]) |Return the current CUBRID connection charset (PECL CUBRID >= 8.3.1)
443bool cubrid_close_prepare(resource $req_identifier) |Close the request handle (PECL CUBRID >= 8.3.0)
444bool cubrid_close_request(resource $req_identifier) |Close the request handle (PECL CUBRID >= 8.3.0)
445bool cubrid_close( [resource $conn_identifier]) |Close CUBRID connection (PECL CUBRID >= 8.3.1)
446array cubrid_col_get(resource $conn_identifier, string $oid, string $attr_name) |Get contents of collection type column using OID (PECL CUBRID >= 8.3.0)
447int cubrid_col_size(resource $conn_identifier, string $oid, string $attr_name) |Get the number of elements in collection type column using OID (PECL CUBRID >= 8.3.0)
448array cubrid_column_names(resource $req_identifier) |Get the column names in result (PECL CUBRID >= 8.3.0)
449array cubrid_column_types(resource $req_identifier) |Get column types in result (PECL CUBRID >= 8.3.0)
450bool cubrid_commit(resource $conn_identifier) |Commit a transaction (PECL CUBRID >= 8.3.0)
451resource cubrid_connect_with_url(string $conn_url [, string $userid [, string $passwd [, bool $new_link=false]]]) |Establish the environment for connecting to CUBRID server (PECL CUBRID >= 8.3.1)
452resource cubrid_connect(string $host, int $port, string $dbname [, string $userid [, string $passwd [, bool $new_link=false]]]) |Open a connection to a CUBRID Server (PECL CUBRID >= 8.3.1)
453string cubrid_current_oid(resource $req_identifier) |Get OID of the current cursor location (PECL CUBRID >= 8.3.0)
454bool cubrid_data_seek(resource $result, int $row_number) |Move the internal row pointer of the CUBRID result (PECL CUBRID >= 8.3.0)
455string cubrid_db_name(array $result, int $index) |Get db name from results of cubrid_list_dbs (PECL CUBRID >= 8.3.1)
456bool cubrid_disconnect( [resource $conn_identifier]) |Close a database connection (PECL CUBRID >= 8.3.0)
457bool cubrid_drop(resource $conn_identifier, string $oid) |Delete an instance using OID (PECL CUBRID >= 8.3.0)
458int cubrid_errno( [resource $conn_identifier]) |Return the numerical value of the error message from previous CUBRID operation (PECL CUBRID >= 8.3.1)
459int cubrid_error_code_facility() |Get the facility code of error (PECL CUBRID >= 8.3.0)
460int cubrid_error_code() |Get error code for the most recent function call (PECL CUBRID >= 8.3.0)
461string cubrid_error_msg() |Get last error message for the most recent function call (PECL CUBRID >= 8.3.0)
462string cubrid_error( [resource $connection]) |Get the error message (PECL CUBRID >= 8.3.1)
463resource cubrid_execute(resource $conn_identifier, string $sql [, int $option]) |Execute a prepared SQL statement (PECL CUBRID >= 8.3.0)
464array cubrid_fetch_array(resource $result [, int $type=CUBRID_BOTH]) |Fetch a result row as an associative array, a numeric array, or both (PECL CUBRID >=8.3.0)
465array cubrid_fetch_assoc(resource $result [, int $type]) |Return the associative array that corresponds to the fetched row (PECL CUBRID >= 8.3.0)
466object cubrid_fetch_field(resource $result [, int $field_offset=0]) |Get column information from a result and return as an object (PECL CUBRID >= 8.3.1)
467array cubrid_fetch_lengths(resource $result) |Return an array with the lengths of the values of each field from the current row (PECL CUBRID >= 8.3.0)
468object cubrid_fetch_object(resource $result [, string $class_name [, array $params [, int $type]]]) |Fetche the next row and returns it as an object (PECL CUBRID >= 8.3.0)
469array cubrid_fetch_row(resource $result [, int $type]) |Return a numerical array with the values of the current row (PECL CUBRID >= 8.3.0)
470mixed cubrid_fetch(resource $result [, int $type=CUBRID_BOTH]) |Fetch the next row from a result set (PECL CUBRID >= 8.3.0)
471string cubrid_field_flags(resource $result, int $field_offset) |Return a string with the flags of the given field offset (PECL CUBRID >= 8.3.0)
472int cubrid_field_len(resource $result, int $field_offset) |Get the maximum length of the specified field (PECL CUBRID >= 8.3.0)
473string cubrid_field_name(resource $result, int $field_offset) |Return the name of the specified field index (PECL CUBRID >= 8.3.0)
474bool cubrid_field_seek(resource $result [, int $field_offset=0]) |Move the result set cursor to the specified field offset (PECL CUBRID >= 8.3.0)
475string cubrid_field_table(resource $result, int $field_offset) |Return the name of the table of the specified field (PECL CUBRID >= 8.3.0)
476string cubrid_field_type(resource $result, int $field_offset) |Return the type of the column corresponding to the given field offset (PECL CUBRID >= 8.3.0)
477bool cubrid_free_result(resource $req_identifier) |Free the memory occupied by the result data (PECL CUBRID >= 8.3.0)
478bool cubrid_get_autocommit(resource $conn_identifier) |Get auto-commit mode of the connection (PECL CUBRID >= 8.4.0)
479string cubrid_get_charset(resource $conn_identifier) |Return the current CUBRID connection charset (PECL CUBRID >= 8.3.0)
480string cubrid_get_class_name(resource $conn_identifier, string $oid) |Get the class name using OID (PECL CUBRID >= 8.3.0)
481string cubrid_get_client_info() |Return the client library version (PECL CUBRID >= 8.3.0)
482array cubrid_get_db_parameter(resource $conn_identifier) |Returns the CUBRID database parameters (PECL CUBRID >= 8.3.0)
483int cubrid_get_query_timeout(resource $req_identifier) |Get the query timeout value of the request (PECL CUBRID >= 8.4.1)
484string cubrid_get_server_info(resource $conn_identifier) |Return the CUBRID server version (PECL CUBRID >= 8.3.0)
485mixed cubrid_get(resource $conn_identifier, string $oid [, mixed $attr]) |Get a column using OID (PECL CUBRID >= 8.3.0)
486string cubrid_insert_id( [resource $conn_identifier]) |Return the ID generated for the lastest updated AUTO_INCREMENT column (PECL CUBRID >= 8.3.0)
487int cubrid_is_instance(resource $conn_identifier, string $oid) |Check whether the instance pointed by OID exists (PECL CUBRID >= 8.3.0)
488array cubrid_list_dbs( [resource $conn_identifier]) |Return an array with the list of all existing CUBRID databases (PECL CUBRID >= 8.3.0)
489int cubrid_load_from_glo(resource $conn_identifier, string $oid, string $file_name) |Read data from a GLO instance and save it in a file (PECL CUBRID >= 8.3.0)
490bool cubrid_lob_close(array $lob_identifier_array) |Close BLOB/CLOB data (PECL CUBRID >= 8.3.1)
491bool cubrid_lob_export(resource $conn_identifier, resource $lob_identifier, string $path_name) |Export BLOB/CLOB data to file (PECL CUBRID >= 8.3.1)
492array cubrid_lob_get(resource $conn_identifier, string $sql) |Get BLOB/CLOB data (PECL CUBRID >= 8.3.1)
493bool cubrid_lob_send(resource $conn_identifier, resource $lob_identifier) |Read BLOB/CLOB data and send straight to browser (PECL CUBRID >= 8.3.1)
494string cubrid_lob_size(resource $lob_identifier) |Get BLOB/CLOB data size (PECL CUBRID >= 8.3.1)
495bool cubrid_lob2_bind(resource $req_identifier, int $bind_index, mixed $bind_value [, string $bind_value_type]) |Bind a lob object or a string as a lob object to a prepared statement as parameters. (PECL CUBRID >= 8.4.1)
496bool cubrid_lob2_close(resource $lob_identifier) |Close LOB object. (PECL CUBRID >= 8.4.1)
497bool cubrid_lob2_export(resource $lob_identifier, string $file_name) |Export the lob object to a file. (PECL CUBRID >= 8.4.1)
498bool cubrid_lob2_import(resource $lob_identifier, string $file_name) |Import BLOB/CLOB data from a file. (PECL CUBRID >= 8.4.1)
499resource cubrid_lob2_new( [resource $conn_identifier [, string $type="BLOB"]]) |Create a lob object. (PECL CUBRID >= 8.4.1)
500string cubrid_lob2_read(resource $lob_identifier, int $len) |Read from BLOB/CLOB data. (PECL CUBRID >= 8.4.1)
501bool cubrid_lob2_seek(resource $lob_identifier, int $offset [, int $origin=CUBRID_CURSOR_CURRENT]) |Move the cursor of a lob object. (PECL CUBRID >= 8.4.1)
502bool cubrid_lob2_seek64(resource $lob_identifier, string $offset [, int $origin=CUBRID_CURSOR_CURRENT]) |Move the cursor of a lob object. (PECL CUBRID >= 8.4.1)
503int cubrid_lob2_size(resource $lob_identifier) |Get a lob object's size. (PECL CUBRID >= 8.4.1)
504string cubrid_lob2_size64(resource $lob_identifier) |Get a lob object's size. (PECL CUBRID >= 8.4.1)
505int cubrid_lob2_tell(resource $lob_identifier) |Tell the cursor position of the LOB object. (PECL CUBRID >= 8.4.1)
506string cubrid_lob2_tell64(resource $lob_identifier) |Tell the cursor position of the LOB object. (PECL CUBRID >= 8.4.1)
507bool cubrid_lob2_write(resource $lob_identifier, string $buf) |Write to a lob object. (PECL CUBRID >= 8.4.1)
508bool cubrid_lock_read(resource $conn_identifier, string $oid) |Set a read lock on the given OID (PECL CUBRID >= 8.3.0)
509bool cubrid_lock_write(resource $conn_identifier, string $oid) |Set a write lock on the given OID (PECL CUBRID >= 8.3.0)
510int cubrid_move_cursor(resource $req_identifier, int $offset [, int $origin=CUBRID_CURSOR_CURRENT]) |Move the cursor in the result (PECL CUBRID >= 8.3.0)
511string cubrid_new_glo(resource $conn_identifier, string $class_name, string $file_name) |Create a glo instance (PECL CUBRID >= 8.3.0)
512bool cubrid_next_result(resource $result) |Get result of next query when executing multiple SQL statements (PECL CUBRID >= 8.4.0)
513int cubrid_num_cols(resource $result) |Return the number of columns in the result set (PECL CUBRID >= 8.3.0)
514int cubrid_num_fields(resource $result) |Return the number of columns in the result set (PECL CUBRID >= 8.3.0)
515int cubrid_num_rows(resource $result) |Get the number of rows in the result set (PECL CUBRID >= 8.3.0)
516resource cubrid_pconnect_with_url(string $conn_url [, string $userid [, string $passwd]]) |Open a persistent connection to CUBRID server (PECL CUBRID >= 8.3.1)
517resource cubrid_pconnect(string $host, int $port, string $dbname [, string $userid [, string $passwd]]) |Open a persistent connection to a CUBRID server (PECL CUBRID >= 8.3.1)
518bool cubrid_ping( [resource $conn_identifier]) |Ping a server connection or reconnect if there is no connection (PECL CUBRID >= 8.3.1)
519resource cubrid_prepare(resource $conn_identifier, string $prepare_stmt [, int $option=0]) |Prepare an SQL statement for execution (PECL CUBRID >= 8.3.0)
520int cubrid_put(resource $conn_identifier, string $oid [, string $attr], mixed $value) |Update a column using OID (PECL CUBRID >= 8.3.0)
521resource cubrid_query(string $query [, resource $conn_identifier]) |Send a CUBRID query (PECL CUBRID >= 8.3.1)
522string cubrid_real_escape_string(string $unescaped_string [, resource $conn_identifier]) |Escape special characters in a string for use in an SQL statement (PECL CUBRID >= 8.3.0)
523string cubrid_result(resource $result, int $row [, mixed $field=0]) |Return the value of a specific field in a specific row (PECL CUBRID >= 8.3.0)
524bool cubrid_rollback(resource $conn_identifier) |Roll back a transaction (PECL CUBRID >= 8.3.0)
525int cubrid_save_to_glo(resource $conn_identifier, string $oid, string $file_name) |Save requested file in a GLO instance (PECL CUBRID >= 8.3.0)
526array cubrid_schema(resource $conn_identifier, int $schema_type [, string $class_name [, string $attr_name]]) |Get the requested schema information (PECL CUBRID >= 8.3.0)
527int cubrid_send_glo(resource $conn_identifier, string $oid) |Read data from glo and send it to std output (PECL CUBRID >= 8.3.0)
528bool cubrid_seq_drop(resource $conn_identifier, string $oid, string $attr_name, int $index) |Delete an element from sequence type column using OID (PECL CUBRID >= 8.3.0)
529bool cubrid_seq_insert(resource $conn_identifier, string $oid, string $attr_name, int $index, string $seq_element) |Insert an element to a sequence type column using OID (PECL CUBRID >= 8.3.0)
530bool cubrid_seq_put(resource $conn_identifier, string $oid, string $attr_name, int $index, string $seq_element) |Update the element value of sequence type column using OID (PECL CUBRID >= 8.3.0)
531bool cubrid_set_add(resource $conn_identifier, string $oid, string $attr_name, string $set_element) |Insert a single element to set type column using OID (PECL CUBRID >= 8.3.0)
532bool cubrid_set_autocommit(resource $conn_identifier, bool $mode) |Set autocommit mode of the connection (PECL CUBRID >= 8.4.0)
533bool cubrid_set_db_parameter(resource $conn_identifier, int $param_type, int $param_value) |Sets the CUBRID database parameters (PECL CUBRID >= 8.4.0)
534bool cubrid_set_drop(resource $conn_identifier, string $oid, string $attr_name, string $set_element) |Delete an element from set type column using OID (PECL CUBRID >= 8.3.0)
535bool cubrid_set_query_timeout(resource $req_identifier, int $timeout) |Set the timeout time of query execution (PECL CUBRID >= 8.4.1)
536resource cubrid_unbuffered_query(string $query [, resource $conn_identifier]) |Perform a query without fetching the results into memory (PECL CUBRID >= 8.3.0)
537string cubrid_version() |Get the CUBRID PHP module's version (PECL CUBRID >= 8.3.0)
538void curl_close(resource $ch) |Close a cURL session (PHP 4 >= 4.0.2, PHP 5)
539resource curl_copy_handle(resource $ch) |Copy a cURL handle along with all of its preferences (PHP 5)
540int curl_errno(resource $ch) |Return the last error number (PHP 4 >= 4.0.3, PHP 5)
541string curl_error(resource $ch) |Return a string containing the last error for the current session (PHP 4 >= 4.0.3, PHP 5)
542mixed curl_exec(resource $ch) |Perform a cURL session (PHP 4 >= 4.0.2, PHP 5)
543mixed curl_getinfo(resource $ch [, int $opt=0]) |Get information regarding a specific transfer (PHP 4 >= 4.0.4, PHP 5)
544resource curl_init( [string $url= NULL]) |Initialize a cURL session (PHP 4 >= 4.0.2, PHP 5)
545int curl_multi_add_handle(resource $mh, resource $ch) |Add a normal cURL handle to a cURL multi handle (PHP 5)
546void curl_multi_close(resource $mh) |Close a set of cURL handles (PHP 5)
547int curl_multi_exec(resource $mh, int& $still_running) |Run the sub-connections of the current cURL handle (PHP 5)
548string curl_multi_getcontent(resource $ch) |Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set (PHP 5)
549array curl_multi_info_read(resource $mh [, int& $msgs_in_queue= NULL]) |Get information about the current transfers (PHP 5)
550resource curl_multi_init() |Returns a new cURL multi handle (PHP 5)
551int curl_multi_remove_handle(resource $mh, resource $ch) |Remove a multi handle from a set of cURL handles (PHP 5)
552int curl_multi_select(resource $mh [, float $timeout=1.0]) |Wait for activity on any curl_multi connection (PHP 5)
553bool curl_setopt_array(resource $ch, array $options) |Set multiple options for a cURL transfer (PHP 5 >= 5.1.3)
554bool curl_setopt(resource $ch, int $option, mixed $value) |Set an option for a cURL transfer (PHP 4 >= 4.0.2, PHP 5)
555array curl_version( [int $age=CURLVERSION_NOW]) |Gets cURL version information (PHP 4 >= 4.0.2, PHP 5)
556mixed current(array& $array) |Return the current element in an array (PHP 4, PHP 5)
557void cyrus_authenticate(resource $connection [, string $mechlist [, string $service [, string $user [, int $minssf [, int $maxssf [, string $authname [, string $password]]]]]]]) |Authenticate against a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL cyrus 1.0)
558bool cyrus_bind(resource $connection, array $callbacks) |Bind callbacks to a Cyrus IMAP connection (PHP 4 >= 4.1.0, PECL cyrus 1.0)
559bool cyrus_close(resource $connection) |Close connection to a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL cyrus 1.0)
560resource cyrus_connect( [string $host [, string $port [, int $flags]]]) |Connect to a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL cyrus 1.0)
561array cyrus_query(resource $connection, string $query) |Send a query to a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL cyrus 1.0)
562bool cyrus_unbind(resource $connection, string $trigger_name) |Unbind ... (PHP 4 >= 4.1.0, PECL cyrus 1.0)
563string date_default_timezone_get() |Gets the default timezone used by all date/time functions in a script (PHP 5 >= 5.1.0)
564bool date_default_timezone_set(string $timezone_identifier) |Sets the default timezone used by all date/time functions in a script (PHP 5 >= 5.1.0)
565array date_parse_from_format(string $format, string $date) |Get info about given date formatted according to the specified format (PHP 5 >= 5.3.0)
566array date_parse(string $date) |Returns associative array with detailed info about given date (PHP 5 >= 5.2.0)
567array date_sun_info(int $time, float $latitude, float $longitude) |Returns an array with information about sunset/sunrise and twilight begin/end (PHP 5 >= 5.1.2)
568mixed date_sunrise(int $timestamp [, int $format=SUNFUNCS_RET_STRING [, float $latitude=ini_get("date.default_latitude") [, float $longitude=ini_get("date.default_longitude") [, float $zenith=ini_get("date.sunrise_zenith") [, float $gmt_offset=0]]]]]) |Returns time of sunrise for a given day and location (PHP 5)
569mixed date_sunset(int $timestamp [, int $format=SUNFUNCS_RET_STRING [, float $latitude=ini_get("date.default_latitude") [, float $longitude=ini_get("date.default_longitude") [, float $zenith=ini_get("date.sunset_zenith") [, float $gmt_offset=0]]]]]) |Returns time of sunset for a given day and location (PHP 5)
570string date(string $format [, int $timestamp=time()]) |Format a local time/date (PHP 4, PHP 5)
571mixed db2_autocommit(resource $connection [, bool $value]) |Returns or sets the AUTOCOMMIT state for a database connection (PECL ibm_db2 >= 1.0.0)
572bool db2_bind_param(resource $stmt, int $parameter-number, string $variable-name [, int $parameter-type [, int $data-type=0 [, int $precision=-1 [, int $scale=0]]]]) |Binds a PHP variable to an SQL statement parameter (PECL ibm_db2 >= 1.0.0)
573object db2_client_info(resource $connection) |Returns an object with properties that describe the DB2 database client (PECL ibm_db2 >= 1.1.1)
574bool db2_close(resource $connection) |Closes a database connection (PECL ibm_db2 >= 1.0.0)
575resource db2_column_privileges(resource $connection [, string $qualifier [, string $schema [, string $table-name [, string $column-name]]]]) |Returns a result set listing the columns and associated privileges for a table (PECL ibm_db2 >= 1.0.0)
576resource db2_columns(resource $connection [, string $qualifier [, string $schema [, string $table-name [, string $column-name]]]]) |Returns a result set listing the columns and associated metadata for a table (PECL ibm_db2 >= 1.0.0)
577bool db2_commit(resource $connection) |Commits a transaction (PECL ibm_db2 >= 1.0.0)
578string db2_conn_error( [resource $connection]) |Returns a string containing the SQLSTATE returned by the last connection attempt (PECL ibm_db2 >= 1.0.0)
579string db2_conn_errormsg( [resource $connection]) |Returns the last connection error message and SQLCODE value (PECL ibm_db2 >= 1.0.0)
580resource db2_connect(string $database, string $username, string $password [, array $options]) |Returns a connection to a database (PECL ibm_db2 >= 1.0.0)
581int db2_cursor_type(resource $stmt) |Returns the cursor type used by a statement resource (PECL ibm_db2 >= 1.0.0)
582string db2_escape_string(string $string_literal) |Used to escape certain characters (PECL ibm_db2 >= 1.6.0)
583resource db2_exec(resource $connection, string $statement [, array $options]) |Executes an SQL statement directly (PECL ibm_db2 >= 1.0.0)
584bool db2_execute(resource $stmt [, array $parameters]) |Executes a prepared SQL statement (PECL ibm_db2 >= 1.0.0)
585array db2_fetch_array(resource $stmt [, int $row_number=-1]) |Returns an array, indexed by column position, representing a row in a result set (PECL ibm_db2 >= 1.0.1)
586array db2_fetch_assoc(resource $stmt [, int $row_number=-1]) |Returns an array, indexed by column name, representing a row in a result set (PECL ibm_db2 >= 1.0.0)
587array db2_fetch_both(resource $stmt [, int $row_number=-1]) |Returns an array, indexed by both column name and position, representing a row in a result set (PECL ibm_db2 >= 1.0.0)
588object db2_fetch_object(resource $stmt [, int $row_number=-1]) |Returns an object with properties representing columns in the fetched row (PECL ibm_db2 >= 1.0.0)
589bool db2_fetch_row(resource $stmt [, int $row_number]) |Sets the result set pointer to the next row or requested row (PECL ibm_db2 >= 1.0.0)
590int db2_field_display_size(resource $stmt, mixed $column) |Returns the maximum number of bytes required to display a column (PECL ibm_db2 >= 1.0.0)
591string db2_field_name(resource $stmt, mixed $column) |Returns the name of the column in the result set (PECL ibm_db2 >= 1.0.0)
592int db2_field_num(resource $stmt, mixed $column) |Returns the position of the named column in a result set (PECL ibm_db2 >= 1.0.0)
593int db2_field_precision(resource $stmt, mixed $column) |Returns the precision of the indicated column in a result set (PECL ibm_db2 >= 1.0.0)
594int db2_field_scale(resource $stmt, mixed $column) |Returns the scale of the indicated column in a result set (PECL ibm_db2 >= 1.0.0)
595string db2_field_type(resource $stmt, mixed $column) |Returns the data type of the indicated column in a result set (PECL ibm_db2 >= 1.0.0)
596int db2_field_width(resource $stmt, mixed $column) |Returns the width of the current value of the indicated column in a result set (PECL ibm_db2 >= 1.0.0)
597resource db2_foreign_keys(resource $connection, string $qualifier, string $schema, string $table-name) |Returns a result set listing the foreign keys for a table (PECL ibm_db2 >= 1.0.0)
598bool db2_free_result(resource $stmt) |Frees resources associated with a result set (PECL ibm_db2 >= 1.0.0)
599bool db2_free_stmt(resource $stmt) |Frees resources associated with the indicated statement resource (PECL ibm_db2 >= 1.0.0)
600string db2_get_option(resource $resource, string $option) |Retrieves an option value for a statement resource or a connection resource (PECL ibm_db2 >= 1.6.0)
601string db2_last_insert_id(resource $resource) |Returns the auto generated ID of the last insert query that successfully executed on this connection (PECL ibm_db2 >= 1.7.1)
602string db2_lob_read(resource $stmt, int $colnum, int $length) |Gets a user defined size of LOB files with each invocation (PECL ibm_db2 >= 1.6.0)
603resource db2_next_result(resource $stmt) |Requests the next result set from a stored procedure (PECL ibm_db2 >= 1.0.0)
604int db2_num_fields(resource $stmt) |Returns the number of fields contained in a result set (PECL ibm_db2 >= 1.0.0)
605int db2_num_rows(resource $stmt) |Returns the number of rows affected by an SQL statement (PECL ibm_db2 >= 1.0.0)
606bool db2_pclose(resource $resource) |Closes a persistent database connection (PECL ibm_db2 >= 1.8.0)
607resource db2_pconnect(string $database, string $username, string $password [, array $options]) |Returns a persistent connection to a database (PECL ibm_db2 >= 1.0.0)
608resource db2_prepare(resource $connection, string $statement [, array $options]) |Prepares an SQL statement to be executed (PECL ibm_db2 >= 1.0.0)
609resource db2_primary_keys(resource $connection, string $qualifier, string $schema, string $table-name) |Returns a result set listing primary keys for a table (PECL ibm_db2 >= 1.0.0)
610resource db2_procedure_columns(resource $connection, string $qualifier, string $schema, string $procedure, string $parameter) |Returns a result set listing stored procedure parameters (PECL ibm_db2 >= 1.0.0)
611resource db2_procedures(resource $connection, string $qualifier, string $schema, string $procedure) |Returns a result set listing the stored procedures registered in a database (PECL ibm_db2 >= 1.0.0)
612mixed db2_result(resource $stmt, mixed $column) |Returns a single column from a row in the result set (PECL ibm_db2 >= 1.0.0)
613bool db2_rollback(resource $connection) |Rolls back a transaction (PECL ibm_db2 >= 1.0.0)
614object db2_server_info(resource $connection) |Returns an object with properties that describe the DB2 database server (PECL ibm_db2 >= 1.1.1)
615bool db2_set_option(resource $resource, array $options, int $type) |Set options for connection or statement resources (PECL ibm_db2 >= 1.0.0)
616resource db2_special_columns(resource $connection, string $qualifier, string $schema, string $table_name, int $scope) |Returns a result set listing the unique row identifier columns for a table (PECL ibm_db2 >= 1.0.0)
617resource db2_statistics(resource $connection, string $qualifier, string $schema, string $table-name, bool $unique) |Returns a result set listing the index and statistics for a table (PECL ibm_db2 >= 1.0.0)
618string db2_stmt_error( [resource $stmt]) |Returns a string containing the SQLSTATE returned by an SQL statement (PECL ibm_db2 >= 1.0.0)
619string db2_stmt_errormsg( [resource $stmt]) |Returns a string containing the last SQL statement error message (PECL ibm_db2 >= 1.0.0)
620resource db2_table_privileges(resource $connection [, string $qualifier [, string $schema [, string $table_name]]]) |Returns a result set listing the tables and associated privileges in a database (PECL ibm_db2 >= 1.0.0)
621resource db2_tables(resource $connection [, string $qualifier [, string $schema [, string $table-name [, string $table-type]]]]) |Returns a result set listing the tables and associated metadata in a database (PECL ibm_db2 >= 1.0.0)
622void dba_close(resource $handle) |Close a DBA database (PHP 4, PHP 5)
623bool dba_delete(string $key, resource $handle) |Delete DBA entry specified by key (PHP 4, PHP 5)
624bool dba_exists(string $key, resource $handle) |Check whether key exists (PHP 4, PHP 5)
625string dba_fetch(string $key, resource $handle) |Fetch data specified by key (PHP 4, PHP 5)
626string dba_firstkey(resource $handle) |Fetch first key (PHP 4, PHP 5)
627array dba_handlers( [bool $full_info=false]) |List all the handlers available (PHP 4 >= 4.3.0, PHP 5)
628bool dba_insert(string $key, string $value, resource $handle) |Insert entry (PHP 4, PHP 5)
629mixed dba_key_split(mixed $key) |Splits a key in string representation into array representation (PHP 5)
630array dba_list() |List all open database files (PHP 4 >= 4.3.0, PHP 5)
631string dba_nextkey(resource $handle) |Fetch next key (PHP 4, PHP 5)
632resource dba_open(string $path, string $mode [, string $handler [, mixed $...]]) |Open database (PHP 4, PHP 5)
633bool dba_optimize(resource $handle) |Optimize database (PHP 4, PHP 5)
634resource dba_popen(string $path, string $mode [, string $handler [, mixed $...]]) |Open database persistently (PHP 4, PHP 5)
635bool dba_replace(string $key, string $value, resource $handle) |Replace or insert entry (PHP 4, PHP 5)
636bool dba_sync(resource $handle) |Synchronize database (PHP 4, PHP 5)
637bool dbase_add_record(int $dbase_identifier, array $record) |Adds a record to a database (PHP 4, PHP 5)
638bool dbase_close(int $dbase_identifier) |Closes a database (PHP 4, PHP 5)
639int dbase_create(string $filename, array $fields) |Creates a database (PHP 4, PHP 5)
640bool dbase_delete_record(int $dbase_identifier, int $record_number) |Deletes a record from a database (PHP 4, PHP 5)
641array dbase_get_header_info(int $dbase_identifier) |Gets the header info of a database (PHP 5)
642array dbase_get_record_with_names(int $dbase_identifier, int $record_number) |Gets a record from a database as an associative array (PHP 4, PHP 5)
643array dbase_get_record(int $dbase_identifier, int $record_number) |Gets a record from a database as an indexed array (PHP 4, PHP 5)
644int dbase_numfields(int $dbase_identifier) |Gets the number of fields of a database (PHP 4, PHP 5)
645int dbase_numrecords(int $dbase_identifier) |Gets the number of records in a database (PHP 4, PHP 5)
646int dbase_open(string $filename, int $mode) |Opens a database (PHP 4, PHP 5)
647bool dbase_pack(int $dbase_identifier) |Packs a database (PHP 4, PHP 5)
648bool dbase_replace_record(int $dbase_identifier, array $record, int $record_number) |Replaces a record in a database (PHP 4, PHP 5)
649int dbplus_add(resource $relation, array $tuple) |Add a tuple to a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
650resource dbplus_aql(string $query [, string $server [, string $dbpath]]) |Perform AQL query (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
651string dbplus_chdir( [string $newdir]) |Get/Set database virtual current directory (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
652mixed dbplus_close(resource $relation) |Close a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
653int dbplus_curr(resource $relation, array& $tuple) |Get current tuple from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
654string dbplus_errcode( [int $errno]) |Get error string for given errorcode or last error (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
655int dbplus_errno() |Get error code for last operation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
656int dbplus_find(resource $relation, array $constraints, mixed $tuple) |Set a constraint on a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
657int dbplus_first(resource $relation, array& $tuple) |Get first tuple from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
658int dbplus_flush(resource $relation) |Flush all changes made on a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
659int dbplus_freealllocks() |Free all locks held by this client (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
660int dbplus_freelock(resource $relation, string $tuple) |Release write lock on tuple (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
661int dbplus_freerlocks(resource $relation) |Free all tuple locks on given relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
662int dbplus_getlock(resource $relation, string $tuple) |Get a write lock on a tuple (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
663int dbplus_getunique(resource $relation, int $uniqueid) |Get an id number unique to a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
664int dbplus_info(resource $relation, string $key, array& $result) |Get information about a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
665int dbplus_last(resource $relation, array& $tuple) |Get last tuple from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
666int dbplus_lockrel(resource $relation) |Request write lock on relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
667int dbplus_next(resource $relation, array& $tuple) |Get next tuple from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
668resource dbplus_open(string $name) |Open relation file (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
669int dbplus_prev(resource $relation, array& $tuple) |Get previous tuple from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
670int dbplus_rchperm(resource $relation, int $mask, string $user, string $group) |Change relation permissions (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
671resource dbplus_rcreate(string $name, mixed $domlist [, bool $overwrite]) |Creates a new DB++ relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
672mixed dbplus_rcrtexact(string $name, resource $relation [, bool $overwrite]) |Creates an exact but empty copy of a relation including indices (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
673mixed dbplus_rcrtlike(string $name, resource $relation [, int $overwrite]) |Creates an empty copy of a relation with default indices (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
674array dbplus_resolve(string $relation_name) |Resolve host information for relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
675int dbplus_restorepos(resource $relation, array $tuple) |Restore position (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
676mixed dbplus_rkeys(resource $relation, mixed $domlist) |Specify new primary key for a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
677resource dbplus_ropen(string $name) |Open relation file local (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
678resource dbplus_rquery(string $query [, string $dbpath]) |Perform local (raw) AQL query (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
679int dbplus_rrename(resource $relation, string $name) |Rename a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
680mixed dbplus_rsecindex(resource $relation, mixed $domlist, int $type) |Create a new secondary index for a relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
681int dbplus_runlink(resource $relation) |Remove relation from filesystem (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
682int dbplus_rzap(resource $relation) |Remove all tuples from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
683int dbplus_savepos(resource $relation) |Save position (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
684int dbplus_setindex(resource $relation, string $idx_name) |Set index (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
685int dbplus_setindexbynumber(resource $relation, int $idx_number) |Set index by number (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
686resource dbplus_sql(string $query [, string $server [, string $dbpath]]) |Perform SQL query (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
687string dbplus_tcl(int $sid, string $script) |Execute TCL code on server side (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
688int dbplus_tremove(resource $relation, array $tuple [, array& $current]) |Remove tuple and return new current tuple (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
689int dbplus_undo(resource $relation) |Undo (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
690int dbplus_undoprepare(resource $relation) |Prepare undo (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
691int dbplus_unlockrel(resource $relation) |Give up write lock on relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
692int dbplus_unselect(resource $relation) |Remove a constraint from relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
693int dbplus_update(resource $relation, array $old, array $new) |Update specified tuple in relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
694int dbplus_xlockrel(resource $relation) |Request exclusive lock on relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
695int dbplus_xunlockrel(resource $relation) |Free exclusive lock on relation (PHP 4 <= 4.1.0, PECL dbplus >= 0.9)
696int dbx_close(object $link_identifier) |Close an open connection/database (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
697int dbx_compare(array $row_a, array $row_b, string $column_key [, int $flags=DBX_CMP_ASC|DBX_CMP_NATIVE]) |Compare two rows for sorting purposes (PHP 4 >= 4.1.0, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
698object dbx_connect(mixed $module, string $host, string $database, string $username, string $password [, int $persistent]) |Open a connection/database (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
699string dbx_error(object $link_identifier) |Report the error message of the latest function call in the module (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
700string dbx_escape_string(object $link_identifier, string $text) |Escape a string so it can safely be used in an sql-statement (PHP 4 >= 4.3.0, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
701mixed dbx_fetch_row(object $result_identifier) |Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set (PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
702mixed dbx_query(object $link_identifier, string $sql_statement [, int $flags]) |Send a query and fetch all results (if any) (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
703bool dbx_sort(object $result, string $user_compare_function) |Sort a result from a dbx_query by a custom sort function (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0)
704string dcgettext(string $domain, string $message, int $category) |Overrides the domain for a single lookup (PHP 4, PHP 5)
705string dcngettext(string $domain, string $msgid1, string $msgid2, int $n, int $category) |Plural version of dcgettext (PHP 4 >= 4.2.0, PHP 5)
706void deaggregate(object $object [, string $class_name]) |Removes the aggregated methods and properties from an object (PHP 4 >= 4.2.0)
707array debug_backtrace( [int $options=DEBUG_BACKTRACE_PROVIDE_OBJECT [, int $limit=0]]) |Generates a backtrace (PHP 4 >= 4.3.0, PHP 5)
708void debug_print_backtrace( [int $options=0 [, int $limit=0]]) |Prints a backtrace (PHP 5)
709void debug_zval_dump(mixed $variable) |Dumps a string representation of an internal zend value to output (PHP 4 >= 4.2.0, PHP 5)
710string decbin(int $number) |Decimal to binary (PHP 4, PHP 5)
711string dechex(int $number) |Decimal to hexadecimal (PHP 4, PHP 5)
712string decoct(int $number) |Decimal to octal (PHP 4, PHP 5)
713void define_syslog_variables() |Initializes all syslog related variables (PHP 4, PHP 5 < 5.4.0)
714bool define(string $name, mixed $value [, bool $case_insensitive=false]) |Defines a named constant (PHP 4, PHP 5)
715bool defined(string $name) |Checks whether a given named constant exists (PHP 4, PHP 5)
716float deg2rad(float $number) |Converts the number in degrees to the radian equivalent (PHP 4, PHP 5)
717void delete() |See unlink() or unset() See unlink or unset copy dirname Filesystem Functions PHP Manual delete delete — See unlink() or unset()
718string dgettext(string $domain, string $message) |Override the current domain (PHP 4, PHP 5)
719void dio_close(resource $fd) |Closes the file descriptor given by fd (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
720mixed dio_fcntl(resource $fd, int $cmd [, mixed $args]) |Performs a c library fcntl on fd (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
721resource dio_open(string $filename, int $flags [, int $mode=0]) |Opens a file (creating it if necessary) at a lower level than the C library input/ouput stream functions allow. (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
722string dio_read(resource $fd [, int $len=1024]) |Reads bytes from a file descriptor (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
723int dio_seek(resource $fd, int $pos [, int $whence=SEEK_SET]) |Seeks to pos on fd from whence (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
724array dio_stat(resource $fd) |Gets stat information about the file descriptor fd (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
725bool dio_tcsetattr(resource $fd, array $options) |Sets terminal attributes and baud rate for a serial port (PHP 4 >= 4.3.0, PHP 5 <= 5.0.5)
726bool dio_truncate(resource $fd, int $offset) |Truncates file descriptor fd to offset bytes (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
727int dio_write(resource $fd, string $data [, int $len=0]) |Writes data to fd with optional truncation at length (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5)
728Directory dir(string $directory [, resource $context]) |Return an instance of the Directory class (PHP 4, PHP 5)
729string dirname(string $path) |Returns parent directory's path (PHP 4, PHP 5)
730float disk_free_space(string $directory) |Returns available space on filesystem or disk partition (PHP 4 >= 4.1.0, PHP 5)
731float disk_total_space(string $directory) |Returns the total size of a filesystem or disk partition (PHP 4 >= 4.1.0, PHP 5)
732bool dl(string $library) |Loads a PHP extension at runtime (PHP 4, PHP 5)
733string dngettext(string $domain, string $msgid1, string $msgid2, int $n) |Plural version of dgettext (PHP 4 >= 4.2.0, PHP 5)
734array dns_get_record(string $hostname [, int $type=DNS_ANY [, array& $authns [, array& $addtl]]]) |Fetch DNS Resource Records associated with a hostname (PHP 5)
735DOMElement dom_import_simplexml(SimpleXMLElement $node) |Gets a DOMElement object from a SimpleXMLElement object (PHP 5)
736int dotnet_load(string $assembly_name [, string $datatype_name [, int $codepage]]) |Loads a DOTNET module (PHP 4)
737array each(array& $array) |Return the current key and value pair from an array and advance the array cursor (PHP 4, PHP 5)
738int easter_date( [int $year]) |Get Unix timestamp for midnight on Easter of a given year (PHP 4, PHP 5)
739int easter_days( [int $year [, int $method=CAL_EASTER_DEFAULT]]) |Get number of days after March 21 on which Easter falls for a given year (PHP 4, PHP 5)
740void echo(string $arg1 [, string $...]) |Output one or more strings (PHP 4, PHP 5)
741resource eio_busy(int $delay [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Artificially increase load. Could be useful in tests, benchmarking. (PECL eio >= 0.0.1dev)
742void eio_cancel(resource $req) |Cancels a request (PECL eio >= 0.0.1dev)
743resource eio_chmod(string $path, int $mode [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Change file/direcrory permissions. (PECL eio >= 0.0.1dev)
744resource eio_chown(string $path, int $uid [, int $gid=-1 [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]]) |Change file/direcrory permissions. (PECL eio >= 0.0.1dev)
745resource eio_close(mixed $fd [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Close file (PECL eio >= 0.0.1dev)
746resource eio_custom(callable $execute, int $pri, callable $callback [, mixed $data=NULL]) |Execute custom request like any other eio_* call. (PECL eio >= 0.0.1dev)
747resource eio_dup2(mixed $fd, mixed $fd2 [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Duplicate a file descriptor (PECL eio >= 0.0.1dev)
748bool eio_event_loop() |Polls libeio until all requests proceeded (PECL eio >= 0.0.1dev)
749resource eio_fallocate(mixed $fd, int $mode, int $offset, int $length [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Allows the caller to directly manipulate the allocated disk space for a file (PECL eio >= 0.0.1dev)
750resource eio_fchmod(mixed $fd, int $mode [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Change file permissions. (PECL eio >= 0.0.1dev)
751resource eio_fchown(mixed $fd, int $uid [, int $gid=-1 [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]]) |Change file ownership (PECL eio >= 0.0.1dev)
752resource eio_fdatasync(mixed $fd [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Synchronize a file's in-core state with storage device. (PECL eio >= 0.0.1dev)
753resource eio_fstat(mixed $fd, int $pri, callable $callback [, mixed $data]) |Get file status (PECL eio >= 0.0.1dev)
754resource eio_fstatvfs(mixed $fd, int $pri, callable $callback [, mixed $data]) |Get file system statistics (PECL eio >= 0.0.1dev)
755resource eio_fsync(mixed $fd [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Synchronize a file's in-core state with storage device (PECL eio >= 0.0.1dev)
756resource eio_ftruncate(mixed $fd [, int $offset=0 [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]]) |Truncate a file (PECL eio >= 0.0.1dev)
757resource eio_futime(mixed $fd, float $atime, float $mtime [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Change file last access and modification times (PECL eio >= 0.0.1dev)
758mixed eio_get_event_stream() |Get stream representing a variable used in internal communications with libeio. (PECL eio >= 0.3.1b)
759string eio_get_last_error(resource $req) |Returns string describing the last error associated with a request resource (PECL eio >= 1.0.0)
760void eio_grp_add(resource $grp, resource $req) |Adds a request to the request group. (PECL eio >= 0.0.1dev)
761void eio_grp_cancel(resource $grp) |Cancels a request group (PECL eio >= 0.0.1dev)
762void eio_grp_limit(resource $grp, int $limit) |Set group limit (PECL eio >= 0.0.1dev)
763resource eio_grp(callable $callback [, string $data=NULL]) |Createsa request group. (PECL eio >= 0.0.1dev)
764void eio_init() |(Re-)initialize Eio (PECL eio = 1.0.0)
765resource eio_link(string $path, string $new_path [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Create a hardlink for file (PECL eio >= 0.0.1dev)
766resource eio_lstat(string $path, int $pri, callable $callback [, mixed $data=NULL]) |Get file status (PECL eio >= 0.0.1dev)
767resource eio_mkdir(string $path, int $mode [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Create directory (PECL eio >= 0.0.1dev)
768resource eio_mknod(string $path, int $mode, int $dev [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Create a special or ordinary file. (PECL eio >= 0.0.1dev)
769resource eio_nop( [int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Does nothing, except go through the whole request cycle. (PECL eio >= 0.0.1dev)
770int eio_npending() |Returns number of finished, but unhandled requests (PECL eio >= 0.0.1dev)
771int eio_nready() |Returns number of not-yet handled requests (PECL eio >= 0.0.1dev)
772int eio_nreqs() |Returns number of requests to be processed (PECL eio >= 0.0.1dev)
773int eio_nthreads() |Returns number of threads currently in use (PECL eio >= 0.0.1dev)
774resource eio_open(string $path, int $flags, int $mode, int $pri, callable $callback [, mixed $data=NULL]) |Opens a file (PECL eio >= 0.0.1dev)
775int eio_poll() |Can be to be called whenever there are pending requests that need finishing. (PECL eio >= 0.0.1dev)
776resource eio_read(mixed $fd, int $length, int $offset, int $pri, callable $callback [, mixed $data=NULL]) |Read from a file descriptor at given offset. (PECL eio >= 0.0.1dev)
777resource eio_readahead(mixed $fd, int $offset, int $length [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Perform file readahead into page cache (PECL eio >= 0.0.1dev)
778resource eio_readdir(string $path, int $flags, int $pri, callable $callback [, string $data=NULL]) |Reads through a whole directory (PECL eio >= 0.0.1dev)
779resource eio_readlink(string $path, int $pri, callable $callback [, string $data=NULL]) |Read value of a symbolic link. (PECL eio >= 0.0.1dev)
780resource eio_realpath(string $path, int $pri, callable $callback [, string $data=NULL]) |Get the canonicalized absolute pathname. (PECL eio >= 0.0.1dev)
781resource eio_rename(string $path, string $new_path [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Change the name or location of a file. (PECL eio >= 0.0.1dev)
782resource eio_rmdir(string $path [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Remove a directory (PECL eio >= 0.0.1dev)
783resource eio_seek(mixed $fd, int $offset, int $whence [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Repositions the offset of the open file associated with the fd argument to the argument offset according to the directive whence (PECL eio >= 0.5.0b)
784resource eio_sendfile(mixed $out_fd, mixed $in_fd, int $offset, int $length [, int $pri [, callable $callback [, string $data]]]) |Transfer data between file descriptors (PECL eio >= 0.0.1dev)
785void eio_set_max_idle(int $nthreads) |Set maximum number of idle threads. (PECL eio >= 0.0.1dev)
786void eio_set_max_parallel(int $nthreads) |Set maximum parallel threads (PECL eio >= 0.0.1dev)
787void eio_set_max_poll_reqs(int $nreqs) |Set maximum number of requests processed in a poll. (PECL eio >= 0.0.1dev)
788void eio_set_max_poll_time(float $nseconds) |Set maximum poll time (PECL eio >= 0.0.1dev)
789void eio_set_min_parallel(string $nthreads) |Set minimum parallel thread number (PECL eio >= 0.0.1dev)
790resource eio_stat(string $path, int $pri, callable $callback [, mixed $data=NULL]) |Get file status (PECL eio >= 0.0.1dev)
791resource eio_statvfs(string $path, int $pri, callable $callback [, mixed $data]) |Get file system statistics (PECL eio >= 0.0.1dev)
792resource eio_symlink(string $path, string $new_path [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Create a symbolic link (PECL eio >= 0.0.1dev)
793resource eio_sync_file_range(mixed $fd, int $offset, int $nbytes, int $flags [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Sync a file segment with disk (PECL eio >= 0.0.1dev)
794resource eio_sync( [int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Commit buffer cache to disk (PECL eio >= 0.0.1dev)
795resource eio_syncfs(mixed $fd [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Calls Linux' syncfs syscall, if available (PECL eio >= 0.0.1dev)
796resource eio_truncate(string $path [, int $offset=0 [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]]) |Truncate a file (PECL eio >= 0.0.1dev)
797resource eio_unlink(string $path [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Delete a name and possibly the file it refers to (PECL eio >= 0.0.1dev)
798resource eio_utime(string $path, float $atime, float $mtime [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]) |Change file last access and modification times. (PECL eio >= 0.0.1dev)
799resource eio_write(mixed $fd, string $str [, int $length=0 [, int $offset=0 [, int $pri=EIO_PRI_DEFAULT [, callable $callback=NULL [, mixed $data=NULL]]]]]) |Write to file (PECL eio >= 0.0.1dev)
800bool empty(mixed $var) |Determine whether a variable is empty (PHP 4, PHP 5)
801array enchant_broker_describe(resource $broker) |Enumerates the Enchant providers (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0)
802bool enchant_broker_dict_exists(resource $broker, string $tag) |Whether a dictionary exists or not. Using non-empty tag (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
803bool enchant_broker_free_dict(resource $dict) |Free a dictionary resource (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
804bool enchant_broker_free(resource $broker) |Free the broker resource and its dictionnaries (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
805string enchant_broker_get_error(resource $broker) |Returns the last error of the broker (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
806resource enchant_broker_init() |create a new broker object capable of requesting (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
807mixed enchant_broker_list_dicts(resource $broker) |Returns a list of available dictionaries (PHP 5 >= 5.3.0, PECL enchant >= 1.0.1)
808resource enchant_broker_request_dict(resource $broker, string $tag) |create a new dictionary using a tag (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
809resource enchant_broker_request_pwl_dict(resource $broker, string $filename) |creates a dictionary using a PWL file (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
810bool enchant_broker_set_ordering(resource $broker, string $tag, string $ordering) |Declares a preference of dictionaries to use for the language (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
811void enchant_dict_add_to_personal(resource $dict, string $word) |add a word to personal word list (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
812void enchant_dict_add_to_session(resource $dict, string $word) |add 'word' to this spell-checking session (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
813bool enchant_dict_check(resource $dict, string $word) |Check whether a word is correctly spelled or not (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
814mixed enchant_dict_describe(resource $dict) |Describes an individual dictionary (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
815string enchant_dict_get_error(resource $dict) |Returns the last error of the current spelling-session (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
816bool enchant_dict_is_in_session(resource $dict, string $word) |whether or not 'word' exists in this spelling-session (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
817bool enchant_dict_quick_check(resource $dict, string $word [, array& $suggestions]) |Check the word is correctly spelled and provide suggestions (PHP 5 >= 5.3.0, PECL enchant:0.2.0-1.0.1)
818void enchant_dict_store_replacement(resource $dict, string $mis, string $cor) |Add a correction for a word (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
819array enchant_dict_suggest(resource $dict, string $word) |Will return a list of values if any of those pre-conditions are not met (PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
820mixed end(array& $array) |Set the internal pointer of an array to its last element (PHP 4, PHP 5)
821string ereg_replace(string $pattern, string $replacement, string $string) |Replace regular expression (PHP 4, PHP 5)
822int ereg(string $pattern, string $string [, array& $regs]) |Regular expression match (PHP 4, PHP 5)
823string eregi_replace(string $pattern, string $replacement, string $string) |Replace regular expression case insensitive (PHP 4, PHP 5)
824int eregi(string $pattern, string $string [, array& $regs]) |Case insensitive regular expression match (PHP 4, PHP 5)
825array error_get_last() |Get the last occurred error (PHP 5 >= 5.2.0)
826bool error_log(string $message [, int $message_type=0 [, string $destination [, string $extra_headers]]]) |Send an error message somewhere (PHP 4, PHP 5)
827int error_reporting( [int $level]) |Sets which PHP errors are reported (PHP 4, PHP 5)
828string escapeshellarg(string $arg) |Escape a string to be used as a shell argument (PHP 4 >= 4.0.3, PHP 5)
829string escapeshellcmd(string $command) |Escape shell metacharacters (PHP 4, PHP 5)
830mixed eval(string $code) |Evaluate a string as PHP code (PHP 4, PHP 5)
831bool event_add(resource $event [, int $timeout=-1]) |Add an event to the set of monitored events (PECL libevent >= 0.0.1)
832void event_base_free(resource $event_base) |Destroy event base (PECL libevent >= 0.0.1)
833int event_base_loop(resource $event_base [, int $flags=0]) |Handle events (PECL libevent >= 0.0.1)
834bool event_base_loopbreak(resource $event_base) |Abort event loop (PECL libevent >= 0.0.1)
835bool event_base_loopexit(resource $event_base [, int $timeout=-1]) |Exit loop after a time (PECL libevent >= 0.0.1)
836resource event_base_new() |Create and initialize new event base (PECL libevent >= 0.0.1)
837bool event_base_priority_init(resource $event_base, int $npriorities) |Set the number of event priority levels (PECL libevent >= 0.0.2)
838bool event_base_set(resource $event, resource $event_base) |Associate event base with an event (PECL libevent >= 0.0.1)
839bool event_buffer_base_set(resource $bevent, resource $event_base) |Associate buffered event with an event base (PECL libevent >= 0.0.1)
840bool event_buffer_disable(resource $bevent, int $events) |Disable a buffered event (PECL libevent >= 0.0.1)
841bool event_buffer_enable(resource $bevent, int $events) |Enable a buffered event (PECL libevent >= 0.0.1)
842void event_buffer_fd_set(resource $bevent, resource $fd) |Change a buffered event file descriptor (PECL libevent >= 0.0.1)
843void event_buffer_free(resource $bevent) |Destroy buffered event (PECL libevent >= 0.0.1)
844resource event_buffer_new(resource $stream, mixed $readcb, mixed $writecb, mixed $errorcb [, mixed $arg]) |Create new buffered event (PECL libevent >= 0.0.1)
845bool event_buffer_priority_set(resource $bevent, int $priority) |Assign a priority to a buffered event (PECL libevent >= 0.0.1)
846string event_buffer_read(resource $bevent, int $data_size) |Read data from a buffered event (PECL libevent >= 0.0.1)
847bool event_buffer_set_callback(resource $event, mixed $readcb, mixed $writecb, mixed $errorcb [, mixed $arg]) |Set or reset callbacks for a buffered event (PECL libevent >= 0.0.4)
848void event_buffer_timeout_set(resource $bevent, int $read_timeout, int $write_timeout) |Set read and write timeouts for a buffered event (PECL libevent >= 0.0.1)
849void event_buffer_watermark_set(resource $bevent, int $events, int $lowmark, int $highmark) |Set the watermarks for read and write events (PECL libevent >= 0.0.1)
850bool event_buffer_write(resource $bevent, string $data [, int $data_size=-1]) |Write data to a buffered event (PECL libevent >= 0.0.1)
851bool event_del(resource $event) |Remove an event from the set of monitored events (PECL libevent >= 0.0.1)
852void event_free(resource $event) |Free event resource (PECL libevent >= 0.0.1)
853resource event_new() |Create new event (PECL libevent >= 0.0.1)
854bool event_set(resource $event, mixed $fd, int $events, mixed $callback [, mixed $arg]) |Prepare an event (PECL libevent >= 0.0.1)
855string exec(string $command [, array& $output [, int& $return_var]]) |Execute an external program (PHP 4, PHP 5)
856int exif_imagetype(string $filename) |Determine the type of an image (PHP 4 >= 4.3.0, PHP 5)
857array exif_read_data(string $filename [, string $sections= NULL [, bool $arrays=false [, bool $thumbnail=false]]]) |Reads the EXIF headers from JPEG or TIFF (PHP 4 >= 4.2.0, PHP 5)
858string exif_tagname(int $index) |Get the header name for an index (PHP 4 >= 4.2.0, PHP 5)
859string exif_thumbnail(string $filename [, int& $width [, int& $height [, int& $imagetype]]]) |Retrieve the embedded thumbnail of a TIFF or JPEG image (PHP 4 >= 4.2.0, PHP 5)
860void exit( [string $status]) |Output a message and terminate the current script (PHP 4, PHP 5)
861float exp(float $arg) |Calculates the exponent of e (PHP 4, PHP 5)
862int expect_expectl(resource $expect, array $cases [, array& $match]) |Waits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen (PECL expect >= 0.1.0)
863resource expect_popen(string $command) |Execute command via Bourne shell, and open the PTY stream to the process (PECL expect >= 0.1.0)
864array explode(string $delimiter, string $string [, int $limit]) |Split a string by string (PHP 4, PHP 5)
865float expm1(float $arg) |Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero (PHP 4 >= 4.1.0, PHP 5)
866bool extension_loaded(string $name) |Find out whether an extension is loaded (PHP 4, PHP 5)
867int extract(array& $var_array [, int $extract_type=EXTR_OVERWRITE [, string $prefix= NULL]]) |Import variables into the current symbol table from an array (PHP 4, PHP 5)
868int ezmlm_hash(string $addr) |Calculate the hash value needed by EZMLM (PHP 4 >= 4.0.2, PHP 5)
869bool fam_cancel_monitor(resource $fam, resource $fam_monitor) |Terminate monitoring (PHP 5 <= 5.0.5)
870void fam_close(resource $fam) |Close FAM connection (PHP 5 <= 5.0.5)
871resource fam_monitor_collection(resource $fam, string $dirname, int $depth, string $mask) |Monitor a collection of files in a directory for changes (PHP 5 <= 5.0.5)
872resource fam_monitor_directory(resource $fam, string $dirname) |Monitor a directory for changes (PHP 5 <= 5.0.5)
873resource fam_monitor_file(resource $fam, string $filename) |Monitor a regular file for changes (PHP 5 <= 5.0.5)
874array fam_next_event(resource $fam) |Get next pending FAM event (PHP 5 <= 5.0.5)
875resource fam_open( [string $appname]) |Open connection to FAM daemon (PHP 5 <= 5.0.5)
876int fam_pending(resource $fam) |Check for pending FAM events (PHP 5 <= 5.0.5)
877bool fam_resume_monitor(resource $fam, resource $fam_monitor) |Resume suspended monitoring (PHP 5 <= 5.0.5)
878bool fam_suspend_monitor(resource $fam, resource $fam_monitor) |Temporarily suspend monitoring (PHP 5 <= 5.0.5)
879int fbsql_affected_rows( [resource $link_identifier]) |Get number of affected rows in previous FrontBase operation (PHP 4 >= 4.0.6, PHP 5)
880bool fbsql_autocommit(resource $link_identifier [, bool $OnOff]) |Enable or disable autocommit (PHP 4 >= 4.0.6, PHP 5)
881int fbsql_blob_size(string $blob_handle [, resource $link_identifier]) |Get the size of a BLOB (PHP 4 >= 4.2.0, PHP 5)
882bool fbsql_change_user(string $user, string $password [, string $database [, resource $link_identifier]]) |Change logged in user of the active connection (PHP 4 >= 4.0.6, PHP 5)
883int fbsql_clob_size(string $clob_handle [, resource $link_identifier]) |Get the size of a CLOB (PHP 4 >= 4.2.0, PHP 5)
884bool fbsql_close( [resource $link_identifier]) |Close FrontBase connection (PHP 4 >= 4.0.6, PHP 5)
885bool fbsql_commit( [resource $link_identifier]) |Commits a transaction to the database (PHP 4 >= 4.0.6, PHP 5)
886resource fbsql_connect( [string $hostname=ini_get("fbsql.default_host") [, string $username=ini_get("fbsql.default_user") [, string $password=ini_get("fbsql.default_password")]]]) |Open a connection to a FrontBase Server (PHP 4 >= 4.0.6, PHP 5)
887string fbsql_create_blob(string $blob_data [, resource $link_identifier]) |Create a BLOB (PHP 4 >= 4.2.0, PHP 5)
888string fbsql_create_clob(string $clob_data [, resource $link_identifier]) |Create a CLOB (PHP 4 >= 4.2.0, PHP 5)
889bool fbsql_create_db(string $database_name [, resource $link_identifier [, string $database_options]]) |Create a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
890bool fbsql_data_seek(resource $result, int $row_number) |Move internal result pointer (PHP 4 >= 4.0.6, PHP 5)
891string fbsql_database_password(resource $link_identifier [, string $database_password]) |Sets or retrieves the password for a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
892string fbsql_database(resource $link_identifier [, string $database]) |Get or set the database name used with a connection (PHP 4 >= 4.0.6, PHP 5)
893resource fbsql_db_query(string $database, string $query [, resource $link_identifier]) |Send a FrontBase query (PHP 4 >= 4.0.6, PHP 5)
894int fbsql_db_status(string $database_name [, resource $link_identifier]) |Get the status for a given database (PHP 4 >= 4.0.7, PHP 5)
895bool fbsql_drop_db(string $database_name [, resource $link_identifier]) |Drop (delete) a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
896int fbsql_errno( [resource $link_identifier]) |Returns the error number from previous operation (PHP 4 >= 4.0.6, PHP 5)
897string fbsql_error( [resource $link_identifier]) |Returns the error message from previous operation (PHP 4 >= 4.0.6, PHP 5)
898array fbsql_fetch_array(resource $result [, int $result_type]) |Fetch a result row as an associative array, a numeric array, or both (PHP 4 >= 4.0.6, PHP 5)
899array fbsql_fetch_assoc(resource $result) |Fetch a result row as an associative array (PHP 4 >= 4.0.6, PHP 5)
900object fbsql_fetch_field(resource $result [, int $field_offset]) |Get column information from a result and return as an object (PHP 4 >= 4.0.6, PHP 5)
901array fbsql_fetch_lengths(resource $result) |Get the length of each output in a result (PHP 4 >= 4.0.6, PHP 5)
902object fbsql_fetch_object(resource $result) |Fetch a result row as an object (PHP 4 >= 4.0.6, PHP 5)
903array fbsql_fetch_row(resource $result) |Get a result row as an enumerated array (PHP 4 >= 4.0.6, PHP 5)
904string fbsql_field_flags(resource $result [, int $field_offset]) |Get the flags associated with the specified field in a result (PHP 4 >= 4.0.6, PHP 5)
905int fbsql_field_len(resource $result [, int $field_offset]) |Returns the length of the specified field (PHP 4 >= 4.0.6, PHP 5)
906string fbsql_field_name(resource $result [, int $field_index]) |Get the name of the specified field in a result (PHP 4 >= 4.0.6, PHP 5)
907bool fbsql_field_seek(resource $result [, int $field_offset]) |Set result pointer to a specified field offset (PHP 4 >= 4.0.6, PHP 5)
908string fbsql_field_table(resource $result [, int $field_offset]) |Get name of the table the specified field is in (PHP 4 >= 4.0.6, PHP 5)
909string fbsql_field_type(resource $result [, int $field_offset]) |Get the type of the specified field in a result (PHP 4 >= 4.0.6, PHP 5)
910bool fbsql_free_result(resource $result) |Free result memory (PHP 4 >= 4.0.6, PHP 5)
911array fbsql_get_autostart_info( [resource $link_identifier]) |Description array fbsql_get_autostart_info ([ resource $link_identifier ] ) WarningThis function is currently not documented; only its argument list is available. Parameters link_identifier A FrontBase link identifier returned by fbsql_con (PHP 4 >= 4.0.7, PHP 5)
912string fbsql_hostname(resource $link_identifier [, string $host_name]) |Get or set the host name used with a connection (PHP 4 >= 4.0.6, PHP 5)
913int fbsql_insert_id( [resource $link_identifier]) |Get the id generated from the previous INSERT operation (PHP 4 >= 4.0.6, PHP 5)
914resource fbsql_list_dbs( [resource $link_identifier]) |List databases available on a FrontBase server (PHP 4 >= 4.0.6, PHP 5)
915resource fbsql_list_fields(string $database_name, string $table_name [, resource $link_identifier]) |List FrontBase result fields (PHP 4 >= 4.0.6, PHP 5)
916resource fbsql_list_tables(string $database [, resource $link_identifier]) |List tables in a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
917bool fbsql_next_result(resource $result) |Move the internal result pointer to the next result (PHP 4 >= 4.0.6, PHP 5)
918int fbsql_num_fields(resource $result) |Get number of fields in result (PHP 4 >= 4.0.6, PHP 5)
919int fbsql_num_rows(resource $result) |Get number of rows in result (PHP 4 >= 4.0.6, PHP 5)
920string fbsql_password(resource $link_identifier [, string $password]) |Get or set the user password used with a connection (PHP 4 >= 4.0.6, PHP 5)
921resource fbsql_pconnect( [string $hostname=ini_get("fbsql.default_host") [, string $username=ini_get("fbsql.default_user") [, string $password=ini_get("fbsql.default_password")]]]) |Open a persistent connection to a FrontBase Server (PHP 4 >= 4.0.6, PHP 5)
922resource fbsql_query(string $query [, resource $link_identifier [, int $batch_size]]) |Send a FrontBase query (PHP 4 >= 4.0.6, PHP 5)
923string fbsql_read_blob(string $blob_handle [, resource $link_identifier]) |Read a BLOB from the database (PHP 4 >= 4.2.0, PHP 5)
924string fbsql_read_clob(string $clob_handle [, resource $link_identifier]) |Read a CLOB from the database (PHP 4 >= 4.2.0, PHP 5)
925mixed fbsql_result(resource $result [, int $row [, mixed $field]]) |Get result data (PHP 4 >= 4.0.6, PHP 5)
926bool fbsql_rollback( [resource $link_identifier]) |Rollback a transaction to the database (PHP 4 >= 4.0.6, PHP 5)
927int fbsql_rows_fetched(resource $result) |Get the number of rows affected by the last statement (PHP 5 >= 5.1.0)
928bool fbsql_select_db( [string $database_name [, resource $link_identifier]]) |Select a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
929void fbsql_set_characterset(resource $link_identifier, int $characterset [, int $in_out_both]) |Change input/output character set (PHP 5 >= 5.1.0)
930bool fbsql_set_lob_mode(resource $result, int $lob_mode) |Set the LOB retrieve mode for a FrontBase result set (PHP 4 >= 4.2.0, PHP 5)
931bool fbsql_set_password(resource $link_identifier, string $user, string $password, string $old_password) |Change the password for a given user (PHP 5)
932void fbsql_set_transaction(resource $link_identifier, int $locking, int $isolation) |Set the transaction locking and isolation (PHP 4 >= 4.2.0, PHP 5)
933bool fbsql_start_db(string $database_name [, resource $link_identifier [, string $database_options]]) |Start a database on local or remote server (PHP 4 >= 4.0.6, PHP 5)
934bool fbsql_stop_db(string $database_name [, resource $link_identifier]) |Stop a database on local or remote server (PHP 4 >= 4.0.6, PHP 5)
935string fbsql_table_name(resource $result, int $index) |Get table name of field (PHP 4 >= 4.2.0, PHP 5)
936string fbsql_username(resource $link_identifier [, string $username]) |Get or set the username for the connection (PHP 4 >= 4.0.6, PHP 5)
937bool fbsql_warnings( [bool $OnOff]) |Enable or disable FrontBase warnings (PHP 4 >= 4.0.6, PHP 5)
938bool fclose(resource $handle) |Closes an open file pointer (PHP 4, PHP 5)
939bool fdf_add_doc_javascript(resource $fdf_document, string $script_name, string $script_code) |Adds javascript code to the FDF document (PHP 4 >= 4.3.0, PHP 5)
940bool fdf_add_template(resource $fdf_document, int $newpage, string $filename, string $template, int $rename) |Adds a template into the FDF document (PHP 4, PHP 5)
941void fdf_close(resource $fdf_document) |Close an FDF document (PHP 4, PHP 5)
942resource fdf_create() |Create a new FDF document (PHP 4, PHP 5)
943bool fdf_enum_values(resource $fdf_document, callable $function [, mixed $userdata]) |Call a user defined function for each document value (PHP 4 >= 4.3.0, PHP 5)
944int fdf_errno() |Return error code for last fdf operation (PHP 4 >= 4.3.0, PHP 5)
945string fdf_error( [int $error_code=-1]) |Return error description for FDF error code (PHP 4 >= 4.3.0, PHP 5)
946bool fdf_get_ap(resource $fdf_document, string $field, int $face, string $filename) |Get the appearance of a field (PHP 4 >= 4.3.0, PHP 5)
947array fdf_get_attachment(resource $fdf_document, string $fieldname, string $savepath) |Extracts uploaded file embedded in the FDF (PHP 4 >= 4.3.0, PHP 5)
948string fdf_get_encoding(resource $fdf_document) |Get the value of the /Encoding key (PHP 4 >= 4.3.0, PHP 5)
949string fdf_get_file(resource $fdf_document) |Get the value of the /F key (PHP 4, PHP 5)
950int fdf_get_flags(resource $fdf_document, string $fieldname, int $whichflags) |Gets the flags of a field (PHP 4 >= 4.3.0, PHP 5)
951mixed fdf_get_opt(resource $fdf_document, string $fieldname [, int $element=-1]) |Gets a value from the opt array of a field (PHP 4 >= 4.3.0, PHP 5)
952string fdf_get_status(resource $fdf_document) |Get the value of the /STATUS key (PHP 4, PHP 5)
953mixed fdf_get_value(resource $fdf_document, string $fieldname [, int $which=-1]) |Get the value of a field (PHP 4, PHP 5)
954string fdf_get_version( [resource $fdf_document]) |Gets version number for FDF API or file (PHP 4 >= 4.3.0, PHP 5)
955void fdf_header() |Sets FDF-specific output headers (PHP 4 >= 4.3.0, PHP 5)
956string fdf_next_field_name(resource $fdf_document [, string $fieldname]) |Get the next field name (PHP 4, PHP 5)
957resource fdf_open_string(string $fdf_data) |Read a FDF document from a string (PHP 4 >= 4.3.0, PHP 5)
958resource fdf_open(string $filename) |Open a FDF document (PHP 4, PHP 5)
959bool fdf_remove_item(resource $fdf_document, string $fieldname, int $item) |Sets target frame for form (PHP 4 >= 4.3.0, PHP 5)
960string fdf_save_string(resource $fdf_document) |Returns the FDF document as a string (PHP 4 >= 4.3.0, PHP 5)
961bool fdf_save(resource $fdf_document [, string $filename]) |Save a FDF document (PHP 4, PHP 5)
962bool fdf_set_ap(resource $fdf_document, string $field_name, int $face, string $filename, int $page_number) |Set the appearance of a field (PHP 4, PHP 5)
963bool fdf_set_encoding(resource $fdf_document, string $encoding) |Sets FDF character encoding (PHP 4 >= 4.0.7, PHP 5)
964bool fdf_set_file(resource $fdf_document, string $url [, string $target_frame]) |Set PDF document to display FDF data in (PHP 4, PHP 5)
965bool fdf_set_flags(resource $fdf_document, string $fieldname, int $whichFlags, int $newFlags) |Sets a flag of a field (PHP 4 >= 4.0.2, PHP 5)
966bool fdf_set_javascript_action(resource $fdf_document, string $fieldname, int $trigger, string $script) |Sets an javascript action of a field (PHP 4 >= 4.0.2, PHP 5)
967bool fdf_set_on_import_javascript(resource $fdf_document, string $script, bool $before_data_import) |Adds javascript code to be executed when Acrobat opens the FDF (PHP 4 >= 4.3.0, PHP 5)
968bool fdf_set_opt(resource $fdf_document, string $fieldname, int $element, string $str1, string $str2) |Sets an option of a field (PHP 4 >= 4.0.2, PHP 5)
969bool fdf_set_status(resource $fdf_document, string $status) |Set the value of the /STATUS key (PHP 4, PHP 5)
970bool fdf_set_submit_form_action(resource $fdf_document, string $fieldname, int $trigger, string $script, int $flags) |Sets a submit form action of a field (PHP 4 >= 4.0.2, PHP 5)
971bool fdf_set_target_frame(resource $fdf_document, string $frame_name) |Set target frame for form display (PHP 4 >= 4.3.0, PHP 5)
972bool fdf_set_value(resource $fdf_document, string $fieldname, mixed $value [, int $isName]) |Set the value of a field (PHP 4, PHP 5)
973bool fdf_set_version(resource $fdf_document, string $version) |Sets version number for a FDF file (PHP 4 >= 4.3.0, PHP 5)
974bool feof(resource $handle) |Tests for end-of-file on a file pointer (PHP 4, PHP 5)
975bool fflush(resource $handle) |Flushes the output to a file (PHP 4 >= 4.0.1, PHP 5)
976string fgetc(resource $handle) |Gets character from file pointer (PHP 4, PHP 5)
977array fgetcsv(resource $handle [, int $length=0 [, string $delimiter=', ' [, string $enclosure='"' [, string $escape='\\']]]]) |Gets line from file pointer and parse for CSV fields (PHP 4, PHP 5)
978string fgets(resource $handle [, int $length]) |Gets line from file pointer (PHP 4, PHP 5)
979string fgetss(resource $handle [, int $length [, string $allowable_tags]]) |Gets line from file pointer and strip HTML tags (PHP 4, PHP 5)
980bool file_exists(string $filename) |Checks whether a file or directory exists (PHP 4, PHP 5)
981string file_get_contents(string $filename [, bool $use_include_path=false [, resource $context [, int $offset=-1 [, int $maxlen]]]]) |Reads entire file into a string (PHP 4 >= 4.3.0, PHP 5)
982int file_put_contents(string $filename, mixed $data [, int $flags=0 [, resource $context]]) |Write a string to a file (PHP 5)
983array file(string $filename [, int $flags=0 [, resource $context]]) |Reads entire file into an array (PHP 4, PHP 5)
984int fileatime(string $filename) |Gets last access time of file (PHP 4, PHP 5)
985int filectime(string $filename) |Gets inode change time of file (PHP 4, PHP 5)
986int filegroup(string $filename) |Gets file group (PHP 4, PHP 5)
987int fileinode(string $filename) |Gets file inode (PHP 4, PHP 5)
988int filemtime(string $filename) |Gets file modification time (PHP 4, PHP 5)
989int fileowner(string $filename) |Gets file owner (PHP 4, PHP 5)
990int fileperms(string $filename) |Gets file permissions (PHP 4, PHP 5)
991int filepro_fieldcount() |Find out how many fields are in a filePro database (PHP 4, PHP 5 <= 5.1.6)
992string filepro_fieldname(int $field_number) |Gets the name of a field (PHP 4, PHP 5 <= 5.1.6)
993string filepro_fieldtype(int $field_number) |Gets the type of a field (PHP 4, PHP 5 <= 5.1.6)
994int filepro_fieldwidth(int $field_number) |Gets the width of a field (PHP 4, PHP 5 <= 5.1.6)
995string filepro_retrieve(int $row_number, int $field_number) |Retrieves data from a filePro database (PHP 4, PHP 5 <= 5.1.6)
996int filepro_rowcount() |Find out how many rows are in a filePro database (PHP 4, PHP 5 <= 5.1.6)
997bool filepro(string $directory) |Read and verify the map file (PHP 4, PHP 5 <= 5.1.6)
998int filesize(string $filename) |Gets file size (PHP 4, PHP 5)
999string filetype(string $filename) |Gets file type (PHP 4, PHP 5)
1000bool filter_has_var(int $type, string $variable_name) |Checks if variable of specified type exists (PHP 5 >= 5.2.0)
1001int filter_id(string $filtername) |Returns the filter ID belonging to a named filter (PHP 5 >= 5.2.0)
1002mixed filter_input_array(int $type [, mixed $definition]) |Gets external variables and optionally filters them (PHP 5 >= 5.2.0)
1003mixed filter_input(int $type, string $variable_name [, int $filter=FILTER_DEFAULT [, mixed $options]]) |Gets a specific external variable by name and optionally filters it (PHP 5 >= 5.2.0)
1004array filter_list() |Returns a list of all supported filters (PHP 5 >= 5.2.0)
1005mixed filter_var_array(array $data [, mixed $definition]) |Gets multiple variables and optionally filters them (PHP 5 >= 5.2.0)
1006mixed filter_var(mixed $variable [, int $filter=FILTER_DEFAULT [, mixed $options]]) |Filters a variable with a specified filter (PHP 5 >= 5.2.0)
1007string finfo_buffer(resource $finfo, string $string= NULL [, int $options=FILEINFO_NONE [, resource $context= NULL]]) |Return information about a string buffer (PHP 5 >= 5.3.0, PECL fileinfo >= 0.1.0)
1008bool finfo_close(resource $finfo) |Close fileinfo resource (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)
1009string finfo_file(resource $finfo, string $file_name= NULL [, int $options=FILEINFO_NONE [, resource $context= NULL]]) |Return information about a file (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)
1010resource finfo_open( [int $options=FILEINFO_NONE [, string $magic_file= NULL]]) |Create a new fileinfo resource (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)
1011bool finfo_set_flags(resource $finfo, int $options) |Set libmagic configuration options (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)
1012float floatval(mixed $var) |Get float value of a variable (PHP 4 >= 4.2.0, PHP 5)
1013bool flock(resource $handle, int $operation [, int& $wouldblock]) |Portable advisory file locking (PHP 4, PHP 5)
1014float floor(float $value) |Round fractions down (PHP 4, PHP 5)
1015void flush() |Flush the output buffer (PHP 4, PHP 5)
1016float fmod(float $x, float $y) |Returns the floating point remainder (modulo) of the division of the arguments (PHP 4 >= 4.2.0, PHP 5)
1017bool fnmatch(string $pattern, string $string [, int $flags=0]) |Match filename against a pattern (PHP 4 >= 4.3.0, PHP 5)
1018resource fopen(string $filename, string $mode [, bool $use_include_path=false [, resource $context]]) |Opens file or URL (PHP 4, PHP 5)
1019mixed forward_static_call_array(callable $function, array $parameters) |Call a static method and pass the arguments as array (PHP 5 >= 5.3.0)
1020mixed forward_static_call(callable $function [, mixed $parameter [, mixed $...]]) |Call a static method (PHP 5 >= 5.3.0)
1021int fpassthru(resource $handle) |Output all remaining data on a file pointer (PHP 4, PHP 5)
1022int fprintf(resource $handle, string $format [, mixed $args [, mixed $...]]) |Write a formatted string to a stream (PHP 5)
1023int fputcsv(resource $handle, array $fields [, string $delimiter=', ' [, string $enclosure='"']]) |Format line as CSV and write to file pointer (PHP 5 >= 5.1.0)
1024string fread(resource $handle, int $length) |Binary-safe file read (PHP 4, PHP 5)
1025int frenchtojd(int $month, int $day, int $year) |Converts a date from the French Republican Calendar to a Julian Day Count (PHP 4, PHP 5)
1026string fribidi_log2vis(string $str, string $direction, int $charset) |Convert a logical string to a visual one (PHP 4 >= 4.0.4 and PHP 4 <= 4.1.0, PECL fribidi >= 1.0)
1027mixed fscanf(resource $handle, string $format [, mixed& $...]) |Parses input from a file according to a format (PHP 4 >= 4.0.1, PHP 5)
1028int fseek(resource $handle, int $offset [, int $whence=SEEK_SET]) |Seeks on a file pointer (PHP 4, PHP 5)
1029resource fsockopen(string $hostname [, int $port=-1 [, int& $errno [, string& $errstr [, float $timeout=ini_get("default_socket_timeout")]]]]) |Open Internet or Unix domain socket connection (PHP 4, PHP 5)
1030array fstat(resource $handle) |Gets information about a file using an open file pointer (PHP 4, PHP 5)
1031int ftell(resource $handle) |Returns the current position of the file read/write pointer (PHP 4, PHP 5)
1032int ftok(string $pathname, string $proj) |Convert a pathname and a project identifier to a System V IPC key (PHP 4 >= 4.2.0, PHP 5)
1033bool ftp_alloc(resource $ftp_stream, int $filesize [, string& $result]) |Allocates space for a file to be uploaded (PHP 5)
1034bool ftp_cdup(resource $ftp_stream) |Changes to the parent directory (PHP 4, PHP 5)
1035bool ftp_chdir(resource $ftp_stream, string $directory) |Changes the current directory on a FTP server (PHP 4, PHP 5)
1036int ftp_chmod(resource $ftp_stream, int $mode, string $filename) |Set permissions on a file via FTP (PHP 5)
1037bool ftp_close(resource $ftp_stream) |Closes an FTP connection (PHP 4 >= 4.2.0, PHP 5)
1038resource ftp_connect(string $host [, int $port=21 [, int $timeout=90]]) |Opens an FTP connection (PHP 4, PHP 5)
1039bool ftp_delete(resource $ftp_stream, string $path) |Deletes a file on the FTP server (PHP 4, PHP 5)
1040bool ftp_exec(resource $ftp_stream, string $command) |Requests execution of a command on the FTP server (PHP 4 >= 4.0.3, PHP 5)
1041bool ftp_fget(resource $ftp_stream, resource $handle, string $remote_file, int $mode [, int $resumepos=0]) |Downloads a file from the FTP server and saves to an open file (PHP 4, PHP 5)
1042bool ftp_fput(resource $ftp_stream, string $remote_file, resource $handle, int $mode [, int $startpos=0]) |Uploads from an open file to the FTP server (PHP 4, PHP 5)
1043mixed ftp_get_option(resource $ftp_stream, int $option) |Retrieves various runtime behaviours of the current FTP stream (PHP 4 >= 4.2.0, PHP 5)
1044bool ftp_get(resource $ftp_stream, string $local_file, string $remote_file, int $mode [, int $resumepos=0]) |Downloads a file from the FTP server (PHP 4, PHP 5)
1045bool ftp_login(resource $ftp_stream, string $username, string $password) |Logs in to an FTP connection (PHP 4, PHP 5)
1046int ftp_mdtm(resource $ftp_stream, string $remote_file) |Returns the last modified time of the given file (PHP 4, PHP 5)
1047string ftp_mkdir(resource $ftp_stream, string $directory) |Creates a directory (PHP 4, PHP 5)
1048int ftp_nb_continue(resource $ftp_stream) |Continues retrieving/sending a file (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
1049int ftp_nb_fget(resource $ftp_stream, resource $handle, string $remote_file, int $mode [, int $resumepos=0]) |Retrieves a file from the FTP server and writes it to an open file (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
1050int ftp_nb_fput(resource $ftp_stream, string $remote_file, resource $handle, int $mode [, int $startpos=0]) |Stores a file from an open file to the FTP server (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
1051int ftp_nb_get(resource $ftp_stream, string $local_file, string $remote_file, int $mode [, int $resumepos=0]) |Retrieves a file from the FTP server and writes it to a local file (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
1052int ftp_nb_put(resource $ftp_stream, string $remote_file, string $local_file, int $mode [, int $startpos=0]) |Stores a file on the FTP server (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
1053array ftp_nlist(resource $ftp_stream, string $directory) |Returns a list of files in the given directory (PHP 4, PHP 5)
1054bool ftp_pasv(resource $ftp_stream, bool $pasv) |Turns passive mode on or off (PHP 4, PHP 5)
1055bool ftp_put(resource $ftp_stream, string $remote_file, string $local_file, int $mode [, int $startpos=0]) |Uploads a file to the FTP server (PHP 4, PHP 5)
1056string ftp_pwd(resource $ftp_stream) |Returns the current directory name (PHP 4, PHP 5)
1057array ftp_raw(resource $ftp_stream, string $command) |Sends an arbitrary command to an FTP server (PHP 5)
1058array ftp_rawlist(resource $ftp_stream, string $directory [, bool $recursive=false]) |Returns a detailed list of files in the given directory (PHP 4, PHP 5)
1059bool ftp_rename(resource $ftp_stream, string $oldname, string $newname) |Renames a file or a directory on the FTP server (PHP 4, PHP 5)
1060bool ftp_rmdir(resource $ftp_stream, string $directory) |Removes a directory (PHP 4, PHP 5)
1061bool ftp_set_option(resource $ftp_stream, int $option, mixed $value) |Set miscellaneous runtime FTP options (PHP 4 >= 4.2.0, PHP 5)
1062bool ftp_site(resource $ftp_stream, string $command) |Sends a SITE command to the server (PHP 4, PHP 5)
1063int ftp_size(resource $ftp_stream, string $remote_file) |Returns the size of the given file (PHP 4, PHP 5)
1064resource ftp_ssl_connect(string $host [, int $port=21 [, int $timeout=90]]) |Opens an Secure SSL-FTP connection (PHP 4 >= 4.3.0, PHP 5)
1065string ftp_systype(resource $ftp_stream) |Returns the system type identifier of the remote FTP server (PHP 4, PHP 5)
1066bool ftruncate(resource $handle, int $size) |Truncates a file to a given length (PHP 4, PHP 5)
1067mixed func_get_arg(int $arg_num) |Return an item from the argument list (PHP 4, PHP 5)
1068array func_get_args() |Returns an array comprising a function's argument list (PHP 4, PHP 5)
1069publicbool GearmanWorker::setId(string $id) |Give the worker an identifier so it can be tracked when asking gearmand for the list of available workers. (No version information available, might only be in SVN)
1070int func_num_args() |Returns the number of arguments passed to the function (PHP 4, PHP 5)
1071bool function_exists(string $function_name) |Return TRUE if the given function has been defined (PHP 4, PHP 5)
1072int fwrite(resource $handle, string $string [, int $length]) |Binary-safe file write (PHP 4, PHP 5)
1073int gc_collect_cycles() |Forces collection of any existing garbage cycles (PHP 5 >= 5.3.0)
1074void gc_disable() |Deactivates the circular reference collector (PHP 5 >= 5.3.0)
1075void gc_enable() |Activates the circular reference collector (PHP 5 >= 5.3.0)
1076bool gc_enabled() |Returns status of the circular reference collector (PHP 5 >= 5.3.0)
1077array gd_info() |Retrieve information about the currently installed GD library (PHP 4 >= 4.3.0, PHP 5)
1078string geoip_continent_code_by_name(string $hostname) |Get the two letter continent code (PECL geoip >= 1.0.3)
1079string geoip_country_code_by_name(string $hostname) |Get the two letter country code (PECL geoip >= 0.2.0)
1080string geoip_country_code3_by_name(string $hostname) |Get the three letter country code (PECL geoip >= 0.2.0)
1081string geoip_country_name_by_name(string $hostname) |Get the full country name (PECL geoip >= 0.2.0)
1082string geoip_database_info( [int $database=GEOIP_COUNTRY_EDITION]) |Get GeoIP Database information (PECL geoip >= 0.2.0)
1083bool geoip_db_avail(int $database) |Determine if GeoIP Database is available (PECL geoip >= 1.0.1)
1084string geoip_db_filename(int $database) |Returns the filename of the corresponding GeoIP Database (PECL geoip >= 1.0.1)
1085array geoip_db_get_all_info() |Returns detailed information about all GeoIP database types (PECL geoip >= 1.0.1)
1086int geoip_id_by_name(string $hostname) |Get the Internet connection type (PECL geoip >= 0.2.0)
1087string geoip_isp_by_name(string $hostname) |Get the Internet Service Provider (ISP) name (PECL geoip >= 1.0.2)
1088string geoip_org_by_name(string $hostname) |Get the organization name (PECL geoip >= 0.2.0)
1089array geoip_record_by_name(string $hostname) |Returns the detailed City information found in the GeoIP Database (PECL geoip >= 0.2.0)
1090array geoip_region_by_name(string $hostname) |Get the country code and region (PECL geoip >= 0.2.0)
1091string geoip_region_name_by_code(string $country_code, string $region_code) |Returns the region name for some country and region code combo (PECL geoip >= 1.0.4)
1092string geoip_time_zone_by_country_and_region(string $country_code [, string $region_code]) |Returns the time zone for some country and region code combo (PECL geoip >= 1.0.4)
1093mixed get_browser( [string $user_agent [, bool $return_array=false]]) |Tells what the user's browser is capable of (PHP 4, PHP 5)
1094string get_called_class() |the "Late Static Binding" class name (PHP 5 >= 5.3.0)
1095string get_cfg_var(string $option) |Gets the value of a PHP configuration option (PHP 4, PHP 5)
1096array get_class_methods(mixed $class_name) |Gets the class methods' names (PHP 4, PHP 5)
1097array get_class_vars(string $class_name) |Get the default properties of the class (PHP 4, PHP 5)
1098string get_class( [object $object= NULL]) |Returns the name of the class of an object (PHP 4, PHP 5)
1099string get_current_user() |Gets the name of the owner of the current PHP script (PHP 4, PHP 5)
1100array get_declared_classes() |Returns an array with the name of the defined classes (PHP 4, PHP 5)
1101array get_declared_interfaces() |Returns an array of all declared interfaces (PHP 5)
1102array get_declared_traits() |Returns an array of all declared traits (No version information available, might only be in SVN)
1103array get_defined_constants( [bool $categorize=false]) |Returns an associative array with the names of all the constants and their values (PHP 4 >= 4.1.0, PHP 5)
1104array get_defined_functions() |Returns an array of all defined functions (PHP 4 >= 4.0.4, PHP 5)
1105array get_defined_vars() |Returns an array of all defined variables (PHP 4 >= 4.0.4, PHP 5)
1106array get_extension_funcs(string $module_name) |Returns an array with the names of the functions of a module (PHP 4, PHP 5)
1107array get_headers(string $url [, int $format=0]) |Fetches all the headers sent by the server in response to a HTTP request (PHP 5)
1108array get_html_translation_table( [int $table=HTML_SPECIALCHARS [, int $flags=ENT_COMPAT|ENT_HTML401 [, string $encoding='UTF-8']]]) |Returns the translation table used by htmlspecialchars() and htmlentities() (PHP 4, PHP 5)
1109string get_include_path() |Gets the current include_path configuration option (PHP 4 >= 4.3.0, PHP 5)
1110array get_included_files() |Returns an array with the names of included or required files (PHP 4, PHP 5)
1111array get_loaded_extensions( [bool $zend_extensions=false]) |Returns an array with the names of all modules compiled and loaded (PHP 4, PHP 5)
1112bool get_magic_quotes_gpc() |Gets the current configuration setting of magic_quotes_gpc (PHP 4, PHP 5)
1113bool get_magic_quotes_runtime() |Gets the current active configuration setting of magic_quotes_runtime (PHP 4, PHP 5)
1114array get_meta_tags(string $filename [, bool $use_include_path=false]) |Extracts all meta tag content attributes from a file and returns an array (PHP 4, PHP 5)
1115array get_object_vars(object $object) |Gets the properties of the given object (PHP 4, PHP 5)
1116string get_parent_class( [mixed $object]) |Retrieves the parent class name for object or class (PHP 4, PHP 5)
1117string get_resource_type(resource $handle) |Returns the resource type (PHP 4 >= 4.0.2, PHP 5)
1118array getallheaders() |Fetch all HTTP request headers (PHP 4, PHP 5)
1119string getcwd() |Gets the current working directory (PHP 4, PHP 5)
1120array getdate( [int $timestamp=time()]) |Get date/time information (PHP 4, PHP 5)
1121string getenv(string $varname) |Gets the value of an environment variable (PHP 4, PHP 5)
1122string gethostbyaddr(string $ip_address) |Get the Internet host name corresponding to a given IP address (PHP 4, PHP 5)
1123string gethostbyname(string $hostname) |Get the IPv4 address corresponding to a given Internet host name (PHP 4, PHP 5)
1124array gethostbynamel(string $hostname) |Get a list of IPv4 addresses corresponding to a given Internet host name (PHP 4, PHP 5)
1125string gethostname() |Gets the host name (PHP >= 5.3.0)
1126array getimagesize(string $filename [, array& $imageinfo]) |Get the size of an image (PHP 4, PHP 5)
1127array getimagesizefromstring(string $imagedata [, array& $imageinfo]) |Get the size of an image from a string (PHP 5 >= 5.4.0)
1128int getlastmod() |Gets time of last page modification (PHP 4, PHP 5)
1129bool getmxrr(string $hostname, array& $mxhosts [, array& $weight]) |Get MX records corresponding to a given Internet host name (PHP 4, PHP 5)
1130int getmygid() |Get PHP script owner's GID (PHP 4 >= 4.1.0, PHP 5)
1131int getmyinode() |Gets the inode of the current script (PHP 4, PHP 5)
1132int getmypid() |Gets PHP's process ID (PHP 4, PHP 5)
1133int getmyuid() |Gets PHP script owner's UID (PHP 4, PHP 5)
1134array getopt(string $options [, array $longopts]) |Gets options from the command line argument list (PHP 4 >= 4.3.0, PHP 5)
1135int getprotobyname(string $name) |Get protocol number associated with protocol name (PHP 4, PHP 5)
1136string getprotobynumber(int $number) |Get protocol name associated with protocol number (PHP 4, PHP 5)
1137int getrandmax() |Show largest possible random value (PHP 4, PHP 5)
1138array getrusage( [int $who=0]) |Gets the current resource usages (PHP 4, PHP 5)
1139int getservbyname(string $service, string $protocol) |Get port number associated with an Internet service and protocol (PHP 4, PHP 5)
1140string getservbyport(int $port, string $protocol) |Get Internet service which corresponds to port and protocol (PHP 4, PHP 5)
1141string gettext(string $message) |Lookup a message in the current domain (PHP 4, PHP 5)
1142mixed gettimeofday( [bool $return_float=false]) |Get current time (PHP 4, PHP 5)
1143string gettype(mixed $var) |Get the type of a variable (PHP 4, PHP 5)
1144array glob(string $pattern [, int $flags=0]) |Find pathnames matching a pattern (PHP 4 >= 4.3.0, PHP 5)
1145string gmdate(string $format [, int $timestamp=time()]) |Format a GMT/UTC date/time (PHP 4, PHP 5)
1146int gmmktime( [int $hour=gmdate("H") [, int $minute=gmdate("i") [, int $second=gmdate("s") [, int $month=gmdate("n") [, int $day=gmdate("j") [, int $year=gmdate("Y") [, int $is_dst=-1]]]]]]]) |Get Unix timestamp for a GMT date (PHP 4, PHP 5)
1147resource gmp_abs(resource $a) |Absolute value (PHP 4 >= 4.0.4, PHP 5)
1148resource gmp_add(resource $a, resource $b) |Add numbers (PHP 4 >= 4.0.4, PHP 5)
1149resource gmp_and(resource $a, resource $b) |Bitwise AND (PHP 4 >= 4.0.4, PHP 5)
1150void gmp_clrbit(resource $a, int $index) |Clear bit (PHP 4 >= 4.0.4, PHP 5)
1151int gmp_cmp(resource $a, resource $b) |Compare numbers (PHP 4 >= 4.0.4, PHP 5)
1152resource gmp_com(resource $a) |Calculates one's complement (PHP 4 >= 4.0.4, PHP 5)
1153resource gmp_div_q(resource $a, resource $b [, int $round=GMP_ROUND_ZERO]) |Divide numbers (PHP 4 >= 4.0.4, PHP 5)
1154array gmp_div_qr(resource $n, resource $d [, int $round=GMP_ROUND_ZERO]) |Divide numbers and get quotient and remainder (PHP 4 >= 4.0.4, PHP 5)
1155resource gmp_div_r(resource $n, resource $d [, int $round=GMP_ROUND_ZERO]) |Remainder of the division of numbers (PHP 4 >= 4.0.4, PHP 5)
1156resource gmp_divexact(resource $n, resource $d) |Exact division of numbers (PHP 4 >= 4.0.4, PHP 5)
1157resource gmp_fact(mixed $a) |Factorial (PHP 4 >= 4.0.4, PHP 5)
1158resource gmp_gcd(resource $a, resource $b) |Calculate GCD (PHP 4 >= 4.0.4, PHP 5)
1159array gmp_gcdext(resource $a, resource $b) |Calculate GCD and multipliers (PHP 4 >= 4.0.4, PHP 5)
1160int gmp_hamdist(resource $a, resource $b) |Hamming distance (PHP 4 >= 4.0.4, PHP 5)
1161resource gmp_init(mixed $number [, int $base=0]) |Create GMP number (PHP 4 >= 4.0.4, PHP 5)
1162int gmp_intval(resource $gmpnumber) |Convert GMP number to integer (PHP 4 >= 4.0.4, PHP 5)
1163resource gmp_invert(resource $a, resource $b) |Inverse by modulo (PHP 4 >= 4.0.4, PHP 5)
1164int gmp_jacobi(resource $a, resource $p) |Jacobi symbol (PHP 4 >= 4.0.4, PHP 5)
1165int gmp_legendre(resource $a, resource $p) |Legendre symbol (PHP 4 >= 4.0.4, PHP 5)
1166resource gmp_mod(resource $n, resource $d) |Modulo operation (PHP 4 >= 4.0.4, PHP 5)
1167resource gmp_mul(resource $a, resource $b) |Multiply numbers (PHP 4 >= 4.0.4, PHP 5)
1168resource gmp_neg(resource $a) |Negate number (PHP 4 >= 4.0.4, PHP 5)
1169resource gmp_nextprime(int $a) |Find next prime number (PHP 5 >= 5.2.0)
1170resource gmp_or(resource $a, resource $b) |Bitwise OR (PHP 4 >= 4.0.4, PHP 5)
1171bool gmp_perfect_square(resource $a) |Perfect square check (PHP 4 >= 4.0.4, PHP 5)
1172int gmp_popcount(resource $a) |Population count (PHP 4 >= 4.0.4, PHP 5)
1173resource gmp_pow(resource $base, int $exp) |Raise number into power (PHP 4 >= 4.0.4, PHP 5)
1174resource gmp_powm(resource $base, resource $exp, resource $mod) |Raise number into power with modulo (PHP 4 >= 4.0.4, PHP 5)
1175int gmp_prob_prime(resource $a [, int $reps=10]) |Check if number is "probably prime" (PHP 4 >= 4.0.4, PHP 5)
1176resource gmp_random( [int $limiter=20]) |Random number (PHP 4 >= 4.0.4, PHP 5)
1177int gmp_scan0(resource $a, int $start) |Scan for 0 (PHP 4 >= 4.0.4, PHP 5)
1178int gmp_scan1(resource $a, int $start) |Scan for 1 (PHP 4 >= 4.0.4, PHP 5)
1179void gmp_setbit(resource $a, int $index [, bool $set_clear=true]) |Set bit (PHP 4 >= 4.0.4, PHP 5)
1180int gmp_sign(resource $a) |Sign of number (PHP 4 >= 4.0.4, PHP 5)
1181resource gmp_sqrt(resource $a) |Calculate square root (PHP 4 >= 4.0.4, PHP 5)
1182array gmp_sqrtrem(resource $a) |Square root with remainder (PHP 4 >= 4.0.4, PHP 5)
1183string gmp_strval(resource $gmpnumber [, int $base=10]) |Convert GMP number to string (PHP 4 >= 4.0.4, PHP 5)
1184resource gmp_sub(resource $a, resource $b) |Subtract numbers (PHP 4 >= 4.0.4, PHP 5)
1185bool gmp_testbit(resource $a, int $index) |Tests if a bit is set (PHP 5 >= 5.3.0)
1186resource gmp_xor(resource $a, resource $b) |Bitwise XOR (PHP 4 >= 4.0.4, PHP 5)
1187string gmstrftime(string $format [, int $timestamp=time()]) |Format a GMT/UTC time/date according to locale settings (PHP 4, PHP 5)
1188bool gnupg_adddecryptkey(resource $identifier, string $fingerprint, string $passphrase) |Add a key for decryption (PECL gnupg >= 0.5)
1189bool gnupg_addencryptkey(resource $identifier, string $fingerprint) |Add a key for encryption (PECL gnupg >= 0.5)
1190bool gnupg_addsignkey(resource $identifier, string $fingerprint [, string $passphrase]) |Add a key for signing (PECL gnupg >= 0.5)
1191bool gnupg_cleardecryptkeys(resource $identifier) |Removes all keys which were set for decryption before (PECL gnupg >= 0.5)
1192bool gnupg_clearencryptkeys(resource $identifier) |Removes all keys which were set for encryption before (PECL gnupg >= 0.5)
1193bool gnupg_clearsignkeys(resource $identifier) |Removes all keys which were set for signing before (PECL gnupg >= 0.5)
1194string gnupg_decrypt(resource $identifier, string $text) |Decrypts a given text (PECL gnupg >= 0.1)
1195array gnupg_decryptverify(resource $identifier, string $text, string& $plaintext) |Decrypts and verifies a given text (PECL gnupg >= 0.2)
1196string gnupg_encrypt(resource $identifier, string $plaintext) |Encrypts a given text (PECL gnupg >= 0.1)
1197string gnupg_encryptsign(resource $identifier, string $plaintext) |Encrypts and signs a given text (PECL gnupg >= 0.2)
1198string gnupg_export(resource $identifier, string $fingerprint) |Exports a key (PECL gnupg >= 0.1)
1199string gnupg_geterror(resource $identifier) |Returns the errortext, if a function fails (PECL gnupg >= 0.1)
1200int gnupg_getprotocol(resource $identifier) |Returns the currently active protocol for all operations (PECL gnupg >= 0.1)
1201array gnupg_import(resource $identifier, string $keydata) |Imports a key (PECL gnupg >= 0.3)
1202resource gnupg_init() |Initialize a connection (PECL gnupg >= 0.4)
1203array gnupg_keyinfo(resource $identifier, string $pattern) |Returns an array with information about all keys that matches the given pattern (PECL gnupg >= 0.1)
1204bool gnupg_setarmor(resource $identifier, int $armor) |Toggle armored output (PECL gnupg >= 0.1)
1205void gnupg_seterrormode(resource $identifier, int $errormode) |Sets the mode for error_reporting (PECL gnupg >= 0.6)
1206bool gnupg_setsignmode(resource $identifier, int $signmode) |Sets the mode for signing (PECL gnupg >= 0.1)
1207string gnupg_sign(resource $identifier, string $plaintext) |Signs a given text (PECL gnupg >= 0.1)
1208array gnupg_verify(resource $identifier, string $signed_text, string $signature [, string& $plaintext]) |Verifies a signed text (PECL gnupg >= 0.1)
1209array gopher_parsedir(string $dirent) |Translate a gopher formatted directory entry into an associative array. (PECL net_gopher >= 0.1)
1210string grapheme_extract(string $haystack, int $size [, int $extract_type [, int $start=0 [, int& $next]]]) |Function to extract a sequence of default grapheme clusters from a text buffer, which must be encoded in UTF-8. (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1211int grapheme_stripos(string $haystack, string $needle [, int $offset=0]) |Find position (in grapheme units) of first occurrence of a case-insensitive string (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1212string grapheme_stristr(string $haystack, string $needle [, bool $before_needle=false]) |Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack. (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1213int grapheme_strlen(string $input) |Get string length in grapheme units (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1214int grapheme_strpos(string $haystack, string $needle [, int $offset=0]) |Find position (in grapheme units) of first occurrence of a string (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1215int grapheme_strripos(string $haystack, string $needle [, int $offset=0]) |Find position (in grapheme units) of last occurrence of a case-insensitive string (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1216int grapheme_strrpos(string $haystack, string $needle [, int $offset=0]) |Find position (in grapheme units) of last occurrence of a string (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1217string grapheme_strstr(string $haystack, string $needle [, bool $before_needle=false]) |Returns part of haystack string from the first occurrence of needle to the end of haystack. (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1218int grapheme_substr(string $string, int $start [, int $length]) |Return part of a string (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1219int gregoriantojd(int $month, int $day, int $year) |Converts a Gregorian date to Julian Day Count (PHP 4, PHP 5)
1220string gupnp_context_get_host_ip(resource $context) |Get the IP address (PECL gupnp >= 0.1.0)
1221int gupnp_context_get_port(resource $context) |Get the port (PECL gupnp >= 0.1.0)
1222int gupnp_context_get_subscription_timeout(resource $context) |Get the event subscription timeout (PECL gupnp >= 0.1.0)
1223bool gupnp_context_host_path(resource $context, string $local_path, string $server_path) |Start hosting (PECL gupnp >= 0.1.0)
1224resource gupnp_context_new( [string $host_ip [, int $port=0]]) |Create a new context (PECL gupnp >= 0.1.0)
1225void gupnp_context_set_subscription_timeout(resource $context, int $timeout) |Sets the event subscription timeout (PECL gupnp >= 0.1.0)
1226bool gupnp_context_timeout_add(resource $context, int $timeout, mixed $callback [, mixed $arg]) |Sets a function to be called at regular intervals (PECL gupnp >= 0.1.0)
1227bool gupnp_context_unhost_path(resource $context, string $server_path) |Stop hosting (PECL gupnp >= 0.1.0)
1228bool gupnp_control_point_browse_start(resource $cpoint) |Start browsing (PECL gupnp >= 0.1.0)
1229bool gupnp_control_point_browse_stop(resource $cpoint) |Stop browsing (PECL gupnp >= 0.1.0)
1230bool gupnp_control_point_callback_set(resource $cpoint, int $signal, mixed $callback [, mixed $arg]) |Set control point callback (PECL gupnp >= 0.1.0)
1231resource gupnp_control_point_new(resource $context, string $target) |Create a new control point (PECL gupnp >= 0.1.0)
1232bool gupnp_device_action_callback_set(resource $root_device, int $signal, string $action_name, mixed $callback [, mixed $arg]) |Set device callback function (PECL gupnp >= 0.1.0)
1233resource gupnp_device_info_get_service(resource $root_device, string $type) |Get the service with type (PECL gupnp >= 0.1.0)
1234array gupnp_device_info_get(resource $root_device) |Get info of root device (PECL gupnp >= 0.1.0)
1235bool gupnp_root_device_get_available(resource $root_device) |Check whether root device is available (PECL gupnp >= 0.1.0)
1236string gupnp_root_device_get_relative_location(resource $root_device) |Get the relative location of root device. (PECL gupnp >= 0.1.0)
1237resource gupnp_root_device_new(resource $context, string $location, string $description_dir) |Create a new root device (PECL gupnp >= 0.1.0)
1238bool gupnp_root_device_set_available(resource $root_device, bool $available) |Set whether or not root_device is available (PECL gupnp >= 0.1.0)
1239bool gupnp_root_device_start(resource $root_device) |Start main loop (PECL gupnp >= 0.1.0)
1240bool gupnp_root_device_stop(resource $root_device) |Stop main loop (PECL gupnp >= 0.1.0)
1241mixed gupnp_service_action_get(resource $action, string $name, int $type) |Retrieves the specified action arguments (PECL gupnp >= 0.1.0)
1242bool gupnp_service_action_return_error(resource $action, int $error_code [, string $error_description]) |Return error code (PECL gupnp >= 0.1.0)
1243bool gupnp_service_action_return(resource $action) |Return succesfully (PECL gupnp >= 0.1.0)
1244bool gupnp_service_action_set(resource $action, string $name, int $type, mixed $value) |Sets the specified action return values (PECL gupnp >= 0.1.0)
1245bool gupnp_service_freeze_notify(resource $service) |Freeze new notifications (PECL gupnp >= 0.1.0)
1246mixed gupnp_service_info_get_introspection(resource $proxy [, mixed $callback [, mixed $arg]]) |Get resource introspection of service (PECL gupnp >= 0.1.0)
1247array gupnp_service_info_get(resource $proxy) |Get full info of service (PECL gupnp >= 0.1.0)
1248array gupnp_service_introspection_get_state_variable(resource $introspection, string $variable_name) |Returns the state variable data (PECL gupnp >= 0.1.0)
1249bool gupnp_service_notify(resource $service, string $name, int $type, mixed $value) |Notifies listening clients (PECL gupnp >= 0.1.0)
1250mixed gupnp_service_proxy_action_get(resource $proxy, string $action, string $name, int $type) |Send action to the service and get value (PECL gupnp >= 0.1.0)
1251bool gupnp_service_proxy_action_set(resource $proxy, string $action, string $name, mixed $value, int $type) |Send action to the service and set value (PECL gupnp >= 0.1.0)
1252bool gupnp_service_proxy_add_notify(resource $proxy, string $value, int $type, mixed $callback [, mixed $arg]) |Sets up callback for variable change notification (PECL gupnp >= 0.1.0)
1253bool gupnp_service_proxy_callback_set(resource $proxy, int $signal, mixed $callback [, mixed $arg]) |Set service proxy callback for signal (PECL gupnp >= 0.1.0)
1254bool gupnp_service_proxy_get_subscribed(resource $proxy) |Check whether subscription is valid to the service (PECL gupnp >= 0.1.0)
1255bool gupnp_service_proxy_remove_notify(resource $proxy, string $value) |Cancels the variable change notification (PECL gupnp >= 0.1.0)
1256bool gupnp_service_proxy_set_subscribed(resource $proxy, bool $subscribed) |(Un)subscribes to the service. (PECL gupnp >= 0.1.0)
1257bool gupnp_service_thaw_notify(resource $service) |Sends out any pending notifications and stops queuing of new ones. (PECL gupnp >= 0.1.0)
1258bool gzclose(resource $zp) |Close an open gz-file pointer (PHP 4, PHP 5)
1259string gzcompress(string $data [, int $level=-1]) |Compress a string (PHP 4 >= 4.0.1, PHP 5)
1260string gzdecode(string $data [, int $length]) |Decodes a gzip compressed string (No version information available, might only be in SVN)
1261string gzdeflate(string $data [, int $level=-1]) |Deflate a string (PHP 4 >= 4.0.4, PHP 5)
1262string gzencode(string $data [, int $level=-1 [, int $encoding_mode=FORCE_GZIP]]) |Create a gzip compressed string (PHP 4 >= 4.0.4, PHP 5)
1263int gzeof(resource $zp) |Test for EOF on a gz-file pointer (PHP 4, PHP 5)
1264array gzfile(string $filename [, int $use_include_path=0]) |Read entire gz-file into an array (PHP 4, PHP 5)
1265string gzgetc(resource $zp) |Get character from gz-file pointer (PHP 4, PHP 5)
1266string gzgets(resource $zp, int $length) |Get line from file pointer (PHP 4, PHP 5)
1267string gzgetss(resource $zp, int $length [, string $allowable_tags]) |Get line from gz-file pointer and strip HTML tags (PHP 4, PHP 5)
1268string gzinflate(string $data [, int $length=0]) |Inflate a deflated string (PHP 4 >= 4.0.4, PHP 5)
1269resource gzopen(string $filename, string $mode [, int $use_include_path=0]) |Open gz-file (PHP 4, PHP 5)
1270int gzpassthru(resource $zp) |Output all remaining data on a gz-file pointer (PHP 4, PHP 5)
1271string gzread(resource $zp, int $length) |Binary-safe gz-file read (PHP 4, PHP 5)
1272bool gzrewind(resource $zp) |Rewind the position of a gz-file pointer (PHP 4, PHP 5)
1273int gzseek(resource $zp, int $offset [, int $whence=SEEK_SET]) |Seek on a gz-file pointer (PHP 4, PHP 5)
1274int gztell(resource $zp) |Tell gz-file pointer read/write position (PHP 4, PHP 5)
1275string gzuncompress(string $data [, int $length=0]) |Uncompress a compressed string (PHP 4 >= 4.0.1, PHP 5)
1276int gzwrite(resource $zp, string $string [, int $length]) |Binary-safe gz-file write (PHP 4, PHP 5)
1277void __halt_compiler() |Halts the compiler execution (PHP 5 >= 5.1.0)
1278array hash_algos() |Return a list of registered hashing algorithms (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1279resource hash_copy(resource $context) |Copy hashing context (PHP 5 >= 5.3.0)
1280string hash_file(string $algo, string $filename [, bool $raw_output=false]) |Generate a hash value using the contents of a given file (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1281string hash_final(resource $context [, bool $raw_output=false]) |Finalize an incremental hash and return resulting digest (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1282string hash_hmac_file(string $algo, string $filename, string $key [, bool $raw_output=false]) |Generate a keyed hash value using the HMAC method and the contents of a given file (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1283string hash_hmac(string $algo, string $data, string $key [, bool $raw_output=false]) |Generate a keyed hash value using the HMAC method (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1284resource hash_init(string $algo [, int $options=0 [, string $key= NULL]]) |Initialize an incremental hashing context (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1285string hash_pbkdf2(string $algo, string $password, string $salt, int $iterations [, int $length=0 [, bool $raw_output=false]]) |Generate a PBKDF2 key derivation of a supplied password (PHP 5 >= 5.5.0)
1286bool hash_update_file(resource $context, string $filename [, resource $context= NULL]) |Pump data into an active hashing context from a file (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1287int hash_update_stream(resource $context, resource $handle [, int $length=-1]) |Pump data into an active hashing context from an open stream (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1288bool hash_update(resource $context, string $data) |Pump data into an active hashing context (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1289string hash(string $algo, string $data [, bool $raw_output=false]) |Generate a hash value (message digest) (PHP 5 >= 5.1.2, PECL hash >= 1.1)
1290bool header_register_callback(callable $callback) |Call a header function (No version information available, might only be in SVN)
1291void header_remove( [string $name]) |Remove previously set headers (PHP 5 >= 5.3.0)
1292void header(string $string [, bool $replace=true [, int $http_response_code]]) |Send a raw HTTP header (PHP 4, PHP 5)
1293array headers_list() |Returns a list of response headers sent (or ready to send) (PHP 5)
1294bool headers_sent( [string& $file [, int& $line]]) |Checks if or where headers have been sent (PHP 4, PHP 5)
1295string hebrev(string $hebrew_text [, int $max_chars_per_line=0]) |Convert logical Hebrew text to visual text (PHP 4, PHP 5)
1296string hebrevc(string $hebrew_text [, int $max_chars_per_line=0]) |Convert logical Hebrew text to visual text with newline conversion (PHP 4, PHP 5)
1297string hex2bin(string $data) |Decodes a hexadecimally encoded binary string (PHP >= 5.4.0)
1298number hexdec(string $hex_string) |Hexadecimal to decimal (PHP 4, PHP 5)
1299mixed highlight_file(string $filename [, bool $return=false]) |Syntax highlighting of a file (PHP 4, PHP 5)
1300mixed highlight_string(string $str [, bool $return=false]) |Syntax highlighting of a string (PHP 4, PHP 5)
1301string html_entity_decode(string $string [, int $flags=ENT_COMPAT|ENT_HTML401 [, string $encoding='UTF-8']]) |Convert all HTML entities to their applicable characters (PHP 4 >= 4.3.0, PHP 5)
1302string htmlentities(string $string [, int $flags=ENT_COMPAT|ENT_HTML401 [, string $encoding='UTF-8' [, bool $double_encode=true]]]) |Convert all applicable characters to HTML entities (PHP 4, PHP 5)
1303string htmlspecialchars_decode(string $string [, int $flags=ENT_COMPAT|ENT_HTML401]) |Convert special HTML entities back to characters (PHP 5 >= 5.1.0)
1304string htmlspecialchars(string $string [, int $flags=ENT_COMPAT|ENT_HTML401 [, string $encoding='UTF-8' [, bool $double_encode=true]]]) |Convert special characters to HTML entities (PHP 4, PHP 5)
1305string http_build_cookie(array $cookie) |Build cookie string (PECL pecl_http >= 1.2.0)
1306string http_build_query(mixed $query_data [, string $numeric_prefix [, string $arg_separator [, int $enc_type= PHP_QUERY_RFC1738]]]) |Generate URL-encoded query string (PHP 5)
1307string http_build_str(array $query [, string $prefix [, string $arg_separator=ini_get("arg_separator.output")]]) |Build query string (PECL pecl_http >= 0.23.0)
1308string http_build_url( [mixed $url [, mixed $parts [, int $flags=HTTP_URL_REPLACE [, array& $new_url]]]]) |Build a URL (PECL pecl_http >= 0.21.0)
1309bool http_cache_etag( [string $etag]) |Caching by ETag (PECL pecl_http >= 0.1.0)
1310bool http_cache_last_modified( [int $timestamp_or_expires]) |Caching by last modification (PECL pecl_http >= 0.1.0)
1311string http_chunked_decode(string $encoded) |Decode chunked-encoded data (PECL pecl_http >= 0.1.0)
1312string http_date( [int $timestamp]) |Compose HTTP RFC compliant date (PECL pecl_http >= 0.1.0)
1313string http_deflate(string $data [, int $flags=0]) |Deflate data (PECL pecl_http >= 0.15.0)
1314resource http_get_request_body_stream() |Get request body as stream (PECL pecl_http >= 0.22.0)
1315string http_get_request_body() |Get request body as string (PECL pecl_http >= 0.10.0)
1316array http_get_request_headers() |Get request headers as array (PECL pecl_http >= 0.10.0)
1317string http_get(string $url [, array $options [, array& $info]]) |Perform GET request (PECL pecl_http >= 0.1.0)
1318string http_head(string $url [, array $options [, array& $info]]) |Perform HEAD request (PECL pecl_http >= 0.1.0)
1319string http_inflate(string $data) |Inflate data (PECL pecl_http >= 0.15.0)
1320bool http_match_etag(string $etag [, bool $for_range=false]) |Match ETag (PECL pecl_http >= 0.1.0)
1321bool http_match_modified( [int $timestamp=-1 [, bool $for_range=false]]) |Match last modification (PECL pecl_http >= 0.1.0)
1322bool http_match_request_header(string $header, string $value [, bool $match_case=false]) |Match any header (PECL pecl_http >= 0.10.0)
1323string http_negotiate_charset(array $supported [, array& $result]) |Negotiate client's preferred character set (PECL pecl_http >= 0.1.0)
1324string http_negotiate_content_type(array $supported [, array& $result]) |Negotiate client's preferred content type (PECL pecl_http >= 0.19.0)
1325string http_negotiate_language(array $supported [, array& $result]) |Negotiate client's preferred language (PECL pecl_http >= 0.1.0)
1326object http_parse_cookie(string $cookie [, int $flags [, array $allowed_extras]]) |Parse HTTP cookie (PECL pecl_http >= 0.20.0)
1327array http_parse_headers(string $header) |Parse HTTP headers (PECL pecl_http >= 0.10.0)
1328object http_parse_message(string $message) |Parse HTTP messages (PECL pecl_http >= 0.12.0)
1329object http_parse_params(string $param [, int $flags=HTTP_PARAMS_DEFAULT]) |Parse parameter list (PECL pecl_http >= 1.0.0)
1330string http_persistent_handles_clean( [string $ident]) |Clean up persistent handles (PECL pecl_http >= 1.5.0)
1331object http_persistent_handles_count() |Stat persistent handles (PECL pecl_http >= 1.5.0)
1332string http_persistent_handles_ident( [string $ident]) |Get/set ident of persistent handles (PECL pecl_http >= 1.5.0)
1333string http_post_data(string $url, string $data [, array $options [, array& $info]]) |Perform POST request with pre-encoded data (PECL pecl_http >= 0.1.0)
1334string http_post_fields(string $url, array $data [, array $files [, array $options [, array& $info]]]) |Perform POST request with data to be encoded (PECL pecl_http >= 0.10.0)
1335string http_put_data(string $url, string $data [, array $options [, array& $info]]) |Perform PUT request with data (PECL pecl_http >= 0.25.0)
1336string http_put_file(string $url, string $file [, array $options [, array& $info]]) |Perform PUT request with file (PECL pecl_http >= 0.10.0)
1337string http_put_stream(string $url, resource $stream [, array $options [, array& $info]]) |Perform PUT request with stream (PECL pecl_http >= 0.10.0)
1338bool http_redirect( [string $url [, array $params [, bool $session=false [, int $status=0]]]]) |Issue HTTP redirect (PECL pecl_http >= 0.1.0)
1339string http_request_body_encode(array $fields, array $files) |Encode request body (PECL pecl_http >= 1.0.0)
1340int http_request_method_exists(mixed $method) |Check whether request method exists (PECL pecl_http >= 0.10.0)
1341string http_request_method_name(int $method) |Get request method name (PECL pecl_http >= 0.10.0)
1342int http_request_method_register(string $method) |Register request method (PECL pecl_http >= 0.10.0)
1343bool http_request_method_unregister(mixed $method) |Unregister request method (PECL pecl_http >= 0.10.0)
1344string http_request(int $method, string $url [, string $body [, array $options [, array& $info]]]) |Perform custom request (PECL pecl_http >= 1.0.0)
1345int http_response_code( [int $response_code]) |Get or Set the HTTP response code (PHP 5 >= 5.4.0)
1346bool http_send_content_disposition(string $filename [, bool $inline=false]) |Send Content-Disposition (PECL pecl_http >= 0.10.0)
1347bool http_send_content_type( [string $content_type="application/x-octetstream"]) |Send Content-Type (PECL pecl_http >= 0.10.0)
1348bool http_send_data(string $data) |Send arbitrary data (PECL pecl_http >= 0.1.0)
1349bool http_send_file(string $file) |Send file (PECL pecl_http >= 0.1.0)
1350bool http_send_last_modified( [int $timestamp=time()]) |Send Last-Modified (PECL pecl_http >= 0.1.0)
1351bool http_send_status(int $status) |Send HTTP response status (PECL pecl_http >= 0.1.0)
1352bool http_send_stream(resource $stream) |Send stream (PECL pecl_http >= 0.1.0)
1353int http_support( [int $feature=0]) |Check built-in HTTP support (PECL pecl_http >= 0.15.0)
1354void http_throttle(float $sec [, int $bytes=40960]) |HTTP throttling (PECL pecl_http >= 0.10.0)
1355string hw_array2objrec(array $object_array) |Convert attributes from object array to object record (PHP 4)
1356bool hw_changeobject(int $link, int $objid, array $attributes) |Changes attributes of an object (obsolete) (PHP 4)
1357array hw_children(int $connection, int $objectID) |Object ids of children (PHP 4)
1358array hw_childrenobj(int $connection, int $objectID) |Object records of children (PHP 4)
1359bool hw_close(int $connection) |Closes the Hyperwave connection (PHP 4)
1360int hw_connect(string $host, int $port [, string $username], string $password) |Opens a connection (PHP 4)
1361void hw_connection_info(int $link) |Prints information about the connection to Hyperwave server (PHP 4)
1362int hw_cp(int $connection, array $object_id_array, int $destination_id) |Copies objects (PHP 4)
1363bool hw_deleteobject(int $connection, int $object_to_delete) |Deletes object (PHP 4)
1364int hw_docbyanchor(int $connection, int $anchorID) |Object id object belonging to anchor (PHP 4)
1365string hw_docbyanchorobj(int $connection, int $anchorID) |Object record object belonging to anchor (PHP 4)
1366string hw_document_attributes(int $hw_document) |Object record of hw_document (PHP 4)
1367string hw_document_bodytag(int $hw_document [, string $prefix]) |Body tag of hw_document (PHP 4)
1368string hw_document_content(int $hw_document) |Returns content of hw_document (PHP 4)
1369bool hw_document_setcontent(int $hw_document, string $content) |Sets/replaces content of hw_document (PHP 4)
1370int hw_document_size(int $hw_document) |Size of hw_document (PHP 4)
1371string hw_dummy(int $link, int $id, int $msgid) |Hyperwave dummy function (PHP 4)
1372bool hw_edittext(int $connection, int $hw_document) |Retrieve text document (PHP 4)
1373int hw_error(int $connection) |Error number (PHP 4)
1374string hw_errormsg(int $connection) |Returns error message (PHP 4)
1375bool hw_free_document(int $hw_document) |Frees hw_document (PHP 4)
1376array hw_getanchors(int $connection, int $objectID) |Object ids of anchors of document (PHP 4)
1377array hw_getanchorsobj(int $connection, int $objectID) |Object records of anchors of document (PHP 4)
1378string hw_getandlock(int $connection, int $objectID) |Return object record and lock object (PHP 4)
1379array hw_getchildcoll(int $connection, int $objectID) |Object ids of child collections (PHP 4)
1380array hw_getchildcollobj(int $connection, int $objectID) |Object records of child collections (PHP 4)
1381array hw_getchilddoccoll(int $connection, int $objectID) |Object ids of child documents of collection (PHP 4)
1382array hw_getchilddoccollobj(int $connection, int $objectID) |Object records of child documents of collection (PHP 4)
1383mixed hw_getobject(int $connection, mixed $objectID [, string $query]) |Object record (PHP 4)
1384array hw_getobjectbyquery(int $connection, string $query, int $max_hits) |Search object (PHP 4)
1385array hw_getobjectbyquerycoll(int $connection, int $objectID, string $query, int $max_hits) |Search object in collection (PHP 4)
1386array hw_getobjectbyquerycollobj(int $connection, int $objectID, string $query, int $max_hits) |Search object in collection (PHP 4)
1387array hw_getobjectbyqueryobj(int $connection, string $query, int $max_hits) |Search object (PHP 4)
1388array hw_getparents(int $connection, int $objectID) |Object ids of parents (PHP 4)
1389array hw_getparentsobj(int $connection, int $objectID) |Object records of parents (PHP 4)
1390string hw_getrellink(int $link, int $rootid, int $sourceid, int $destid) |Get link from source to dest relative to rootid (PHP 4)
1391int hw_getremote(int $connection, int $objectID) |Gets a remote document (PHP 4)
1392mixed hw_getremotechildren(int $connection, string $object_record) |Gets children of remote document (PHP 4)
1393array hw_getsrcbydestobj(int $connection, int $objectID) |Returns anchors pointing at object (PHP 4)
1394int hw_gettext(int $connection, int $objectID [, mixed $rootID/prefix]) |Retrieve text document (PHP 4)
1395string hw_getusername(int $connection) |Name of currently logged in user (PHP 4)
1396string hw_identify(int $link, string $username, string $password) |Identifies as user (PHP 4)
1397array hw_incollections(int $connection, array $object_id_array, array $collection_id_array, int $return_collections) |Check if object ids in collections (PHP 4)
1398string hw_info(int $connection) |Info about connection (PHP 4)
1399int hw_inscoll(int $connection, int $objectID, array $object_array) |Insert collection (PHP 4)
1400int hw_insdoc(resource $connection, int $parentID, string $object_record [, string $text]) |Insert document (PHP 4)
1401bool hw_insertanchors(int $hwdoc, array $anchorecs, array $dest [, array $urlprefixes]) |Inserts only anchors into text (PHP 4 >= 4.0.4)
1402int hw_insertdocument(int $connection, int $parent_id, int $hw_document) |Upload any document (PHP 4)
1403int hw_insertobject(int $connection, string $object_rec, string $parameter) |Inserts an object record (PHP 4)
1404int hw_mapid(int $connection, int $server_id, int $object_id) |Maps global id on virtual local id (PHP 4)
1405bool hw_modifyobject(int $connection, int $object_to_change, array $remove, array $add [, int $mode]) |Modifies object record (PHP 4)
1406int hw_mv(int $connection, array $object_id_array, int $source_id, int $destination_id) |Moves objects (PHP 4)
1407int hw_new_document(string $object_record, string $document_data, int $document_size) |Create new document (PHP 4)
1408array hw_objrec2array(string $object_record [, array $format]) |Convert attributes from object record to object array (PHP 4)
1409bool hw_output_document(int $hw_document) |Prints hw_document (PHP 4)
1410int hw_pconnect(string $host, int $port [, string $username], string $password) |Make a persistent database connection (PHP 4)
1411int hw_pipedocument(int $connection, int $objectID [, array $url_prefixes]) |Retrieve any document (PHP 4)
1412int hw_root() |Root object id (PHP 4)
1413int hw_setlinkroot(int $link, int $rootid) |Set the id to which links are calculated (PHP 4)
1414string hw_stat(int $link) |Returns status string (PHP 4)
1415bool hw_unlock(int $connection, int $objectID) |Unlock object (PHP 4)
1416array hw_who(int $connection) |List of currently logged in users (PHP 4)
1417HW_API_Attribute hwapi_attribute_new( [string $name [, string $value]]) |Creates instance of class hw_api_attribute (No version information available, might only be in SVN)
1418HW_API_Content hwapi_content_new(string $content, string $mimetype) |Create new instance of class hw_api_content (No version information available, might only be in SVN)
1419HW_API hwapi_hgcsp(string $hostname [, int $port]) |Returns object of class hw_api (PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN)
1420hw_api_object hwapi_object_new(array $parameter) |Creates a new instance of class hwapi_object_new (No version information available, might only be in SVN)
1421float hypot(float $x, float $y) |Calculate the length of the hypotenuse of a right-angle triangle (PHP 4 >= 4.1.0, PHP 5)
1422bool ibase_add_user(resource $service_handle, string $user_name, string $password [, string $first_name [, string $middle_name [, string $last_name]]]) |Add a user to a security database (PHP 4 >= 4.2.0, PHP 5)
1423int ibase_affected_rows( [resource $link_identifier]) |Return the number of rows that were affected by the previous query (PHP 5)
1424mixed ibase_backup(resource $service_handle, string $source_db, string $dest_file [, int $options=0 [, bool $verbose=false]]) |Initiates a backup task in the service manager and returns immediately (PHP 5)
1425void ibase_blob_add(resource $blob_handle, string $data) |Add data into a newly created blob (PHP 4, PHP 5)
1426bool ibase_blob_cancel(resource $blob_handle) |Cancel creating blob (PHP 4, PHP 5)
1427mixed ibase_blob_close(resource $blob_handle) |Close blob (PHP 4, PHP 5)
1428resource ibase_blob_create( [resource $link_identifier= NULL]) |Create a new blob for adding data (PHP 4, PHP 5)
1429bool ibase_blob_echo(string $blob_id) |Output blob contents to browser (PHP 4, PHP 5)
1430string ibase_blob_get(resource $blob_handle, int $len) |Get len bytes data from open blob (PHP 4, PHP 5)
1431string ibase_blob_import(resource $link_identifier, resource $file_handle) |Create blob, copy file in it, and close it (PHP 4, PHP 5)
1432array ibase_blob_info(resource $link_identifier, string $blob_id) |Return blob length and other useful info (PHP 4, PHP 5)
1433resource ibase_blob_open(resource $link_identifier, string $blob_id) |Open blob for retrieving data parts (PHP 4, PHP 5)
1434bool ibase_close( [resource $connection_id= NULL]) |Close a connection to an InterBase database (PHP 4, PHP 5)
1435bool ibase_commit_ret( [resource $link_or_trans_identifier= NULL]) |Commit a transaction without closing it (PHP 5)
1436bool ibase_commit( [resource $link_or_trans_identifier= NULL]) |Commit a transaction (PHP 4, PHP 5)
1437resource ibase_connect( [string $database [, string $username [, string $password [, string $charset [, int $buffers [, int $dialect [, string $role [, int $sync]]]]]]]]) |Open a connection to a database (PHP 4, PHP 5)
1438string ibase_db_info(resource $service_handle, string $db, int $action [, int $argument=0]) |Request statistics about a database (PHP 5)
1439bool ibase_delete_user(resource $service_handle, string $user_name) |Delete a user from a security database (PHP 4 >= 4.2.0, PHP 5)
1440bool ibase_drop_db( [resource $connection= NULL]) |Drops a database (PHP 5)
1441int ibase_errcode() |Return an error code (PHP 5)
1442string ibase_errmsg() |Return error messages (PHP 4, PHP 5)
1443resource ibase_execute(resource $query [, mixed $bind_arg [, mixed $...]]) |Execute a previously prepared query (PHP 4, PHP 5)
1444array ibase_fetch_assoc(resource $result [, int $fetch_flag=0]) |Fetch a result row from a query as an associative array (PHP 4 >= 4.3.0, PHP 5)
1445object ibase_fetch_object(resource $result_id [, int $fetch_flag=0]) |Get an object from a InterBase database (PHP 4, PHP 5)
1446array ibase_fetch_row(resource $result_identifier [, int $fetch_flag=0]) |Fetch a row from an InterBase database (PHP 4, PHP 5)
1447array ibase_field_info(resource $result, int $field_number) |Get information about a field (PHP 4, PHP 5)
1448bool ibase_free_event_handler(resource $event) |Cancels a registered event handler (PHP 5)
1449bool ibase_free_query(resource $query) |Free memory allocated by a prepared query (PHP 4, PHP 5)
1450bool ibase_free_result(resource $result_identifier) |Free a result set (PHP 4, PHP 5)
1451mixed ibase_gen_id(string $generator [, int $increment=1 [, resource $link_identifier= NULL]]) |Increments the named generator and returns its new value (PHP 5)
1452bool ibase_maintain_db(resource $service_handle, string $db, int $action [, int $argument=0]) |Execute a maintenance command on the database server (PHP 5)
1453bool ibase_modify_user(resource $service_handle, string $user_name, string $password [, string $first_name [, string $middle_name [, string $last_name]]]) |Modify a user to a security database (PHP 4 >= 4.2.0, PHP 5)
1454bool ibase_name_result(resource $result, string $name) |Assigns a name to a result set (PHP 5)
1455int ibase_num_fields(resource $result_id) |Get the number of fields in a result set (PHP 4, PHP 5)
1456int ibase_num_params(resource $query) |Return the number of parameters in a prepared query (PHP 5)
1457array ibase_param_info(resource $query, int $param_number) |Return information about a parameter in a prepared query (PHP 5)
1458resource ibase_pconnect( [string $database [, string $username [, string $password [, string $charset [, int $buffers [, int $dialect [, string $role [, int $sync]]]]]]]]) |Open a persistent connection to an InterBase database (PHP 4, PHP 5)
1459resource ibase_prepare(string $query) |Prepare a query for later binding of parameter placeholders and execution (PHP 4, PHP 5)
1460resource ibase_query( [resource $link_identifier], string $query [, int $bind_args]) |Execute a query on an InterBase database (PHP 4, PHP 5)
1461mixed ibase_restore(resource $service_handle, string $source_file, string $dest_db [, int $options=0 [, bool $verbose=false]]) |Initiates a restore task in the service manager and returns immediately (PHP 5)
1462bool ibase_rollback_ret( [resource $link_or_trans_identifier= NULL]) |Roll back a transaction without closing it (PHP 5)
1463bool ibase_rollback( [resource $link_or_trans_identifier= NULL]) |Roll back a transaction (PHP 4, PHP 5)
1464string ibase_server_info(resource $service_handle, int $action) |Request information about a database server (PHP 5)
1465resource ibase_service_attach(string $host, string $dba_username, string $dba_password) |Connect to the service manager (PHP 5)
1466bool ibase_service_detach(resource $service_handle) |Disconnect from the service manager (PHP 5)
1467resource ibase_set_event_handler(callable $event_handler, string $event_name1 [, string $event_name2 [, string $...]]) |Register a callback function to be called when events are posted (PHP 5)
1468bool ibase_timefmt(string $format [, int $columntype=IBASE_TIMESTAMP]) |Sets the format of timestamp, date and time type columns returned from queries (PHP 4)
1469resource ibase_trans( [int $trans_args [, resource $link_identifier]]) |Begin a transaction (PHP 4, PHP 5)
1470string ibase_wait_event(string $event_name1 [, string $event_name2 [, string $...]]) |Wait for an event to be posted by the database (PHP 5)
1471mixed iconv_get_encoding( [string $type="all"]) |Retrieve internal configuration variables of iconv extension (PHP 4 >= 4.0.5, PHP 5)
1472array iconv_mime_decode_headers(string $encoded_headers [, int $mode=0 [, string $charset=ini_get("iconv.internal_encoding")]]) |Decodes multiple MIME header fields at once (PHP 5)
1473string iconv_mime_decode(string $encoded_header [, int $mode=0 [, string $charset=ini_get("iconv.internal_encoding")]]) |Decodes a MIME header field (PHP 5)
1474string iconv_mime_encode(string $field_name, string $field_value [, array $preferences= NULL]) |Composes a MIME header field (PHP 5)
1475bool iconv_set_encoding(string $type, string $charset) |Set current setting for character encoding conversion (PHP 4 >= 4.0.5, PHP 5)
1476int iconv_strlen(string $str [, string $charset=ini_get("iconv.internal_encoding")]) |Returns the character count of string (PHP 5)
1477int iconv_strpos(string $haystack, string $needle [, int $offset=0 [, string $charset=ini_get("iconv.internal_encoding")]]) |Finds position of first occurrence of a needle within a haystack (PHP 5)
1478int iconv_strrpos(string $haystack, string $needle [, string $charset=ini_get("iconv.internal_encoding")]) |Finds the last occurrence of a needle within a haystack (PHP 5)
1479string iconv_substr(string $str, int $offset [, int $length=iconv_strlen( $str, $charset) [, string $charset=ini_get("iconv.internal_encoding")]]) |Cut out part of a string (PHP 5)
1480string iconv(string $in_charset, string $out_charset, string $str) |Convert string to requested character encoding (PHP 4 >= 4.0.5, PHP 5)
1481string id3_get_frame_long_name(string $frameId) |Get the long name of an ID3v2 frame (PECL id3 >= 0.2)
1482string id3_get_frame_short_name(string $frameId) |Get the short name of an ID3v2 frame (PECL id3 >= 0.2)
1483int id3_get_genre_id(string $genre) |Get the id for a genre (PECL id3 >= 0.1)
1484array id3_get_genre_list() |Get all possible genre values (PECL id3 >= 0.1)
1485string id3_get_genre_name(int $genre_id) |Get the name for a genre id (PECL id3 >= 0.1)
1486array id3_get_tag(string $filename [, int $version=ID3_BEST]) |Get all information stored in an ID3 tag (PECL id3 >= 0.1)
1487int id3_get_version(string $filename) |Get version of an ID3 tag (PECL id3 >= 0.1)
1488bool id3_remove_tag(string $filename [, int $version=ID3_V1_0]) |Remove an existing ID3 tag (PECL id3 >= 0.1)
1489bool id3_set_tag(string $filename, array $tag [, int $version=ID3_V1_0]) |Update information stored in an ID3 tag (PECL id3 >= 0.1)
1490int idate(string $format [, int $timestamp=time()]) |Format a local time/date as integer (PHP 5)
1491string idn_to_ascii(string $domain [, int $options=0 [, int $variant=INTL_IDNA_VARIANT_2003 [, array& $idna_info]]]) |Convert domain name to IDNA ASCII form. (PHP 5 >= 5.3.0, PECL intl >= 1.0.2, PECL idn >= 0.1)
1492string idn_to_utf8(string $domain [, int $options=0 [, int $variant=INTL_IDNA_VARIANT_2003 [, array& $idna_info]]]) |Convert domain name from IDNA ASCII to Unicode. (PHP 5 >= 5.3.0, PECL intl >= 1.0.2, PECL idn >= 0.1)
1493int ifx_affected_rows(resource $result_id) |Get number of rows affected by a query (PHP 4, PHP <=5.2.0)
1494bool ifx_blobinfile_mode(int $mode) |Set the default blob mode for all select queries (PHP 4, PHP <=5.2.0)
1495bool ifx_byteasvarchar(int $mode) |Set the default byte mode (PHP 4, PHP <=5.2.0)
1496bool ifx_close( [resource $link_identifier]) |Close Informix connection (PHP 4, PHP <=5.2.0)
1497resource ifx_connect( [string $database [, string $userid [, string $password]]]) |Open Informix server connection (PHP 4, PHP <=5.2.0)
1498int ifx_copy_blob(int $bid) |Duplicates the given blob object (PHP 4, PHP <=5.2.0)
1499int ifx_create_blob(int $type, int $mode, string $param) |Creates an blob object (PHP 4, PHP <=5.2.0)
1500int ifx_create_char(string $param) |Creates an char object (PHP 4, PHP <=5.2.0)
1501bool ifx_do(resource $result_id) |Execute a previously prepared SQL-statement (PHP 4, PHP <=5.2.0)
1502string ifx_error( [resource $link_identifier]) |Returns error code of last Informix call (PHP 4, PHP <=5.2.0)
1503string ifx_errormsg( [int $errorcode]) |Returns error message of last Informix call (PHP 4, PHP <=5.2.0)
1504array ifx_fetch_row(resource $result_id [, mixed $position]) |Get row as an associative array (PHP 4, PHP <=5.2.0)
1505array ifx_fieldproperties(resource $result_id) |List of SQL fieldproperties (PHP 4, PHP <=5.2.0)
1506array ifx_fieldtypes(resource $result_id) |List of Informix SQL fields (PHP 4, PHP <=5.2.0)
1507bool ifx_free_blob(int $bid) |Deletes the blob object (PHP 4, PHP <=5.2.0)
1508bool ifx_free_char(int $bid) |Deletes the char object (PHP 4, PHP <=5.2.0)
1509bool ifx_free_result(resource $result_id) |Releases resources for the query (PHP 4, PHP <=5.2.0)
1510string ifx_get_blob(int $bid) |Return the content of a blob object (PHP 4, PHP <=5.2.0)
1511string ifx_get_char(int $bid) |Return the content of the char object (PHP 4, PHP <=5.2.0)
1512array ifx_getsqlca(resource $result_id) |Get the contents of sqlca.sqlerrd[0..5] after a query (PHP 4, PHP <=5.2.0)
1513int ifx_htmltbl_result(resource $result_id [, string $html_table_options]) |Formats all rows of a query into a HTML table (PHP 4, PHP <=5.2.0)
1514bool ifx_nullformat(int $mode) |Sets the default return value on a fetch row (PHP 4, PHP <=5.2.0)
1515int ifx_num_fields(resource $result_id) |Returns the number of columns in the query (PHP 4, PHP <=5.2.0)
1516int ifx_num_rows(resource $result_id) |Count the rows already fetched from a query (PHP 4, PHP <=5.2.0)
1517resource ifx_pconnect( [string $database [, string $userid [, string $password]]]) |Open persistent Informix connection (PHP 4, PHP <=5.2.0)
1518resource ifx_prepare(string $query, resource $link_identifier [, int $cursor_def], mixed $blobidarray) |Prepare an SQL-statement for execution (PHP 4, PHP <=5.2.0)
1519resource ifx_query(string $query, resource $link_identifier [, int $cursor_type [, mixed $blobidarray]]) |Send Informix query (PHP 4, PHP <=5.2.0)
1520bool ifx_textasvarchar(int $mode) |Set the default text mode (PHP 4, PHP <=5.2.0)
1521bool ifx_update_blob(int $bid, string $content) |Updates the content of the blob object (PHP 4, PHP <=5.2.0)
1522bool ifx_update_char(int $bid, string $content) |Updates the content of the char object (PHP 4, PHP <=5.2.0)
1523bool ifxus_close_slob(int $bid) |Deletes the slob object (PHP 4, PHP <=5.2.0)
1524int ifxus_create_slob(int $mode) |Creates an slob object and opens it (PHP 4, PHP <=5.2.0)
1525bool ifxus_free_slob(int $bid) |Deletes the slob object (PHP 4, PHP <=5.2.0)
1526int ifxus_open_slob(int $bid, int $mode) |Opens an slob object (PHP 4, PHP <=5.2.0)
1527string ifxus_read_slob(int $bid, int $nbytes) |Reads nbytes of the slob object (PHP 4, PHP <=5.2.0)
1528int ifxus_seek_slob(int $bid, int $mode, int $offset) |Sets the current file or seek position (PHP 4, PHP <=5.2.0)
1529int ifxus_tell_slob(int $bid) |Returns the current file or seek position (PHP 4, PHP <=5.2.0)
1530int ifxus_write_slob(int $bid, string $content) |Writes a string into the slob object (PHP 4, PHP <=5.2.0)
1531int ignore_user_abort( [string $value]) |Set whether a client disconnect should abort script execution (PHP 4, PHP 5)
1532int iis_add_server(string $path, string $comment, string $server_ip, int $port, string $host_name, int $rights, int $start_server) |Creates a new virtual web server (PECL iisfunc SVN)
1533int iis_get_dir_security(int $server_instance, string $virtual_path) |Gets Directory Security (PECL iisfunc SVN)
1534string iis_get_script_map(int $server_instance, string $virtual_path, string $script_extension) |Gets script mapping on a virtual directory for a specific extension (PECL iisfunc SVN)
1535int iis_get_server_by_comment(string $comment) |Return the instance number associated with the Comment (PECL iisfunc SVN)
1536int iis_get_server_by_path(string $path) |Return the instance number associated with the Path (PECL iisfunc SVN)
1537int iis_get_server_rights(int $server_instance, string $virtual_path) |Gets server rights (PECL iisfunc SVN)
1538int iis_get_service_state(string $service_id) |Returns the state for the service defined by ServiceId (PECL iisfunc SVN)
1539int iis_remove_server(int $server_instance) |Removes the virtual web server indicated by ServerInstance (PECL iisfunc SVN)
1540int iis_set_app_settings(int $server_instance, string $virtual_path, string $application_scope) |Creates application scope for a virtual directory (PECL iisfunc SVN)
1541int iis_set_dir_security(int $server_instance, string $virtual_path, int $directory_flags) |Sets Directory Security (PECL iisfunc SVN)
1542int iis_set_script_map(int $server_instance, string $virtual_path, string $script_extension, string $engine_path, int $allow_scripting) |Sets script mapping on a virtual directory (PECL iisfunc SVN)
1543int iis_set_server_rights(int $server_instance, string $virtual_path, int $directory_flags) |Sets server rights (PECL iisfunc SVN)
1544int iis_start_server(int $server_instance) |Starts the virtual web server (PECL iisfunc SVN)
1545int iis_start_service(string $service_id) |Starts the service defined by ServiceId (PECL iisfunc SVN)
1546int iis_stop_server(int $server_instance) |Stops the virtual web server (PECL iisfunc SVN)
1547int iis_stop_service(string $service_id) |Stops the service defined by ServiceId (PECL iisfunc SVN)
1548string image_type_to_extension(int $imagetype [, bool $include_dot= TRUE]) |Get file extension for image type (PHP 5)
1549string image_type_to_mime_type(int $imagetype) |Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype (PHP 4 >= 4.3.0, PHP 5)
1550bool image2wbmp(resource $image [, string $filename [, int $threshold]]) |Output image to browser or file (PHP 4 >= 4.0.5, PHP 5)
1551bool imagealphablending(resource $image, bool $blendmode) |Set the blending mode for an image (PHP 4 >= 4.0.6, PHP 5)
1552bool imageantialias(resource $image, bool $enabled) |Should antialias functions be used or not (PHP 4 >= 4.3.2, PHP 5)
1553bool imagearc(resource $image, int $cx, int $cy, int $width, int $height, int $start, int $end, int $color) |Draws an arc (PHP 4, PHP 5)
1554bool imagechar(resource $image, int $font, int $x, int $y, string $c, int $color) |Draw a character horizontally (PHP 4, PHP 5)
1555bool imagecharup(resource $image, int $font, int $x, int $y, string $c, int $color) |Draw a character vertically (PHP 4, PHP 5)
1556int imagecolorallocate(resource $image, int $red, int $green, int $blue) |Allocate a color for an image (PHP 4, PHP 5)
1557int imagecolorallocatealpha(resource $image, int $red, int $green, int $blue, int $alpha) |Allocate a color for an image (PHP 4 >= 4.3.2, PHP 5)
1558int imagecolorat(resource $image, int $x, int $y) |Get the index of the color of a pixel (PHP 4, PHP 5)
1559int imagecolorclosest(resource $image, int $red, int $green, int $blue) |Get the index of the closest color to the specified color (PHP 4, PHP 5)
1560int imagecolorclosestalpha(resource $image, int $red, int $green, int $blue, int $alpha) |Get the index of the closest color to the specified color + alpha (PHP 4 >= 4.0.6, PHP 5)
1561int imagecolorclosesthwb(resource $image, int $red, int $green, int $blue) |Get the index of the color which has the hue, white and blackness (PHP 4 >= 4.0.1, PHP 5)
1562bool imagecolordeallocate(resource $image, int $color) |De-allocate a color for an image (PHP 4, PHP 5)
1563int imagecolorexact(resource $image, int $red, int $green, int $blue) |Get the index of the specified color (PHP 4, PHP 5)
1564int imagecolorexactalpha(resource $image, int $red, int $green, int $blue, int $alpha) |Get the index of the specified color + alpha (PHP 4 >= 4.0.6, PHP 5)
1565bool imagecolormatch(resource $image1, resource $image2) |Makes the colors of the palette version of an image more closely match the true color version (PHP 4 >= 4.3.0, PHP 5)
1566int imagecolorresolve(resource $image, int $red, int $green, int $blue) |Get the index of the specified color or its closest possible alternative (PHP 4, PHP 5)
1567int imagecolorresolvealpha(resource $image, int $red, int $green, int $blue, int $alpha) |Get the index of the specified color + alpha or its closest possible alternative (PHP 4 >= 4.0.6, PHP 5)
1568void imagecolorset(resource $image, int $index, int $red, int $green, int $blue [, int $alpha=0]) |Set the color for the specified palette index (PHP 4, PHP 5)
1569array imagecolorsforindex(resource $image, int $index) |Get the colors for an index (PHP 4, PHP 5)
1570int imagecolorstotal(resource $image) |Find out the number of colors in an image's palette (PHP 4, PHP 5)
1571int imagecolortransparent(resource $image [, int $color]) |Define a color as transparent (PHP 4, PHP 5)
1572bool imageconvolution(resource $image, array $matrix, float $div, float $offset) |Apply a 3x3 convolution matrix, using coefficient and offset (PHP 5 >= 5.1.0)
1573bool imagecopy(resource $dst_im, resource $src_im, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_w, int $src_h) |Copy part of an image (PHP 4, PHP 5)
1574bool imagecopymerge(resource $dst_im, resource $src_im, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_w, int $src_h, int $pct) |Copy and merge part of an image (PHP 4 >= 4.0.1, PHP 5)
1575bool imagecopymergegray(resource $dst_im, resource $src_im, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_w, int $src_h, int $pct) |Copy and merge part of an image with gray scale (PHP 4 >= 4.0.6, PHP 5)
1576bool imagecopyresampled(resource $dst_image, resource $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_w, int $dst_h, int $src_w, int $src_h) |Copy and resize part of an image with resampling (PHP 4 >= 4.0.6, PHP 5)
1577bool imagecopyresized(resource $dst_image, resource $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_w, int $dst_h, int $src_w, int $src_h) |Copy and resize part of an image (PHP 4, PHP 5)
1578resource imagecreate(int $width, int $height) |Create a new palette based image (PHP 4, PHP 5)
1579resource imagecreatefromgd(string $filename) |Create a new image from GD file or URL (PHP 4 >= 4.0.7, PHP 5)
1580resource imagecreatefromgd2(string $filename) |Create a new image from GD2 file or URL (PHP 4 >= 4.0.7, PHP 5)
1581resource imagecreatefromgd2part(string $filename, int $srcX, int $srcY, int $width, int $height) |Create a new image from a given part of GD2 file or URL (PHP 4 >= 4.0.7, PHP 5)
1582resource imagecreatefromgif(string $filename) |Create a new image from file or URL (PHP 4, PHP 5)
1583resource imagecreatefromjpeg(string $filename) |Create a new image from file or URL (PHP 4, PHP 5)
1584resource imagecreatefrompng(string $filename) |Create a new image from file or URL (PHP 4, PHP 5)
1585resource imagecreatefromstring(string $image) |Create a new image from the image stream in the string (PHP 4 >= 4.0.4, PHP 5)
1586resource imagecreatefromwbmp(string $filename) |Create a new image from file or URL (PHP 4 >= 4.0.1, PHP 5)
1587resource imagecreatefromxbm(string $filename) |Create a new image from file or URL (PHP 4 >= 4.0.1, PHP 5)
1588resource imagecreatefromxpm(string $filename) |Create a new image from file or URL (PHP 4 >= 4.0.1, PHP 5)
1589resource imagecreatetruecolor(int $width, int $height) |Create a new true color image (PHP 4 >= 4.0.6, PHP 5)
1590bool imagedashedline(resource $image, int $x1, int $y1, int $x2, int $y2, int $color) |Draw a dashed line (PHP 4, PHP 5)
1591bool imagedestroy(resource $image) |Destroy an image (PHP 4, PHP 5)
1592bool imageellipse(resource $image, int $cx, int $cy, int $width, int $height, int $color) |Draw an ellipse (PHP 4 >= 4.0.6, PHP 5)
1593bool imagefill(resource $image, int $x, int $y, int $color) |Flood fill (PHP 4, PHP 5)
1594bool imagefilledarc(resource $image, int $cx, int $cy, int $width, int $height, int $start, int $end, int $color, int $style) |Draw a partial arc and fill it (PHP 4 >= 4.0.6, PHP 5)
1595bool imagefilledellipse(resource $image, int $cx, int $cy, int $width, int $height, int $color) |Draw a filled ellipse (PHP 4 >= 4.0.6, PHP 5)
1596bool imagefilledpolygon(resource $image, array $points, int $num_points, int $color) |Draw a filled polygon (PHP 4, PHP 5)
1597bool imagefilledrectangle(resource $image, int $x1, int $y1, int $x2, int $y2, int $color) |Draw a filled rectangle (PHP 4, PHP 5)
1598bool imagefilltoborder(resource $image, int $x, int $y, int $border, int $color) |Flood fill to specific color (PHP 4, PHP 5)
1599bool imagefilter(resource $image, int $filtertype [, int $arg1 [, int $arg2 [, int $arg3 [, int $arg4]]]]) |Applies a filter to an image (PHP 5)
1600int imagefontheight(int $font) |Get font height (PHP 4, PHP 5)
1601int imagefontwidth(int $font) |Get font width (PHP 4, PHP 5)
1602array imageftbbox(float $size, float $angle, string $fontfile, string $text [, array $extrainfo]) |Give the bounding box of a text using fonts via freetype2 (PHP 4 >= 4.0.7, PHP 5)
1603array imagefttext(resource $image, float $size, float $angle, int $x, int $y, int $color, string $fontfile, string $text [, array $extrainfo]) |Write text to the image using fonts using FreeType 2 (PHP 4 >= 4.0.7, PHP 5)
1604bool imagegammacorrect(resource $image, float $inputgamma, float $outputgamma) |Apply a gamma correction to a GD image (PHP 4, PHP 5)
1605bool imagegd(resource $image [, string $filename]) |Output GD image to browser or file (PHP 4 >= 4.0.7, PHP 5)
1606bool imagegd2(resource $image [, string $filename [, int $chunk_size [, int $type=IMG_GD2_RAW]]]) |Output GD2 image to browser or file (PHP 4 >= 4.0.7, PHP 5)
1607bool imagegif(resource $image [, string $filename]) |Output image to browser or file (PHP 4, PHP 5)
1608resource imagegrabscreen() |Captures the whole screen (PHP 5 >= 5.2.2)
1609resource imagegrabwindow(int $window_handle [, int $client_area=0]) |Captures a window (PHP 5 >= 5.2.2)
1610int imageinterlace(resource $image [, int $interlace=0]) |Enable or disable interlace (PHP 4, PHP 5)
1611bool imageistruecolor(resource $image) |Finds whether an image is a truecolor image (PHP 4 >= 4.3.2, PHP 5)
1612bool imagejpeg(resource $image [, string $filename [, int $quality]]) |Output image to browser or file (PHP 4, PHP 5)
1613bool imagelayereffect(resource $image, int $effect) |Set the alpha blending flag to use the bundled libgd layering effects (PHP 4 >= 4.3.0, PHP 5)
1614bool imageline(resource $image, int $x1, int $y1, int $x2, int $y2, int $color) |Draw a line (PHP 4, PHP 5)
1615int imageloadfont(string $file) |Load a new font (PHP 4, PHP 5)
1616void imagepalettecopy(resource $destination, resource $source) |Copy the palette from one image to another (PHP 4 >= 4.0.1, PHP 5)
1617bool imagepng(resource $image [, string $filename [, int $quality [, int $filters]]]) |Output a PNG image to either the browser or a file (PHP 4, PHP 5)
1618bool imagepolygon(resource $image, array $points, int $num_points, int $color) |Draws a polygon (PHP 4, PHP 5)
1619array imagepsbbox(string $text, resource $font, int $size) |Give the bounding box of a text rectangle using PostScript Type1 fonts (PHP 4, PHP 5)
1620bool imagepsencodefont(resource $font_index, string $encodingfile) |Change the character encoding vector of a font (PHP 4, PHP 5)
1621bool imagepsextendfont(resource $font_index, float $extend) |Extend or condense a font (PHP 4, PHP 5)
1622bool imagepsfreefont(resource $font_index) |Free memory used by a PostScript Type 1 font (PHP 4, PHP 5)
1623resource imagepsloadfont(string $filename) |Load a PostScript Type 1 font from file (PHP 4, PHP 5)
1624bool imagepsslantfont(resource $font_index, float $slant) |Slant a font (PHP 4, PHP 5)
1625array imagepstext(resource $image, string $text, resource $font_index, int $size, int $foreground, int $background, int $x, int $y [, int $space=0 [, int $tightness=0 [, float $angle=0.0 [, int $antialias_steps=4]]]]) |Draws a text over an image using PostScript Type1 fonts (PHP 4, PHP 5)
1626bool imagerectangle(resource $image, int $x1, int $y1, int $x2, int $y2, int $color) |Draw a rectangle (PHP 4, PHP 5)
1627resource imagerotate(resource $image, float $angle, int $bgd_color [, int $ignore_transparent=0]) |Rotate an image with a given angle (PHP 4 >= 4.3.0, PHP 5)
1628bool imagesavealpha(resource $image, bool $saveflag) |Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images (PHP 4 >= 4.3.2, PHP 5)
1629bool imagesetbrush(resource $image, resource $brush) |Set the brush image for line drawing (PHP 4 >= 4.0.6, PHP 5)
1630bool imagesetpixel(resource $image, int $x, int $y, int $color) |Set a single pixel (PHP 4, PHP 5)
1631bool imagesetstyle(resource $image, array $style) |Set the style for line drawing (PHP 4 >= 4.0.6, PHP 5)
1632bool imagesetthickness(resource $image, int $thickness) |Set the thickness for line drawing (PHP 4 >= 4.0.6, PHP 5)
1633bool imagesettile(resource $image, resource $tile) |Set the tile image for filling (PHP 4 >= 4.0.6, PHP 5)
1634bool imagestring(resource $image, int $font, int $x, int $y, string $string, int $color) |Draw a string horizontally (PHP 4, PHP 5)
1635bool imagestringup(resource $image, int $font, int $x, int $y, string $string, int $color) |Draw a string vertically (PHP 4, PHP 5)
1636int imagesx(resource $image) |Get image width (PHP 4, PHP 5)
1637int imagesy(resource $image) |Get image height (PHP 4, PHP 5)
1638bool imagetruecolortopalette(resource $image, bool $dither, int $ncolors) |Convert a true color image to a palette image (PHP 4 >= 4.0.6, PHP 5)
1639array imagettfbbox(float $size, float $angle, string $fontfile, string $text) |Give the bounding box of a text using TrueType fonts (PHP 4, PHP 5)
1640array imagettftext(resource $image, float $size, float $angle, int $x, int $y, int $color, string $fontfile, string $text) |Write text to the image using TrueType fonts (PHP 4, PHP 5)
1641int imagetypes() |Return the image types supported by this PHP build (PHP 4 >= 4.0.2, PHP 5)
1642bool imagewbmp(resource $image [, string $filename [, int $foreground]]) |Output image to browser or file (PHP 4 >= 4.0.1, PHP 5)
1643bool imagexbm(resource $image, string $filename [, int $foreground]) |Output XBM image to browser or file (PHP 5)
1644string imap_8bit(string $string) |Convert an 8bit string to a quoted-printable string (PHP 4, PHP 5)
1645array imap_alerts() |Returns all IMAP alert messages that have occurred (PHP 4, PHP 5)
1646bool imap_append(resource $imap_stream, string $mailbox, string $message [, string $options= NULL [, string $internal_date= NULL]]) |Append a string message to a specified mailbox (PHP 4, PHP 5)
1647string imap_base64(string $text) |Decode BASE64 encoded text (PHP 4, PHP 5)
1648string imap_binary(string $string) |Convert an 8bit string to a base64 string (PHP 4, PHP 5)
1649string imap_body(resource $imap_stream, int $msg_number [, int $options=0]) |Read the message body (PHP 4, PHP 5)
1650object imap_bodystruct(resource $imap_stream, int $msg_number, string $section) |Read the structure of a specified body section of a specific message (PHP 4, PHP 5)
1651object imap_check(resource $imap_stream) |Check current mailbox (PHP 4, PHP 5)
1652bool imap_clearflag_full(resource $imap_stream, string $sequence, string $flag [, int $options=0]) |Clears flags on messages (PHP 4, PHP 5)
1653bool imap_close(resource $imap_stream [, int $flag=0]) |Close an IMAP stream (PHP 4, PHP 5)
1654bool imap_createmailbox(resource $imap_stream, string $mailbox) |Create a new mailbox (PHP 4, PHP 5)
1655bool imap_delete(resource $imap_stream, int $msg_number [, int $options=0]) |Mark a message for deletion from current mailbox (PHP 4, PHP 5)
1656bool imap_deletemailbox(resource $imap_stream, string $mailbox) |Delete a mailbox (PHP 4, PHP 5)
1657array imap_errors() |Returns all of the IMAP errors that have occurred (PHP 4, PHP 5)
1658bool imap_expunge(resource $imap_stream) |Delete all messages marked for deletion (PHP 4, PHP 5)
1659array imap_fetch_overview(resource $imap_stream, string $sequence [, int $options=0]) |Read an overview of the information in the headers of the given message (PHP 4, PHP 5)
1660string imap_fetchbody(resource $imap_stream, int $msg_number, string $section [, int $options=0]) |Fetch a particular section of the body of the message (PHP 4, PHP 5)
1661string imap_fetchheader(resource $imap_stream, int $msg_number [, int $options=0]) |Returns header for a message (PHP 4, PHP 5)
1662string imap_fetchmime(resource $imap_stream, int $msg_number, string $section [, int $options=0]) |Fetch MIME headers for a particular section of the message (PHP 5 >= 5.3.6)
1663object imap_fetchstructure(resource $imap_stream, int $msg_number [, int $options=0]) |Read the structure of a particular message (PHP 4, PHP 5)
1664bool imap_gc(resource $imap_stream, int $caches) |Clears IMAP cache (PHP 5 >= 5.3.0)
1665array imap_get_quota(resource $imap_stream, string $quota_root) |Retrieve the quota level settings, and usage statics per mailbox (PHP 4 >= 4.0.5, PHP 5)
1666array imap_get_quotaroot(resource $imap_stream, string $quota_root) |Retrieve the quota settings per user (PHP 4 >= 4.3.0, PHP 5)
1667array imap_getacl(resource $imap_stream, string $mailbox) |Gets the ACL for a given mailbox (PHP 5)
1668array imap_getmailboxes(resource $imap_stream, string $ref, string $pattern) |Read the list of mailboxes, returning detailed information on each one (PHP 4, PHP 5)
1669array imap_getsubscribed(resource $imap_stream, string $ref, string $pattern) |List all the subscribed mailboxes (PHP 4, PHP 5)
1670object imap_headerinfo(resource $imap_stream, int $msg_number [, int $fromlength=0 [, int $subjectlength=0 [, string $defaulthost= NULL]]]) |Read the header of the message (PHP 4, PHP 5)
1671array imap_headers(resource $imap_stream) |Returns headers for all messages in a mailbox (PHP 4, PHP 5)
1672string imap_last_error() |Gets the last IMAP error that occurred during this page request (PHP 4, PHP 5)
1673array imap_list(resource $imap_stream, string $ref, string $pattern) |Read the list of mailboxes (PHP 4, PHP 5)
1674array imap_listscan(resource $imap_stream, string $ref, string $pattern, string $content) |Returns the list of mailboxes that matches the given text (PHP 4, PHP 5)
1675array imap_lsub(resource $imap_stream, string $ref, string $pattern) |List all the subscribed mailboxes (PHP 4, PHP 5)
1676string imap_mail_compose(array $envelope, array $body) |Create a MIME message based on given envelope and body sections (PHP 4, PHP 5)
1677bool imap_mail_copy(resource $imap_stream, string $msglist, string $mailbox [, int $options=0]) |Copy specified messages to a mailbox (PHP 4, PHP 5)
1678bool imap_mail_move(resource $imap_stream, string $msglist, string $mailbox [, int $options=0]) |Move specified messages to a mailbox (PHP 4, PHP 5)
1679bool imap_mail(string $to, string $subject, string $message [, string $additional_headers= NULL [, string $cc= NULL [, string $bcc= NULL [, string $rpath= NULL]]]]) |Send an email message (PHP 4, PHP 5)
1680object imap_mailboxmsginfo(resource $imap_stream) |Get information about the current mailbox (PHP 4, PHP 5)
1681array imap_mime_header_decode(string $text) |Decode MIME header elements (PHP 4, PHP 5)
1682int imap_msgno(resource $imap_stream, int $uid) |Gets the message sequence number for the given UID (PHP 4, PHP 5)
1683int imap_num_msg(resource $imap_stream) |Gets the number of messages in the current mailbox (PHP 4, PHP 5)
1684int imap_num_recent(resource $imap_stream) |Gets the number of recent messages in current mailbox (PHP 4, PHP 5)
1685resource imap_open(string $mailbox, string $username, string $password [, int $options=NIL [, int $n_retries=0 [, array $params= NULL]]]) |Open an IMAP stream to a mailbox (PHP 4, PHP 5)
1686bool imap_ping(resource $imap_stream) |Check if the IMAP stream is still active (PHP 4, PHP 5)
1687string imap_qprint(string $string) |Convert a quoted-printable string to an 8 bit string (PHP 4, PHP 5)
1688bool imap_renamemailbox(resource $imap_stream, string $old_mbox, string $new_mbox) |Rename an old mailbox to new mailbox (PHP 4, PHP 5)
1689bool imap_reopen(resource $imap_stream, string $mailbox [, int $options=0 [, int $n_retries=0]]) |Reopen IMAP stream to new mailbox (PHP 4, PHP 5)
1690array imap_rfc822_parse_adrlist(string $address, string $default_host) |Parses an address string (PHP 4, PHP 5)
1691object imap_rfc822_parse_headers(string $headers [, string $defaulthost="UNKNOWN"]) |Parse mail headers from a string (PHP 4, PHP 5)
1692string imap_rfc822_write_address(string $mailbox, string $host, string $personal) |Returns a properly formatted email address given the mailbox, host, and personal info (PHP 4, PHP 5)
1693bool imap_savebody(resource $imap_stream, mixed $file, int $msg_number [, string $part_number="" [, int $options=0]]) |Save a specific body section to a file (PHP 5 >= 5.1.3)
1694array imap_search(resource $imap_stream, string $criteria [, int $options=SE_FREE [, string $charset=NIL]]) |This function returns an array of messages matching the given search criteria (PHP 4, PHP 5)
1695bool imap_set_quota(resource $imap_stream, string $quota_root, int $quota_limit) |Sets a quota for a given mailbox (PHP 4 >= 4.0.5, PHP 5)
1696bool imap_setacl(resource $imap_stream, string $mailbox, string $id, string $rights) |Sets the ACL for a giving mailbox (PHP 4 >= 4.0.7, PHP 5)
1697bool imap_setflag_full(resource $imap_stream, string $sequence, string $flag [, int $options=NIL]) |Sets flags on messages (PHP 4, PHP 5)
1698array imap_sort(resource $imap_stream, int $criteria, int $reverse [, int $options=0 [, string $search_criteria= NULL [, string $charset=NIL]]]) |Gets and sort messages (PHP 4, PHP 5)
1699object imap_status(resource $imap_stream, string $mailbox, int $options) |Returns status information on a mailbox (PHP 4, PHP 5)
1700bool imap_subscribe(resource $imap_stream, string $mailbox) |Subscribe to a mailbox (PHP 4, PHP 5)
1701array imap_thread(resource $imap_stream [, int $options=SE_FREE]) |Returns a tree of threaded message (PHP 4 >= 4.0.7, PHP 5)
1702mixed imap_timeout(int $timeout_type [, int $timeout=-1]) |Set or fetch imap timeout (PHP 4 >= 4.3.3, PHP 5)
1703int imap_uid(resource $imap_stream, int $msg_number) |This function returns the UID for the given message sequence number (PHP 4, PHP 5)
1704bool imap_undelete(resource $imap_stream, int $msg_number [, int $flags=0]) |Unmark the message which is marked deleted (PHP 4, PHP 5)
1705bool imap_unsubscribe(resource $imap_stream, string $mailbox) |Unsubscribe from a mailbox (PHP 4, PHP 5)
1706string imap_utf7_decode(string $text) |Decodes a modified UTF-7 encoded string (PHP 4, PHP 5)
1707string imap_utf7_encode(string $data) |Converts ISO-8859-1 string to modified UTF-7 text (PHP 4, PHP 5)
1708string imap_utf8(string $mime_encoded_text) |Converts MIME-encoded text to UTF-8 (PHP 4, PHP 5)
1709string implode(string $glue, array $pieces) |Join array elements with a string (PHP 4, PHP 5)
1710bool import_request_variables(string $types [, string $prefix]) |Import GET/POST/Cookie variables into the global scope (PHP 4 >= 4.1.0, PHP 5 < 5.4.0)
1711bool in_array(mixed $needle, array $haystack [, bool $strict= FALSE]) |Checks if a value exists in an array (PHP 4, PHP 5)
1712array inclued_get_data() |Get the inclued data (PECL inclued >= 0.1.0)
1713string inet_ntop(string $in_addr) |Converts a packed internet address to a human readable representation (PHP 5 >= 5.1.0)
1714string inet_pton(string $address) |Converts a human readable IP address to its packed in_addr representation (PHP 5 >= 5.1.0)
1715bool ingres_autocommit_state(resource $link) |Test if the connection is using autocommit (PECL ingres >= 2.0.0)
1716bool ingres_autocommit(resource $link) |Switch autocommit on or off (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1717string ingres_charset(resource $link) |Returns the installation character set (PECL ingres >= 2.1.0)
1718bool ingres_close(resource $link) |Close an Ingres database connection (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1719bool ingres_commit(resource $link) |Commit a transaction (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1720resource ingres_connect( [string $database [, string $username [, string $password [, array $options]]]]) |Open a connection to an Ingres database (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1721string ingres_cursor(resource $result) |Get a cursor name for a given result resource (PECL ingres >= 1.1.0)
1722int ingres_errno( [resource $link]) |Get the last Ingres error number generated (PECL ingres >= 1.1.0)
1723string ingres_error( [resource $link]) |Get a meaningful error message for the last error generated (PECL ingres >= 1.1.0)
1724string ingres_errsqlstate( [resource $link]) |Get the last SQLSTATE error code generated (PECL ingres >= 1.1.0)
1725string ingres_escape_string(resource $link, string $source_string) |Escape special characters for use in a query (PECL ingres >= 2.1.0)
1726bool ingres_execute(resource $result [, array $params [, string $types]]) |Execute a prepared query (PECL ingres >= 1.1.0)
1727array ingres_fetch_array(resource $result [, int $result_type]) |Fetch a row of result into an array ( PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1728array ingres_fetch_assoc(resource $result) |Fetch a row of result into an associative array (PECL ingres >= 2.2.2)
1729object ingres_fetch_object(resource $result [, int $result_type]) |Fetch a row of result into an object (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1730int ingres_fetch_proc_return(resource $result) |Get the return value from a procedure call (PECL ingres >= 1.4.0)
1731array ingres_fetch_row(resource $result) |Fetch a row of result into an enumerated array (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1732int ingres_field_length(resource $result, int $index) |Get the length of a field (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1733string ingres_field_name(resource $result, int $index) |Get the name of a field in a query result (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1734bool ingres_field_nullable(resource $result, int $index) |Test if a field is nullable (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1735int ingres_field_precision(resource $result, int $index) |Get the precision of a field (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1736int ingres_field_scale(resource $result, int $index) |Get the scale of a field (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1737string ingres_field_type(resource $result, int $index) |Get the type of a field in a query result (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1738bool ingres_free_result(resource $result) |Free the resources associated with a result identifier (PECL ingres >= 2.0.0)
1739bool ingres_next_error( [resource $link]) |Get the next Ingres error (PECL ingres >= 2.0.0)
1740int ingres_num_fields(resource $result) |Get the number of fields returned by the last query (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1741int ingres_num_rows(resource $result) |Get the number of rows affected or returned by a query (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1742resource ingres_pconnect( [string $database [, string $username [, string $password [, array $options]]]]) |Open a persistent connection to an Ingres database (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1743mixed ingres_prepare(resource $link, string $query) |Prepare a query for later execution (PECL ingres >= 1.1.0)
1744mixed ingres_query(resource $link, string $query [, array $params [, string $types]]) |Send an SQL query to Ingres (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1745bool ingres_result_seek(resource $result, int $position) |Set the row position before fetching data (PECL ingres >= 2.1.0)
1746bool ingres_rollback(resource $link) |Roll back a transaction (PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0)
1747bool ingres_set_environment(resource $link, array $options) |Set environment features controlling output options (PECL ingres >= 1.2.0)
1748mixed ingres_unbuffered_query(resource $link, string $query [, array $params [, string $types]]) |Send an unbuffered SQL query to Ingres (No version information available, might only be in SVN)
1749array ini_get_all( [string $extension [, bool $details=true]]) |Gets all configuration options (PHP 4 >= 4.2.0, PHP 5)
1750string ini_get(string $varname) |Gets the value of a configuration option (PHP 4, PHP 5)
1751void ini_restore(string $varname) |Restores the value of a configuration option (PHP 4, PHP 5)
1752string ini_set(string $varname, string $newvalue) |Sets the value of a configuration option (PHP 4, PHP 5)
1753int inotify_add_watch(resource $inotify_instance, string $pathname, int $mask) |Add a watch to an initialized inotify instance (PECL inotify >= 0.1.2)
1754resource inotify_init() |Initialize an inotify instance (PECL inotify >= 0.1.2)
1755int inotify_queue_len(resource $inotify_instance) |Return a number upper than zero if there are pending events (PECL inotify >= 0.1.2)
1756array inotify_read(resource $inotify_instance) |Read events from an inotify instance (PECL inotify >= 0.1.2)
1757bool inotify_rm_watch(resource $inotify_instance, int $watch_descriptor) |Remove an existing watch from an inotify instance (PECL inotify >= 0.1.2)
1758bool interface_exists(string $interface_name [, bool $autoload=true]) |Checks if the interface has been defined (PHP 5 >= 5.0.2)
1759string intl_error_name(int $error_code) |Get symbolic name for a given error code (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1760int intl_get_error_code() |Get the last error code (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1761string intl_get_error_message() |Get description of the last error (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1762bool intl_is_failure(int $error_code) |Check whether the given error code indicates failure (PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
1763int intval(mixed $var [, int $base=10]) |Get the integer value of a variable (PHP 4, PHP 5)
1764int ip2long(string $ip_address) |Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address (PHP 4, PHP 5)
1765mixed iptcembed(string $iptcdata, string $jpeg_file_name [, int $spool]) |Embeds binary IPTC data into a JPEG image (PHP 4, PHP 5)
1766array iptcparse(string $iptcblock) |Parse a binary IPTC block into single tags. (PHP 4, PHP 5)
1767bool is_a(object $object, string $class_name [, bool $allow_string= FALSE]) |Checks if the object is of this class or has this class as one of its parents (PHP 4 >= 4.2.0, PHP 5)
1768bool is_array(mixed $var) |Finds whether a variable is an array (PHP 4, PHP 5)
1769bool is_bool(mixed $var) |Finds out whether a variable is a boolean (PHP 4, PHP 5)
1770bool is_callable(callable $name [, bool $syntax_only=false [, string& $callable_name]]) |Verify that the contents of a variable can be called as a function (PHP 4 >= 4.0.6, PHP 5)
1771bool is_dir(string $filename) |Tells whether the filename is a directory (PHP 4, PHP 5)
1772bool is_executable(string $filename) |Tells whether the filename is executable (PHP 4, PHP 5)
1773bool is_file(string $filename) |Tells whether the filename is a regular file (PHP 4, PHP 5)
1774bool is_finite(float $val) |Finds whether a value is a legal finite number (PHP 4 >= 4.2.0, PHP 5)
1775bool is_float(mixed $var) |Finds whether the type of a variable is float (PHP 4, PHP 5)
1776bool is_infinite(float $val) |Finds whether a value is infinite (PHP 4 >= 4.2.0, PHP 5)
1777bool is_int(mixed $var) |Find whether the type of a variable is integer (PHP 4, PHP 5)
1778bool is_link(string $filename) |Tells whether the filename is a symbolic link (PHP 4, PHP 5)
1779bool is_nan(float $val) |Finds whether a value is not a number (PHP 4 >= 4.2.0, PHP 5)
1780bool is_null(mixed $var) |Finds whether a variable is NULL (PHP 4 >= 4.0.4, PHP 5)
1781bool is_numeric(mixed $var) |Finds whether a variable is a number or a numeric string (PHP 4, PHP 5)
1782bool is_object(mixed $var) |Finds whether a variable is an object (PHP 4, PHP 5)
1783bool is_readable(string $filename) |Tells whether a file exists and is readable (PHP 4, PHP 5)
1784bool is_resource(mixed $var) |Finds whether a variable is a resource (PHP 4, PHP 5)
1785bool is_scalar(mixed $var) |Finds whether a variable is a scalar (PHP 4 >= 4.0.5, PHP 5)
1786bool is_soap_fault(mixed $object) |Checks if a SOAP call has failed (Unknown)
1787bool is_string(mixed $var) |Find whether the type of a variable is string (PHP 4, PHP 5)
1788bool is_subclass_of(mixed $object, string $class_name [, bool $allow_string= TRUE]) |Checks if the object has this class as one of its parents (PHP 4, PHP 5)
1789bool is_tainted(string $string) |Checks whether a string is tainted (PECL taint >=0.1.0)
1790bool is_uploaded_file(string $filename) |Tells whether the file was uploaded via HTTP POST (PHP 4 >= 4.0.3, PHP 5)
1791bool is_writable(string $filename) |Tells whether the filename is writable (PHP 4, PHP 5)
1792bool isset(mixed $var [, mixed $...]) |Determine if a variable is set and is not NULL (PHP 4, PHP 5)
1793int iterator_apply(Traversable $iterator, callable $function [, array $args]) |Call a function for every element in an iterator (PHP 5 >= 5.1.0)
1794int iterator_count(Traversable $iterator) |Count the elements in an iterator (PHP 5 >= 5.1.0)
1795array iterator_to_array(Traversable $iterator [, bool $use_keys=true]) |Copy the iterator into an array (PHP 5 >= 5.1.0)
1796void java_last_exception_clear() |Clear last Java exception (PHP 4 >= 4.0.2)
1797object java_last_exception_get() |Get last Java exception (PHP 4 >= 4.0.2)
1798mixed jddayofweek(int $julianday [, int $mode=CAL_DOW_DAYNO]) |Returns the day of the week (PHP 4, PHP 5)
1799string jdmonthname(int $julianday, int $mode) |Returns a month name (PHP 4, PHP 5)
1800string jdtofrench(int $juliandaycount) |Converts a Julian Day Count to the French Republican Calendar (PHP 4, PHP 5)
1801string jdtogregorian(int $julianday) |Converts Julian Day Count to Gregorian date (PHP 4, PHP 5)
1802string jdtojewish(int $juliandaycount [, bool $hebrew=false [, int $fl=0]]) |Converts a Julian day count to a Jewish calendar date (PHP 4, PHP 5)
1803string jdtojulian(int $julianday) |Converts a Julian Day Count to a Julian Calendar Date (PHP 4, PHP 5)
1804int jdtounix(int $jday) |Convert Julian Day to Unix timestamp (PHP 4, PHP 5)
1805int jewishtojd(int $month, int $day, int $year) |Converts a date in the Jewish Calendar to Julian Day Count (PHP 4, PHP 5)
1806bool jpeg2wbmp(string $jpegname, string $wbmpname, int $dest_height, int $dest_width, int $threshold) |Convert JPEG image file to WBMP image file (PHP 4 >= 4.0.5, PHP 5)
1807mixed json_decode(string $json [, bool $assoc=false [, int $depth=512 [, int $options=0]]]) |Decodes a JSON string (PHP 5 >= 5.2.0, PECL json >= 1.2.0)
1808string json_encode(mixed $value [, int $options=0]) |Returns the JSON representation of a value (PHP 5 >= 5.2.0, PECL json >= 1.2.0)
1809int json_last_error() |Returns the last error occurred (PHP 5 >= 5.3.0)
1810int judy_type(Judy $array) |Return the type of a Judy array (PECL judy >= 0.1.1)
1811string judy_version() |Return or print the current PHP Judy version (PECL judy >= 0.1.1)
1812int juliantojd(int $month, int $day, int $year) |Converts a Julian Calendar date to Julian Day Count (PHP 4, PHP 5)
1813bool kadm5_chpass_principal(resource $handle, string $principal, string $password) |Changes the principal's password (PECL kadm5 >= 0.2.3)
1814bool kadm5_create_principal(resource $handle, string $principal [, string $password [, array $options]]) |Creates a kerberos principal with the given parameters (PECL kadm5 >= 0.2.3)
1815bool kadm5_delete_principal(resource $handle, string $principal) |Deletes a kerberos principal (PECL kadm5 >= 0.2.3)
1816bool kadm5_destroy(resource $handle) |Closes the connection to the admin server and releases all related resources (PECL kadm5 >= 0.2.3)
1817bool kadm5_flush(resource $handle) |Flush all changes to the Kerberos database (PECL kadm5 >= 0.2.3)
1818array kadm5_get_policies(resource $handle) |Gets all policies from the Kerberos database (PECL kadm5 >= 0.2.3)
1819array kadm5_get_principal(resource $handle, string $principal) |Gets the principal's entries from the Kerberos database (PECL kadm5 >= 0.2.3)
1820array kadm5_get_principals(resource $handle) |Gets all principals from the Kerberos database (PECL kadm5 >= 0.2.3)
1821resource kadm5_init_with_password(string $admin_server, string $realm, string $principal, string $password) |Opens a connection to the KADM5 library (PECL kadm5 >= 0.2.3)
1822bool kadm5_modify_principal(resource $handle, string $principal, array $options) |Modifies a kerberos principal with the given parameters (PECL kadm5 >= 0.2.3)
1823mixed key(array& $array) |Fetch a key from an array (PHP 4, PHP 5)
1824bool krsort(array& $array [, int $sort_flags=SORT_REGULAR]) |Sort an array by key in reverse order (PHP 4, PHP 5)
1825bool ksort(array& $array [, int $sort_flags=SORT_REGULAR]) |Sort an array by key (PHP 4, PHP 5)
1826string lcfirst(string $str) |Make a string's first character lowercase (PHP 5 >= 5.3.0)
1827float lcg_value() |Combined linear congruential generator (PHP 4, PHP 5)
1828bool lchgrp(string $filename, mixed $group) |Changes group ownership of symlink (PHP 5 >= 5.1.2)
1829bool lchown(string $filename, mixed $user) |Changes user ownership of symlink (PHP 5 >= 5.1.2)
1830string ldap_8859_to_t61(string $value) |Translate 8859 characters to t61 characters (PHP 4 >= 4.0.2, PHP 5)
1831bool ldap_add(resource $link_identifier, string $dn, array $entry) |Add entries to LDAP directory (PHP 4, PHP 5)
1832bool ldap_bind(resource $link_identifier [, string $bind_rdn= NULL [, string $bind_password= NULL]]) |Bind to LDAP directory (PHP 4, PHP 5)
1833mixed ldap_compare(resource $link_identifier, string $dn, string $attribute, string $value) |Compare value of attribute found in entry specified with DN (PHP 4 >= 4.0.2, PHP 5)
1834resource ldap_connect( [string $hostname= NULL [, int $port=389]]) |Connect to an LDAP server (PHP 4, PHP 5)
1835bool ldap_control_paged_result_response(resource $link, resource $result [, string& $cookie [, int& $estimated]]) |Retrieve the LDAP pagination cookie (PHP 5 >= 5.4.0)
1836bool ldap_control_paged_result(resource $link, int $pagesize [, bool $iscritical [, string $cookie]]) |Send LDAP pagination control (PHP 5 >= 5.4.0)
1837int ldap_count_entries(resource $link_identifier, resource $result_identifier) |Count the number of entries in a search (PHP 4, PHP 5)
1838bool ldap_delete(resource $link_identifier, string $dn) |Delete an entry from a directory (PHP 4, PHP 5)
1839string ldap_dn2ufn(string $dn) |Convert DN to User Friendly Naming format (PHP 4, PHP 5)
1840string ldap_err2str(int $errno) |Convert LDAP error number into string error message (PHP 4, PHP 5)
1841int ldap_errno(resource $link_identifier) |Return the LDAP error number of the last LDAP command (PHP 4, PHP 5)
1842string ldap_error(resource $link_identifier) |Return the LDAP error message of the last LDAP command (PHP 4, PHP 5)
1843array ldap_explode_dn(string $dn, int $with_attrib) |Splits DN into its component parts (PHP 4, PHP 5)
1844string ldap_first_attribute(resource $link_identifier, resource $result_entry_identifier) |Return first attribute (PHP 4, PHP 5)
1845resource ldap_first_entry(resource $link_identifier, resource $result_identifier) |Return first result id (PHP 4, PHP 5)
1846resource ldap_first_reference(resource $link, resource $result) |Return first reference (PHP 4 >= 4.0.5, PHP 5)
1847bool ldap_free_result(resource $result_identifier) |Free result memory (PHP 4, PHP 5)
1848array ldap_get_attributes(resource $link_identifier, resource $result_entry_identifier) |Get attributes from a search result entry (PHP 4, PHP 5)
1849string ldap_get_dn(resource $link_identifier, resource $result_entry_identifier) |Get the DN of a result entry (PHP 4, PHP 5)
1850array ldap_get_entries(resource $link_identifier, resource $result_identifier) |Get all result entries (PHP 4, PHP 5)
1851bool ldap_get_option(resource $link_identifier, int $option, mixed& $retval) |Get the current value for given option (PHP 4 >= 4.0.4, PHP 5)
1852array ldap_get_values_len(resource $link_identifier, resource $result_entry_identifier, string $attribute) |Get all binary values from a result entry (PHP 4, PHP 5)
1853array ldap_get_values(resource $link_identifier, resource $result_entry_identifier, string $attribute) |Get all values from a result entry (PHP 4, PHP 5)
1854resource ldap_list(resource $link_identifier, string $base_dn, string $filter [, array $attributes [, int $attrsonly [, int $sizelimit [, int $timelimit [, int $deref]]]]]) |Single-level search (PHP 4, PHP 5)
1855bool ldap_mod_add(resource $link_identifier, string $dn, array $entry) |Add attribute values to current attributes (PHP 4, PHP 5)
1856bool ldap_mod_del(resource $link_identifier, string $dn, array $entry) |Delete attribute values from current attributes (PHP 4, PHP 5)
1857bool ldap_mod_replace(resource $link_identifier, string $dn, array $entry) |Replace attribute values with new ones (PHP 4, PHP 5)
1858bool ldap_modify(resource $link_identifier, string $dn, array $entry) |Modify an LDAP entry (PHP 4, PHP 5)
1859string ldap_next_attribute(resource $link_identifier, resource $result_entry_identifier) |Get the next attribute in result (PHP 4, PHP 5)
1860resource ldap_next_entry(resource $link_identifier, resource $result_entry_identifier) |Get next result entry (PHP 4, PHP 5)
1861resource ldap_next_reference(resource $link, resource $entry) |Get next reference (PHP 4 >= 4.0.5, PHP 5)
1862bool ldap_parse_reference(resource $link, resource $entry, array& $referrals) |Extract information from reference entry (PHP 4 >= 4.0.5, PHP 5)
1863bool ldap_parse_result(resource $link, resource $result, int& $errcode [, string& $matcheddn [, string& $errmsg [, array& $referrals]]]) |Extract information from result (PHP 4 >= 4.0.5, PHP 5)
1864resource ldap_read(resource $link_identifier, string $base_dn, string $filter [, array $attributes [, int $attrsonly [, int $sizelimit [, int $timelimit [, int $deref]]]]]) |Read an entry (PHP 4, PHP 5)
1865bool ldap_rename(resource $link_identifier, string $dn, string $newrdn, string $newparent, bool $deleteoldrdn) |Modify the name of an entry (PHP 4 >= 4.0.5, PHP 5)
1866bool ldap_sasl_bind(resource $link [, string $binddn= NULL [, string $password= NULL [, string $sasl_mech= NULL [, string $sasl_realm= NULL [, string $sasl_authc_id= NULL [, string $sasl_authz_id= NULL [, string $props= NULL]]]]]]]) |Bind to LDAP directory using SASL (PHP 5)
1867resource ldap_search(resource $link_identifier, string $base_dn, string $filter [, array $attributes [, int $attrsonly [, int $sizelimit [, int $timelimit [, int $deref]]]]]) |Search LDAP tree (PHP 4, PHP 5)
1868bool ldap_set_option(resource $link_identifier, int $option, mixed $newval) |Set the value of the given option (PHP 4 >= 4.0.4, PHP 5)
1869bool ldap_set_rebind_proc(resource $link, callable $callback) |Set a callback function to do re-binds on referral chasing (PHP 4 >= 4.2.0, PHP 5)
1870bool ldap_sort(resource $link, resource $result, string $sortfilter) |Sort LDAP result entries (PHP 4 >= 4.2.0, PHP 5)
1871bool ldap_start_tls(resource $link) |Start TLS (PHP 4 >= 4.2.0, PHP 5)
1872string ldap_t61_to_8859(string $value) |Translate t61 characters to 8859 characters (PHP 4 >= 4.0.2, PHP 5)
1873bool ldap_unbind(resource $link_identifier) |Unbind from LDAP directory (PHP 4, PHP 5)
1874int levenshtein(string $str1, string $str2) |Calculate Levenshtein distance between two strings (PHP 4 >= 4.0.1, PHP 5)
1875void libxml_clear_errors() |Clear libxml error buffer (PHP 5 >= 5.1.0)
1876bool libxml_disable_entity_loader( [bool $disable=true]) |Disable the ability to load external entities (PHP 5 >= 5.2.11)
1877array libxml_get_errors() |Retrieve array of errors (PHP 5 >= 5.1.0)
1878LibXMLError libxml_get_last_error() |Retrieve last error from libxml (PHP 5 >= 5.1.0)
1879void libxml_set_external_entity_loader(callable $resolver_function) |Changes the default external entity loader (PHP 5 >= 5.4.0)
1880void libxml_set_streams_context(resource $streams_context) |Set the streams context for the next libxml document load or write (PHP 5)
1881bool libxml_use_internal_errors( [bool $use_errors=false]) |Disable libxml errors and allow user to fetch error information as needed (PHP 5 >= 5.1.0)
1882bool link(string $target, string $link) |Create a hard link (PHP 4, PHP 5)
1883int linkinfo(string $path) |Gets information about a link (PHP 4, PHP 5)
1884array list(mixed $varname [, mixed $...]) |Assign variables as if they were an array (PHP 4, PHP 5)
1885array localeconv() |Get numeric formatting information (PHP 4 >= 4.0.5, PHP 5)
1886array localtime( [int $timestamp=time() [, bool $is_associative=false]]) |Get the local time (PHP 4, PHP 5)
1887float log(float $arg [, float $base=M_E]) |Natural logarithm (PHP 4, PHP 5)
1888float log10(float $arg) |Base-10 logarithm (PHP 4, PHP 5)
1889float log1p(float $number) |Returns log(1 + number), computed in a way that is accurate even when the value of number is close to zero (PHP 4 >= 4.1.0, PHP 5)
1890string long2ip(string $proper_address) |Converts an (IPv4) Internet network address into a string in Internet standard dotted format (PHP 4, PHP 5)
1891array lstat(string $filename) |Gives information about a file or symbolic link (PHP 4, PHP 5)
1892string ltrim(string $str [, string $charlist]) |Strip whitespace (or other characters) from the beginning of a string (PHP 4, PHP 5)
1893string lzf_compress(string $data) |LZF compression (PECL lzf >= 0.1.0)
1894string lzf_decompress(string $data) |LZF decompression (PECL lzf >= 0.1.0)
1895int lzf_optimized_for() |Determines what LZF extension was optimized for (PECL lzf >= 1.0.0)
1896int m_checkstatus(resource $conn, int $identifier) |Check to see if a transaction has completed (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1897int m_completeauthorizations(resource $conn, int& $array) |Number of complete authorizations in queue, returning an array of their identifiers (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1898int m_connect(resource $conn) |Establish the connection to MCVE (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1899string m_connectionerror(resource $conn) |Get a textual representation of why a connection failed (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1900bool m_deletetrans(resource $conn, int $identifier) |Delete specified transaction from MCVE_CONN structure (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1901bool m_destroyconn(resource $conn) |Destroy the connection and MCVE_CONN structure (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1902void m_destroyengine() |Free memory associated with IP/SSL connectivity (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1903string m_getcell(resource $conn, int $identifier, string $column, int $row) |Get a specific cell from a comma delimited response by column name (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1904string m_getcellbynum(resource $conn, int $identifier, int $column, int $row) |Get a specific cell from a comma delimited response by column number (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1905string m_getcommadelimited(resource $conn, int $identifier) |Get the RAW comma delimited data returned from MCVE (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1906string m_getheader(resource $conn, int $identifier, int $column_num) |Get the name of the column in a comma-delimited response (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1907resource m_initconn() |Create and initialize an MCVE_CONN structure (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1908int m_initengine(string $location) |Ready the client for IP/SSL Communication (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1909int m_iscommadelimited(resource $conn, int $identifier) |Checks to see if response is comma delimited (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1910bool m_maxconntimeout(resource $conn, int $secs) |The maximum amount of time the API will attempt a connection to MCVE (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1911int m_monitor(resource $conn) |Perform communication with MCVE (send/receive data) Non-blocking (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1912int m_numcolumns(resource $conn, int $identifier) |Number of columns returned in a comma delimited response (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1913int m_numrows(resource $conn, int $identifier) |Number of rows returned in a comma delimited response (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1914int m_parsecommadelimited(resource $conn, int $identifier) |Parse the comma delimited response so m_getcell, etc will work (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1915array m_responsekeys(resource $conn, int $identifier) |Returns array of strings which represents the keys that can be used for response parameters on this transaction (PHP 5 >= 5.0.5, PECL mcve >= 1.0.0)
1916string m_responseparam(resource $conn, int $identifier, string $key) |Get a custom response parameter (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1917int m_returnstatus(resource $conn, int $identifier) |Check to see if the transaction was successful (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1918int m_setblocking(resource $conn, int $tf) |Set blocking/non-blocking mode for connection (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1919int m_setdropfile(resource $conn, string $directory) |Set the connection method to Drop-File (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1920int m_setip(resource $conn, string $host, int $port) |Set the connection method to IP (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1921int m_setssl_cafile(resource $conn, string $cafile) |Set SSL CA (Certificate Authority) file for verification of server certificate (PHP 5 >= 5.0.5, PECL mcve >= 1.0.0)
1922int m_setssl_files(resource $conn, string $sslkeyfile, string $sslcertfile) |Set certificate key files and certificates if server requires client certificate verification (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1923int m_setssl(resource $conn, string $host, int $port) |Set the connection method to SSL (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1924int m_settimeout(resource $conn, int $seconds) |Set maximum transaction time (per trans) (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1925string m_sslcert_gen_hash(string $filename) |Generate hash for SSL client certificate verification (PECL mcve >= 5.2.0)
1926int m_transactionssent(resource $conn) |Check to see if outgoing buffer is clear (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1927int m_transinqueue(resource $conn) |Number of transactions in client-queue (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1928int m_transkeyval(resource $conn, int $identifier, string $key, string $value) |Add key/value pair to a transaction. Replaces deprecated transparam() (PHP 5 >= 5.0.5, PECL mcve >= 1.0.0)
1929int m_transnew(resource $conn) |Start a new transaction (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1930int m_transsend(resource $conn, int $identifier) |Finalize and send the transaction (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1931int m_uwait(int $microsecs) |Wait x microsecs (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1932int m_validateidentifier(resource $conn, int $tf) |Whether or not to validate the passed identifier on any transaction it is passed to (PHP 5 >= 5.0.5, PECL mcve >= 1.0.0)
1933bool m_verifyconnection(resource $conn, int $tf) |Set whether or not to PING upon connect to verify connection (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1934bool m_verifysslcert(resource $conn, int $tf) |Set whether or not to verify the server ssl certificate (PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0)
1935bool mail(string $to, string $subject, string $message [, string $additional_headers [, string $additional_parameters]]) |Send mail (PHP 4, PHP 5)
1936string mailparse_determine_best_xfer_encoding(resource $fp) |Gets the best way of encoding (PECL mailparse >= 0.9.0)
1937resource mailparse_msg_create() |Create a mime mail resource (PECL mailparse >= 0.9.0)
1938string mailparse_msg_extract_part_file(resource $mimemail, mixed $filename [, callable $callbackfunc]) |Extracts/decodes a message section (PECL mailparse >= 0.9.0)
1939void mailparse_msg_extract_part(resource $mimemail, string $msgbody [, callable $callbackfunc]) |Extracts/decodes a message section (PECL mailparse >= 0.9.0)
1940string mailparse_msg_extract_whole_part_file(resource $mimemail, string $filename [, callable $callbackfunc]) |Extracts a message section including headers without decoding the transfer encoding (PECL mailparse >= 0.9.0)
1941bool mailparse_msg_free(resource $mimemail) |Frees a MIME resource (PECL mailparse >= 0.9.0)
1942array mailparse_msg_get_part_data(resource $mimemail) |Returns an associative array of info about the message (PECL mailparse >= 0.9.0)
1943resource mailparse_msg_get_part(resource $mimemail, string $mimesection) |Returns a handle on a given section in a mimemessage (PECL mailparse >= 0.9.0)
1944array mailparse_msg_get_structure(resource $mimemail) |Returns an array of mime section names in the supplied message (PECL mailparse >= 0.9.0)
1945resource mailparse_msg_parse_file(string $filename) |Parses a file (PECL mailparse >= 0.9.0)
1946bool mailparse_msg_parse(resource $mimemail, string $data) |Incrementally parse data into buffer (PECL mailparse >= 0.9.0)
1947array mailparse_rfc822_parse_addresses(string $addresses) |Parse RFC 822 compliant addresses (PECL mailparse >= 0.9.0)
1948bool mailparse_stream_encode(resource $sourcefp, resource $destfp, string $encoding) |Streams data from source file pointer, apply encoding and write to destfp (PECL mailparse >= 0.9.0)
1949array mailparse_uudecode_all(resource $fp) |Scans the data from fp and extract each embedded uuencoded file (PECL mailparse >= 0.9.0)
1950mixed max(array $values) |Find highest value (PHP 4, PHP 5)
1951int maxdb_affected_rows(resource $link) |Gets the number of affected rows in a previous MaxDB operation (PECL maxdb >= 1.0)
1952bool maxdb_autocommit(resource $link, bool $mode) |Turns on or off auto-commiting database modifications (PECL maxdb >= 1.0)
1953bool maxdb_change_user(resource $link, string $user, string $password, string $database) |Changes the user of the specified database connection (PECL maxdb >= 1.0)
1954string maxdb_character_set_name(resource $link) |Returns the default character set for the database connection (PECL maxdb >= 1.0)
1955bool maxdb_close(resource $link) |Closes a previously opened database connection (PECL maxdb >= 1.0)
1956bool maxdb_commit(resource $link) |Commits the current transaction (PECL maxdb >= 1.0)
1957int maxdb_connect_errno() |Returns the error code from last connect call (PECL maxdb >= 1.0)
1958string maxdb_connect_error() |Returns a string description of the last connect error (PECL maxdb >= 1.0)
1959resource maxdb_connect( [string $host [, string $username [, string $passwd [, string $dbname [, int $port=0 [, string $socket]]]]]]) |Open a new connection to the MaxDB server (PECL maxdb >= 1.0)
1960bool maxdb_data_seek(resource $result, int $offset) |Adjusts the result pointer to an arbitary row in the result (PECL maxdb >= 1.0)
1961void maxdb_debug(string $debug) |Performs debugging operations (PECL maxdb >= 1.0)
1962bool maxdb_disable_reads_from_master(resource $link) |Disable reads from master (PECL maxdb >= 1.0)
1963bool maxdb_disable_rpl_parse(resource $link) |Disable RPL parse (PECL maxdb >= 1.0)
1964bool maxdb_dump_debug_info(resource $link) |Dump debugging information into the log (PECL maxdb >= 1.0)
1965resource maxdb_embedded_connect( [string $dbname]) |Open a connection to an embedded MaxDB server (PECL maxdb >= 1.0)
1966bool maxdb_enable_reads_from_master(resource $link) |Enable reads from master (PECL maxdb >= 1.0)
1967bool maxdb_enable_rpl_parse(resource $link) |Enable RPL parse (PECL maxdb >= 1.0)
1968int maxdb_errno(resource $link) |Returns the error code for the most recent function call (PECL maxdb >= 1.0)
1969string maxdb_error(resource $link) |Returns a string description of the last error (PECL maxdb >= 1.0)
1970mixed maxdb_fetch_array(resource $result [, int $resulttype]) |Fetch a result row as an associative, a numeric array, or both (PECL maxdb >= 1.0)
1971array maxdb_fetch_assoc(resource $result) |Fetch a result row as an associative array (PECL maxdb >= 1.0)
1972mixed maxdb_fetch_field_direct(resource $result, int $fieldnr) |Fetch meta-data for a single field (PECL maxdb >= 1.0)
1973mixed maxdb_fetch_field(resource $result) |Returns the next field in the result set (PECL maxdb >= 1.0)
1974mixed maxdb_fetch_fields(resource $result) |Returns an array of resources representing the fields in a result set (PECL maxdb >= 1.0)
1975array maxdb_fetch_lengths(resource $result) |Returns the lengths of the columns of the current row in the result set (PECL maxdb >= 1.0)
1976object maxdb_fetch_object(object $result) |Returns the current row of a result set as an object (PECL maxdb >= 1.0)
1977mixed maxdb_fetch_row(resource $result) |Get a result row as an enumerated array (PECL maxdb >= 1.0)
1978int maxdb_field_count(resource $link) |Returns the number of columns for the most recent query (PECL maxdb >= 1.0)
1979bool maxdb_field_seek(resource $result, int $fieldnr) |Set result pointer to a specified field offset (PECL maxdb >= 1.0)
1980int maxdb_field_tell(resource $result) |Get current field offset of a result pointer (PECL maxdb >= 1.0)
1981void maxdb_free_result(resource $result) |Frees the memory associated with a result (PECL maxdb >= 1.0)
1982string maxdb_get_client_info() |Returns the MaxDB client version as a string (PECL maxdb >= 1.0)
1983int maxdb_get_client_version() |Get MaxDB client info (PECL maxdb >= 1.0)
1984string maxdb_get_host_info(resource $link) |Returns a string representing the type of connection used (PECL maxdb >= 1.0)
1985int maxdb_get_proto_info(resource $link) |Returns the version of the MaxDB protocol used (PECL maxdb >= 1.0)
1986string maxdb_get_server_info(resource $link) |Returns the version of the MaxDB server (PECL maxdb >= 1.0)
1987int maxdb_get_server_version(resource $link) |Returns the version of the MaxDB server as an integer (PECL maxdb >= 1.0)
1988string maxdb_info(resource $link) |Retrieves information about the most recently executed query (PECL maxdb >= 1.0)
1989resource maxdb_init() |Initializes MaxDB and returns an resource for use with maxdb_real_connect (PECL maxdb >= 1.0)
1990mixed maxdb_insert_id(resource $link) |Returns the auto generated id used in the last query (PECL maxdb >= 1.0)
1991bool maxdb_kill(resource $link, int $processid) |Disconnects from a MaxDB server (PECL maxdb >= 1.0)
1992bool maxdb_master_query(resource $link, string $query) |Enforce execution of a query on the master in a master/slave setup (PECL maxdb >= 1.0)
1993bool maxdb_more_results(resource $link) |Check if there any more query results from a multi query (PECL maxdb >= 1.0)
1994bool maxdb_multi_query(resource $link, string $query) |Performs a query on the database (PECL maxdb >= 1.0)
1995bool maxdb_next_result(resource $link) |Prepare next result from multi_query (PECL maxdb >= 1.0)
1996int maxdb_num_fields(resource $result) |Get the number of fields in a result (PECL maxdb >= 1.0)
1997int maxdb_num_rows(resource $result) |Gets the number of rows in a result (PECL maxdb >= 1.0)
1998bool maxdb_options(resource $link, int $option, mixed $value) |Set options (PECL maxdb >= 1.0)
1999bool maxdb_ping(resource $link) |Pings a server connection, or tries to reconnect if the connection has gone down (PECL maxdb >= 1.0)
2000resource maxdb_prepare(resource $link, string $query) |Prepare an SQL statement for execution (PECL maxdb >= 1.0)
2001mixed maxdb_query(resource $link, string $query [, int $resultmode]) |Performs a query on the database (PECL maxdb >= 1.0)
2002bool maxdb_real_connect(resource $link [, string $hostname [, string $username [, string $passwd [, string $dbname [, int $port=0 [, string $socket]]]]]]) |Opens a connection to a MaxDB server (PECL maxdb >= 1.0)
2003string maxdb_real_escape_string(resource $link, string $escapestr) |Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection (PECL maxdb >= 1.0)
2004bool maxdb_real_query(resource $link, string $query) |Execute an SQL query (PECL maxdb >= 1.0)
2005bool maxdb_report(int $flags) |Enables or disables internal report functions (PECL maxdb 1.0)
2006bool maxdb_rollback(resource $link) |Rolls back current transaction (PECL maxdb >= 1.0)
2007int maxdb_rpl_parse_enabled(resource $link) |Check if RPL parse is enabled (PECL maxdb >= 1.0)
2008bool maxdb_rpl_probe(resource $link) |RPL probe (PECL maxdb >= 1.0)
2009int maxdb_rpl_query_type(resource $link) |Returns RPL query type (PECL maxdb >= 1.0)
2010bool maxdb_select_db(resource $link, string $dbname) |Selects the default database for database queries (PECL maxdb >= 1.0)
2011bool maxdb_send_query(resource $link, string $query) |Send the query and return (PECL maxdb >= 1.0)
2012void maxdb_server_end() |Shut down the embedded server (PECL maxdb >= 1.0)
2013bool maxdb_server_init( [array $server [, array $groups]]) |Initialize embedded server (PECL maxdb >= 1.0)
2014string maxdb_sqlstate(resource $link) |Returns the SQLSTATE error from previous MaxDB operation (PECL maxdb >= 1.0)
2015bool maxdb_ssl_set(resource $link, string $key, string $cert, string $ca, string $capath, string $cipher) |Used for establishing secure connections using SSL (PECL maxdb >= 1.0)
2016string maxdb_stat(resource $link) |Gets the current system status (PECL maxdb >= 1.0)
2017int maxdb_stmt_affected_rows(resource $stmt) |Returns the total number of rows changed, deleted, or inserted by the last executed statement (PECL maxdb >= 1.0)
2018bool maxdb_stmt_bind_param(resource $stmt, string $types, mixed& $var1 [, mixed& $...]) |Binds variables to a prepared statement as parameters (PECL maxdb >= 1.0)
2019bool maxdb_stmt_bind_result(resource $stmt, mixed& $var1 [, mixed& $...]) |Binds variables to a prepared statement for result storage (PECL maxdb >= 1.0)
2020bool maxdb_stmt_close_long_data(resource $stmt, int $param_nr) |Ends a sequence of maxdb_stmt_send_long_data() (PECL maxdb 1.0)
2021bool maxdb_stmt_close(resource $stmt) |Closes a prepared statement (PECL maxdb >= 1.0)
2022bool maxdb_stmt_data_seek(resource $statement, int $offset) |Seeks to an arbitray row in statement result set (PECL maxdb >= 1.0)
2023int maxdb_stmt_errno(resource $stmt) |Returns the error code for the most recent statement call (PECL maxdb >= 1.0)
2024string maxdb_stmt_error(resource $stmt) |Returns a string description for last statement error (PECL maxdb >= 1.0)
2025bool maxdb_stmt_execute(resource $stmt) |Executes a prepared Query (PECL maxdb >= 1.0)
2026bool maxdb_stmt_fetch(resource $stmt) |Fetch results from a prepared statement into the bound variables (PECL maxdb >= 1.0)
2027void maxdb_stmt_free_result(resource $stmt) |Frees stored result memory for the given statement handle (PECL maxdb >= 1.0)
2028resource maxdb_stmt_init(resource $link) |Initializes a statement and returns an resource for use with maxdb_stmt_prepare (PECL maxdb >= 1.0)
2029int maxdb_stmt_num_rows(resource $stmt) |Return the number of rows in statements result set (PECL maxdb >= 1.0)
2030int maxdb_stmt_param_count(resource $stmt) |Returns the number of parameter for the given statement (PECL maxdb >= 1.0)
2031bool maxdb_stmt_prepare(resource $stmt, string $query) |Prepare an SQL statement for execution (PECL maxdb >= 1.0)
2032bool maxdb_stmt_reset(resource $stmt) |Resets a prepared statement (PECL maxdb >= 1.0)
2033resource maxdb_stmt_result_metadata(resource $stmt) |Returns result set metadata from a prepared statement (PECL maxdb >= 1.0)
2034bool maxdb_stmt_send_long_data(resource $stmt, int $param_nr, string $data) |Send data in blocks (PECL maxdb 1.0)
2035string maxdb_stmt_sqlstate(resource $stmt) |Returns SQLSTATE error from previous statement operation (PECL maxdb >= 1.0)
2036bool maxdb_stmt_store_result(resource $stmt) |Transfers a result set from a prepared statement (PECL maxdb >= 1.0)
2037resource maxdb_store_result(resource $link) |Transfers a result set from the last query (PECL maxdb >= 1.0)
2038int maxdb_thread_id(resource $link) |Returns the thread ID for the current connection (PECL maxdb >= 1.0)
2039bool maxdb_thread_safe() |Returns whether thread safety is given or not (PECL maxdb >= 7.6.06.04)
2040resource maxdb_use_result(resource $link) |Initiate a result set retrieval (PECL maxdb >= 1.0)
2041int maxdb_warning_count(resource $link) |Returns the number of warnings from the last query for the given link (PECL maxdb >= 1.0)
2042bool mb_check_encoding( [string $var= NULL [, string $encoding=mb_internal_encoding()]]) |Check if the string is valid for the specified encoding (PHP 4 >= 4.4.3, PHP 5 >= 5.1.3)
2043string mb_convert_case(string $str, int $mode=MB_CASE_UPPER [, string $encoding=mb_internal_encoding()]) |Perform case folding on a string (PHP 4 >= 4.3.0, PHP 5)
2044string mb_convert_encoding(string $str, string $to_encoding [, mixed $from_encoding]) |Convert character encoding (PHP 4 >= 4.0.6, PHP 5)
2045string mb_convert_kana(string $str [, string $option="KV" [, string $encoding]]) |Convert "kana" one from another ("zen-kaku", "han-kaku" and more) (PHP 4 >= 4.0.6, PHP 5)
2046string mb_convert_variables(string $to_encoding, mixed $from_encoding, mixed& $vars [, mixed& $...]) |Convert character code in variable(s) (PHP 4 >= 4.0.6, PHP 5)
2047string mb_decode_mimeheader(string $str) |Decode string in MIME header field (PHP 4 >= 4.0.6, PHP 5)
2048string mb_decode_numericentity(string $str, array $convmap, string $encoding) |Decode HTML numeric string reference to character (PHP 4 >= 4.0.6, PHP 5)
2049string mb_detect_encoding(string $str [, mixed $encoding_list=mb_detect_order() [, bool $strict=false]]) |Detect character encoding (PHP 4 >= 4.0.6, PHP 5)
2050mixed mb_detect_order( [mixed $encoding_list]) |Set/Get character encoding detection order (PHP 4 >= 4.0.6, PHP 5)
2051string mb_encode_mimeheader(string $str [, string $charset [, string $transfer_encoding [, string $linefeed="\r\n" [, int $indent=0]]]]) |Encode string for MIME header (PHP 4 >= 4.0.6, PHP 5)
2052string mb_encode_numericentity(string $str, array $convmap, string $encoding) |Encode character to HTML numeric string reference (PHP 4 >= 4.0.6, PHP 5)
2053array mb_encoding_aliases(string $encoding) |Get aliases of a known encoding type (PHP 5 >= 5.3.0)
2054bool mb_ereg_match(string $pattern, string $string [, string $option="msr"]) |Regular expression match for multibyte string (PHP 4 >= 4.2.0, PHP 5)
2055string mb_ereg_replace_callback(string $pattern, callable $callback, string $string [, string $option="msr"]) |Perform a regular expresssion seach and replace with multibyte support using a callback (No version information available, might only be in SVN)
2056string mb_ereg_replace(string $pattern, string $replacement, string $string [, string $option="msr"]) |Replace regular expression with multibyte support (PHP 4 >= 4.2.0, PHP 5)
2057int mb_ereg_search_getpos() |Returns start point for next regular expression match (PHP 4 >= 4.2.0, PHP 5)
2058array mb_ereg_search_getregs() |Retrieve the result from the last multibyte regular expression match (PHP 4 >= 4.2.0, PHP 5)
2059bool mb_ereg_search_init(string $string [, string $pattern [, string $option="msr"]]) |Setup string and regular expression for a multibyte regular expression match (PHP 4 >= 4.2.0, PHP 5)
2060array mb_ereg_search_pos( [string $pattern [, string $option="ms"]]) |Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string (PHP 4 >= 4.2.0, PHP 5)
2061array mb_ereg_search_regs( [string $pattern [, string $option="ms"]]) |Returns the matched part of a multibyte regular expression (PHP 4 >= 4.2.0, PHP 5)
2062bool mb_ereg_search_setpos(int $position) |Set start point of next regular expression match (PHP 4 >= 4.2.0, PHP 5)
2063bool mb_ereg_search( [string $pattern [, string $option="ms"]]) |Multibyte regular expression match for predefined multibyte string (PHP 4 >= 4.2.0, PHP 5)
2064int mb_ereg(string $pattern, string $string [, array $regs]) |Regular expression match with multibyte support (PHP 4 >= 4.2.0, PHP 5)
2065string mb_eregi_replace(string $pattern, string $replace, string $string [, string $option="msri"]) |Replace regular expression with multibyte support ignoring case (PHP 4 >= 4.2.0, PHP 5)
2066int mb_eregi(string $pattern, string $string [, array $regs]) |Regular expression match ignoring case with multibyte support (PHP 4 >= 4.2.0, PHP 5)
2067mixed mb_get_info( [string $type="all"]) |Get internal settings of mbstring (PHP 4 >= 4.2.0, PHP 5)
2068mixed mb_http_input( [string $type=""]) |Detect HTTP input character encoding (PHP 4 >= 4.0.6, PHP 5)
2069mixed mb_http_output( [string $encoding]) |Set/Get HTTP output character encoding (PHP 4 >= 4.0.6, PHP 5)
2070mixed mb_internal_encoding( [string $encoding=mb_internal_encoding()]) |Set/Get internal character encoding (PHP 4 >= 4.0.6, PHP 5)
2071mixed mb_language( [string $language]) |Set/Get current language (PHP 4 >= 4.0.6, PHP 5)
2072array mb_list_encodings() |Returns an array of all supported encodings (PHP 5)
2073string mb_output_handler(string $contents, int $status) |Callback function converts character encoding in output buffer (PHP 4 >= 4.0.6, PHP 5)
2074bool mb_parse_str(string $encoded_string [, array& $result]) |Parse GET/POST/COOKIE data and set global variable (PHP 4 >= 4.0.6, PHP 5)
2075string mb_preferred_mime_name(string $encoding) |Get MIME charset string (PHP 4 >= 4.0.6, PHP 5)
2076mixed mb_regex_encoding( [string $encoding]) |Returns current encoding for multibyte regex as string (PHP 4 >= 4.2.0, PHP 5)
2077string mb_regex_set_options( [string $options="msr"]) |Set/Get the default options for mbregex functions (PHP 4 >= 4.3.0, PHP 5)
2078bool mb_send_mail(string $to, string $subject, string $message [, string $additional_headers= NULL [, string $additional_parameter= NULL]]) |Send encoded mail (PHP 4 >= 4.0.6, PHP 5)
2079array mb_split(string $pattern, string $string [, int $limit=-1]) |Split multibyte string using regular expression (PHP 4 >= 4.2.0, PHP 5)
2080string mb_strcut(string $str, int $start [, int $length [, string $encoding]]) |Get part of string (PHP 4 >= 4.0.6, PHP 5)
2081string mb_strimwidth(string $str, int $start, int $width [, string $trimmarker [, string $encoding]]) |Get truncated string with specified width (PHP 4 >= 4.0.6, PHP 5)
2082int mb_stripos(string $haystack, string $needle [, int $offset [, string $encoding]]) |Finds position of first occurrence of a string within another, case insensitive (PHP 5 >= 5.2.0)
2083string mb_stristr(string $haystack, string $needle [, bool $before_needle=false [, string $encoding]]) |Finds first occurrence of a string within another, case insensitive (PHP 5 >= 5.2.0)
2084int mb_strlen(string $str [, string $encoding]) |Get string length (PHP 4 >= 4.0.6, PHP 5)
2085int mb_strpos(string $haystack, string $needle [, int $offset=0 [, string $encoding]]) |Find position of first occurrence of string in a string (PHP 4 >= 4.0.6, PHP 5)
2086string mb_strrchr(string $haystack, string $needle [, bool $part=false [, string $encoding]]) |Finds the last occurrence of a character in a string within another (PHP 5 >= 5.2.0)
2087string mb_strrichr(string $haystack, string $needle [, bool $part=false [, string $encoding]]) |Finds the last occurrence of a character in a string within another, case insensitive (PHP 5 >= 5.2.0)
2088int mb_strripos(string $haystack, string $needle [, int $offset=0 [, string $encoding]]) |Finds position of last occurrence of a string within another, case insensitive (PHP 5 >= 5.2.0)
2089int mb_strrpos(string $haystack, string $needle [, int $offset=0 [, string $encoding]]) |Find position of last occurrence of a string in a string (PHP 4 >= 4.0.6, PHP 5)
2090string mb_strstr(string $haystack, string $needle [, bool $before_needle=false [, string $encoding]]) |Finds first occurrence of a string within another (PHP 5 >= 5.2.0)
2091string mb_strtolower(string $str [, string $encoding=mb_internal_encoding()]) |Make a string lowercase (PHP 4 >= 4.3.0, PHP 5)
2092string mb_strtoupper(string $str [, string $encoding=mb_internal_encoding()]) |Make a string uppercase (PHP 4 >= 4.3.0, PHP 5)
2093int mb_strwidth(string $str [, string $encoding]) |Return width of string (PHP 4 >= 4.0.6, PHP 5)
2094mixed mb_substitute_character( [mixed $substrchar]) |Set/Get substitution character (PHP 4 >= 4.0.6, PHP 5)
2095int mb_substr_count(string $haystack, string $needle [, string $encoding]) |Count the number of substring occurrences (PHP 4 >= 4.3.0, PHP 5)
2096string mb_substr(string $str, int $start [, int $length [, string $encoding]]) |Get part of string (PHP 4 >= 4.0.6, PHP 5)
2097string mcrypt_cbc(int $cipher, string $key, string $data, int $mode [, string $iv]) |Encrypts/decrypts data in CBC mode (PHP 4, PHP 5)
2098string mcrypt_cfb(int $cipher, string $key, string $data, int $mode, string $iv) |Encrypts/decrypts data in CFB mode (PHP 4, PHP 5)
2099string mcrypt_create_iv(int $size [, int $source=MCRYPT_DEV_RANDOM]) |Creates an initialization vector (IV) from a random source (PHP 4, PHP 5)
2100string mcrypt_decrypt(string $cipher, string $key, string $data, string $mode [, string $iv]) |Decrypts crypttext with given parameters (PHP 4 >= 4.0.2, PHP 5)
2101string mcrypt_ecb(int $cipher, string $key, string $data, int $mode) |Deprecated: Encrypts/decrypts data in ECB mode (PHP 4, PHP 5)
2102string mcrypt_enc_get_algorithms_name(resource $td) |Returns the name of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
2103int mcrypt_enc_get_block_size(resource $td) |Returns the blocksize of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
2104int mcrypt_enc_get_iv_size(resource $td) |Returns the size of the IV of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
2105int mcrypt_enc_get_key_size(resource $td) |Returns the maximum supported keysize of the opened mode (PHP 4 >= 4.0.2, PHP 5)
2106string mcrypt_enc_get_modes_name(resource $td) |Returns the name of the opened mode (PHP 4 >= 4.0.2, PHP 5)
2107array mcrypt_enc_get_supported_key_sizes(resource $td) |Returns an array with the supported keysizes of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
2108bool mcrypt_enc_is_block_algorithm_mode(resource $td) |Checks whether the encryption of the opened mode works on blocks (PHP 4 >= 4.0.2, PHP 5)
2109bool mcrypt_enc_is_block_algorithm(resource $td) |Checks whether the algorithm of the opened mode is a block algorithm (PHP 4 >= 4.0.2, PHP 5)
2110bool mcrypt_enc_is_block_mode(resource $td) |Checks whether the opened mode outputs blocks (PHP 4 >= 4.0.2, PHP 5)
2111int mcrypt_enc_self_test(resource $td) |Runs a self test on the opened module (PHP 4 >= 4.0.2, PHP 5)
2112string mcrypt_encrypt(string $cipher, string $key, string $data, string $mode [, string $iv]) |Encrypts plaintext with given parameters (PHP 4 >= 4.0.2, PHP 5)
2113bool mcrypt_generic_deinit(resource $td) |This function deinitializes an encryption module (PHP 4 >= 4.0.7, PHP 5)
2114bool mcrypt_generic_end(resource $td) |This function terminates encryption (PHP 4 >= 4.0.2, PHP 5 <= 5.1.6)
2115int mcrypt_generic_init(resource $td, string $key, string $iv) |This function initializes all buffers needed for encryption (PHP 4 >= 4.0.2, PHP 5)
2116string mcrypt_generic(resource $td, string $data) |This function encrypts data (PHP 4 >= 4.0.2, PHP 5)
2117int mcrypt_get_block_size(int $cipher) |Gets the block size of the specified cipher (PHP 4, PHP 5)
2118string mcrypt_get_cipher_name(int $cipher) |Gets the name of the specified cipher (PHP 4, PHP 5)
2119int mcrypt_get_iv_size(string $cipher, string $mode) |Returns the size of the IV belonging to a specific cipher/mode combination (PHP 4 >= 4.0.2, PHP 5)
2120int mcrypt_get_key_size(int $cipher) |Gets the key size of the specified cipher (PHP 4, PHP 5)
2121array mcrypt_list_algorithms( [string $lib_dir=ini_get("mcrypt.algorithms_dir")]) |Gets an array of all supported ciphers (PHP 4 >= 4.0.2, PHP 5)
2122array mcrypt_list_modes( [string $lib_dir=ini_get("mcrypt.modes_dir")]) |Gets an array of all supported modes (PHP 4 >= 4.0.2, PHP 5)
2123bool mcrypt_module_close(resource $td) |Closes the mcrypt module (PHP 4 >= 4.0.2, PHP 5)
2124int mcrypt_module_get_algo_block_size(string $algorithm [, string $lib_dir]) |Returns the blocksize of the specified algorithm (PHP 4 >= 4.0.2, PHP 5)
2125int mcrypt_module_get_algo_key_size(string $algorithm [, string $lib_dir]) |Returns the maximum supported keysize of the opened mode (PHP 4 >= 4.0.2, PHP 5)
2126array mcrypt_module_get_supported_key_sizes(string $algorithm [, string $lib_dir]) |Returns an array with the supported keysizes of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
2127bool mcrypt_module_is_block_algorithm_mode(string $mode [, string $lib_dir]) |Returns if the specified module is a block algorithm or not (PHP 4 >= 4.0.2, PHP 5)
2128bool mcrypt_module_is_block_algorithm(string $algorithm [, string $lib_dir]) |This function checks whether the specified algorithm is a block algorithm (PHP 4 >= 4.0.2, PHP 5)
2129bool mcrypt_module_is_block_mode(string $mode [, string $lib_dir]) |Returns if the specified mode outputs blocks or not (PHP 4 >= 4.0.2, PHP 5)
2130resource mcrypt_module_open(string $algorithm, string $algorithm_directory, string $mode, string $mode_directory) |Opens the module of the algorithm and the mode to be used (PHP 4 >= 4.0.2, PHP 5)
2131bool mcrypt_module_self_test(string $algorithm [, string $lib_dir]) |This function runs a self test on the specified module (PHP 4 >= 4.0.2, PHP 5)
2132string mcrypt_ofb(int $cipher, string $key, string $data, int $mode, string $iv) |Encrypts/decrypts data in OFB mode (PHP 4, PHP 5)
2133string md5_file(string $filename [, bool $raw_output=false]) |Calculates the md5 hash of a given file (PHP 4 >= 4.2.0, PHP 5)
2134string md5(string $str [, bool $raw_output=false]) |Calculate the md5 hash of a string (PHP 4, PHP 5)
2135string mdecrypt_generic(resource $td, string $data) |Decrypts data (PHP 4 >= 4.0.2, PHP 5)
2136bool memcache_debug(bool $on_off) |Turn debug output on/off (PECL memcache >= 0.2.0)
2137int memory_get_peak_usage( [bool $real_usage=false]) |Returns the peak of memory allocated by PHP (PHP 5 >= 5.2.0)
2138int memory_get_usage( [bool $real_usage=false]) |Returns the amount of memory allocated to PHP (PHP 4 >= 4.3.2, PHP 5)
2139string metaphone(string $str [, int $phonemes=0]) |Calculate the metaphone key of a string (PHP 4, PHP 5)
2140bool method_exists(mixed $object, string $method_name) |Checks if the class method exists (PHP 4, PHP 5)
2141int mhash_count() |Gets the highest available hash ID (PHP 4, PHP 5)
2142int mhash_get_block_size(int $hash) |Gets the block size of the specified hash (PHP 4, PHP 5)
2143string mhash_get_hash_name(int $hash) |Gets the name of the specified hash (PHP 4, PHP 5)
2144string mhash_keygen_s2k(int $hash, string $password, string $salt, int $bytes) |Generates a key (PHP 4 >= 4.0.4, PHP 5)
2145string mhash(int $hash, string $data [, string $key]) |Computes hash (PHP 4, PHP 5)
2146mixed microtime( [bool $get_as_float=false]) |Return current Unix timestamp with microseconds (PHP 4, PHP 5)
2147string mime_content_type(string $filename) |Detect MIME Content-type for a file (deprecated) (PHP 4 >= 4.3.0, PHP 5)
2148mixed min(array $values) |Find lowest value (PHP 4, PHP 5)
2149int ming_keypress(string $char) |Returns the action flag for keyPress(char) (PHP 5 <= 5.3.0, PECL ming SVN)
2150void ming_setcubicthreshold(int $threshold) |Set cubic threshold (PHP 4 >= 4.0.5, PHP 5, PECL ming SVN)
2151void ming_setscale(float $scale) |Set the global scaling factor. (PHP 4 >= 4.0.5, PHP 5, PECL ming SVN)
2152void ming_setswfcompression(int $level) |Sets the SWF output compression (PHP 5.2.1-5.3.0, PECL ming SVN)
2153void ming_useconstants(int $use) |Use constant pool (PHP 5 <= 5.3.0, PECL ming SVN)
2154void ming_useswfversion(int $version) |Sets the SWF version (PHP 4 >= 4.2.0, PHP 5 <= 5.3.0, PECL ming SVN)
2155bool mkdir(string $pathname [, int $mode=0777 [, bool $recursive=false [, resource $context]]]) |Makes directory (PHP 4, PHP 5)
2156int mktime( [int $hour=date("H") [, int $minute=date("i") [, int $second=date("s") [, int $month=date("n") [, int $day=date("j") [, int $year=date("Y") [, int $is_dst=-1]]]]]]]) |Get Unix timestamp for a date (PHP 4, PHP 5)
2157string money_format(string $format, float $number) |Formats a number as a currency string (PHP 4 >= 4.3.0, PHP 5)
2158bool move_uploaded_file(string $filename, string $destination) |Moves an uploaded file to a new location (PHP 4 >= 4.0.3, PHP 5)
2159void mqseries_back(resource $hconn, resource& $compCode, resource& $reason) |MQSeries MQBACK (PECL mqseries >= 0.10.0)
2160void mqseries_begin(resource $hconn, array $beginOptions, resource& $compCode, resource& $reason) |MQseries MQBEGIN (PECL mqseries >= 0.10.0)
2161void mqseries_close(resource $hconn, resource $hobj, int $options, resource& $compCode, resource& $reason) |MQSeries MQCLOSE (PECL mqseries >= 0.10.0)
2162void mqseries_cmit(resource $hconn, resource& $compCode, resource& $reason) |MQSeries MQCMIT (PECL mqseries >= 0.10.0)
2163void mqseries_conn(string $qManagerName, resource& $hconn, resource& $compCode, resource& $reason) |MQSeries MQCONN (PECL mqseries >= 0.10.0)
2164void mqseries_connx(string $qManagerName, array& $connOptions, resource& $hconn, resource& $compCode, resource& $reason) |MQSeries MQCONNX (PECL mqseries >= 0.10.0)
2165void mqseries_disc(resource $hconn, resource& $compCode, resource& $reason) |MQSeries MQDISC (PECL mqseries >= 0.10.0)
2166void mqseries_get(resource $hConn, resource $hObj, array& $md, array& $gmo, int& $bufferLength, string& $msg, int& $data_length, resource& $compCode, resource& $reason) |MQSeries MQGET (PECL mqseries >= 0.10.0)
2167void mqseries_inq(resource $hconn, resource $hobj, int $selectorCount, array $selectors, int $intAttrCount, resource& $intAttr, int $charAttrLength, resource& $charAttr, resource& $compCode, resource& $reason) |MQSeries MQINQ (PECL mqseries >= 0.10.0)
2168void mqseries_open(resource $hconn, array& $objDesc, int $option, resource& $hobj, resource& $compCode, resource& $reason) |MQSeries MQOPEN (PECL mqseries >= 0.10.0)
2169void mqseries_put(resource $hConn, resource $hObj, array& $md, array& $pmo, string $message, resource& $compCode, resource& $reason) |MQSeries MQPUT (PECL mqseries >= 0.10.0)
2170void mqseries_put1(resource $hconn, resource& $objDesc, resource& $msgDesc, resource& $pmo, string $buffer, resource& $compCode, resource& $reason) |MQSeries MQPUT1 (PECL mqseries >= 0.10.0)
2171void mqseries_set(resource $hconn, resource $hobj, int $selectorcount, array $selectors, int $intattrcount, array $intattrs, int $charattrlength, array $charattrs, resource& $compCode, resource& $reason) |MQSeries MQSET (PECL mqseries >= 0.10.0)
2172string mqseries_strerror(int $reason) |Returns the error message corresponding to a result code (MQRC). (PECL mqseries >= 0.10.0)
2173bool msession_connect(string $host, string $port) |Connect to msession server (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2174int msession_count() |Get session count (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2175bool msession_create(string $session [, string $classname [, string $data]]) |Create a session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2176bool msession_destroy(string $name) |Destroy a session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2177void msession_disconnect() |Close connection to msession server (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2178array msession_find(string $name, string $value) |Find all sessions with name and value (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2179array msession_get_array(string $session) |Get array of msession variables (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2180string msession_get_data(string $session) |Get data session unstructured data (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2181string msession_get(string $session, string $name, string $value) |Get value from session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2182string msession_inc(string $session, string $name) |Increment value in session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2183array msession_list() |List all sessions (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2184array msession_listvar(string $name) |List sessions with variable (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2185int msession_lock(string $name) |Lock a session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2186string msession_plugin(string $session, string $val [, string $param]) |Call an escape function within the msession personality plugin (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2187string msession_randstr(int $param) |Get random string (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2188void msession_set_array(string $session, array $tuples) |Set msession variables from an array (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2189bool msession_set_data(string $session, string $value) |Set data session unstructured data (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2190bool msession_set(string $session, string $name, string $value) |Set value in session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2191int msession_timeout(string $session [, int $param]) |Set/get session timeout (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2192string msession_uniq(int $param [, string $classname [, string $data]]) |Get unique id (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2193int msession_unlock(string $session, int $key) |Unlock a session (PHP 4 >= 4.2.0, PHP 5 <= 5.1.2)
2194resource msg_get_queue(int $key [, int $perms=0666]) |Create or attach to a message queue (PHP 4 >= 4.3.0, PHP 5)
2195bool msg_queue_exists(int $key) |Check whether a message queue exists (PHP 5 >= 5.3.0)
2196bool msg_receive(resource $queue, int $desiredmsgtype, int& $msgtype, int $maxsize, mixed& $message [, bool $unserialize=true [, int $flags=0 [, int& $errorcode]]]) |Receive a message from a message queue (PHP 4 >= 4.3.0, PHP 5)
2197bool msg_remove_queue(resource $queue) |Destroy a message queue (PHP 4 >= 4.3.0, PHP 5)
2198bool msg_send(resource $queue, int $msgtype, mixed $message [, bool $serialize=true [, bool $blocking=true [, int& $errorcode]]]) |Send a message to a message queue (PHP 4 >= 4.3.0, PHP 5)
2199bool msg_set_queue(resource $queue, array $data) |Set information in the message queue data structure (PHP 4 >= 4.3.0, PHP 5)
2200array msg_stat_queue(resource $queue) |Returns information from the message queue data structure (PHP 4 >= 4.3.0, PHP 5)
2201int msql_affected_rows(resource $result) |Returns number of affected rows (PHP 4, PHP 5)
2202bool msql_close( [resource $link_identifier]) |Close mSQL connection (PHP 4, PHP 5)
2203resource msql_connect( [string $hostname]) |Open mSQL connection (PHP 4, PHP 5)
2204bool msql_create_db(string $database_name [, resource $link_identifier]) |Create mSQL database (PHP 4, PHP 5)
2205bool msql_data_seek(resource $result, int $row_number) |Move internal row pointer (PHP 4, PHP 5)
2206resource msql_db_query(string $database, string $query [, resource $link_identifier]) |Send mSQL query (PHP 4, PHP 5)
2207bool msql_drop_db(string $database_name [, resource $link_identifier]) |Drop (delete) mSQL database (PHP 4, PHP 5)
2208string msql_error() |Returns error message of last msql call (PHP 4, PHP 5)
2209array msql_fetch_array(resource $result [, int $result_type]) |Fetch row as array (PHP 4, PHP 5)
2210object msql_fetch_field(resource $result [, int $field_offset=0]) |Get field information (PHP 4, PHP 5)
2211object msql_fetch_object(resource $result) |Fetch row as object (PHP 4, PHP 5)
2212array msql_fetch_row(resource $result) |Get row as enumerated array (PHP 4, PHP 5)
2213string msql_field_flags(resource $result, int $field_offset) |Get field flags (PHP 4, PHP 5)
2214int msql_field_len(resource $result, int $field_offset) |Get field length (PHP 4, PHP 5)
2215string msql_field_name(resource $result, int $field_offset) |Get the name of the specified field in a result (PHP 4, PHP 5)
2216bool msql_field_seek(resource $result, int $field_offset) |Set field offset (PHP 4, PHP 5)
2217int msql_field_table(resource $result, int $field_offset) |Get table name for field (PHP 4, PHP 5)
2218string msql_field_type(resource $result, int $field_offset) |Get field type (PHP 4, PHP 5)
2219bool msql_free_result(resource $result) |Free result memory (PHP 4, PHP 5)
2220resource msql_list_dbs( [resource $link_identifier]) |List mSQL databases on server (PHP 4, PHP 5)
2221resource msql_list_fields(string $database, string $tablename [, resource $link_identifier]) |List result fields (PHP 4, PHP 5)
2222resource msql_list_tables(string $database [, resource $link_identifier]) |List tables in an mSQL database (PHP 4, PHP 5)
2223int msql_num_fields(resource $result) |Get number of fields in result (PHP 4, PHP 5)
2224int msql_num_rows(resource $query_identifier) |Get number of rows in result (PHP 4, PHP 5)
2225resource msql_pconnect( [string $hostname]) |Open persistent mSQL connection (PHP 4, PHP 5)
2226resource msql_query(string $query [, resource $link_identifier]) |Send mSQL query (PHP 4, PHP 5)
2227string msql_result(resource $result, int $row [, mixed $field]) |Get result data (PHP 4, PHP 5)
2228bool msql_select_db(string $database_name [, resource $link_identifier]) |Select mSQL database (PHP 4, PHP 5)
2229bool mssql_bind(resource $stmt, string $param_name, mixed& $var, int $type [, bool $is_output=false [, bool $is_null=false [, int $maxlen=-1]]]) |Adds a parameter to a stored procedure or a remote stored procedure (PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1)
2230bool mssql_close( [resource $link_identifier]) |Close MS SQL Server connection (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2231resource mssql_connect( [string $servername [, string $username [, string $password [, bool $new_link=false]]]]) |Open MS SQL server connection (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2232bool mssql_data_seek(resource $result_identifier, int $row_number) |Moves internal row pointer (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2233mixed mssql_execute(resource $stmt [, bool $skip_results=false]) |Executes a stored procedure on a MS SQL server database (PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1)
2234array mssql_fetch_array(resource $result [, int $result_type=MSSQL_BOTH]) |Fetch a result row as an associative array, a numeric array, or both (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2235array mssql_fetch_assoc(resource $result_id) |Returns an associative array of the current row in the result (PHP 4 >= 4.2.0, PHP 5, PECL odbtp >= 1.1.1)
2236int mssql_fetch_batch(resource $result) |Returns the next batch of records (PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1)
2237object mssql_fetch_field(resource $result [, int $field_offset=-1]) |Get field information (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2238object mssql_fetch_object(resource $result) |Fetch row as object (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2239array mssql_fetch_row(resource $result) |Get row as enumerated array (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2240int mssql_field_length(resource $result [, int $offset=-1]) |Get the length of a field (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2241string mssql_field_name(resource $result [, int $offset=-1]) |Get the name of a field (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2242bool mssql_field_seek(resource $result, int $field_offset) |Seeks to the specified field offset (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2243string mssql_field_type(resource $result [, int $offset=-1]) |Gets the type of a field (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2244bool mssql_free_result(resource $result) |Free result memory (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2245bool mssql_free_statement(resource $stmt) |Free statement memory (PHP 4 >= 4.3.2, PHP 5, PECL odbtp >= 1.1.1)
2246string mssql_get_last_message() |Returns the last message from the server (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2247string mssql_guid_string(string $binary [, bool $short_format=false]) |Converts a 16 byte binary GUID to a string (PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1)
2248resource mssql_init(string $sp_name [, resource $link_identifier]) |Initializes a stored procedure or a remote stored procedure (PHP 4 >= 4.0.7, PHP 5, PECL odbtp >= 1.1.1)
2249void mssql_min_error_severity(int $severity) |Sets the minimum error severity (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2250void mssql_min_message_severity(int $severity) |Sets the minimum message severity (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2251bool mssql_next_result(resource $result_id) |Move the internal result pointer to the next result (PHP 4 >= 4.0.5, PHP 5, PECL odbtp >= 1.1.1)
2252int mssql_num_fields(resource $result) |Gets the number of fields in result (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2253int mssql_num_rows(resource $result) |Gets the number of rows in result (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2254resource mssql_pconnect( [string $servername [, string $username [, string $password [, bool $new_link=false]]]]) |Open persistent MS SQL connection (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2255mixed mssql_query(string $query [, resource $link_identifier [, int $batch_size=0]]) |Send MS SQL query (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2256string mssql_result(resource $result, int $row, mixed $field) |Get result data (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2257int mssql_rows_affected(resource $link_identifier) |Returns the number of records affected by the query (PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1)
2258bool mssql_select_db(string $database_name [, resource $link_identifier]) |Select MS SQL database (PHP 4, PHP 5, PECL odbtp >= 1.1.1)
2259int mt_getrandmax() |Show largest possible random value (PHP 4, PHP 5)
2260int mt_rand() |Generate a better random value (PHP 4, PHP 5)
2261void mt_srand( [int $seed]) |Seed the better random number generator (PHP 4, PHP 5)
2262
2263#MySQL Function Summary (http://php.net/manual/en/ref.mysql.php)
2264int mysql_affected_rows ([resource $link_identifier = NULL]) |Get the number of affected rows by the last INSERT, UPDATE, REPLACE or DELETE query associated with link_identifier. (PHP 4, PHP 5)
2265string mysql_client_encoding ([resource $link_identifier = NULL]) |Retrieves the character_set variable from MySQL. (PHP 4 >= 4.3.0, PHP 5)
2266bool mysql_close ([resource $link_identifier = NULL]) |mysql_close() closes the non-persistent connection to the MySQL server that's associated with the specified link identifier. If link_identifier isn't specified, the last opened link is used. (PHP 4, PHP 5)
2267resource mysql_connect ([string $server = ini_get("mysql.default_host") [, string $username = ini_get("mysql.default_user") [, string $password = ini_get("mysql.default_password") [, bool $new_link = false [, int $client_flags = 0 ]]]]])
2268bool mysql_create_db (string $database_name [, resource $link_identifier = NULL ]) |mysql_create_db() attempts to create a new database on the server associated with the specified link identifier. (PHP 4, PHP 5)
2269bool mysql_data_seek (resource $result , int $row_number) |mysql_data_seek() moves the internal row pointer of the MySQL result associated with the specified result identifier to point to the specified row number. The next call to a MySQL fetch function, such as mysql_fetch_assoc(), would return that row. (PHP 4, PHP 5)
2270string mysql_db_name (resource $result , int $row [, mixed $field = NULL ]) |Retrieve the database name from a call to mysql_list_dbs(). (PHP 4, PHP 5)
2271resource mysql_db_query (string $database , string $query [, resource $link_identifier = NULL ]) |mysql_db_query() selects a database, and executes a query on it. (PHP 4, PHP 5)
2272bool mysql_drop_db (string $database_name [, resource $link_identifier = NULL ]) |mysql_drop_db() attempts to drop (remove) an entire database from the server associated with the specified link identifier. This function is deprecated, it is preferable to use mysql_query() to issue an sql DROP DATABASE statement instead. (PHP 4, PHP 5)
2273int mysql_errno ([resource $link_identifier = NULL ]) | Returns the error number from the last MySQL function. (PHP 4, PHP 5)
2274string mysql_error ([resource $link_identifier = NULL ]) |Returns the error text from the last MySQL function. Errors coming back from the MySQL database backend no longer issue warnings. Instead, use mysql_error() to retrieve the error text. Note that this function only returns the error text from the most recently executed MySQL function (not including mysql_error() and mysql_errno()), so if you want to use it, make sure you check the value before calling another MySQL function. (PHP 4, PHP 5)
2275string mysql_escape_string (string $unescaped_string) |This function will escape the unescaped_string, so that it is safe to place it in a mysql_query(). This function is deprecated. (PHP 4 >= 4.0.3, PHP 5)
2276array mysql_fetch_array (resource $result [, int $result_type = MYSQL_BOTH ]) |Returns an array that corresponds to the fetched row and moves the internal data pointer ahead. (PHP 4, PHP 5)
2277array mysql_fetch_assoc (resource $result) |Returns an associative array that corresponds to the fetched row and moves the internal data pointer ahead. mysql_fetch_assoc() is equivalent to calling mysql_fetch_array() with MYSQL_ASSOC for the optional second parameter. It only returns an associative array. (PHP 4 >= 4.0.3, PHP 5)
2278object mysql_fetch_field (resource $result [, int $field_offset = 0 ]) |Returns an object containing field information. This function can be used to obtain information about fields in the provided query result. (PHP 4, PHP 5)
2279array mysql_fetch_lengths (resource $result) |Returns an array that corresponds to the lengths of each field in the last row fetched by MySQL. (PHP 4, PHP 5)
2280object mysql_fetch_object (resource $result [, string $class_name [, array $params ]]) | Returns an object with properties that correspond to the fetched row and moves the internal data pointer ahead. (PHP 4, PHP 5)
2281array mysql_fetch_row (resource $result) |Returns a numerical array that corresponds to the fetched row and moves the internal data pointer ahead. (PHP 4, PHP 5)
2282string mysql_field_flags (resource $result , int $field_offset) |mysql_field_flags() returns the field flags of the specified field. The flags are reported as a single word per flag separated by a single space, so that you can split the returned value using explode(). (PHP 4, PHP 5)
2283int mysql_field_len (resource $result , int $field_offset) |mysql_field_len() returns the length of the specified field. (PHP 4, PHP 5)
2284string mysql_field_name (resource $result , int $field_offset) |mysql_field_name() returns the name of the specified field index. (PHP 4, PHP 5)
2285bool mysql_field_seek (resource $result , int $field_offset) |Seeks to the specified field offset. If the next call to mysql_fetch_field() doesn't include a field offset, the field offset specified in mysql_field_seek() will be returned. (PHP 4, PHP 5)
2286string mysql_field_table (resource $result , int $field_offset) |Returns the name of the table that the specified field is in. (PHP 4, PHP 5)
2287string mysql_field_type (resource $result , int $field_offset) |mysql_field_type() is similar to the mysql_field_name() function. The arguments are identical, but the field type is returned instead. (PHP 4, PHP 5)
2288bool mysql_free_result (resource $result) |mysql_free_result() will free all memory associated with the result identifier result. (PHP 4, PHP 5)
2289string mysql_get_client_info (void) |mysql_get_client_info() returns a string that represents the client library version. (PHP 4 >= 4.0.5, PHP 5)
2290string mysql_get_host_info ([resource $link_identifier = NULL ]) |Describes the type of connection in use for the connection, including the server host name. (PHP 4 >= 4.0.5, PHP 5)
2291int mysql_get_proto_info ([resource $link_identifier = NULL ]) |Retrieves the MySQL protocol. (PHP 4 >= 4.0.5, PHP 5)
2292string mysql_get_server_info ([resource $link_identifier = NULL  ) |Retrieves the MySQL server version. (PHP 4 >= 4.0.5, PHP 5)
2293string mysql_info ([resource $link_identifier = NULL ]) |Returns detailed information about the last query. (PHP 4 >= 4.3.0, PHP 5)
2294int mysql_insert_id ([resource $link_identifier = NULL ]) |Retrieves the ID generated for an AUTO_INCREMENT column by the previous query (usually INSERT). (PHP 4, PHP 5)
2295resource mysql_list_dbs ([resource $link_identifier = NULL ]) |Returns a result pointer containing the databases available from the current mysql daemon. (PHP 4, PHP 5)
2296resource mysql_list_fields (string $database_name , string $table_name [, resource $link_identifier = NULL ]) | Retrieves information about the given table name. This function is deprecated. It is preferable to use mysql_query() to issue an SQL SHOW COLUMNS FROM table [LIKE 'name'] statement instead. (PHP 4, PHP 5)
2297resource mysql_list_processes ([resource $link_identifier = NULL ]) |Retrieves the current MySQL server threads. (PHP 4 >= 4.3.0, PHP 5)
2298resource mysql_list_tables (string $database [, resource $link_identifier = NULL ]) |Retrieves a list of table names from a MySQL database. This function is deprecated. It is preferable to use mysql_query() to issue an SQL SHOW TABLES [FROM db_name] [LIKE 'pattern'] statement instead. (PHP 4, PHP 5)
2299int mysql_num_fields (resource $result) |Retrieves the number of fields from a query. (PHP 4, PHP 5)
2300int mysql_num_rows (resource $result) |Retrieves the number of rows from a result set. This command is only valid for statements like SELECT or SHOW that return an actual result set. To retrieve the number of rows affected by a INSERT, UPDATE, REPLACE or DELETE query, use mysql_affected_rows(). (PHP 4, PHP 5)
2301resource mysql_pconnect ([string $server = ini_get("mysql.default_host") [, string $username = ini_get("mysql.default_user") [, string $password = ini_get("mysql.default_password") [, int $client_flags = 0 ]]]]) |Establishes a persistent connection to a MySQL server. (PHP 4, PHP 5)
2302bool mysql_ping ([ resource $link_identifier = NULL ] ) |Checks whether or not the connection to the server is working. If it has gone down, an automatic reconnection is attempted. This function can be used by scripts that remain idle for a long while, to check whether or not the server has closed the connection and reconnect if necessary. (PHP 4 >= 4.3.0, PHP 5)
2303mixed mysql_query (string $query [, resource $link_identifier = NULL ]) |mysql_query() sends a unique query (multiple queries are not supported) to the currently active database on the server that's associated with the specified link_identifier. (PHP 4, PHP 5)
2304string mysql_real_escape_string (string $unescaped_string [, resource $link_identifier = NULL ]) |Escapes special characters in the unescaped_string, taking into account the current character set of the connection so that it is safe to place it in a mysql_query(). If binary data is to be inserted, this function must be used. (PHP 4 >= 4.3.0, PHP 5)
2305string mysql_result (resource $result , int $row [, mixed $field = 0 ]) |Retrieves the contents of one cell from a MySQL result set. (PHP 4, PHP 5)
2306bool mysql_select_db (string $database_name [, resource $link_identifier = NULL ]) |Sets the current active database on the server that's associated with the specified link identifier. Every subsequent call to mysql_query() will be made on the active database. (PHP 4, PHP 5)
2307bool mysql_set_charset (string $charset [, resource $link_identifier = NULL ]) |Sets the default character set for the current connection. (PHP 5 >= 5.2.3)
2308string mysql_stat ([resource $link_identifier = NULL ]) |mysql_stat() returns the current server status. (PHP 4 >= 4.3.0, PHP 5)
2309string mysql_tablename (resource $result , int $i) |Retrieves the table name from a result. (PHP 4, PHP 5)
2310int mysql_thread_id ([resource $link_identifier = NULL ]) |Retrieves the current thread ID. If the connection is lost, and a reconnect with mysql_ping() is executed, the thread ID will change. This means only retrieve the thread ID when needed. (PHP 4 >= 4.3.0, PHP 5)
2311resource mysql_unbuffered_query (string $query [, resource $link_identifier = NULL ]) |mysql_unbuffered_query() sends the SQL query query to MySQL without automatically fetching and buffering the result rows as mysql_query() does. (PHP 4 >= 4.0.6, PHP 5)
2312
2313#MySQLi Extension Function Summary (http://php.net/manual/en/mysqli.summary.php)
2314#Summary of mysqli methods
2315int mysqli_affected_rows(mysqli $link) |Returns the number of rows affected by the last INSERT, UPDATE, REPLACE or DELETE query. (PHP 5, PHP 7)
2316string mysqli_get_client_info(mysqli $link) |Returns a string that represents the MySQL client library version. (PHP 5, PHP 7)
2317int mysqli_get_client_version(mysqli $link) |Returns client version number as an integer. (PHP 5, PHP 7)
2318int mysqli_connect_errno(void) |Returns the last error code number from the last call to mysqli_connect(). (PHP 5, PHP 7)
2319string mysqli_connect_error(void) |Returns the last error message string from the last call to mysqli_connect(). (PHP 5, PHP 7)
2320int mysqli_errno(mysqli $link) |Returns the last error code for the most recent MySQLi function call that can succeed or fail. (PHP 5, PHP 7)
2321string mysqli_error(mysqli $link) |Returns the last error message for the most recent MySQLi function call that can succeed or fail. (PHP 5, PHP 7)
2322int mysqli_field_count(mysqli $link) |Returns the number of columns for the most recent query on the connection represented by the link parameter. (PHP 5, PHP 7)
2323string mysqli_get_host_info(mysqli $link) |Returns a string describing the connection represented by the link parameter (including the server host name). (PHP 5, PHP 7)
2324int mysqli_get_proto_info(mysqli $link) |Returns an integer representing the MySQL protocol version used by the connection represented by the link parameter. (PHP 5, PHP 7)
2325string mysqli_get_server_info(mysqli $link) |Returns a string representing the version of the MySQL server that the MySQLi extension is connected to. (PHP 5, PHP 7)
2326int mysqli_get_server_version(mysqli $link) |The mysqli_get_server_version() function returns the version of the server connected to (represented by the link parameter) as an integer. (PHP 5, PHP 7)
2327string mysqli_info(mysqli $link) |The mysqli_info() function returns a string providing information about the last query executed. (PHP 5, PHP 7)
2328mixed mysqli_insert_id(mysqli $link) |The mysqli_insert_id() function returns the ID generated by a query on a table with a column having the AUTO_INCREMENT attribute. If the last query wasn't an INSERT or UPDATE statement or if the modified table does not have a column with the AUTO_INCREMENT attribute, this function will return zero. (PHP 5, PHP 7)
2329string mysqli_sqlstate(mysqli $link) |Returns a string containing the SQLSTATE error code for the last error. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC. (PHP 5, PHP 7)
2330int mysqli_warning_count(mysqli $link) |Returns the number of warnings from the last query in the connection. (PHP 5, PHP 7)
2331bool mysqli_autocommit(mysqli $link , bool $mode) |Turns on or off auto-commit mode on queries for the database connection. To determine the current state of autocommit use the SQL command SELECT @@autocommit. (PHP 5, PHP 7)
2332bool mysqli_change_user(mysqli $link , string $user , string $password , string $database) |Changes the user of the specified database connection and sets the current database. (PHP 5, PHP 7)
2333string mysqli_character_set_name(mysqli $link) |Returns the current character set for the database connection. (PHP 5, PHP 7)
2334bool mysqli_close(mysqli $link) |Closes a previously opened database connection. (PHP 5, PHP 7)
2335bool mysqli_commit(mysqli $link [, int $flags [, string $name ]]) |Commits the current transaction for the database connection. (PHP 5, PHP 7)
2336mysqli mysqli_connect ([string $host = ini_get("mysqli.default_host") [, string $username = ini_get("mysqli.default_user") [, string $passwd = ini_get("mysqli.default_pw") [, string $dbname = "" [, int $port = ini_get("mysqli.default_port") [, string $socket = ini_get("mysqli.default_socket") ]]]]]]) |Opens a connection to the MySQL Server running on. (PHP 5, PHP 7)
2337bool mysqli_debug(string $message) |Performs debugging operations using the Fred Fish debugging library. (PHP 5, PHP 7)
2338bool mysqli_dump_debug_info(mysqli $link) |This function is designed to be executed by an user with the SUPER privilege and is used to dump debugging information into the log for the MySQL Server relating to the connection. (PHP 5, PHP 7)
2339object mysqli_get_charset(mysqli $link) |Returns a character set object providing several properties of the current active character set. (PHP 5 >= 5.1.0, PHP 7)
2340array mysqli_get_connection_stats(mysqli $link) |Returns statistics about the client connection. Available only with mysqlnd. (PHP 5 >= 5.3.0, PHP 7)
2341array mysqli_get_client_stats(void) |Returns client per-process statistics. Available only with mysqlnd. (PHP 5 >= 5.3.0, PHP 7)
2342array mysqli_get_cache_stats (void) |Returns an empty array. Available only with mysqlnd. (Warning: This function has been REMOVED as of PHP 5.4.0.) (PHP 5 >= 5.3.0 and < 5.4.0)
2343mysqli_warning mysqli_get_warnings(mysqli $link) |(Warning: This function is currently not documented; only its argument list is available.) (PHP 5 >= 5.1.0, PHP 7)
2344mysqli mysqli_init(void) |Allocates or initializes a MYSQL object suitable for mysqli_options() and mysqli_real_connect(). (PHP 5, PHP 7)
2345bool mysqli_kill(mysqli $link , int $processid) |This function is used to ask the server to kill a MySQL thread specified by the processid parameter. This value must be retrieved by calling the mysqli_thread_id() function. (PHP 5, PHP 7)
2346bool mysqli_more_results(mysqli $link) |Indicates if one or more result sets are available from a previous call to mysqli_multi_query(). (PHP 5, PHP 7)
2347bool mysqli_multi_query(mysqli $link , string $query) |Executes one or multiple queries which are concatenated by a semicolon. (PHP 5, PHP 7)
2348bool mysqli_next_result(mysqli $link) |Prepares next result set from a previous call to mysqli_multi_query() which can be retrieved by mysqli_store_result() or mysqli_use_result(). (PHP 5, PHP 7)
2349bool mysqli_options(mysqli $link , int $option , mixed $value) |Used to set extra connect options and affect behavior for a connection. (PHP 5, PHP 7)
2350bool mysqli_ping(mysqli $link) |Checks whether the connection to the server is working. If it has gone down, and global option mysqli.reconnect is enabled an automatic reconnection is attempted. (PHP 5, PHP 7)
2351mysqli_stmt mysqli_prepare(mysqli $link , string $query) |Prepares the SQL query, and returns a statement handle to be used for further operations on the statement. The query must consist of a single SQL statement. (PHP 5, PHP 7)
2352mixed mysqli_query(mysqli $link , string $query [, int $resultmode = MYSQLI_STORE_RESULT ]) |Performs a query against the database. (PHP 5, PHP 7)
2353bool mysqli_real_connect (mysqli $link [, string $host [, string $username [, string $passwd [, string $dbname [, int $port [, string $socket [, int $flags ]]]]]]]) |Establish a connection to a MySQL database engine. (PHP 5, PHP 7)
2354string mysqli_real_escape_string(mysqli $link , string $escapestr) |This function is used to create a legal SQL string that you can use in an SQL statement. The given string is encoded to an escaped SQL string, taking into account the current character set of the connection. (PHP 5, PHP 7)
2355bool mysqli_real_query(mysqli $link , string $query) |Executes a single query against the database whose result can then be retrieved or stored using the mysqli_store_result() or mysqli_use_result() functions. (PHP 5, PHP 7)
2356int mysqli_refresh(resource $link , int $options) |Flushes tables or caches, or resets the replication server information. (PHP 5 <= 5.3.0)
2357bool mysqli_rollback(mysqli $link [, int $flags [, string $name ]]) |Rollbacks the current transaction for the database. (PHP 5, PHP 7)
2358bool mysqli_select_db(mysqli $link , string $dbname) |Selects the default database to be used when performing queries against the database connection. (PHP 5, PHP 7)
2359bool mysqli_set_charset(mysqli $link , string $charset) |Sets the default character set to be used when sending data from and to the database server. (PHP 5 >= 5.0.5, PHP 7)
2360void mysqli_set_local_infile_default(mysqli $link) |Deactivates a LOAD DATA INFILE LOCAL handler previously set with mysqli_set_local_infile_handler(). (PHP 5, PHP 7)
2361bool mysqli_set_local_infile_handler(mysqli $link , callable $read_func) |Set callback function for LOAD DATA LOCAL INFILE command. (PHP 5, PHP 7)
2362bool mysqli_ssl_set(mysqli $link , string $key , string $cert , string $ca , string $capath , string $cipher) |Used for establishing secure connections using SSL. It must be called before mysqli_real_connect(). This function does nothing unless OpenSSL support is enabled. (PHP 5, PHP 7)
2363string mysqli_stat(mysqli $link) |Allocates and initializes a statement object suitable for mysqli_stmt_prepare(). (PHP 5, PHP 7)
2364mysqli_stmt mysqli_stmt_init(mysqli $link) |Allocates and initializes a statement object suitable for mysqli_stmt_prepare(). (PHP 5, PHP 7)
2365mysqli_result mysqli_store_result(mysqli $link [, int $option ]) |Transfers the result set from the last query on the database connection represented by the link parameter to be used with the mysqli_data_seek() function. (PHP 5, PHP 7)
2366int mysqli_thread_id(mysqli $link) |The mysqli_thread_id() function returns the thread ID for the current connection which can then be killed using the mysqli_kill() function. If the connection is lost and you reconnect with mysqli_ping(), the thread ID will be other. Therefore you should get the thread ID only when you need it. (PHP 5, PHP 7)
2367bool mysqli_thread_safe(void) |Tells whether the client library is compiled as thread-safe. (PHP 5, PHP 7)
2368mysqli_result mysqli_use_result(mysqli $link) |Used to initiate the retrieval of a result set from the last query executed using the mysqli_real_query() function on the database connection. (PHP 5, PHP 7)
2369#Summary of mysqli_stmt methods
2370int mysqli_stmt_affected_rows(mysqli_stmt $stmt) |mysqli_stmt::$affected_rows -- mysqli_stmt_affected_rows � Returns the total number of rows changed, deleted, or inserted by the last executed statement. (PHP 5, PHP 7)
2371int mysqli_stmt_errno(mysqli_stmt $stmt) |Returns the error code for the most recently invoked statement function that can succeed or fail. (PHP 5, PHP 7)
2372string mysqli_stmt_error(mysqli_stmt $stmt) |Returns a string containing the error message for the most recently invoked statement function that can succeed or fail. (PHP 5, PHP 7)
2373int mysqli_stmt_field_count(mysqli_stmt $stmt) |Returns the number of field in the given statement. (PHP 5, PHP 7)
2374mixed mysqli_stmt_insert_id(mysqli_stmt $stmt) |Get the ID generated from the previous INSERT operation. (PHP 5, PHP 7)
2375int mysqli_stmt_num_rows(mysqli_stmt $stmt) |Returns the number of rows in the result set. The use of mysqli_stmt_num_rows() depends on whether or not you used mysqli_stmt_store_result() to buffer the entire result set in the statement handle. (PHP 5, PHP 7)
2376int mysqli_stmt_param_count(mysqli_stmt $stmt) |Returns the number of parameter markers present in the prepared statement. (PHP 5, PHP 7)
2377string mysqli_stmt_sqlstate(mysqli_stmt $stmt) |Returns a string containing the SQLSTATE error code for the most recently invoked prepared statement function that can succeed or fail. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC. (PHP 5, PHP 7)
2378int mysqli_stmt_attr_get(mysqli_stmt $stmt , int $attr) |Gets the current value of a statement attribute. (PHP 5, PHP 7)
2379bool mysqli_stmt_attr_set(mysqli_stmt $stmt , int $attr , int $mode) |Used to modify the behavior of a prepared statement. This function may be called multiple times to set several attributes. (PHP 5, PHP 7)
2380bool mysqli_stmt_bind_param(mysqli_stmt $stmt , string $types , mixed &$var1 [, mixed &$... ]) |Bind variables for the parameter markers in the SQL statement that was passed to mysqli_prepare(). (PHP 5, PHP 7)
2381bool mysqli_stmt_bind_result(mysqli_stmt $stmt , mixed &$var1 [, mixed &$... ]) |Binds columns in the result set to variables. (PHP 5, PHP 7)
2382bool mysqli_stmt_close(mysqli_stmt $stmt) | Closes a prepared statement. mysqli_stmt_close() also deallocates the statement handle. If the current statement has pending or unread results, this function cancels them so that the next query can be executed. (PHP 5, PHP 7)
2383void mysqli_stmt_data_seek(mysqli_stmt $stmt , int $offset) |Seeks to an arbitrary result pointer in the statement result set. (PHP 5, PHP 7)
2384bool mysqli_stmt_execute(mysqli_stmt $stmt) |Executes a query that has been previously prepared using the mysqli_prepare() function. When executed any parameter markers which exist will automatically be replaced with the appropriate data. (PHP 5, PHP 7)
2385bool mysqli_stmt_fetch(mysqli_stmt $stmt) |Fetch the result from a prepared statement into the variables bound by mysqli_stmt_bind_result(). (PHP 5, PHP 7)
2386void mysqli_stmt_free_result(mysqli_stmt $stmt) |Frees the result memory associated with the statement, which was allocated by mysqli_stmt_store_result(). (PHP 5, PHP 7)
2387mysqli_result mysqli_stmt_get_result(mysqli_stmt $stmt) |Call to return a result set from a prepared statement query. (PHP 5 >= 5.3.0, PHP 7)
2388object mysqli_stmt_get_warnings(mysqli_stmt $stmt) |NOT DOCUMENTED. (PHP 5 >= 5.1.0, PHP 7)
2389mysqli_stmt_more_results() |NOT DOCUMENTED. Available only with mysqlnd.
2390mysqli_stmt_next_result() |NOT DOCUMENTED. Available only with mysqlnd.
2391int mysqli_stmt_num_rows(mysqli_stmt $stmt) |Returns the number of rows in the result set. The use of mysqli_stmt_num_rows() depends on whether or not you used mysqli_stmt_store_result() to buffer the entire result set in the statement handle. (PHP 5, PHP 7)
2392bool mysqli_stmt_prepare(mysqli_stmt $stmt , string $query) |Prepares the SQL query pointed to by the null-terminated string query. (PHP 5, PHP 7)
2393bool mysqli_stmt_reset(mysqli_stmt $stmt) |Resets a prepared statement on client and server to state after prepare. (PHP 5, PHP 7)
2394mysqli_result mysqli_stmt_result_metadata(mysqli_stmt $stmt) |If a statement passed to mysqli_prepare() is one that produces a result set, mysqli_stmt_result_metadata() returns the result object that can be used to process the meta information such as total number of fields and individual field information. (PHP 5, PHP 7)
2395bool mysqli_stmt_send_long_data(mysqli_stmt $stmt , int $param_nr , string $data) |Allows to send parameter data to the server in pieces (or chunks), e.g. if the size of a blob exceeds the size of max_allowed_packet. This function can be called multiple times to send the parts of a character or binary data value for a column, which must be one of the TEXT or BLOB datatypes. |(PHP 5, PHP 7)
2396bool mysqli_stmt_store_result(mysqli_stmt $stmt) |You must call mysqli_stmt_store_result() for every query that successfully produces a result set (SELECT, SHOW, DESCRIBE, EXPLAIN), if and only if you want to buffer the complete result set by the client, so that the subsequent mysqli_stmt_fetch() call returns buffered data. (PHP 5, PHP 7)
2397#Summary of mysqli_result methods
2398int mysqli_field_tell(mysqli_result $result) |Returns the position of the field cursor used for the last mysqli_fetch_field() call. This value can be used as an argument to mysqli_field_seek(). (PHP 5, PHP 7)
2399int mysqli_num_fields(mysqli_result $result) |Returns the number of fields from specified result set. (PHP 5, PHP 7)
2400array mysqli_fetch_lengths(mysqli_result $result) |The mysqli_fetch_lengths() function returns an array containing the lengths of every column of the current row within the result set. (PHP 5, PHP 7)
2401int mysqli_num_rows(mysqli_result $result) |The behaviour of mysqli_num_rows() depends on whether buffered or unbuffered result sets are being used. For unbuffered result sets, mysqli_num_rows() will not return the correct number of rows until all the rows in the result have been retrieved. (PHP 5, PHP 7)
2402bool mysqli_data_seek(mysqli_result $result , int $offset) |The mysqli_data_seek() function seeks to an arbitrary result pointer specified by the offset in the result set. (PHP 5, PHP 7)
2403mixed mysqli_fetch_all(mysqli_result $result [, int $resulttype = MYSQLI_NUM ]) |mysqli_fetch_all() fetches all result rows and returns the result set as an associative array, a numeric array, or both. (PHP 5 >= 5.3.0, PHP 7)
2404mixed mysqli_fetch_array(mysqli_result $result [, int $resulttype = MYSQLI_BOTH ]) | Returns an array that corresponds to the fetched row or NULL if there are no more rows for the resultset represented by the result parameter. (PHP 5, PHP 7)
2405array mysqli_fetch_assoc(mysqli_result $result) |Returns an associative array that corresponds to the fetched row or NULL if there are no more rows. (PHP 5, PHP 7)
2406object mysqli_fetch_field_direct(mysqli_result $result , int $fieldnr) |Returns an object which contains field definition information from the specified result set. (PHP 5, PHP 7)
2407object mysqli_fetch_field(mysqli_result $result) |Returns the definition of one column of a result set as an object. Call this function repeatedly to retrieve information about all columns in the result set. (PHP 5, PHP 7)
2408array mysqli_fetch_fields(mysqli_result $result) |This function serves an identical purpose to the mysqli_fetch_field() function with the single difference that, instead of returning one object at a time for each field, the columns are returned as an array of objects. (PHP 5, PHP 7)
2409object mysqli_fetch_object(mysqli_result $result [, string $class_name = "stdClass" [, array $params ]]) |The mysqli_fetch_object() will return the current row result set as an object where the attributes of the object represent the names of the fields found within the result set. (PHP 5, PHP 7)
2410mixed mysqli_fetch_row(mysqli_result $result) |Fetches one row of data from the result set and returns it as an enumerated array, where each column is stored in an array offset starting from 0 (zero). Each subsequent call to this function will return the next row within the result set, or NULL if there are no more rows. (PHP 5, PHP 7)
2411bool mysqli_field_seek(mysqli_result $result , int $fieldnr) |Sets the field cursor to the given offset. The next call to mysqli_fetch_field() will retrieve the field definition of the column associated with that offset. (PHP 5, PHP 7)
2412void mysqli_free_result(mysqli_result $result) |Frees the memory associated with the result. (PHP 5, PHP 7)
2413#Summary of mysqli_driver methods
2414void mysqli_embedded_server_end(void) |NOT DOCUMENTED Available only with mysqlnd. (PHP 5, PHP 7)
2415bool mysqli_embedded_server_start(bool $start , array $arguments , array $groups) |NOT DOCUMENTED Available only with mysqlnd. (PHP 5, PHP 7)
2416#end
2417
2418array mysqlnd_memcache_get_config(mixed $connection) |Returns information about the plugin configuration (PECL mysqlnd_memcache >= 1.0.0)
2419bool mysqlnd_memcache_set(mixed $mysql_connection [, Memcached $memcache_connection [, string $pattern [, callback $callback]]]) |Associate a MySQL connection with a Memcache connection (PECL mysqlnd_memcache >= 1.0.0)
2420string mysqlnd_ms_get_last_gtid(mixed $connection) |Returns the latest global transaction ID (PECL mysqlnd_ms >= 1.2.0)
2421array mysqlnd_ms_get_last_used_connection(mixed $connection) |Returns an array which describes the last used connection (PECL mysqlnd_ms >= 1.1.0)
2422array mysqlnd_ms_get_stats() |Returns query distribution and connection statistics (PECL mysqlnd_ms >= 1.0.0)
2423bool mysqlnd_ms_match_wild(string $table_name, string $wildcard) |Finds whether a table name matches a wildcard pattern or not (PECL mysqlnd_ms >= 1.1.0)
2424int mysqlnd_ms_query_is_select(string $query) |Find whether to send the query to the master, the slave or the last used MySQL server (PECL mysqlnd_ms >= 1.0.0)
2425bool mysqlnd_ms_set_qos(mixed $connection, int $service_level [, int $service_level_option [, mixed $option_value]]) |Sets the quality of service needed from the cluster (PECL mysqlnd_ms < 1.2.0)
2426bool mysqlnd_ms_set_user_pick_server(string $function) |Sets a callback for user-defined read/write splitting (PECL mysqlnd_ms < 1.1.0)
2427bool mysqlnd_qc_clear_cache() |Flush all cache contents (PECL mysqlnd_qc >= 1.0.0)
2428array mysqlnd_qc_get_available_handlers() |Returns a list of available storage handler (PECL mysqlnd_qc >= 1.0.0)
2429array mysqlnd_qc_get_cache_info() |Returns information on the current handler, the number of cache entries and cache entries, if available (PECL mysqlnd_qc >= 1.0.0)
2430array mysqlnd_qc_get_core_stats() |Statistics collected by the core of the query cache (PECL mysqlnd_qc >= 1.0.0)
2431array mysqlnd_qc_get_normalized_query_trace_log() |Returns a normalized query trace log for each query inspected by the query cache (PECL mysqlnd_qc >= 1.0.0)
2432array mysqlnd_qc_get_query_trace_log() |Returns a backtrace for each query inspected by the query cache (PECL mysqlnd_qc >= 1.0.0)
2433bool mysqlnd_qc_set_cache_condition(int $condition_type, mixed $condition, mixed $condition_option) |Set conditions for automatic caching (PECL mysqlnd_qc >= 1.1.0)
2434mixed mysqlnd_qc_set_is_select(string $callback) |Installs a callback which decides whether a statement is cached (PECL mysqlnd_qc >= 1.0.0)
2435bool mysqlnd_qc_set_storage_handler(string $handler) |Change current storage handler (PECL mysqlnd_qc >= 1.0.0)
2436bool mysqlnd_qc_set_user_handlers(string $get_hash, string $find_query_in_cache, string $return_to_cache, string $add_query_to_cache_if_not_exists, string $query_is_select, string $update_query_run_time_stats, string $get_stats, string $clear_cache) |Sets the callback functions for a user-defined procedural storage handler (PECL mysqlnd_qc >= 1.0.0)
2437resource mysqlnd_uh_convert_to_mysqlnd(mysqli& $mysql_connection) |Converts a MySQL connection handle into a mysqlnd connection handle (PECL mysqlnd-uh >= 1.0.0-alpha)
2438bool mysqlnd_uh_set_connection_proxy(MysqlndUhConnection& $connection_proxy [, mysqli& $mysqli_connection]) |Installs a proxy for mysqlnd connections (PECL mysqlnd-uh >= 1.0.0-alpha)
2439bool mysqlnd_uh_set_statement_proxy(MysqlndUhStatement& $statement_proxy) |Installs a proxy for mysqlnd statements (PECL mysqlnd-uh >= 1.0.0-alpha)
2440bool natcasesort(array& $array) |Sort an array using a case insensitive "natural order" algorithm (PHP 4, PHP 5)
2441bool natsort(array& $array) |Sort an array using a "natural order" algorithm (PHP 4, PHP 5)
2442int ncurses_addch(int $ch) |Add character at current position and advance cursor (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2443int ncurses_addchnstr(string $s, int $n) |Add attributed string with specified length at current position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2444int ncurses_addchstr(string $s) |Add attributed string at current position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2445int ncurses_addnstr(string $s, int $n) |Add string with specified length at current position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2446int ncurses_addstr(string $text) |Output text at current position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2447int ncurses_assume_default_colors(int $fg, int $bg) |Define default colors for color 0 (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2448int ncurses_attroff(int $attributes) |Turn off the given attributes (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2449int ncurses_attron(int $attributes) |Turn on the given attributes (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2450int ncurses_attrset(int $attributes) |Set given attributes (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2451int ncurses_baudrate() |Returns baudrate of terminal (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2452int ncurses_beep() |Let the terminal beep (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2453int ncurses_bkgd(int $attrchar) |Set background property for terminal screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2454void ncurses_bkgdset(int $attrchar) |Control screen background (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2455int ncurses_border(int $left, int $right, int $top, int $bottom, int $tl_corner, int $tr_corner, int $bl_corner, int $br_corner) |Draw a border around the screen using attributed characters (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2456int ncurses_bottom_panel(resource $panel) |Moves a visible panel to the bottom of the stack (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2457bool ncurses_can_change_color() |Checks if terminal color definitions can be changed (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2458bool ncurses_cbreak() |Switch of input buffering (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2459bool ncurses_clear() |Clear screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2460bool ncurses_clrtobot() |Clear screen from current position to bottom (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2461bool ncurses_clrtoeol() |Clear screen from current position to end of line (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2462int ncurses_color_content(int $color, int& $r, int& $g, int& $b) |Retrieves RGB components of a color (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2463int ncurses_color_set(int $pair) |Set active foreground and background colors (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2464int ncurses_curs_set(int $visibility) |Set cursor state (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2465bool ncurses_def_prog_mode() |Saves terminals (program) mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2466bool ncurses_def_shell_mode() |Saves terminals (shell) mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2467int ncurses_define_key(string $definition, int $keycode) |Define a keycode (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2468bool ncurses_del_panel(resource $panel) |Remove panel from the stack and delete it (but not the associated window) (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2469int ncurses_delay_output(int $milliseconds) |Delay output on terminal using padding characters (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2470bool ncurses_delch() |Delete character at current position, move rest of line left (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2471bool ncurses_deleteln() |Delete line at current position, move rest of screen up (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2472bool ncurses_delwin(resource $window) |Delete a ncurses window (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2473bool ncurses_doupdate() |Write all prepared refreshes to terminal (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2474bool ncurses_echo() |Activate keyboard input echo (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2475int ncurses_echochar(int $character) |Single character output including refresh (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2476int ncurses_end() |Stop using ncurses, clean up the screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2477bool ncurses_erase() |Erase terminal screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2478string ncurses_erasechar() |Returns current erase character (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2479void ncurses_filter() |Set LINES for iniscr() and newterm() to 1 (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2480bool ncurses_flash() |Flash terminal screen (visual bell) (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2481bool ncurses_flushinp() |Flush keyboard input buffer (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2482int ncurses_getch() |Read a character from keyboard (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2483void ncurses_getmaxyx(resource $window, int& $y, int& $x) |Returns the size of a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2484bool ncurses_getmouse(array& $mevent) |Reads mouse event (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2485void ncurses_getyx(resource $window, int& $y, int& $x) |Returns the current cursor position for a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2486int ncurses_halfdelay(int $tenth) |Put terminal into halfdelay mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2487bool ncurses_has_colors() |Checks if terminal has color capabilities (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2488bool ncurses_has_ic() |Check for insert- and delete-capabilities (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2489bool ncurses_has_il() |Check for line insert- and delete-capabilities (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2490int ncurses_has_key(int $keycode) |Check for presence of a function key on terminal keyboard (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2491int ncurses_hide_panel(resource $panel) |Remove panel from the stack, making it invisible (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2492int ncurses_hline(int $charattr, int $n) |Draw a horizontal line at current position using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2493string ncurses_inch() |Get character and attribute at current position (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2494int ncurses_init_color(int $color, int $r, int $g, int $b) |Define a terminal color (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2495int ncurses_init_pair(int $pair, int $fg, int $bg) |Define a color pair (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2496void ncurses_init() |Initialize ncurses (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2497int ncurses_insch(int $character) |Insert character moving rest of line including character at current position (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2498int ncurses_insdelln(int $count) |Insert lines before current line scrolling down (negative numbers delete and scroll up) (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2499int ncurses_insertln() |Insert a line, move rest of screen down (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2500int ncurses_insstr(string $text) |Insert string at current position, moving rest of line right (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2501int ncurses_instr(string& $buffer) |Reads string from terminal screen (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2502bool ncurses_isendwin() |Ncurses is in endwin mode, normal screen output may be performed (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2503int ncurses_keyok(int $keycode, bool $enable) |Enable or disable a keycode (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2504int ncurses_keypad(resource $window, bool $bf) |Turns keypad on or off (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2505string ncurses_killchar() |Returns current line kill character (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2506string ncurses_longname() |Returns terminals description (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2507int ncurses_meta(resource $window, bool $8bit) |Enables/Disable 8-bit meta key information (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2508bool ncurses_mouse_trafo(int& $y, int& $x, bool $toscreen) |Transforms coordinates (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2509int ncurses_mouseinterval(int $milliseconds) |Set timeout for mouse button clicks (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2510int ncurses_mousemask(int $newmask, int& $oldmask) |Sets mouse options (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2511int ncurses_move_panel(resource $panel, int $startx, int $starty) |Moves a panel so that its upper-left corner is at [startx, starty] (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2512int ncurses_move(int $y, int $x) |Move output position (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2513int ncurses_mvaddch(int $y, int $x, int $c) |Move current position and add character (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2514int ncurses_mvaddchnstr(int $y, int $x, string $s, int $n) |Move position and add attributed string with specified length (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2515int ncurses_mvaddchstr(int $y, int $x, string $s) |Move position and add attributed string (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2516int ncurses_mvaddnstr(int $y, int $x, string $s, int $n) |Move position and add string with specified length (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2517int ncurses_mvaddstr(int $y, int $x, string $s) |Move position and add string (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2518int ncurses_mvcur(int $old_y, int $old_x, int $new_y, int $new_x) |Move cursor immediately (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2519int ncurses_mvdelch(int $y, int $x) |Move position and delete character, shift rest of line left (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2520int ncurses_mvgetch(int $y, int $x) |Move position and get character at new position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2521int ncurses_mvhline(int $y, int $x, int $attrchar, int $n) |Set new position and draw a horizontal line using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2522int ncurses_mvinch(int $y, int $x) |Move position and get attributed character at new position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2523int ncurses_mvvline(int $y, int $x, int $attrchar, int $n) |Set new position and draw a vertical line using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2524int ncurses_mvwaddstr(resource $window, int $y, int $x, string $text) |Add string at new position in window (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2525int ncurses_napms(int $milliseconds) |Sleep (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2526resource ncurses_new_panel(resource $window) |Create a new panel and associate it with window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2527resource ncurses_newpad(int $rows, int $cols) |Creates a new pad (window) (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2528resource ncurses_newwin(int $rows, int $cols, int $y, int $x) |Create a new window (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2529bool ncurses_nl() |Translate newline and carriage return / line feed (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2530bool ncurses_nocbreak() |Switch terminal to cooked mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2531bool ncurses_noecho() |Switch off keyboard input echo (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2532bool ncurses_nonl() |Do not translate newline and carriage return / line feed (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2533void ncurses_noqiflush() |Do not flush on signal characters (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2534bool ncurses_noraw() |Switch terminal out of raw mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2535int ncurses_pair_content(int $pair, int& $f, int& $b) |Retrieves foreground and background colors of a color pair (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2536resource ncurses_panel_above(resource $panel) |Returns the panel above panel (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2537resource ncurses_panel_below(resource $panel) |Returns the panel below panel (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2538resource ncurses_panel_window(resource $panel) |Returns the window associated with panel (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2539int ncurses_pnoutrefresh(resource $pad, int $pminrow, int $pmincol, int $sminrow, int $smincol, int $smaxrow, int $smaxcol) |Copies a region from a pad into the virtual screen (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2540int ncurses_prefresh(resource $pad, int $pminrow, int $pmincol, int $sminrow, int $smincol, int $smaxrow, int $smaxcol) |Copies a region from a pad into the virtual screen (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2541int ncurses_putp(string $text) |Apply padding information to the string and output it (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2542void ncurses_qiflush() |Flush on signal characters (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2543bool ncurses_raw() |Switch terminal into raw mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2544int ncurses_refresh(int $ch) |Refresh screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2545int ncurses_replace_panel(resource $panel, resource $window) |Replaces the window associated with panel (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2546int ncurses_reset_prog_mode() |Resets the prog mode saved by def_prog_mode (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2547int ncurses_reset_shell_mode() |Resets the shell mode saved by def_shell_mode (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2548bool ncurses_resetty() |Restores saved terminal state (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2549bool ncurses_savetty() |Saves terminal state (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2550int ncurses_scr_dump(string $filename) |Dump screen content to file (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2551int ncurses_scr_init(string $filename) |Initialize screen from file dump (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2552int ncurses_scr_restore(string $filename) |Restore screen from file dump (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2553int ncurses_scr_set(string $filename) |Inherit screen from file dump (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2554int ncurses_scrl(int $count) |Scroll window content up or down without changing current position (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2555int ncurses_show_panel(resource $panel) |Places an invisible panel on top of the stack, making it visible (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2556int ncurses_slk_attr() |Returns current soft label key attribute (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2557int ncurses_slk_attroff(int $intarg) |Turn off the given attributes for soft function-key labels (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2558int ncurses_slk_attron(int $intarg) |Turn on the given attributes for soft function-key labels (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2559int ncurses_slk_attrset(int $intarg) |Set given attributes for soft function-key labels (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2560bool ncurses_slk_clear() |Clears soft labels from screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2561int ncurses_slk_color(int $intarg) |Sets color for soft label keys (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2562bool ncurses_slk_init(int $format) |Initializes soft label key functions (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2563bool ncurses_slk_noutrefresh() |Copies soft label keys to virtual screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2564int ncurses_slk_refresh() |Copies soft label keys to screen (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2565int ncurses_slk_restore() |Restores soft label keys (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2566bool ncurses_slk_set(int $labelnr, string $label, int $format) |Sets function key labels (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2567int ncurses_slk_touch() |Forces output when ncurses_slk_noutrefresh is performed (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2568int ncurses_standend() |Stop using 'standout' attribute (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2569int ncurses_standout() |Start using 'standout' attribute (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2570int ncurses_start_color() |Initializes color functionality (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2571bool ncurses_termattrs() |Returns a logical OR of all attribute flags supported by terminal (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2572string ncurses_termname() |Returns terminals (short)-name (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2573void ncurses_timeout(int $millisec) |Set timeout for special key sequences (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2574int ncurses_top_panel(resource $panel) |Moves a visible panel to the top of the stack (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2575int ncurses_typeahead(int $fd) |Specify different filedescriptor for typeahead checking (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2576int ncurses_ungetch(int $keycode) |Put a character back into the input stream (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2577bool ncurses_ungetmouse(array $mevent) |Pushes mouse event to queue (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2578void ncurses_update_panels() |Refreshes the virtual screen to reflect the relations between panels in the stack (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2579bool ncurses_use_default_colors() |Assign terminal default colors to color id -1 (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2580void ncurses_use_env(bool $flag) |Control use of environment information about terminal size (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2581int ncurses_use_extended_names(bool $flag) |Control use of extended names in terminfo descriptions (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2582int ncurses_vidattr(int $intarg) |Display the string on the terminal in the video attribute mode (PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2583int ncurses_vline(int $charattr, int $n) |Draw a vertical line at current position using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2584int ncurses_waddch(resource $window, int $ch) |Adds character at current position in a window and advance cursor (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2585int ncurses_waddstr(resource $window, string $str [, int $n]) |Outputs text at current postion in window (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2586int ncurses_wattroff(resource $window, int $attrs) |Turns off attributes for a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2587int ncurses_wattron(resource $window, int $attrs) |Turns on attributes for a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2588int ncurses_wattrset(resource $window, int $attrs) |Set the attributes for a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2589int ncurses_wborder(resource $window, int $left, int $right, int $top, int $bottom, int $tl_corner, int $tr_corner, int $bl_corner, int $br_corner) |Draws a border around the window using attributed characters (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2590int ncurses_wclear(resource $window) |Clears window (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2591int ncurses_wcolor_set(resource $window, int $color_pair) |Sets windows color pairings (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2592int ncurses_werase(resource $window) |Erase window contents (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2593int ncurses_wgetch(resource $window) |Reads a character from keyboard (window) (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2594int ncurses_whline(resource $window, int $charattr, int $n) |Draws a horizontal line in a window at current position using an attributed character and max. n characters long (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2595bool ncurses_wmouse_trafo(resource $window, int& $y, int& $x, bool $toscreen) |Transforms window/stdscr coordinates (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2596int ncurses_wmove(resource $window, int $y, int $x) |Moves windows output position (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2597int ncurses_wnoutrefresh(resource $window) |Copies window to virtual screen (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2598int ncurses_wrefresh(resource $window) |Refresh window on terminal screen (PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2599int ncurses_wstandend(resource $window) |End standout mode for a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2600int ncurses_wstandout(resource $window) |Enter standout mode for a window (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2601int ncurses_wvline(resource $window, int $charattr, int $n) |Draws a vertical line in a window at current position using an attributed character and max. n characters long (PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)
2602void newt_bell() |Send a beep to the terminal (PECL newt >= 0.1)
2603resource newt_button_bar(array& $buttons) |This function returns a grid containing the buttons created. (PECL newt >= 0.1)
2604resource newt_button(int $left, int $top, string $text) |Create a new button (PECL newt >= 0.1)
2605int newt_centered_window(int $width, int $height [, string $title]) |Open a centered window of the specified size (PECL newt >= 0.1)
2606string newt_checkbox_get_value(resource $checkbox) |Retreives value of checkox resource (PECL newt >= 0.1)
2607void newt_checkbox_set_flags(resource $checkbox, int $flags, int $sense) |Configures checkbox resource (PECL newt >= 0.1)
2608void newt_checkbox_set_value(resource $checkbox, string $value) |Sets the value of the checkbox (PECL newt >= 0.1)
2609void newt_checkbox_tree_add_item(resource $checkboxtree, string $text, mixed $data, int $flags, int $index [, int $...]) |Adds new item to the checkbox tree (PECL newt >= 0.1)
2610array newt_checkbox_tree_find_item(resource $checkboxtree, mixed $data) |Finds an item in the checkbox tree (PECL newt >= 0.1)
2611mixed newt_checkbox_tree_get_current(resource $checkboxtree) |Returns checkbox tree selected item (PECL newt >= 0.1)
2612string newt_checkbox_tree_get_entry_value(resource $checkboxtree, mixed $data) |Description string newt_checkbox_tree_get_entry_value ( resource $checkboxtree , mixed $data ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2613array newt_checkbox_tree_get_multi_selection(resource $checkboxtree, string $seqnum) |Description array newt_checkbox_tree_get_multi_selection ( resource $checkboxtree , string $seqnum ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2614array newt_checkbox_tree_get_selection(resource $checkboxtree) |Description array newt_checkbox_tree_get_selection ( resource $checkboxtree ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2615resource newt_checkbox_tree_multi(int $left, int $top, int $height, string $seq [, int $flags]) |Description resource newt_checkbox_tree_multi ( int $left , int $top , int $height , string $seq [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top height (PECL newt >= 0.1)
2616void newt_checkbox_tree_set_current(resource $checkboxtree, mixed $data) |Description void newt_checkbox_tree_set_current ( resource $checkboxtree , mixed $data ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2617void newt_checkbox_tree_set_entry_value(resource $checkboxtree, mixed $data, string $value) |Description void newt_checkbox_tree_set_entry_value ( resource $checkboxtree , mixed $data , string $value ) WarningThis function is currently not documented; only its argument list is available. Parameters checkboxtree (PECL newt >= 0.1)
2618void newt_checkbox_tree_set_entry(resource $checkboxtree, mixed $data, string $text) |Description void newt_checkbox_tree_set_entry ( resource $checkboxtree , mixed $data , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters checkboxtree (PECL newt >= 0.1)
2619void newt_checkbox_tree_set_width(resource $checkbox_tree, int $width) |Description void newt_checkbox_tree_set_width ( resource $checkbox_tree , int $width ) WarningThis function is currently not documented; only its argument list is available. Parameters checkb (PECL newt >= 0.1)
2620resource newt_checkbox_tree(int $left, int $top, int $height [, int $flags]) |Description resource newt_checkbox_tree ( int $left , int $top , int $height [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top (PECL newt >= 0.1)
2621resource newt_checkbox(int $left, int $top, string $text, string $def_value [, string $seq]) |Description resource newt_checkbox ( int $left , int $top , string $text , string $def_value [, string $seq ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top text def_v (PECL newt >= 0.1)
2622void newt_clear_key_buffer() |Discards the contents of the terminal's input buffer without waiting for additional input (PECL newt >= 0.1)
2623void newt_cls() |Description void newt_cls ( void ) WarningThis function (PECL newt >= 0.1)
2624resource newt_compact_button(int $left, int $top, string $text) |Description resource newt_compact_button ( int $left , int $top , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters left (PECL newt >= 0.1)
2625void newt_component_add_callback(resource $component, mixed $func_name, mixed $data) |Description void newt_component_add_callback ( resource $component , mixed $func_name , mixed $data ) WarningThis function is currently not documented; only its argument list is available. Parameters component fun (PECL newt >= 0.1)
2626void newt_component_takes_focus(resource $component, bool $takes_focus) |Description void newt_component_takes_focus ( resource $component , bool $takes_focus ) WarningThis function is currently not documented; only its argument list is available. Parameters component (PECL newt >= 0.1)
2627resource newt_create_grid(int $cols, int $rows) |Description resource newt_create_grid ( int $cols , int $rows ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2628void newt_cursor_off() |Description void newt_cursor_off ( void ) WarningThis fu (PECL newt >= 0.1)
2629void newt_cursor_on() |Description void newt_cursor_on (PECL newt >= 0.1)
2630void newt_delay(int $microseconds) |Description void newt_delay ( int $microseconds ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2631void newt_draw_form(resource $form) |Description void newt_draw_form ( resource $form ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2632void newt_draw_root_text(int $left, int $top, string $text) |Displays the string text at the position indicated (PECL newt >= 0.1)
2633string newt_entry_get_value(resource $entry) |Description string newt_entry_get_value ( resource $entry ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2634void newt_entry_set_filter(resource $entry, callable $filter, mixed $data) |Description void newt_entry_set_filter ( resource $entry , callable $filter , mixed $data ) WarningThis function is currently not documented; only its argument list is available. Parameters entry filter (PECL newt >= 0.1)
2635void newt_entry_set_flags(resource $entry, int $flags, int $sense) |Description void newt_entry_set_flags ( resource $entry , int $flags , int $sense ) WarningThis function is currently not documented; only its argument list is available. Parameters entry flags (PECL newt >= 0.1)
2636void newt_entry_set(resource $entry, string $value [, bool $cursor_at_end]) |Description void newt_entry_set ( resource $entry , string $value [, bool $cursor_at_end ] ) WarningThis function is currently not documented; only its argument list is available. Parameters entry value (PECL newt >= 0.1)
2637resource newt_entry(int $left, int $top, int $width [, string $init_value [, int $flags]]) |Description resource newt_entry ( int $left , int $top , int $width [, string $init_value [, int $flags ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top width init_value (PECL newt >= 0.1)
2638int newt_finished() |Uninitializes newt interface (PECL newt >= 0.1)
2639void newt_form_add_component(resource $form, resource $component) |Adds a single component to the form (PECL newt >= 0.1)
2640void newt_form_add_components(resource $form, array $components) |Add several components to the form (PECL newt >= 0.1)
2641void newt_form_add_hot_key(resource $form, int $key) |Description void newt_form_add_hot_key ( resource $form , int $key ) WarningThis function is currently not documented; only its argument list is available. Parameters form (PECL newt >= 0.1)
2642void newt_form_destroy(resource $form) |Destroys a form (PECL newt >= 0.1)
2643resource newt_form_get_current(resource $form) |Description resource newt_form_get_current ( resource $form ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2644void newt_form_run(resource $form, array& $exit_struct) |Runs a form (PECL newt >= 0.1)
2645void newt_form_set_background(resource $from, int $background) |Description void newt_form_set_background ( resource $from , int $background ) WarningThis function is currently not documented; only its argument list is available. Parameters from (PECL newt >= 0.1)
2646void newt_form_set_height(resource $form, int $height) |Description void newt_form_set_height ( resource $form , int $height ) WarningThis function is currently not documented; only its argument list is available. Parameters form (PECL newt >= 0.1)
2647void newt_form_set_size(resource $form) |Description void newt_form_set_size ( resource $form ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2648void newt_form_set_timer(resource $form, int $milliseconds) |Description void newt_form_set_timer ( resource $form , int $milliseconds ) WarningThis function is currently not documented; only its argument list is available. Parameters form (PECL newt >= 0.1)
2649void newt_form_set_width(resource $form, int $width) |Description void newt_form_set_width ( resource $form , int $width ) WarningThis function is currently not documented; only its argument list is available. Parameters form (PECL newt >= 0.1)
2650void newt_form_watch_fd(resource $form, resource $stream [, int $flags]) |Description void newt_form_watch_fd ( resource $form , resource $stream [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters form stream (PECL newt >= 0.1)
2651resource newt_form( [resource $vert_bar [, string $help [, int $flags]]]) |Create a form (PECL newt >= 0.1)
2652void newt_get_screen_size(int& $cols, int& $rows) |Fills in the passed references with the current size of the terminal (PECL newt >= 0.1)
2653void newt_grid_add_components_to_form(resource $grid, resource $form, bool $recurse) |Description void newt_grid_add_components_to_form ( resource $grid , resource $form , bool $recurse ) WarningThis function is currently not documented; only its argument list is available. Parameters grid (PECL newt >= 0.1)
2654resource newt_grid_basic_window(resource $text, resource $middle, resource $buttons) |Description resource newt_grid_basic_window ( resource $text , resource $middle , resource $buttons ) WarningThis function is currently not documented; only its argument list is available. Parameters text (PECL newt >= 0.1)
2655void newt_grid_free(resource $grid, bool $recurse) |Description void newt_grid_free ( resource $grid , bool $recurse ) WarningThis function is currently not documented; only its argument list is available. Parameters grid (PECL newt >= 0.1)
2656void newt_grid_get_size(resouce $grid, int& $width, int& $height) |Description void newt_grid_get_size ( resouce $grid , int &$width , int &$height ) WarningThis function is currently not documented; only its argument list is available. Parameters grid width (PECL newt >= 0.1)
2657resource newt_grid_h_close_stacked(int $element1_type, resource $element1 [, int $... [, resource $...]]) |Description resource newt_grid_h_close_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2658resource newt_grid_h_stacked(int $element1_type, resource $element1 [, int $... [, resource $...]]) |Description resource newt_grid_h_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters el (PECL newt >= 0.1)
2659void newt_grid_place(resource $grid, int $left, int $top) |Description void newt_grid_place ( resource $grid , int $left , int $top ) WarningThis function is currently not documented; only its argument list is available. Parameters grid left (PECL newt >= 0.1)
2660void newt_grid_set_field(resource $grid, int $col, int $row, int $type, resource $val, int $pad_left, int $pad_top, int $pad_right, int $pad_bottom, int $anchor [, int $flags]) |Description void newt_grid_set_field ( resource $grid , int $col , int $row , int $type , resource $val , int $pad_left , int $pad_top , int $pad_right , int $pad_bottom , int $anchor [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters grid col row type val pad_left pad_top pad_right pad_bottom anchor (PECL newt >= 0.1)
2661resource newt_grid_simple_window(resource $text, resource $middle, resource $buttons) |Description resource newt_grid_simple_window ( resource $text , resource $middle , resource $buttons ) WarningThis function is currently not documented; only its argument list is available. Parameters text (PECL newt >= 0.1)
2662resource newt_grid_v_close_stacked(int $element1_type, resource $element1 [, int $... [, resource $...]]) |Description resource newt_grid_v_close_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2663resource newt_grid_v_stacked(int $element1_type, resource $element1 [, int $... [, resource $...]]) |Description resource newt_grid_v_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters el (PECL newt >= 0.1)
2664void newt_grid_wrapped_window_at(resource $grid, string $title, int $left, int $top) |Description void newt_grid_wrapped_window_at ( resource $grid , string $title , int $left , int $top ) WarningThis function is currently not documented; only its argument list is available. Parameters grid title (PECL newt >= 0.1)
2665void newt_grid_wrapped_window(resource $grid, string $title) |Description void newt_grid_wrapped_window ( resource $grid , string $title ) WarningThis function is currently not documented; only its argument list is available. Parameters grid (PECL newt >= 0.1)
2666int newt_init() |Initialize newt (PECL newt >= 0.1)
2667void newt_label_set_text(resource $label, string $text) |Description void newt_label_set_text ( resource $label , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters label (PECL newt >= 0.1)
2668resource newt_label(int $left, int $top, string $text) |Description resource newt_label ( int $left , int $top , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters left top (PECL newt >= 0.1)
2669void newt_listbox_append_entry(resource $listbox, string $text, mixed $data) |Description void newt_listbox_append_entry ( resource $listbox , string $text , mixed $data ) WarningThis function is currently not documented; only its argument list is available. Parameters listbox te (PECL newt >= 0.1)
2670void newt_listbox_clear_selection(resource $listbox) |Description void newt_listbox_clear_selection ( resource $listbox ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2671void newt_listbox_clear(resource $listobx) |Description void newt_listbox_clear ( resource $listobx ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2672void newt_listbox_delete_entry(resource $listbox, mixed $key) |Description void newt_listbox_delete_entry ( resource $listbox , mixed $key ) WarningThis function is currently not documented; only its argument list is available. Parameters list (PECL newt >= 0.1)
2673string newt_listbox_get_current(resource $listbox) |Description string newt_listbox_get_current ( resource $listbox ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2674array newt_listbox_get_selection(resource $listbox) |Description array newt_listbox_get_selection ( resource $listbox ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2675void newt_listbox_insert_entry(resource $listbox, string $text, mixed $data, mixed $key) |Description void newt_listbox_insert_entry ( resource $listbox , string $text , mixed $data , mixed $key ) WarningThis function is currently not documented; only its argument list is available. Parameters listbox text d (PECL newt >= 0.1)
2676int newt_listbox_item_count(resource $listbox) |Description int newt_listbox_item_count ( resource $listbox ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2677void newt_listbox_select_item(resource $listbox, mixed $key, int $sense) |Description void newt_listbox_select_item ( resource $listbox , mixed $key , int $sense ) WarningThis function is currently not documented; only its argument list is available. Parameters listbox key (PECL newt >= 0.1)
2678void newt_listbox_set_current_by_key(resource $listbox, mixed $key) |Description void newt_listbox_set_current_by_key ( resource $listbox , mixed $key ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL newt >= 0.1)
2679void newt_listbox_set_current(resource $listbox, int $num) |Description void newt_listbox_set_current ( resource $listbox , int $num ) WarningThis function is currently not documented; only its argument list is available. Parameters listbo (PECL newt >= 0.1)
2680void newt_listbox_set_data(resource $listbox, int $num, mixed $data) |Description void newt_listbox_set_data ( resource $listbox , int $num , mixed $data ) WarningThis function is currently not documented; only its argument list is available. Parameters listbox num (PECL newt >= 0.1)
2681void newt_listbox_set_entry(resource $listbox, int $num, string $text) |Description void newt_listbox_set_entry ( resource $listbox , int $num , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters listbox num (PECL newt >= 0.1)
2682void newt_listbox_set_width(resource $listbox, int $width) |Description void newt_listbox_set_width ( resource $listbox , int $width ) WarningThis function is currently not documented; only its argument list is available. Parameters listbox (PECL newt >= 0.1)
2683resource newt_listbox(int $left, int $top, int $height [, int $flags]) |Description resource newt_listbox ( int $left , int $top , int $height [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top height (PECL newt >= 0.1)
2684mixed newt_listitem_get_data(resource $item) |Description mixed newt_listitem_get_data ( resource $item ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2685void newt_listitem_set(resource $item, string $text) |Description void newt_listitem_set ( resource $item , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters item (PECL newt >= 0.1)
2686resource newt_listitem(int $left, int $top, string $text, bool $is_default, resouce $prev_item, mixed $data [, int $flags]) |Description resource newt_listitem ( int $left , int $top , string $text , bool $is_default , resouce $prev_item , mixed $data [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top text is_default prev_item da (PECL newt >= 0.1)
2687int newt_open_window(int $left, int $top, int $width, int $height [, string $title]) |Open a window of the specified size and position (PECL newt >= 0.1)
2688void newt_pop_help_line() |Replaces the current help line with the one from the stack (PECL newt >= 0.1)
2689void newt_pop_window() |Removes the top window from the display (PECL newt >= 0.1)
2690void newt_push_help_line( [string $text]) |Saves the current help line on a stack, and displays the new line (PECL newt >= 0.1)
2691resource newt_radio_get_current(resource $set_member) |Description resource newt_radio_get_current ( resource $set_member ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2692resource newt_radiobutton(int $left, int $top, string $text, bool $is_default [, resource $prev_button]) |Description resource newt_radiobutton ( int $left , int $top , string $text , bool $is_default [, resource $prev_button ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top text is_defau (PECL newt >= 0.1)
2693void newt_redraw_help_line() |Description void newt_redraw_help_line ( void ) WarningT (PECL newt >= 0.1)
2694string newt_reflow_text(string $text, int $width, int $flex_down, int $flex_up, int& $actual_width, int& $actual_height) |Description string newt_reflow_text ( string $text , int $width , int $flex_down , int $flex_up , int &$actual_width , int &$actual_height ) WarningThis function is currently not documented; only its argument list is available. Parameters text width flex_down flex_up actual_width (PECL newt >= 0.1)
2695void newt_refresh() |Updates modified portions of the screen (PECL newt >= 0.1)
2696void newt_resize_screen( [bool $redraw]) |Description void newt_resize_screen ([ bool $redraw ] ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2697void newt_resume() |Resume using the newt interface after calling newt_suspend() (PECL newt >= 0.1)
2698resource newt_run_form(resource $form) |Runs a form (PECL newt >= 0.1)
2699void newt_scale_set(resource $scale, int $amount) |Description void newt_scale_set ( resource $scale , int $amount ) WarningThis function is currently not documented; only its argument list is available. Parameters scale (PECL newt >= 0.1)
2700resource newt_scale(int $left, int $top, int $width, int $full_value) |Description resource newt_scale ( int $left , int $top , int $width , int $full_value ) WarningThis function is currently not documented; only its argument list is available. Parameters left top width (PECL newt >= 0.1)
2701void newt_scrollbar_set(resource $scrollbar, int $where, int $total) |Description void newt_scrollbar_set ( resource $scrollbar , int $where , int $total ) WarningThis function is currently not documented; only its argument list is available. Parameters scrollbar where (PECL newt >= 0.1)
2702void newt_set_help_callback(mixed $function) |Description void newt_set_help_callback ( mixed $function ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2703void newt_set_suspend_callback(callable $function, mixed $data) |Set a callback function which gets invoked when user presses the suspend key (PECL newt >= 0.1)
2704void newt_suspend() |Tells newt to return the terminal to its initial state (PECL newt >= 0.1)
2705int newt_textbox_get_num_lines(resource $textbox) |Description int newt_textbox_get_num_lines ( resource $textbox ) WarningThis function is currently not documented; only its argument list is available. (PECL newt >= 0.1)
2706resource newt_textbox_reflowed(int $left, int $top, char $*text, int $width, int $flex_down, int $flex_up [, int $flags]) |Description resource newt_textbox_reflowed ( int $left , int $top , char $*text , int $width , int $flex_down , int $flex_up [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top *text width flex_down (PECL newt >= 0.1)
2707void newt_textbox_set_height(resource $textbox, int $height) |Description void newt_textbox_set_height ( resource $textbox , int $height ) WarningThis function is currently not documented; only its argument list is available. Parameters textbox (PECL newt >= 0.1)
2708void newt_textbox_set_text(resource $textbox, string $text) |Description void newt_textbox_set_text ( resource $textbox , string $text ) WarningThis function is currently not documented; only its argument list is available. Parameters textbox (PECL newt >= 0.1)
2709resource newt_textbox(int $left, int $top, int $width, int $height [, int $flags]) |Description resource newt_textbox ( int $left , int $top , int $width , int $height [, int $flags ] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top width height (PECL newt >= 0.1)
2710resource newt_vertical_scrollbar(int $left, int $top, int $height [, int $normal_colorset [, int $thumb_colorset]]) |Description resource newt_vertical_scrollbar ( int $left , int $top , int $height [, int $normal_colorset [, int $thumb_colorset ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters left top height no (PECL newt >= 0.1)
2711void newt_wait_for_key() |Doesn't return until a key has been pressed (PECL newt >= 0.1)
2712int newt_win_choice(string $title, string $button1_text, string $button2_text, string $format [, mixed $args [, mixed $...]]) |Description int newt_win_choice ( string $title , string $button1_text , string $button2_text , string $format [, mixed $args [, mixed $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters title button1_text button2_text (PECL newt >= 0.1)
2713int newt_win_entries(string $title, string $text, int $suggested_width, int $flex_down, int $flex_up, int $data_width, array& $items, string $button1 [, string $...]) |Description int newt_win_entries ( string $title , string $text , int $suggested_width , int $flex_down , int $flex_up , int $data_width , array &$items , string $button1 [, string $... ] ) WarningThis function is currently not documented; only its argument list is available. Parameters title text suggested_width flex_down flex_up data_width items button1 button2 Return Values Examples Example #1 A newt_win_entries() example <?phpnewt_init();newt_cls();$entries[] = array('text' => 'First name:', 'value' => &$f_name);$entries[] = array('text' => 'Last name:',  'value' => &$l_name);$rc = newt_win_entries("User information", "Please enter your credentials:", 50, 7, 7, 30, $entries, "Ok", "Back");newt_finished ();if ($rc != 2 (PECL newt >= 0.1)
2714int newt_win_menu(string $title, string $text, int $suggestedWidth, int $flexDown, int $flexUp, int $maxListHeight, array $items, int& $listItem [, string $button1 [, string $...]]) |Description int newt_win_menu ( string $title , string $text , int $suggestedWidth , int $flexDown , int $flexUp , int $maxListHeight , array $items , int &$listItem [, string $button1 [, string $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters title text suggestedWidth flexDown flexUp maxListHeight items listItem (PECL newt >= 0.1)
2715void newt_win_message(string $title, string $button_text, string $format [, mixed $args [, mixed $...]]) |Description void newt_win_message ( string $title , string $button_text , string $format [, mixed $args [, mixed $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters title button_text format (PECL newt >= 0.1)
2716void newt_win_messagev(string $title, string $button_text, string $format, array $args) |Description void newt_win_messagev ( string $title , string $button_text , string $format , array $args ) WarningThis function is currently not documented; only its argument list is available. Parameters title button_text format (PECL newt >= 0.1)
2717int newt_win_ternary(string $title, string $button1_text, string $button2_text, string $button3_text, string $format [, mixed $args [, mixed $...]]) |Description int newt_win_ternary ( string $title , string $button1_text , string $button2_text , string $button3_text , string $format [, mixed $args [, mixed $... ]] ) WarningThis function is currently not documented; only its argument list is available. Parameters title Its description button1_text Its description button2_text Its description button3_text Its description format Its description (PECL newt >= 0.1)
2718mixed next(array& $array) |Advance the internal array pointer of an array (PHP 4, PHP 5)
2719string ngettext(string $msgid1, string $msgid2, int $n) |Plural version of gettext (PHP 4 >= 4.2.0, PHP 5)
2720string nl_langinfo(int $item) |Query language and locale information (PHP 4 >= 4.1.0, PHP 5)
2721string nl2br(string $string [, bool $is_xhtml=true]) |Inserts HTML line breaks before all newlines in a string (PHP 4, PHP 5)
2722array notes_body(string $server, string $mailbox, int $msg_number) |Open the message msg_number in the specified mailbox on the specified server (leave serv (PHP 4 >= 4.0.5)
2723bool notes_copy_db(string $from_database_name, string $to_database_name) |Copy a Lotus Notes database (PHP 4 >= 4.0.5)
2724bool notes_create_db(string $database_name) |Create a Lotus Notes database (PHP 4 >= 4.0.5)
2725bool notes_create_note(string $database_name, string $form_name) |Create a note using form form_name (PHP 4 >= 4.0.5)
2726bool notes_drop_db(string $database_name) |Drop a Lotus Notes database (PHP 4 >= 4.0.5)
2727int notes_find_note(string $database_name, string $name [, string $type]) |Returns a note id found in database_name (PHP 4 >= 4.0.5)
2728object notes_header_info(string $server, string $mailbox, int $msg_number) |Open the message msg_number in the specified mailbox on the specified server (leave serv (PHP 4 >= 4.0.5)
2729bool notes_list_msgs(string $db) |Returns the notes from a selected database_name (PHP 4 >= 4.0.5)
2730bool notes_mark_read(string $database_name, string $user_name, string $note_id) |Mark a note_id as read for the User user_name (PHP 4 >= 4.0.5)
2731bool notes_mark_unread(string $database_name, string $user_name, string $note_id) |Mark a note_id as unread for the User user_name (PHP 4 >= 4.0.5)
2732bool notes_nav_create(string $database_name, string $name) |Create a navigator name, in database_name (PHP 4 >= 4.0.5)
2733array notes_search(string $database_name, string $keywords) |Find notes that match keywords in database_name (PHP 4 >= 4.0.5)
2734array notes_unread(string $database_name, string $user_name) |Returns the unread note id's for the current User user_name (PHP 4 >= 4.0.5)
2735float notes_version(string $database_name) |Get the version Lotus Notes (PHP 4 >= 4.0.5)
2736array nsapi_request_headers() |Fetch all HTTP request headers (PHP 4 >= 4.3.3, PHP 5)
2737array nsapi_response_headers() |Fetch all HTTP response headers (PHP 4 >= 4.3.3, PHP 5)
2738bool nsapi_virtual(string $uri) |Perform an NSAPI sub-request (PHP 4 >= 4.3.3, PHP 5)
2739string nthmac(string $clent, string $data) |Obtain a nthmac key (needs 2 arguments) (PECL spplus >= 1.0.0)
2740string number_format(float $number [, int $decimals=0]) |Format a number with grouped thousands (PHP 4, PHP 5)
2741string oauth_get_sbs(string $http_method, string $uri [, array $request_parameters]) |Generate a Signature Base String (PECL OAuth >=0.99.7)
2742string oauth_urlencode(string $uri) |Encode a URI to RFC 3986 (PECL OAuth >=0.99.2)
2743void ob_clean() |Clean (erase) the output buffer (PHP 4 >= 4.2.0, PHP 5)
2744string ob_deflatehandler(string $data, int $mode) |Deflate output handler (PECL pecl_http >= 0.21.0)
2745bool ob_end_clean() |Clean (erase) the output buffer and turn off output buffering (PHP 4, PHP 5)
2746bool ob_end_flush() |Flush (send) the output buffer and turn off output buffering (PHP 4, PHP 5)
2747string ob_etaghandler(string $data, int $mode) |ETag output handler (PECL pecl_http >= 0.10.0)
2748void ob_flush() |Flush (send) the output buffer (PHP 4 >= 4.2.0, PHP 5)
2749string ob_get_clean() |Get current buffer contents and delete current output buffer (PHP 4 >= 4.3.0, PHP 5)
2750string ob_get_contents() |Return the contents of the output buffer (PHP 4, PHP 5)
2751string ob_get_flush() |Flush the output buffer, return it as a string and turn off output buffering (PHP 4 >= 4.3.0, PHP 5)
2752int ob_get_length() |Return the length of the output buffer (PHP 4 >= 4.0.2, PHP 5)
2753int ob_get_level() |Return the nesting level of the output buffering mechanism (PHP 4 >= 4.2.0, PHP 5)
2754array ob_get_status( [bool $full_status=FALSE]) |Get status of output buffers (PHP 4 >= 4.2.0, PHP 5)
2755string ob_gzhandler(string $buffer, int $mode) |ob_start callback function to gzip output buffer (PHP 4 >= 4.0.4, PHP 5)
2756string ob_iconv_handler(string $contents, int $status) |Convert character encoding as output buffer handler (PHP 4 >= 4.0.5, PHP 5)
2757void ob_implicit_flush( [int $flag=true]) |Turn implicit flush on/off (PHP 4, PHP 5)
2758string ob_inflatehandler(string $data, int $mode) |Inflate output handler (PECL pecl_http >= 0.21.0)
2759array ob_list_handlers() |List all output handlers in use (PHP 4 >= 4.3.0, PHP 5)
2760bool ob_start( [callable $output_callback [, int $chunk_size=0 [, bool $erase=true]]]) |Turn on output buffering (PHP 4, PHP 5)
2761string ob_tidyhandler(string $input [, int $mode]) |ob_start callback function to repair the buffer (PHP 5)
2762bool oci_bind_array_by_name(resource $statement, string $name, array& $var_array, int $max_table_length [, int $max_item_length=-1 [, int $type=SQLT_AFC]]) |Binds a PHP array to an Oracle PL/SQL array parameter (PHP 5 >= 5.1.2, PECL OCI8 >= 1.2.0)
2763bool oci_bind_by_name(resource $statement, string $bv_name, mixed& $variable [, int $maxlength=-1 [, int $type=SQLT_CHR]]) |Binds a PHP variable to an Oracle placeholder (PHP 5, PECL OCI8 >= 1.1.0)
2764bool oci_cancel(resource $statement) |Cancels reading from cursor (PHP 5, PECL OCI8 >= 1.1.0)
2765string oci_client_version() |Returns the Oracle client library version (PHP 5.3.7, PECL OCI8 >= 1.4.6)
2766bool oci_close(resource $connection) |Closes an Oracle connection (PHP 5, PECL OCI8 >= 1.1.0)
2767bool oci_commit(resource $connection) |Commits the outstanding database transaction (PHP 5, PECL OCI8 >= 1.1.0)
2768resource oci_connect(string $username, string $password [, string $connection_string [, string $character_set [, int $session_mode]]]) |Connect to an Oracle database (PHP 5, PECL OCI8 >= 1.1.0)
2769bool oci_define_by_name(resource $statement, string $column_name, mixed& $variable [, int $type=SQLT_CHR]) |Associates a PHP variable with a column for query fetches (PHP 5, PECL OCI8 >= 1.1.0)
2770array oci_error( [resource $resource]) |Returns the last error found (PHP 5, PECL OCI8 >= 1.1.0)
2771bool oci_execute(resource $statement [, int $mode=OCI_COMMIT_ON_SUCCESS]) |Executes a statement (PHP 5, PECL OCI8 >= 1.1.0)
2772int oci_fetch_all(resource $statement, array& $output [, int $skip=0 [, int $maxrows=-1 [, int $flags= OCI_FETCHSTATEMENT_BY_COLUMN+ OCI_ASSOC]]]) |Fetches multiple rows from a query into a two-dimensional array (PHP 5, PECL OCI8 >= 1.1.0)
2773array oci_fetch_array(resource $statement [, int $mode]) |Returns the next row from a query as an associative or numeric array (PHP 5, PECL OCI8 >= 1.1.0)
2774array oci_fetch_assoc(resource $statement) |Returns the next row from a query as an associative array (PHP 5, PECL OCI8 >= 1.1.0)
2775object oci_fetch_object(resource $statement) |Returns the next row from a query as an object (PHP 5, PECL OCI8 >= 1.1.0)
2776array oci_fetch_row(resource $statement) |Returns the next row from a query as a numeric array (PHP 5, PECL OCI8 >= 1.1.0)
2777bool oci_fetch(resource $statement) |Fetches the next row from a query into internal buffers (PHP 5, PECL OCI8 >= 1.1.0)
2778bool oci_field_is_null(resource $statement, mixed $field) |Checks if the field is NULL (PHP 5, PECL OCI8 >= 1.1.0)
2779string oci_field_name(resource $statement, int $field) |Returns the name of a field from the statement (PHP 5, PECL OCI8 >= 1.1.0)
2780int oci_field_precision(resource $statement, int $field) |Tell the precision of a field (PHP 5, PECL OCI8 >= 1.1.0)
2781int oci_field_scale(resource $statement, int $field) |Tell the scale of the field (PHP 5, PECL OCI8 >= 1.1.0)
2782int oci_field_size(resource $statement, mixed $field) |Returns field's size (PHP 5, PECL OCI8 >= 1.1.0)
2783int oci_field_type_raw(resource $statement, int $field) |Tell the raw Oracle data type of the field (PHP 5, PECL OCI8 >= 1.1.0)
2784mixed oci_field_type(resource $statement, int $field) |Returns field's data type (PHP 5, PECL OCI8 >= 1.1.0)
2785bool oci_free_statement(resource $statement) |Frees all resources associated with statement or cursor (PHP 5, PECL OCI8 >= 1.1.0)
2786void oci_internal_debug(bool $onoff) |Enables or disables internal debug output (PHP 5, PECL OCI8 >= 1.1.0)
2787bool oci_lob_copy(OCI-Lob $lob_to, OCI-Lob $lob_from [, int $length=0]) |Copies large object (PHP 5, PECL OCI8 >= 1.1.0)
2788bool oci_lob_is_equal(OCI-Lob $lob1, OCI-Lob $lob2) |Compares two LOB/FILE locators for equality (PHP 5, PECL OCI8 >= 1.1.0)
2789OCI-Collection oci_new_collection(resource $connection, string $tdo [, string $schema= NULL]) |Allocates new collection object (PHP 5, PECL OCI8 >= 1.1.0)
2790resource oci_new_connect(string $username, string $password [, string $connection_string [, string $character_set [, int $session_mode]]]) |Connect to the Oracle server using a unique connection (PHP 5, PECL OCI8 >= 1.1.0)
2791resource oci_new_cursor(resource $connection) |Allocates and returns a new cursor (statement handle) (PHP 5, PECL OCI8 >= 1.1.0)
2792OCI-Lob oci_new_descriptor(resource $connection [, int $type=OCI_DTYPE_LOB]) |Initializes a new empty LOB or FILE descriptor (PHP 5, PECL OCI8 >= 1.1.0)
2793int oci_num_fields(resource $statement) |Returns the number of result columns in a statement (PHP 5, PECL OCI8 >= 1.1.0)
2794int oci_num_rows(resource $statement) |Returns number of rows affected during statement execution (PHP 5, PECL OCI8 >= 1.1.0)
2795resource oci_parse(resource $connection, string $sql_text) |Prepares an Oracle statement for execution (PHP 5, PECL OCI8 >= 1.1.0)
2796bool oci_password_change(resource $connection, string $username, string $old_password, string $new_password) |Changes password of Oracle's user (PHP 5, PECL OCI8 >= 1.1.0)
2797resource oci_pconnect(string $username, string $password [, string $connection_string [, string $character_set [, int $session_mode]]]) |Connect to an Oracle database using a persistent connection (PHP 5, PECL OCI8 >= 1.1.0)
2798mixed oci_result(resource $statement, mixed $field) |Returns field's value from the fetched row (PHP 5, PECL OCI8 >= 1.1.0)
2799bool oci_rollback(resource $connection) |Rolls back the outstanding database transaction (PHP 5, PECL OCI8 >= 1.1.0)
2800string oci_server_version(resource $connection) |Returns the Oracle Database version (PHP 5, PECL OCI8 >= 1.1.0)
2801bool oci_set_action(resource $connection, string $action_name) |Sets the action name (PHP 5.3.2, PECL OCI8 >= 1.4.0)
2802bool oci_set_client_identifier(resource $connection, string $client_identifier) |Sets the client identifier (PHP 5.3.2, PECL OCI8 >= 1.4.0)
2803bool oci_set_client_info(resource $connection, string $client_info) |Sets the client information (PHP 5.3.2, PECL OCI8 >= 1.4.0)
2804bool oci_set_edition(string $edition) |Sets the database edition (PHP 5.3.2, PECL OCI8 >= 1.4.0)
2805bool oci_set_module_name(resource $connection, string $module_name) |Sets the module name (PHP 5.3.2, PECL OCI8 >= 1.4.0)
2806bool oci_set_prefetch(resource $statement, int $rows) |Sets number of rows to be prefetched by queries (PHP 5, PECL OCI8 >= 1.1.0)
2807string oci_statement_type(resource $statement) |Returns the type of a statement (PHP 5, PECL OCI8 >= 1.1.0)
2808int ocifetchinto(resource $statement, array& $result [, int $mode= OCI_ASSOC+ OCI_NUM]) |Fetches the next row into an array (deprecated) (PHP 4, PHP 5, PECL OCI8 >= 1.0.0)
2809number octdec(string $octal_string) |Octal to decimal (PHP 4, PHP 5)
2810mixed odbc_autocommit(resource $connection_id [, bool $OnOff=false]) |Toggle autocommit behaviour (PHP 4, PHP 5)
2811bool odbc_binmode(resource $result_id, int $mode) |Handling of binary column data (PHP 4, PHP 5)
2812void odbc_close_all() |Close all ODBC connections (PHP 4, PHP 5)
2813void odbc_close(resource $connection_id) |Close an ODBC connection (PHP 4, PHP 5)
2814resource odbc_columnprivileges(resource $connection_id, string $qualifier, string $owner, string $table_name, string $column_name) |Lists columns and associated privileges for the given table (PHP 4, PHP 5)
2815resource odbc_columns(resource $connection_id [, string $qualifier [, string $schema [, string $table_name [, string $column_name]]]]) |Lists the column names in specified tables (PHP 4, PHP 5)
2816bool odbc_commit(resource $connection_id) |Commit an ODBC transaction (PHP 4, PHP 5)
2817resource odbc_connect(string $dsn, string $user, string $password [, int $cursor_type]) |Connect to a datasource (PHP 4, PHP 5)
2818string odbc_cursor(resource $result_id) |Get cursorname (PHP 4, PHP 5)
2819array odbc_data_source(resource $connection_id, int $fetch_type) |Returns information about a current connection (PHP 4 >= 4.3.0, PHP 5)
2820string odbc_error( [resource $connection_id]) |Get the last error code (PHP 4 >= 4.0.5, PHP 5)
2821string odbc_errormsg( [resource $connection_id]) |Get the last error message (PHP 4 >= 4.0.5, PHP 5)
2822resource odbc_exec(resource $connection_id, string $query_string [, int $flags]) |Prepare and execute an SQL statement (PHP 4, PHP 5)
2823bool odbc_execute(resource $result_id [, array $parameters_array]) |Execute a prepared statement (PHP 4, PHP 5)
2824array odbc_fetch_array(resource $result [, int $rownumber]) |Fetch a result row as an associative array (PHP 4 >= 4.0.2, PHP 5)
2825int odbc_fetch_into(resource $result_id, array& $result_array [, int $rownumber]) |Fetch one result row into array (PHP 4, PHP 5)
2826object odbc_fetch_object(resource $result [, int $rownumber]) |Fetch a result row as an object (PHP 4 >= 4.0.2, PHP 5)
2827bool odbc_fetch_row(resource $result_id [, int $row_number]) |Fetch a row (PHP 4, PHP 5)
2828int odbc_field_len(resource $result_id, int $field_number) |Get the length (precision) of a field (PHP 4, PHP 5)
2829string odbc_field_name(resource $result_id, int $field_number) |Get the columnname (PHP 4, PHP 5)
2830int odbc_field_num(resource $result_id, string $field_name) |Return column number (PHP 4, PHP 5)
2831int odbc_field_scale(resource $result_id, int $field_number) |Get the scale of a field (PHP 4, PHP 5)
2832string odbc_field_type(resource $result_id, int $field_number) |Datatype of a field (PHP 4, PHP 5)
2833resource 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 (PHP 4, PHP 5)
2834bool odbc_free_result(resource $result_id) |Free resources associated with a result (PHP 4, PHP 5)
2835resource odbc_gettypeinfo(resource $connection_id [, int $data_type]) |Retrieves information about data types supported by the data source (PHP 4, PHP 5)
2836bool odbc_longreadlen(resource $result_id, int $length) |Handling of LONG columns (PHP 4, PHP 5)
2837bool odbc_next_result(resource $result_id) |Checks if multiple results are available (PHP 4 >= 4.0.5, PHP 5)
2838int odbc_num_fields(resource $result_id) |Number of columns in a result (PHP 4, PHP 5)
2839int odbc_num_rows(resource $result_id) |Number of rows in a result (PHP 4, PHP 5)
2840resource odbc_pconnect(string $dsn, string $user, string $password [, int $cursor_type]) |Open a persistent database connection (PHP 4, PHP 5)
2841resource odbc_prepare(resource $connection_id, string $query_string) |Prepares a statement for execution (PHP 4, PHP 5)
2842resource odbc_primarykeys(resource $connection_id, string $qualifier, string $owner, string $table) |Gets the primary keys for a table (PHP 4, PHP 5)
2843resource odbc_procedurecolumns(resource $connection_id) |Retrieve information about parameters to procedures (PHP 4, PHP 5)
2844resource odbc_procedures(resource $connection_id) |Get the list of procedures stored in a specific data source (PHP 4, PHP 5)
2845int odbc_result_all(resource $result_id [, string $format]) |Print result as HTML table (PHP 4, PHP 5)
2846mixed odbc_result(resource $result_id, mixed $field) |Get result data (PHP 4, PHP 5)
2847bool odbc_rollback(resource $connection_id) |Rollback a transaction (PHP 4, PHP 5)
2848bool odbc_setoption(resource $id, int $function, int $option, int $param) |Adjust ODBC settings (PHP 4, PHP 5)
2849resource odbc_specialcolumns(resource $connection_id, int $type, string $qualifier, string $owner, string $table, int $scope, int $nullable) |Retrieves special columns (PHP 4, PHP 5)
2850resource odbc_statistics(resource $connection_id, string $qualifier, string $owner, string $table_name, int $unique, int $accuracy) |Retrieve statistics about a table (PHP 4, PHP 5)
2851resource odbc_tableprivileges(resource $connection_id, string $qualifier, string $owner, string $name) |Lists tables and the privileges associated with each table (PHP 4, PHP 5)
2852resource odbc_tables(resource $connection_id [, string $qualifier [, string $owner [, string $name [, string $types]]]]) |Get the list of table names stored in a specific data source (PHP 4, PHP 5)
2853resource openal_buffer_create() |Generate OpenAL buffer (PECL openal >= 0.1.0)
2854bool openal_buffer_data(resource $buffer, int $format, string $data, int $freq) |Load a buffer with data (PECL openal >= 0.1.0)
2855bool openal_buffer_destroy(resource $buffer) |Destroys an OpenAL buffer (PECL openal >= 0.1.0)
2856int openal_buffer_get(resource $buffer, int $property) |Retrieve an OpenAL buffer property (PECL openal >= 0.1.0)
2857bool openal_buffer_loadwav(resource $buffer, string $wavfile) |Load a .wav file into a buffer (PECL openal >= 0.1.0)
2858resource openal_context_create(resource $device) |Create an audio processing context (PECL openal >= 0.1.0)
2859bool openal_context_current(resource $context) |Make the specified context current (PECL openal >= 0.1.0)
2860bool openal_context_destroy(resource $context) |Destroys a context (PECL openal >= 0.1.0)
2861bool openal_context_process(resource $context) |Process the specified context (PECL openal >= 0.1.0)
2862bool openal_context_suspend(resource $context) |Suspend the specified context (PECL openal >= 0.1.0)
2863bool openal_device_close(resource $device) |Close an OpenAL device (PECL openal >= 0.1.0)
2864resource openal_device_open( [string $device_desc]) |Initialize the OpenAL audio layer (PECL openal >= 0.1.0)
2865mixed openal_listener_get(int $property) |Retrieve a listener property (PECL openal >= 0.1.0)
2866bool openal_listener_set(int $property, mixed $setting) |Set a listener property (PECL openal >= 0.1.0)
2867resource openal_source_create() |Generate a source resource (PECL openal >= 0.1.0)
2868bool openal_source_destroy(resource $source) |Destroy a source resource (PECL openal >= 0.1.0)
2869mixed openal_source_get(resource $source, int $property) |Retrieve an OpenAL source property (PECL openal >= 0.1.0)
2870bool openal_source_pause(resource $source) |Pause the source (PECL openal >= 0.1.0)
2871bool openal_source_play(resource $source) |Start playing the source (PECL openal >= 0.1.0)
2872bool openal_source_rewind(resource $source) |Rewind the source (PECL openal >= 0.1.0)
2873bool openal_source_set(resource $source, int $property, mixed $setting) |Set source property (PECL openal >= 0.1.0)
2874bool openal_source_stop(resource $source) |Stop playing the source (PECL openal >= 0.1.0)
2875resource openal_stream(resource $source, int $format, int $rate) |Begin streaming on a source (PECL openal >= 0.1.0)
2876resource opendir(string $path [, resource $context]) |Open directory handle (PHP 4, PHP 5)
2877bool openlog(string $ident, int $option, int $facility) |Open connection to system logger (PHP 4, PHP 5)
2878int openssl_cipher_iv_length(string $method) |Gets the cipher iv length (PHP 5 >= PHP 5.3.3)
2879bool openssl_csr_export_to_file(resource $csr, string $outfilename [, bool $notext=true]) |Exports a CSR to a file (PHP 4 >= 4.2.0, PHP 5)
2880bool openssl_csr_export(resource $csr, string& $out [, bool $notext=true]) |Exports a CSR as a string (PHP 4 >= 4.2.0, PHP 5)
2881resource openssl_csr_get_public_key(mixed $csr [, bool $use_shortnames=true]) |Returns the public key of a CERT (PHP 5 >= 5.2.0)
2882array openssl_csr_get_subject(mixed $csr [, bool $use_shortnames=true]) |Returns the subject of a CERT (PHP 5 >= 5.2.0)
2883mixed openssl_csr_new(array $dn, resource& $privkey [, array $configargs [, array $extraattribs]]) |Generates a CSR (PHP 4 >= 4.2.0, PHP 5)
2884resource openssl_csr_sign(mixed $csr, mixed $cacert, mixed $priv_key, int $days [, array $configargs [, int $serial=0]]) |Sign a CSR with another certificate (or itself) and generate a certificate (PHP 4 >= 4.2.0, PHP 5)
2885string openssl_decrypt(string $data, string $method, string $password [, bool $raw_input=false [, string $iv=""]]) |Decrypts data (PHP 5 >= 5.3.0)
2886string openssl_dh_compute_key(string $pub_key, resource $dh_key) |Computes shared secret for public value of remote DH key and local DH key (No version information available, might only be in SVN)
2887string openssl_digest(string $data, string $method [, bool $raw_output=false]) |Computes a digest (PHP 5 >= 5.3.0)
2888string openssl_encrypt(string $data, string $method, string $password [, bool $raw_output=false [, string $iv=""]]) |Encrypts data (PHP 5 >= 5.3.0)
2889string openssl_error_string() |Return openSSL error message (PHP 4 >= 4.0.6, PHP 5)
2890void openssl_free_key(resource $key_identifier) |Free key resource (PHP 4 >= 4.0.4, PHP 5)
2891array openssl_get_cipher_methods( [bool $aliases=false]) |Gets available cipher methods (PHP 5 >= 5.3.0)
2892array openssl_get_md_methods( [bool $aliases=false]) |Gets available digest methods (PHP 5 >= 5.3.0)
2893bool openssl_open(string $sealed_data, string& $open_data, string $env_key, mixed $priv_key_id [, string $method]) |Open sealed data (PHP 4 >= 4.0.4, PHP 5)
2894bool openssl_pkcs12_export_to_file(mixed $x509, string $filename, mixed $priv_key, string $pass [, array $args]) |Exports a PKCS#12 Compatible Certificate Store File (PHP 5 >= 5.2.2)
2895bool openssl_pkcs12_export(mixed $x509, string& $out, mixed $priv_key, string $pass [, array $args]) |Exports a PKCS#12 Compatible Certificate Store File to variable. (PHP 5 >= 5.2.2)
2896bool openssl_pkcs12_read(string $pkcs12, array& $certs, string $pass) |Parse a PKCS#12 Certificate Store into an array (PHP 5 >= 5.2.2)
2897bool openssl_pkcs7_decrypt(string $infilename, string $outfilename, mixed $recipcert [, mixed $recipkey]) |Decrypts an S/MIME encrypted message (PHP 4 >= 4.0.6, PHP 5)
2898bool openssl_pkcs7_encrypt(string $infile, string $outfile, mixed $recipcerts, array $headers [, int $flags=0 [, int $cipherid=OPENSSL_CIPHER_RC2_40]]) |Encrypt an S/MIME message (PHP 4 >= 4.0.6, PHP 5)
2899bool openssl_pkcs7_sign(string $infilename, string $outfilename, mixed $signcert, mixed $privkey, array $headers [, int $flags=PKCS7_DETACHED [, string $extracerts]]) |Sign an S/MIME message (PHP 4 >= 4.0.6, PHP 5)
2900mixed openssl_pkcs7_verify(string $filename, int $flags [, string $outfilename [, array $cainfo [, string $extracerts [, string $content]]]]) |Verifies the signature of an S/MIME signed message (PHP 4 >= 4.0.6, PHP 5)
2901bool openssl_pkey_export_to_file(mixed $key, string $outfilename [, string $passphrase [, array $configargs]]) |Gets an exportable representation of a key into a file (PHP 4 >= 4.2.0, PHP 5)
2902bool openssl_pkey_export(mixed $key, string& $out [, string $passphrase [, array $configargs]]) |Gets an exportable representation of a key into a string (PHP 4 >= 4.2.0, PHP 5)
2903void openssl_pkey_free(resource $key) |Frees a private key (PHP 4 >= 4.2.0, PHP 5)
2904array openssl_pkey_get_details(resource $key) |Returns an array with the key details (PHP 5 >= 5.2.0)
2905resource openssl_pkey_get_private(mixed $key [, string $passphrase=""]) |Get a private key (PHP 4 >= 4.2.0, PHP 5)
2906resource openssl_pkey_get_public(mixed $certificate) |Extract public key from certificate and prepare it for use (PHP 4 >= 4.2.0, PHP 5)
2907resource openssl_pkey_new( [array $configargs]) |Generates a new private key (PHP 4 >= 4.2.0, PHP 5)
2908bool openssl_private_decrypt(string $data, string& $decrypted, mixed $key [, int $padding=OPENSSL_PKCS1_PADDING]) |Decrypts data with private key (PHP 4 >= 4.0.6, PHP 5)
2909bool openssl_private_encrypt(string $data, string& $crypted, mixed $key [, int $padding=OPENSSL_PKCS1_PADDING]) |Encrypts data with private key (PHP 4 >= 4.0.6, PHP 5)
2910bool openssl_public_decrypt(string $data, string& $decrypted, mixed $key [, int $padding=OPENSSL_PKCS1_PADDING]) |Decrypts data with public key (PHP 4 >= 4.0.6, PHP 5)
2911bool openssl_public_encrypt(string $data, string& $crypted, mixed $key [, int $padding=OPENSSL_PKCS1_PADDING]) |Encrypts data with public key (PHP 4 >= 4.0.6, PHP 5)
2912string openssl_random_pseudo_bytes(int $length [, bool& $crypto_strong]) |Generate a pseudo-random string of bytes (PHP 5 >= 5.3.0)
2913int openssl_seal(string $data, string& $sealed_data, array& $env_keys, array $pub_key_ids [, string $method]) |Seal (encrypt) data (PHP 4 >= 4.0.4, PHP 5)
2914bool openssl_sign(string $data, string& $signature, mixed $priv_key_id [, int $signature_alg=OPENSSL_ALGO_SHA1]) |Generate signature (PHP 4 >= 4.0.4, PHP 5)
2915int openssl_verify(string $data, string $signature, mixed $pub_key_id [, int $signature_alg=OPENSSL_ALGO_SHA1]) |Verify signature (PHP 4 >= 4.0.4, PHP 5)
2916bool openssl_x509_check_private_key(mixed $cert, mixed $key) |Checks if a private key corresponds to a certificate (PHP 4 >= 4.2.0, PHP 5)
2917int openssl_x509_checkpurpose(mixed $x509cert, int $purpose [, array $cainfo=array() [, string $untrustedfile]]) |Verifies if a certificate can be used for a particular purpose (PHP 4 >= 4.0.6, PHP 5)
2918bool openssl_x509_export_to_file(mixed $x509, string $outfilename [, bool $notext= TRUE]) |Exports a certificate to file (PHP 4 >= 4.2.0, PHP 5)
2919bool openssl_x509_export(mixed $x509, string& $output [, bool $notext= TRUE]) |Exports a certificate as a string (PHP 4 >= 4.2.0, PHP 5)
2920void openssl_x509_free(resource $x509cert) |Free certificate resource (PHP 4 >= 4.0.6, PHP 5)
2921array openssl_x509_parse(mixed $x509cert [, bool $shortnames=true]) |Parse an X509 certificate and return the information as an array (PHP 4 >= 4.0.6, PHP 5)
2922resource openssl_x509_read(mixed $x509certdata) |Parse an X.509 certificate and return a resource identifier for it (PHP 4 >= 4.0.6, PHP 5)
2923int ord(string $string) |Return ASCII value of character (PHP 4, PHP 5)
2924bool output_add_rewrite_var(string $name, string $value) |Add URL rewriter values (PHP 4 >= 4.3.0, PHP 5)
2925bool output_reset_rewrite_vars() |Reset URL rewriter values (PHP 4 >= 4.3.0, PHP 5)
2926bool override_function(string $function_name, string $function_args, string $function_code) |Overrides built-in functions (PECL apd >= 0.2)
2927void ovrimos_close(int $connection) |Closes the connection to ovrimos (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2928bool ovrimos_commit(int $connection_id) |Commits the transaction (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2929int ovrimos_connect(string $host, string $dborport, string $user, string $password) |Connect to the specified database (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2930string ovrimos_cursor(int $result_id) |Returns the name of the cursor (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2931int ovrimos_exec(int $connection_id, string $query) |Executes an SQL statement (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2932bool ovrimos_execute(int $result_id [, array $parameters_array]) |Executes a prepared SQL statement (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2933bool ovrimos_fetch_into(int $result_id, array& $result_array [, string $how [, int $rownumber]]) |Fetches a row from the result set (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2934bool ovrimos_fetch_row(int $result_id [, int $how [, int $row_number]]) |Fetches a row from the result set (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2935int ovrimos_field_len(int $result_id, int $field_number) |Returns the length of the output column (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2936string ovrimos_field_name(int $result_id, int $field_number) |Returns the output column name (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2937int ovrimos_field_num(int $result_id, string $field_name) |Returns the (1-based) index of the output column (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2938int ovrimos_field_type(int $result_id, int $field_number) |Returns the type of the output column (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2939bool ovrimos_free_result(int $result_id) |Frees the specified result_id (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2940bool ovrimos_longreadlen(int $result_id, int $length) |Specifies how many bytes are to be retrieved from long datatypes (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2941int ovrimos_num_fields(int $result_id) |Returns the number of columns (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2942int ovrimos_num_rows(int $result_id) |Returns the number of rows affected by update operations (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2943int ovrimos_prepare(int $connection_id, string $query) |Prepares an SQL statement (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2944int ovrimos_result_all(int $result_id [, string $format]) |Prints the whole result set as an HTML table (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2945string ovrimos_result(int $result_id, mixed $field) |Retrieves the output column (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2946bool ovrimos_rollback(int $connection_id) |Rolls back the transaction (PHP 4 >= 4.0.3, PHP 5 <= 5.0.5)
2947string pack(string $format [, mixed $args [, mixed $...]]) |Pack data into binary string (PHP 4, PHP 5)
2948array parse_ini_file(string $filename [, bool $process_sections=false [, int $scanner_mode=INI_SCANNER_NORMAL]]) |Parse a configuration file (PHP 4, PHP 5)
2949array parse_ini_string(string $ini [, bool $process_sections=false [, int $scanner_mode=INI_SCANNER_NORMAL]]) |Parse a configuration string (PHP 5 >= 5.3.0)
2950void parse_str(string $str [, array& $arr]) |Parses the string into variables (PHP 4, PHP 5)
2951mixed parse_url(string $url [, int $component=-1]) |Parse a URL and return its components (PHP 4, PHP 5)
2952array parsekit_compile_file(string $filename [, array& $errors [, int $options=PARSEKIT_QUIET]]) |Compile a string of PHP code and return the resulting op array (PECL parsekit >= 0.2.0)
2953array parsekit_compile_string(string $phpcode [, array& $errors [, int $options=PARSEKIT_QUIET]]) |Compile a string of PHP code and return the resulting op array (PECL parsekit >= 0.2.0)
2954array parsekit_func_arginfo(mixed $function) |Return information regarding function argument(s) (PECL parsekit >= 0.3.0)
2955void passthru(string $command [, int& $return_var]) |Execute an external program and display raw output (PHP 4, PHP 5)
2956array password_get_info(string $hash) |Returns information about the given hash (PHP 5 >= 5.5.0)
2957string password_hash(string $password, integer $algo [, array $options]) |Creates a password hash (PHP 5 >= 5.5.0)
2958boolean password_needs_rehash(string $hash, string $algo [, string $options]) |Checks if the given hash matches the given options (PHP 5 >= 5.5.0)
2959boolean password_verify(string $password, string $hash) |Verifies that a password matches a hash (PHP 5 >= 5.5.0)
2960mixed pathinfo(string $path [, int $options=PATHINFO_DIRNAME|PATHINFO_BASENAME|PATHINFO_EXTENSION|PATHINFO_FILENAME]) |Returns information about a file path (PHP 4 >= 4.0.3, PHP 5)
2961int pclose(resource $handle) |Closes process file pointer (PHP 4, PHP 5)
2962int pcntl_alarm(int $seconds) |Set an alarm clock for delivery of a signal (PHP 4 >= 4.3.0, PHP 5)
2963void pcntl_exec(string $path [, array $args [, array $envs]]) |Executes specified program in current process space (PHP 4 >= 4.2.0, PHP 5)
2964int pcntl_fork() |Forks the currently running process (PHP 4 >= 4.1.0, PHP 5)
2965int pcntl_getpriority( [int $pid=getmypid() [, int $process_identifier=PRIO_PROCESS]]) |Get the priority of any process (PHP 5)
2966bool pcntl_setpriority(int $priority [, int $pid=getmypid() [, int $process_identifier=PRIO_PROCESS]]) |Change the priority of any process (PHP 5)
2967bool pcntl_signal_dispatch() |Calls signal handlers for pending signals (PHP 5 >= 5.3.0)
2968bool pcntl_signal(int $signo, callable $handler [, bool $restart_syscalls=true]) |Installs a signal handler (PHP 4 >= 4.1.0, PHP 5)
2969bool pcntl_sigprocmask(int $how, array $set [, array& $oldset]) |Sets and retrieves blocked signals (PHP 5 >= 5.3.0)
2970int pcntl_sigtimedwait(array $set [, array& $siginfo [, int $seconds=0 [, int $nanoseconds=0]]]) |Waits for signals, with a timeout (PHP 5 >= 5.3.0)
2971int pcntl_sigwaitinfo(array $set [, array& $siginfo]) |Waits for signals (PHP 5 >= 5.3.0)
2972int pcntl_wait(int& $status [, int $options=0]) |Waits on or returns the status of a forked child (PHP 5)
2973int pcntl_waitpid(int $pid, int& $status [, int $options=0]) |Waits on or returns the status of a forked child (PHP 4 >= 4.1.0, PHP 5)
2974int pcntl_wexitstatus(int $status) |Returns the return code of a terminated child (PHP 4 >= 4.1.0, PHP 5)
2975bool pcntl_wifexited(int $status) |Checks if status code represents a normal exit (PHP 4 >= 4.1.0, PHP 5)
2976bool pcntl_wifsignaled(int $status) |Checks whether the status code represents a termination due to a signal (PHP 4 >= 4.1.0, PHP 5)
2977bool pcntl_wifstopped(int $status) |Checks whether the child process is currently stopped (PHP 4 >= 4.1.0, PHP 5)
2978int pcntl_wstopsig(int $status) |Returns the signal which caused the child to stop (PHP 4 >= 4.1.0, PHP 5)
2979int pcntl_wtermsig(int $status) |Returns the signal which caused the child to terminate (PHP 4 >= 4.1.0, PHP 5)
2980bool PDF_activate_item(resource $pdfdoc, int $id) |Activate structure element or other content item (PECL pdflib >= 2.0.0)
2981bool PDF_add_launchlink(resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $filename) |Add launch annotation for current page [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
2982bool PDF_add_locallink(resource $pdfdoc, float $lowerleftx, float $lowerlefty, float $upperrightx, float $upperrighty, int $page, string $dest) |Add link annotation for current page [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
2983bool PDF_add_nameddest(resource $pdfdoc, string $name, string $optlist) |Create named destination (PECL pdflib >= 2.0.0)
2984bool PDF_add_note(resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $contents, string $title, string $icon, int $open) |Set annotation for current page [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
2985bool PDF_add_pdflink(resource $pdfdoc, float $bottom_left_x, float $bottom_left_y, float $up_right_x, float $up_right_y, string $filename, int $page, string $dest) |Add file link annotation for current page [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
2986int PDF_add_table_cell(resource $pdfdoc, int $table, int $column, int $row, string $text, string $optlist) |Add a cell to a new or existing table (PECL pdflib >= 2.1.0)
2987int PDF_add_textflow(resource $pdfdoc, int $textflow, string $text, string $optlist) |Create Textflow or add text to existing Textflow (PECL pdflib >= 2.1.0)
2988bool PDF_add_thumbnail(resource $pdfdoc, int $image) |Add thumbnail for current page (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
2989bool PDF_add_weblink(resource $pdfdoc, float $lowerleftx, float $lowerlefty, float $upperrightx, float $upperrighty, string $url) |Add weblink for current page [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
2990bool PDF_arc(resource $p, float $x, float $y, float $r, float $alpha, float $beta) |Draw a counterclockwise circular arc segment (PHP 4, PECL pdflib >= 1.0.0)
2991bool PDF_arcn(resource $p, float $x, float $y, float $r, float $alpha, float $beta) |Draw a clockwise circular arc segment (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
2992bool PDF_attach_file(resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $filename, string $description, string $author, string $mimetype, string $icon) |Add file attachment for current page [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
2993int PDF_begin_document(resource $pdfdoc, string $filename, string $optlist) |Create new PDF file (PECL pdflib >= 2.0.0)
2994bool PDF_begin_font(resource $pdfdoc, string $filename, float $a, float $b, float $c, float $d, float $e, float $f, string $optlist) |Start a Type 3 font definition (PECL pdflib >= 2.0.0)
2995bool PDF_begin_glyph(resource $pdfdoc, string $glyphname, float $wx, float $llx, float $lly, float $urx, float $ury) |Start glyph definition for Type 3 font (PECL pdflib >= 2.0.0)
2996int PDF_begin_item(resource $pdfdoc, string $tag, string $optlist) |Open structure element or other content item (PECL pdflib >= 2.0.0)
2997bool PDF_begin_layer(resource $pdfdoc, int $layer) |Start layer (PECL pdflib >= 2.0.0)
2998bool PDF_begin_page_ext(resource $pdfdoc, float $width, float $height, string $optlist) |Start new page (PECL pdflib >= 2.0.0)
2999bool PDF_begin_page(resource $pdfdoc, float $width, float $height) |Start new page [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3000int PDF_begin_pattern(resource $pdfdoc, float $width, float $height, float $xstep, float $ystep, int $painttype) |Start pattern definition (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3001int PDF_begin_template_ext(resource $pdfdoc, float $width, float $height, string $optlist) |Start template definition (PECL pdflib >= 2.1.0)
3002int PDF_begin_template(resource $pdfdoc, float $width, float $height) |Start template definition [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3003bool PDF_circle(resource $pdfdoc, float $x, float $y, float $r) |Draw a circle (PHP 4, PECL pdflib >= 1.0.0)
3004bool PDF_clip(resource $p) |Clip to current path (PHP 4, PECL pdflib >= 1.0.0)
3005bool PDF_close_image(resource $p, int $image) |Close image (PHP 4, PECL pdflib >= 1.0.0)
3006bool PDF_close_pdi_page(resource $p, int $page) |Close the page handle (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3007bool PDF_close_pdi(resource $p, int $doc) |Close the input PDF document [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3008bool PDF_close(resource $p) |Close pdf resource [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3009bool PDF_closepath_fill_stroke(resource $p) |Close, fill and stroke current path (PHP 4, PECL pdflib >= 1.0.0)
3010bool PDF_closepath_stroke(resource $p) |Close and stroke path (PHP 4, PECL pdflib >= 1.0.0)
3011bool PDF_closepath(resource $p) |Close current path (PHP 4, PECL pdflib >= 1.0.0)
3012bool PDF_concat(resource $p, float $a, float $b, float $c, float $d, float $e, float $f) |Concatenate a matrix to the CTM (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3013bool PDF_continue_text(resource $p, string $text) |Output text in next line (PHP 4, PECL pdflib >= 1.0.0)
3014int PDF_create_3dview(resource $pdfdoc, string $username, string $optlist) |Create 3D view (PECL pdflib >= 2.1.0)
3015int PDF_create_action(resource $pdfdoc, string $type, string $optlist) |Create action for objects or events (PECL pdflib >= 2.0.0)
3016bool PDF_create_annotation(resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $type, string $optlist) |Create rectangular annotation (PECL pdflib >= 2.0.0)
3017int PDF_create_bookmark(resource $pdfdoc, string $text, string $optlist) |Create bookmark (PECL pdflib >= 2.0.0)
3018bool PDF_create_field(resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $name, string $type, string $optlist) |Create form field (PECL pdflib >= 2.0.0)
3019bool PDF_create_fieldgroup(resource $pdfdoc, string $name, string $optlist) |Create form field group (PECL pdflib >= 2.0.0)
3020int PDF_create_gstate(resource $pdfdoc, string $optlist) |Create graphics state object (PECL pdflib >= 2.0.0)
3021bool PDF_create_pvf(resource $pdfdoc, string $filename, string $data, string $optlist) |Create PDFlib virtual file (PECL pdflib >= 2.0.0)
3022int PDF_create_textflow(resource $pdfdoc, string $text, string $optlist) |Create textflow object (PECL pdflib >= 2.0.0)
3023bool PDF_curveto(resource $p, float $x1, float $y1, float $x2, float $y2, float $x3, float $y3) |Draw Bezier curve (PHP 4, PECL pdflib >= 1.0.0)
3024int PDF_define_layer(resource $pdfdoc, string $name, string $optlist) |Create layer definition (PECL pdflib >= 2.0.0)
3025int PDF_delete_pvf(resource $pdfdoc, string $filename) |Delete PDFlib virtual file (PECL pdflib >= 2.0.0)
3026bool PDF_delete_table(resource $pdfdoc, int $table, string $optlist) |Delete table object (PECL pdflib >= 2.1.0)
3027bool PDF_delete_textflow(resource $pdfdoc, int $textflow) |Delete textflow object (PECL pdflib >= 2.0.0)
3028bool PDF_delete(resource $pdfdoc) |Delete PDFlib object (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3029bool PDF_encoding_set_char(resource $pdfdoc, string $encoding, int $slot, string $glyphname, int $uv) |Add glyph name and/or Unicode value (PECL pdflib >= 2.0.0)
3030bool PDF_end_document(resource $pdfdoc, string $optlist) |Close PDF file (PECL pdflib >= 2.0.0)
3031bool PDF_end_font(resource $pdfdoc) |Terminate Type 3 font definition (PECL pdflib >= 2.0.0)
3032bool PDF_end_glyph(resource $pdfdoc) |Terminate glyph definition for Type 3 font (PECL pdflib >= 2.0.0)
3033bool PDF_end_item(resource $pdfdoc, int $id) |Close structure element or other content item (PECL pdflib >= 2.0.0)
3034bool PDF_end_layer(resource $pdfdoc) |Deactivate all active layers (PECL pdflib >= 2.0.0)
3035bool PDF_end_page_ext(resource $pdfdoc, string $optlist) |Finish page (PECL pdflib >= 2.0.0)
3036bool PDF_end_page(resource $p) |Finish page (PHP 4, PECL pdflib >= 1.0.0)
3037bool PDF_end_pattern(resource $p) |Finish pattern (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3038bool PDF_end_template(resource $p) |Finish template (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3039bool PDF_endpath(resource $p) |End current path (PHP 4, PECL pdflib >= 1.0.0)
3040int PDF_fill_imageblock(resource $pdfdoc, int $page, string $blockname, int $image, string $optlist) |Fill image block with variable data (PECL pdflib >= 2.0.0)
3041int PDF_fill_pdfblock(resource $pdfdoc, int $page, string $blockname, int $contents, string $optlist) |Fill PDF block with variable data (PECL pdflib >= 2.0.0)
3042bool PDF_fill_stroke(resource $p) |Fill and stroke path (PHP 4, PECL pdflib >= 1.0.0)
3043int PDF_fill_textblock(resource $pdfdoc, int $page, string $blockname, string $text, string $optlist) |Fill text block with variable data (PECL pdflib >= 2.0.0)
3044bool PDF_fill(resource $p) |Fill current path (PHP 4, PECL pdflib >= 1.0.0)
3045int PDF_findfont(resource $p, string $fontname, string $encoding, int $embed) |Prepare font for later use [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3046bool PDF_fit_image(resource $pdfdoc, int $image, float $x, float $y, string $optlist) |Place image or template (PECL pdflib >= 2.0.0)
3047bool PDF_fit_pdi_page(resource $pdfdoc, int $page, float $x, float $y, string $optlist) |Place imported PDF page (PECL pdflib >= 2.0.0)
3048string PDF_fit_table(resource $pdfdoc, int $table, float $llx, float $lly, float $urx, float $ury, string $optlist) |Place table on page (PECL pdflib >= 2.1.0)
3049string PDF_fit_textflow(resource $pdfdoc, int $textflow, float $llx, float $lly, float $urx, float $ury, string $optlist) |Format textflow in rectangular area (PECL pdflib >= 2.0.0)
3050bool PDF_fit_textline(resource $pdfdoc, string $text, float $x, float $y, string $optlist) |Place single line of text (PECL pdflib >= 2.0.0)
3051string PDF_get_apiname(resource $pdfdoc) |Get name of unsuccessfull API function (PECL pdflib >= 2.0.0)
3052string PDF_get_buffer(resource $p) |Get PDF output buffer (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3053string PDF_get_errmsg(resource $pdfdoc) |Get error text (PECL pdflib >= 2.0.0)
3054int PDF_get_errnum(resource $pdfdoc) |Get error number (PECL pdflib >= 2.0.0)
3055int PDF_get_majorversion() |Get major version number [deprecated] (PHP 4 >= 4.2.0, PECL pdflib >= 1.0.0)
3056int PDF_get_minorversion() |Get minor version number [deprecated] (PHP 4 >= 4.2.0, PECL pdflib >= 1.0.0)
3057string PDF_get_parameter(resource $p, string $key, float $modifier) |Get string parameter (PHP 4 >= 4.0.1, PECL pdflib >= 1.0.0)
3058string PDF_get_pdi_parameter(resource $p, string $key, int $doc, int $page, int $reserved) |Get PDI string parameter [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3059float PDF_get_pdi_value(resource $p, string $key, int $doc, int $page, int $reserved) |Get PDI numerical parameter [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3060float PDF_get_value(resource $p, string $key, float $modifier) |Get numerical parameter (PHP 4 >= 4.0.1, PECL pdflib >= 1.0.0)
3061float PDF_info_font(resource $pdfdoc, int $font, string $keyword, string $optlist) |Query detailed information about a loaded font (PECL pdflib >= 2.1.0)
3062float PDF_info_matchbox(resource $pdfdoc, string $boxname, int $num, string $keyword) |Query matchbox information (PECL pdflib >= 2.1.0)
3063float PDF_info_table(resource $pdfdoc, int $table, string $keyword) |Retrieve table information (PECL pdflib >= 2.1.0)
3064float PDF_info_textflow(resource $pdfdoc, int $textflow, string $keyword) |Query textflow state (PECL pdflib >= 2.0.0)
3065float PDF_info_textline(resource $pdfdoc, string $text, string $keyword, string $optlist) |Perform textline formatting and query metrics (PECL pdflib >= 2.1.0)
3066bool PDF_initgraphics(resource $p) |Reset graphic state (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3067bool PDF_lineto(resource $p, float $x, float $y) |Draw a line (PHP 4, PECL pdflib >= 1.0.0)
3068int PDF_load_3ddata(resource $pdfdoc, string $filename, string $optlist) |Load 3D model (PECL pdflib >= 2.1.0)
3069int PDF_load_font(resource $pdfdoc, string $fontname, string $encoding, string $optlist) |Search and prepare font (PECL pdflib >= 2.0.0)
3070int PDF_load_iccprofile(resource $pdfdoc, string $profilename, string $optlist) |Search and prepare ICC profile (PECL pdflib >= 2.0.0)
3071int PDF_load_image(resource $pdfdoc, string $imagetype, string $filename, string $optlist) |Open image file (PECL pdflib >= 2.0.0)
3072int PDF_makespotcolor(resource $p, string $spotname) |Make spot color (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3073bool PDF_moveto(resource $p, float $x, float $y) |Set current point (PHP 4, PECL pdflib >= 1.0.0)
3074resource PDF_new() |Create PDFlib object (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3075int PDF_open_ccitt(resource $pdfdoc, string $filename, int $width, int $height, int $BitReverse, int $k, int $Blackls1) |Open raw CCITT image [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3076bool PDF_open_file(resource $p, string $filename) |Create PDF file [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3077int PDF_open_image_file(resource $p, string $imagetype, string $filename, string $stringparam, int $intparam) |Read image from file [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3078int PDF_open_image(resource $p, string $imagetype, string $source, string $data, int $length, int $width, int $height, int $components, int $bpc, string $params) |Use image data [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3079int PDF_open_memory_image(resource $p, resource $image) |Open image created with PHP's image functions [not supported] (PHP 4, PECL pdflib >= 1.0.0)
3080int PDF_open_pdi_document(resource $p, string $filename, string $optlist) |Prepare a pdi document (PECL pdflib >= 2.1.0)
3081int PDF_open_pdi_page(resource $p, int $doc, int $pagenumber, string $optlist) |Prepare a page (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3082int PDF_open_pdi(resource $pdfdoc, string $filename, string $optlist, int $len) |Open PDF file [deprecated] (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3083float PDF_pcos_get_number(resource $p, int $doc, string $path) |Get value of pCOS path with type number or boolean (PECL pdflib >= 2.1.0)
3084string PDF_pcos_get_stream(resource $p, int $doc, string $optlist, string $path) |Get contents of pCOS path with type stream, fstream, or string (PECL pdflib >= 2.1.0)
3085string PDF_pcos_get_string(resource $p, int $doc, string $path) |Get value of pCOS path with type name, string, or boolean (PECL pdflib >= 2.1.0)
3086bool PDF_place_image(resource $pdfdoc, int $image, float $x, float $y, float $scale) |Place image on the page [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3087bool PDF_place_pdi_page(resource $pdfdoc, int $page, float $x, float $y, float $sx, float $sy) |Place PDF page [deprecated] (PHP 4 >= 4.0.6, PECL pdflib >= 1.0.0)
3088int PDF_process_pdi(resource $pdfdoc, int $doc, int $page, string $optlist) |Process imported PDF document (PECL pdflib >= 2.0.0)
3089bool PDF_rect(resource $p, float $x, float $y, float $width, float $height) |Draw rectangle (PHP 4, PECL pdflib >= 1.0.0)
3090bool PDF_restore(resource $p) |Restore graphics state (PHP 4, PECL pdflib >= 1.0.0)
3091bool PDF_resume_page(resource $pdfdoc, string $optlist) |Resume page (PECL pdflib >= 2.0.0)
3092bool PDF_rotate(resource $p, float $phi) |Rotate coordinate system (PHP 4, PECL pdflib >= 1.0.0)
3093bool PDF_save(resource $p) |Save graphics state (PHP 4, PECL pdflib >= 1.0.0)
3094bool PDF_scale(resource $p, float $sx, float $sy) |Scale coordinate system (PHP 4, PECL pdflib >= 1.0.0)
3095bool PDF_set_border_color(resource $p, float $red, float $green, float $blue) |Set border color of annotations [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3096bool PDF_set_border_dash(resource $pdfdoc, float $black, float $white) |Set border dash style of annotations [deprecated] (PHP 4 >= 4.0.1, PECL pdflib >= 1.0.0)
3097bool PDF_set_border_style(resource $pdfdoc, string $style, float $width) |Set border style of annotations [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3098bool PDF_set_gstate(resource $pdfdoc, int $gstate) |Activate graphics state object (PECL pdflib >= 2.0.0)
3099bool PDF_set_info(resource $p, string $key, string $value) |Fill document info field (PHP 4 >= 4.0.1, PECL pdflib >= 1.0.0)
3100bool PDF_set_layer_dependency(resource $pdfdoc, string $type, string $optlist) |Define relationships among layers (PECL pdflib >= 2.0.0)
3101bool PDF_set_parameter(resource $p, string $key, string $value) |Set string parameter (PHP 4, PECL pdflib >= 1.0.0)
3102bool PDF_set_text_pos(resource $p, float $x, float $y) |Set text position (PHP 4, PECL pdflib >= 1.0.0)
3103bool PDF_set_value(resource $p, string $key, float $value) |Set numerical parameter (PHP 4 >= 4.0.1, PECL pdflib >= 1.0.0)
3104bool PDF_setcolor(resource $p, string $fstype, string $colorspace, float $c1, float $c2, float $c3, float $c4) |Set fill and stroke color (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3105bool PDF_setdash(resource $pdfdoc, float $b, float $w) |Set simple dash pattern (PHP 4, PECL pdflib >= 1.0.0)
3106bool PDF_setdashpattern(resource $pdfdoc, string $optlist) |Set dash pattern (PECL pdflib >= 2.0.0)
3107bool PDF_setflat(resource $pdfdoc, float $flatness) |Set flatness (PHP 4, PECL pdflib >= 1.0.0)
3108bool PDF_setfont(resource $pdfdoc, int $font, float $fontsize) |Set font (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3109bool PDF_setgray_fill(resource $p, float $g) |Set fill color to gray [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3110bool PDF_setgray_stroke(resource $p, float $g) |Set stroke color to gray [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3111bool PDF_setgray(resource $p, float $g) |Set color to gray [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3112bool PDF_setlinecap(resource $p, int $linecap) |Set linecap parameter (PHP 4, PECL pdflib >= 1.0.0)
3113bool PDF_setlinejoin(resource $p, int $value) |Set linejoin parameter (PHP 4, PECL pdflib >= 1.0.0)
3114bool PDF_setlinewidth(resource $p, float $width) |Set line width (PHP 4, PECL pdflib >= 1.0.0)
3115bool PDF_setmatrix(resource $p, float $a, float $b, float $c, float $d, float $e, float $f) |Set current transformation matrix (PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)
3116bool PDF_setmiterlimit(resource $pdfdoc, float $miter) |Set miter limit (PHP 4, PECL pdflib >= 1.0.0)
3117bool PDF_setrgbcolor_fill(resource $p, float $red, float $green, float $blue) |Set fill rgb color values [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3118bool PDF_setrgbcolor_stroke(resource $p, float $red, float $green, float $blue) |Set stroke rgb color values [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3119bool PDF_setrgbcolor(resource $p, float $red, float $green, float $blue) |Set fill and stroke rgb color values [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3120int PDF_shading_pattern(resource $pdfdoc, int $shading, string $optlist) |Define shading pattern (PECL pdflib >= 2.0.0)
3121int PDF_shading(resource $pdfdoc, string $shtype, float $x0, float $y0, float $x1, float $y1, float $c1, float $c2, float $c3, float $c4, string $optlist) |Define blend (PECL pdflib >= 2.0.0)
3122bool PDF_shfill(resource $pdfdoc, int $shading) |Fill area with shading (PECL pdflib >= 2.0.0)
3123int PDF_show_boxed(resource $p, string $text, float $left, float $top, float $width, float $height, string $mode, string $feature) |Output text in a box [deprecated] (PHP 4, PECL pdflib >= 1.0.0)
3124bool PDF_show_xy(resource $p, string $text, float $x, float $y) |Output text at given position (PHP 4, PECL pdflib >= 1.0.0)
3125bool PDF_show(resource $pdfdoc, string $text) |Output text at current position (PHP 4, PECL pdflib >= 1.0.0)
3126bool PDF_skew(resource $p, float $alpha, float $beta) |Skew the coordinate system (PHP 4, PECL pdflib >= 1.0.0)
3127float PDF_stringwidth(resource $p, string $text, int $font, float $fontsize) |Return width of text (PHP 4, PECL pdflib >= 1.0.0)
3128bool PDF_stroke(resource $p) |Stroke path (PHP 4, PECL pdflib >= 1.0.0)
3129bool PDF_suspend_page(resource $pdfdoc, string $optlist) |Suspend page (PECL pdflib >= 2.0.0)
3130bool PDF_translate(resource $p, float $tx, float $ty) |Set origin of coordinate system (PHP 4, PECL pdflib >= 1.0.0)
3131string PDF_utf16_to_utf8(resource $pdfdoc, string $utf16string) |Convert string from UTF-16 to UTF-8 (PECL pdflib >= 2.0.3)
3132string PDF_utf32_to_utf16(resource $pdfdoc, string $utf32string, string $ordering) |Convert string from UTF-32 to UTF-16 (PECL pdflib >= Unknown future)
3133string PDF_utf8_to_utf16(resource $pdfdoc, string $utf8string, string $ordering) |Convert string from UTF-8 to UTF-16 (PECL pdflib >= 2.0.3)
3134resource pfsockopen(string $hostname [, int $port=-1 [, int& $errno [, string& $errstr [, float $timeout=ini_get("default_socket_timeout")]]]]) |Open persistent Internet or Unix domain socket connection (PHP 4, PHP 5)
3135int pg_affected_rows(resource $result) |Returns number of affected records (tuples) (PHP 4 >= 4.2.0, PHP 5)
3136bool pg_cancel_query(resource $connection) |Cancel an asynchronous query (PHP 4 >= 4.2.0, PHP 5)
3137string pg_client_encoding( [resource $connection]) |Gets the client encoding (PHP 4 >= 4.0.3, PHP 5)
3138bool pg_close( [resource $connection]) |Closes a PostgreSQL connection (PHP 4, PHP 5)
3139resource pg_connect(string $connection_string [, int $connect_type]) |Open a PostgreSQL connection (PHP 4, PHP 5)
3140bool pg_connection_busy(resource $connection) |Get connection is busy or not (PHP 4 >= 4.2.0, PHP 5)
3141bool pg_connection_reset(resource $connection) |Reset connection (reconnect) (PHP 4 >= 4.2.0, PHP 5)
3142int pg_connection_status(resource $connection) |Get connection status (PHP 4 >= 4.2.0, PHP 5)
3143array pg_convert(resource $connection, string $table_name, array $assoc_array [, int $options=0]) |Convert associative array values into suitable for SQL statement (PHP 4 >= 4.3.0, PHP 5)
3144bool pg_copy_from(resource $connection, string $table_name, array $rows [, string $delimiter [, string $null_as]]) |Insert records into a table from an array (PHP 4 >= 4.2.0, PHP 5)
3145array pg_copy_to(resource $connection, string $table_name [, string $delimiter [, string $null_as]]) |Copy a table to an array (PHP 4 >= 4.2.0, PHP 5)
3146string pg_dbname( [resource $connection]) |Get the database name (PHP 4, PHP 5)
3147mixed pg_delete(resource $connection, string $table_name, array $assoc_array [, int $options=PGSQL_DML_EXEC]) |Deletes records (PHP 4 >= 4.3.0, PHP 5)
3148bool pg_end_copy( [resource $connection]) |Sync with PostgreSQL backend (PHP 4 >= 4.0.3, PHP 5)
3149string pg_escape_bytea( [resource $connection], string $data) |Escape a string for insertion into a bytea field (PHP 4 >= 4.2.0, PHP 5)
3150string pg_escape_identifier( [resource $connection], string $data) |Escape a identifier for insertion into a text field (PHP 5 >= 5.4.4)
3151string pg_escape_literal( [resource $connection], string $data) |Escape a literal for insertion into a text field (PHP 5 >= 5.4.4)
3152string pg_escape_string( [resource $connection], string $data) |Escape a string for query (PHP 4 >= 4.2.0, PHP 5)
3153resource pg_execute( [resource $connection], string $stmtname, array $params) |Sends a request to execute a prepared statement with given parameters, and waits for the result. (PHP 5 >= 5.1.0)
3154array pg_fetch_all_columns(resource $result [, int $column=0]) |Fetches all rows in a particular result column as an array (PHP 5 >= 5.1.0)
3155array pg_fetch_all(resource $result) |Fetches all rows from a result as an array (PHP 4 >= 4.3.0, PHP 5)
3156array pg_fetch_array(resource $result [, int $row [, int $result_type=PGSQL_BOTH]]) |Fetch a row as an array (PHP 4, PHP 5)
3157array pg_fetch_assoc(resource $result [, int $row]) |Fetch a row as an associative array (PHP 4 >= 4.3.0, PHP 5)
3158object pg_fetch_object(resource $result [, int $row [, int $result_type=PGSQL_ASSOC]]) |Fetch a row as an object (PHP 4, PHP 5)
3159string pg_fetch_result(resource $result, int $row, mixed $field) |Returns values from a result resource (PHP 4 >= 4.2.0, PHP 5)
3160array pg_fetch_row(resource $result [, int $row]) |Get a row as an enumerated array (PHP 4, PHP 5)
3161int pg_field_is_null(resource $result, int $row, mixed $field) |Test if a field is SQL NULL (PHP 4 >= 4.2.0, PHP 5)
3162string pg_field_name(resource $result, int $field_number) |Returns the name of a field (PHP 4 >= 4.2.0, PHP 5)
3163int pg_field_num(resource $result, string $field_name) |Returns the field number of the named field (PHP 4 >= 4.2.0, PHP 5)
3164int pg_field_prtlen(resource $result, int $row_number, mixed $field_name_or_number) |Returns the printed length (PHP 4 >= 4.2.0, PHP 5)
3165int pg_field_size(resource $result, int $field_number) |Returns the internal storage size of the named field (PHP 4 >= 4.2.0, PHP 5)
3166mixed pg_field_table(resource $result, int $field_number [, bool $oid_only=false]) |Returns the name or oid of the tables field (PHP 5 >= 5.2.0)
3167int pg_field_type_oid(resource $result, int $field_number) |Returns the type ID (OID) for the corresponding field number (PHP 5 >= 5.1.0)
3168string pg_field_type(resource $result, int $field_number) |Returns the type name for the corresponding field number (PHP 4 >= 4.2.0, PHP 5)
3169bool pg_free_result(resource $result) |Free result memory (PHP 4 >= 4.2.0, PHP 5)
3170array pg_get_notify(resource $connection [, int $result_type]) |Gets SQL NOTIFY message (PHP 4 >= 4.3.0, PHP 5)
3171int pg_get_pid(resource $connection) |Gets the backend's process ID (PHP 4 >= 4.3.0, PHP 5)
3172resource pg_get_result( [resource $connection]) |Get asynchronous query result (PHP 4 >= 4.2.0, PHP 5)
3173string pg_host( [resource $connection]) |Returns the host name associated with the connection (PHP 4, PHP 5)
3174mixed pg_insert(resource $connection, string $table_name, array $assoc_array [, int $options=PGSQL_DML_EXEC]) |Insert array into table (PHP 4 >= 4.3.0, PHP 5)
3175string pg_last_error( [resource $connection]) |Get the last error message string of a connection (PHP 4 >= 4.2.0, PHP 5)
3176string pg_last_notice(resource $connection) |Returns the last notice message from PostgreSQL server (PHP 4 >= 4.0.6, PHP 5)
3177string pg_last_oid(resource $result) |Returns the last row's OID (PHP 4 >= 4.2.0, PHP 5)
3178bool pg_lo_close(resource $large_object) |Close a large object (PHP 4 >= 4.2.0, PHP 5)
3179int pg_lo_create( [resource $connection [, mixed $object_id]]) |Create a large object (PHP 4 >= 4.2.0, PHP 5)
3180bool pg_lo_export( [resource $connection], int $oid, string $pathname) |Export a large object to file (PHP 4 >= 4.2.0, PHP 5)
3181int pg_lo_import( [resource $connection], string $pathname [, mixed $object_id]) |Import a large object from file (PHP 4 >= 4.2.0, PHP 5)
3182resource pg_lo_open(resource $connection, int $oid, string $mode) |Open a large object (PHP 4 >= 4.2.0, PHP 5)
3183int pg_lo_read_all(resource $large_object) |Reads an entire large object and send straight to browser (PHP 4 >= 4.2.0, PHP 5)
3184string pg_lo_read(resource $large_object [, int $len=8192]) |Read a large object (PHP 4 >= 4.2.0, PHP 5)
3185bool pg_lo_seek(resource $large_object, int $offset [, int $whence=PGSQL_SEEK_CUR]) |Seeks position within a large object (PHP 4 >= 4.2.0, PHP 5)
3186int pg_lo_tell(resource $large_object) |Returns current seek position a of large object (PHP 4 >= 4.2.0, PHP 5)
3187bool pg_lo_unlink(resource $connection, int $oid) |Delete a large object (PHP 4 >= 4.2.0, PHP 5)
3188int pg_lo_write(resource $large_object, string $data [, int $len]) |Write to a large object (PHP 4 >= 4.2.0, PHP 5)
3189array pg_meta_data(resource $connection, string $table_name) |Get meta data for table (PHP 4 >= 4.3.0, PHP 5)
3190int pg_num_fields(resource $result) |Returns the number of fields in a result (PHP 4 >= 4.2.0, PHP 5)
3191int pg_num_rows(resource $result) |Returns the number of rows in a result (PHP 4 >= 4.2.0, PHP 5)
3192string pg_options( [resource $connection]) |Get the options associated with the connection (PHP 4, PHP 5)
3193string pg_parameter_status( [resource $connection], string $param_name) |Looks up a current parameter setting of the server. (PHP 5)
3194resource pg_pconnect(string $connection_string [, int $connect_type]) |Open a persistent PostgreSQL connection (PHP 4, PHP 5)
3195bool pg_ping( [resource $connection]) |Ping database connection (PHP 4 >= 4.3.0, PHP 5)
3196int pg_port( [resource $connection]) |Return the port number associated with the connection (PHP 4, PHP 5)
3197resource pg_prepare( [resource $connection], string $stmtname, string $query) |Submits a request to create a prepared statement with the given parameters, and waits for completion. (PHP 5 >= 5.1.0)
3198bool pg_put_line( [resource $connection], string $data) |Send a NULL-terminated string to PostgreSQL backend (PHP 4 >= 4.0.3, PHP 5)
3199resource pg_query_params( [resource $connection], string $query, array $params) |Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text. (PHP 5 >= 5.1.0)
3200resource pg_query( [resource $connection], string $query) |Execute a query (PHP 4 >= 4.2.0, PHP 5)
3201string pg_result_error_field(resource $result, int $fieldcode) |Returns an individual field of an error report. (PHP 5 >= 5.1.0)
3202string pg_result_error(resource $result) |Get error message associated with result (PHP 4 >= 4.2.0, PHP 5)
3203bool pg_result_seek(resource $result, int $offset) |Set internal row offset in result resource (PHP 4 >= 4.3.0, PHP 5)
3204mixed pg_result_status(resource $result [, int $type=PGSQL_STATUS_LONG]) |Get status of query result (PHP 4 >= 4.2.0, PHP 5)
3205mixed pg_select(resource $connection, string $table_name, array $assoc_array [, int $options=PGSQL_DML_EXEC]) |Select records (PHP 4 >= 4.3.0, PHP 5)
3206bool pg_send_execute(resource $connection, string $stmtname, array $params) |Sends a request to execute a prepared statement with given parameters, without waiting for the result(s). (PHP 5 >= 5.1.0)
3207bool pg_send_prepare(resource $connection, string $stmtname, string $query) |Sends a request to create a prepared statement with the given parameters, without waiting for completion. (PHP 5 >= 5.1.0)
3208bool pg_send_query_params(resource $connection, string $query, array $params) |Submits a command and separate parameters to the server without waiting for the result(s). (PHP 5 >= 5.1.0)
3209bool pg_send_query(resource $connection, string $query) |Sends asynchronous query (PHP 4 >= 4.2.0, PHP 5)
3210int pg_set_client_encoding( [resource $connection], string $encoding) |Set the client encoding (PHP 4 >= 4.0.3, PHP 5)
3211int pg_set_error_verbosity( [resource $connection], int $verbosity) |Determines the verbosity of messages returned by pg_last_error() and pg_result_error(). (PHP 5 >= 5.1.0)
3212bool pg_trace(string $pathname [, string $mode="w" [, resource $connection]]) |Enable tracing a PostgreSQL connection (PHP 4 >= 4.0.1, PHP 5)
3213int pg_transaction_status(resource $connection) |Returns the current in-transaction status of the server. (PHP 5 >= 5.1.0)
3214string pg_tty( [resource $connection]) |Return the TTY name associated with the connection (PHP 4, PHP 5)
3215string pg_unescape_bytea(string $data) |Unescape binary for bytea type (PHP 4 >= 4.3.0, PHP 5)
3216bool pg_untrace( [resource $connection]) |Disable tracing of a PostgreSQL connection (PHP 4 >= 4.0.1, PHP 5)
3217mixed pg_update(resource $connection, string $table_name, array $data, array $condition [, int $options=PGSQL_DML_EXEC]) |Update table (PHP 4 >= 4.3.0, PHP 5)
3218array pg_version( [resource $connection]) |Returns an array with client, protocol and server version (when available) (PHP 5)
3219bool php_check_syntax(string $filename [, string& $error_message]) |Check the PHP syntax of (and execute) the specified file (PHP 5 <= 5.0.4)
3220string php_ini_loaded_file() |Retrieve a path to the loaded php.ini file (PHP 5 >= 5.2.4)
3221string php_ini_scanned_files() |Return a list of .ini files parsed from the additional ini dir (PHP 4 >= 4.3.0, PHP 5)
3222string php_logo_guid() |Gets the logo guid (PHP 4, PHP 5 < 5.5)
3223string php_sapi_name() |Returns the type of interface between web server and PHP (PHP 4 >= 4.0.1, PHP 5)
3224string php_strip_whitespace(string $filename) |Return source with stripped comments and whitespace (PHP 5)
3225string php_uname( [string $mode="a"]) |Returns information about the operating system PHP is running on (PHP 4 >= 4.0.2, PHP 5)
3226bool phpcredits( [int $flag=CREDITS_ALL]) |Prints out the credits for PHP (PHP 4, PHP 5)
3227bool phpinfo( [int $what=INFO_ALL]) |Outputs information about PHP's configuration (PHP 4, PHP 5)
3228string phpversion( [string $extension]) |Gets the current PHP version (PHP 4, PHP 5)
3229float pi() |Get value of pi (PHP 4, PHP 5)
3230bool png2wbmp(string $pngname, string $wbmpname, int $dest_height, int $dest_width, int $threshold) |Convert PNG image file to WBMP image file (PHP 4 >= 4.0.5, PHP 5)
3231resource popen(string $command, string $mode) |Opens process file pointer (PHP 4, PHP 5)
3232bool posix_access(string $file [, int $mode=POSIX_F_OK]) |Determine accessibility of a file (PHP 5 >= 5.1.0)
3233string posix_ctermid() |Get path name of controlling terminal (PHP 4, PHP 5)
3234int posix_get_last_error() |Retrieve the error number set by the last posix function that failed (PHP 4 >= 4.2.0, PHP 5)
3235string posix_getcwd() |Pathname of current directory (PHP 4, PHP 5)
3236int posix_getegid() |Return the effective group ID of the current process (PHP 4, PHP 5)
3237int posix_geteuid() |Return the effective user ID of the current process (PHP 4, PHP 5)
3238int posix_getgid() |Return the real group ID of the current process (PHP 4, PHP 5)
3239array posix_getgrgid(int $gid) |Return info about a group by group id (PHP 4, PHP 5)
3240array posix_getgrnam(string $name) |Return info about a group by name (PHP 4, PHP 5)
3241array posix_getgroups() |Return the group set of the current process (PHP 4, PHP 5)
3242string posix_getlogin() |Return login name (PHP 4, PHP 5)
3243int posix_getpgid(int $pid) |Get process group id for job control (PHP 4, PHP 5)
3244int posix_getpgrp() |Return the current process group identifier (PHP 4, PHP 5)
3245int posix_getpid() |Return the current process identifier (PHP 4, PHP 5)
3246int posix_getppid() |Return the parent process identifier (PHP 4, PHP 5)
3247array posix_getpwnam(string $username) |Return info about a user by username (PHP 4, PHP 5)
3248array posix_getpwuid(int $uid) |Return info about a user by user id (PHP 4, PHP 5)
3249array posix_getrlimit() |Return info about system resource limits (PHP 4, PHP 5)
3250int posix_getsid(int $pid) |Get the current sid of the process (PHP 4, PHP 5)
3251int posix_getuid() |Return the real user ID of the current process (PHP 4, PHP 5)
3252bool posix_initgroups(string $name, int $base_group_id) |Calculate the group access list (PHP 5 >= 5.2.0)
3253bool posix_isatty(int $fd) |Determine if a file descriptor is an interactive terminal (PHP 4, PHP 5)
3254bool posix_kill(int $pid, int $sig) |Send a signal to a process (PHP 4, PHP 5)
3255bool posix_mkfifo(string $pathname, int $mode) |Create a fifo special file (a named pipe) (PHP 4, PHP 5)
3256bool posix_mknod(string $pathname, int $mode [, int $major=0 [, int $minor=0]]) |Create a special or ordinary file (POSIX.1) (PHP 5 >= 5.1.0)
3257bool posix_setegid(int $gid) |Set the effective GID of the current process (PHP 4 >= 4.0.2, PHP 5)
3258bool posix_seteuid(int $uid) |Set the effective UID of the current process (PHP 4 >= 4.0.2, PHP 5)
3259bool posix_setgid(int $gid) |Set the GID of the current process (PHP 4, PHP 5)
3260bool posix_setpgid(int $pid, int $pgid) |Set process group id for job control (PHP 4, PHP 5)
3261int posix_setsid() |Make the current process a session leader (PHP 4, PHP 5)
3262bool posix_setuid(int $uid) |Set the UID of the current process (PHP 4, PHP 5)
3263string posix_strerror(int $errno) |Retrieve the system error message associated with the given errno (PHP 4 >= 4.2.0, PHP 5)
3264array posix_times() |Get process times (PHP 4, PHP 5)
3265string posix_ttyname(int $fd) |Determine terminal device name (PHP 4, PHP 5)
3266array posix_uname() |Get system name (PHP 4, PHP 5)
3267number pow(number $base, number $exp) |Exponential expression (PHP 4, PHP 5)
3268mixed preg_filter(mixed $pattern, mixed $replacement, mixed $subject [, int $limit=-1 [, int& $count]]) |Perform a regular expression search and replace (PHP 5 >= 5.3.0)
3269array preg_grep(string $pattern, array $input [, int $flags=0]) |Return array entries that match the pattern (PHP 4, PHP 5)
3270int preg_last_error() |Returns the error code of the last PCRE regex execution (PHP 5 >= 5.2.0)
3271int preg_match_all(string $pattern, string $subject [, array& $matches [, int $flags= PREG_PATTERN_ORDER [, int $offset=0]]]) |Perform a global regular expression match (PHP 4, PHP 5)
3272int preg_match(string $pattern, string $subject [, array& $matches [, int $flags=0 [, int $offset=0]]]) |Perform a regular expression match (PHP 4, PHP 5)
3273string preg_quote(string $str [, string $delimiter= NULL]) |Quote regular expression characters (PHP 4, PHP 5)
3274mixed preg_replace_callback(mixed $pattern, callable $callback, mixed $subject [, int $limit=-1 [, int& $count]]) |Perform a regular expression search and replace using a callback (PHP 4 >= 4.0.5, PHP 5)
3275mixed preg_replace(mixed $pattern, mixed $replacement, mixed $subject [, int $limit=-1 [, int& $count]]) |Perform a regular expression search and replace (PHP 4, PHP 5)
3276array preg_split(string $pattern, string $subject [, int $limit=-1 [, int $flags=0]]) |Split string by a regular expression (PHP 4, PHP 5)
3277mixed prev(array& $array) |Rewind the internal array pointer (PHP 4, PHP 5)
3278mixed print_r(mixed $expression [, bool $return=false]) |Prints human-readable information about a variable (PHP 4, PHP 5)
3279int print(string $arg) |Output a string (PHP 4, PHP 5)
3280void printer_abort(resource $printer_handle) |Deletes the printer's spool file (PECL printer SVN)
3281void printer_close(resource $printer_handle) |Close an open printer connection (PECL printer SVN)
3282resource printer_create_brush(int $style, string $color) |Create a new brush (PECL printer SVN)
3283void printer_create_dc(resource $printer_handle) |Create a new device context (PECL printer SVN)
3284resource printer_create_font(string $face, int $height, int $width, int $font_weight, bool $italic, bool $underline, bool $strikeout, int $orientation) |Create a new font (PECL printer SVN)
3285resource printer_create_pen(int $style, int $width, string $color) |Create a new pen (PECL printer SVN)
3286void printer_delete_brush(resource $brush_handle) |Delete a brush (PECL printer SVN)
3287bool printer_delete_dc(resource $printer_handle) |Delete a device context (PECL printer SVN)
3288void printer_delete_font(resource $font_handle) |Delete a font (PECL printer SVN)
3289void printer_delete_pen(resource $pen_handle) |Delete a pen (PECL printer SVN)
3290bool printer_draw_bmp(resource $printer_handle, string $filename, int $x, int $y [, int $width], int $height) |Draw a bmp (PECL printer SVN)
3291void printer_draw_chord(resource $printer_handle, int $rec_x, int $rec_y, int $rec_x1, int $rec_y1, int $rad_x, int $rad_y, int $rad_x1, int $rad_y1) |Draw a chord (PECL printer SVN)
3292void printer_draw_elipse(resource $printer_handle, int $ul_x, int $ul_y, int $lr_x, int $lr_y) |Draw an ellipse (PECL printer SVN)
3293void printer_draw_line(resource $printer_handle, int $from_x, int $from_y, int $to_x, int $to_y) |Draw a line (PECL printer SVN)
3294void printer_draw_pie(resource $printer_handle, int $rec_x, int $rec_y, int $rec_x1, int $rec_y1, int $rad1_x, int $rad1_y, int $rad2_x, int $rad2_y) |Draw a pie (PECL printer SVN)
3295void printer_draw_rectangle(resource $printer_handle, int $ul_x, int $ul_y, int $lr_x, int $lr_y) |Draw a rectangle (PECL printer SVN)
3296void printer_draw_roundrect(resource $printer_handle, int $ul_x, int $ul_y, int $lr_x, int $lr_y, int $width, int $height) |Draw a rectangle with rounded corners (PECL printer SVN)
3297void printer_draw_text(resource $printer_handle, string $text, int $x, int $y) |Draw text (PECL printer SVN)
3298bool printer_end_doc(resource $printer_handle) |Close document (PECL printer SVN)
3299bool printer_end_page(resource $printer_handle) |Close active page (PECL printer SVN)
3300mixed printer_get_option(resource $printer_handle, string $option) |Retrieve printer configuration data (PECL printer SVN)
3301array printer_list(int $enumtype [, string $name [, int $level]]) |Return an array of printers attached to the server (PECL printer SVN)
3302int printer_logical_fontheight(resource $printer_handle, int $height) |Get logical font height (PECL printer SVN)
3303resource printer_open( [string $printername]) |Opens a connection to a printer (PECL printer SVN)
3304void printer_select_brush(resource $printer_handle, resource $brush_handle) |Select a brush (PECL printer SVN)
3305void printer_select_font(resource $printer_handle, resource $font_handle) |Select a font (PECL printer SVN)
3306void printer_select_pen(resource $printer_handle, resource $pen_handle) |Select a pen (PECL printer SVN)
3307bool printer_set_option(resource $printer_handle, int $option, mixed $value) |Configure the printer connection (PECL printer SVN)
3308bool printer_start_doc(resource $printer_handle [, string $document]) |Start a new document (PECL printer SVN)
3309bool printer_start_page(resource $printer_handle) |Start a new page (PECL printer SVN)
3310bool printer_write(resource $printer_handle, string $content) |Write data to the printer (PECL printer SVN)
3311int printf(string $format [, mixed $args [, mixed $...]]) |Output a formatted string (PHP 4, PHP 5)
3312int proc_close(resource $process) |Close a process opened by proc_open() and return the exit code of that process (PHP 4 >= 4.3.0, PHP 5)
3313array proc_get_status(resource $process) |Get information about a process opened by proc_open() (PHP 5)
3314bool proc_nice(int $increment) |Change the priority of the current process (PHP 5)
3315resource proc_open(string $cmd, array $descriptorspec, array& $pipes [, string $cwd [, array $env [, array $other_options]]]) |Execute a command and open file pointers for input/output (PHP 4 >= 4.3.0, PHP 5)
3316bool proc_terminate(resource $process [, int $signal=15]) |Kills a process opened by proc_open (PHP 5)
3317bool property_exists(mixed $class, string $property) |Checks if the object or class has a property (PHP 5 >= 5.1.0)
3318int ps_add_bookmark(resource $psdoc, string $text [, int $parent=0 [, int $open=0]]) |Add bookmark to current page (PECL ps >= 1.1.0)
3319bool ps_add_launchlink(resource $psdoc, float $llx, float $lly, float $urx, float $ury, string $filename) |Adds link which launches file (PECL ps >= 1.1.0)
3320bool ps_add_locallink(resource $psdoc, float $llx, float $lly, float $urx, float $ury, int $page, string $dest) |Adds link to a page in the same document (PECL ps >= 1.1.0)
3321bool ps_add_note(resource $psdoc, float $llx, float $lly, float $urx, float $ury, string $contents, string $title, string $icon, int $open) |Adds note to current page (PECL ps >= 1.1.0)
3322bool ps_add_pdflink(resource $psdoc, float $llx, float $lly, float $urx, float $ury, string $filename, int $page, string $dest) |Adds link to a page in a second pdf document (PECL ps >= 1.1.0)
3323bool ps_add_weblink(resource $psdoc, float $llx, float $lly, float $urx, float $ury, string $url) |Adds link to a web location (PECL ps >= 1.1.0)
3324bool ps_arc(resource $psdoc, float $x, float $y, float $radius, float $alpha, float $beta) |Draws an arc counterclockwise (PECL ps >= 1.1.0)
3325bool ps_arcn(resource $psdoc, float $x, float $y, float $radius, float $alpha, float $beta) |Draws an arc clockwise (PECL ps >= 1.1.0)
3326bool ps_begin_page(resource $psdoc, float $width, float $height) |Start a new page (PECL ps >= 1.1.0)
3327int ps_begin_pattern(resource $psdoc, float $width, float $height, float $xstep, float $ystep, int $painttype) |Start a new pattern (PECL ps >= 1.2.0)
3328int ps_begin_template(resource $psdoc, float $width, float $height) |Start a new template (PECL ps >= 1.2.0)
3329bool ps_circle(resource $psdoc, float $x, float $y, float $radius) |Draws a circle (PECL ps >= 1.1.0)
3330bool ps_clip(resource $psdoc) |Clips drawing to current path (PECL ps >= 1.1.0)
3331void ps_close_image(resource $psdoc, int $imageid) |Closes image and frees memory (PECL ps >= 1.1.0)
3332bool ps_close(resource $psdoc) |Closes a PostScript document (PECL ps >= 1.1.0)
3333bool ps_closepath_stroke(resource $psdoc) |Closes and strokes path (PECL ps >= 1.1.0)
3334bool ps_closepath(resource $psdoc) |Closes path (PECL ps >= 1.1.0)
3335bool ps_continue_text(resource $psdoc, string $text) |Continue text in next line (PECL ps >= 1.1.0)
3336bool ps_curveto(resource $psdoc, float $x1, float $y1, float $x2, float $y2, float $x3, float $y3) |Draws a curve (PECL ps >= 1.1.0)
3337bool ps_delete(resource $psdoc) |Deletes all resources of a PostScript document (PECL ps >= 1.1.0)
3338bool ps_end_page(resource $psdoc) |End a page (PECL ps >= 1.1.0)
3339bool ps_end_pattern(resource $psdoc) |End a pattern (PECL ps >= 1.2.0)
3340bool ps_end_template(resource $psdoc) |End a template (PECL ps >= 1.2.0)
3341bool ps_fill_stroke(resource $psdoc) |Fills and strokes the current path (PECL ps >= 1.1.0)
3342bool ps_fill(resource $psdoc) |Fills the current path (PECL ps >= 1.1.0)
3343int ps_findfont(resource $psdoc, string $fontname, string $encoding [, bool $embed=false]) |Loads a font (PECL ps >= 1.1.0)
3344string ps_get_buffer(resource $psdoc) |Fetches the full buffer containig the generated PS data (PECL ps >= 1.1.0)
3345string ps_get_parameter(resource $psdoc, string $name [, float $modifier]) |Gets certain parameters (PECL ps >= 1.1.0)
3346float ps_get_value(resource $psdoc, string $name [, float $modifier]) |Gets certain values (PECL ps >= 1.1.0)
3347array ps_hyphenate(resource $psdoc, string $text) |Hyphenates a word (PECL ps >= 1.1.1)
3348bool ps_include_file(resource $psdoc, string $file) |Reads an external file with raw PostScript code (PECL ps >= 1.3.4)
3349bool ps_lineto(resource $psdoc, float $x, float $y) |Draws a line (PECL ps >= 1.1.0)
3350int ps_makespotcolor(resource $psdoc, string $name [, int $reserved=0]) |Create spot color (PECL ps >= 1.1.0)
3351bool ps_moveto(resource $psdoc, float $x, float $y) |Sets current point (PECL ps >= 1.1.0)
3352resource ps_new() |Creates a new PostScript document object (PECL ps >= 1.1.0)
3353bool ps_open_file(resource $psdoc [, string $filename]) |Opens a file for output (PECL ps >= 1.1.0)
3354int ps_open_image_file(resource $psdoc, string $type, string $filename [, string $stringparam [, int $intparam=0]]) |Opens image from file (PECL ps >= 1.1.0)
3355int ps_open_image(resource $psdoc, string $type, string $source, string $data, int $lenght, int $width, int $height, int $components, int $bpc, string $params) |Reads an image for later placement (PECL ps >= 1.1.0)
3356int ps_open_memory_image(resource $psdoc, int $gd) |Takes an GD image and returns an image for placement in a PS document (PECL ps >= 1.1.0)
3357bool ps_place_image(resource $psdoc, int $imageid, float $x, float $y, float $scale) |Places image on the page (PECL ps >= 1.1.0)
3358bool ps_rect(resource $psdoc, float $x, float $y, float $width, float $height) |Draws a rectangle (PECL ps >= 1.1.0)
3359bool ps_restore(resource $psdoc) |Restore previously save context (PECL ps >= 1.1.0)
3360bool ps_rotate(resource $psdoc, float $rot) |Sets rotation factor (PECL ps >= 1.1.0)
3361bool ps_save(resource $psdoc) |Save current context (PECL ps >= 1.1.0)
3362bool ps_scale(resource $psdoc, float $x, float $y) |Sets scaling factor (PECL ps >= 1.1.0)
3363bool ps_set_border_color(resource $psdoc, float $red, float $green, float $blue) |Sets color of border for annotations (PECL ps >= 1.1.0)
3364bool ps_set_border_dash(resource $psdoc, float $black, float $white) |Sets length of dashes for border of annotations (PECL ps >= 1.1.0)
3365bool ps_set_border_style(resource $psdoc, string $style, float $width) |Sets border style of annotations (PECL ps >= 1.1.0)
3366bool ps_set_info(resource $p, string $key, string $val) |Sets information fields of document (PECL ps >= 1.1.0)
3367bool ps_set_parameter(resource $psdoc, string $name, string $value) |Sets certain parameters (PECL ps >= 1.1.0)
3368bool ps_set_text_pos(resource $psdoc, float $x, float $y) |Sets position for text output (PECL ps >= 1.1.0)
3369bool ps_set_value(resource $psdoc, string $name, float $value) |Sets certain values (PECL ps >= 1.1.0)
3370bool ps_setcolor(resource $psdoc, string $type, string $colorspace, float $c1, float $c2, float $c3, float $c4) |Sets current color (PECL ps >= 1.1.0)
3371bool ps_setdash(resource $psdoc, float $on, float $off) |Sets appearance of a dashed line (PECL ps >= 1.1.0)
3372bool ps_setflat(resource $psdoc, float $value) |Sets flatness (PECL ps >= 1.1.0)
3373bool ps_setfont(resource $psdoc, int $fontid, float $size) |Sets font to use for following output (PECL ps >= 1.1.0)
3374bool ps_setgray(resource $psdoc, float $gray) |Sets gray value (PECL ps >= 1.1.0)
3375bool ps_setlinecap(resource $psdoc, int $type) |Sets appearance of line ends (PECL ps >= 1.1.0)
3376bool ps_setlinejoin(resource $psdoc, int $type) |Sets how contected lines are joined (PECL ps >= 1.1.0)
3377bool ps_setlinewidth(resource $psdoc, float $width) |Sets width of a line (PECL ps >= 1.1.0)
3378bool ps_setmiterlimit(resource $psdoc, float $value) |Sets the miter limit (PECL ps >= 1.1.0)
3379bool ps_setoverprintmode(resource $psdoc, int $mode) |Sets overprint mode (PECL ps >= 1.3.0)
3380bool ps_setpolydash(resource $psdoc, float $arr) |Sets appearance of a dashed line (PECL ps >= 1.1.0)
3381int ps_shading_pattern(resource $psdoc, int $shadingid, string $optlist) |Creates a pattern based on a shading (PECL ps >= 1.3.0)
3382int ps_shading(resource $psdoc, string $type, float $x0, float $y0, float $x1, float $y1, float $c1, float $c2, float $c3, float $c4, string $optlist) |Creates a shading for later use (PECL ps >= 1.3.0)
3383bool ps_shfill(resource $psdoc, int $shadingid) |Fills an area with a shading (PECL ps >= 1.3.0)
3384int ps_show_boxed(resource $psdoc, string $text, float $left, float $bottom, float $width, float $height, string $hmode [, string $feature]) |Output text in a box (PECL ps >= 1.1.0)
3385bool ps_show_xy(resource $psdoc, string $text, float $x, float $y) |Output text at given position (PECL ps >= 1.1.0)
3386bool ps_show_xy2(resource $psdoc, string $text, int $len, float $xcoor, float $ycoor) |Output text at position (PECL ps >= 1.1.0)
3387bool ps_show(resource $psdoc, string $text) |Output text (PECL ps >= 1.1.0)
3388bool ps_show2(resource $psdoc, string $text, int $len) |Output a text at current position (PECL ps >= 1.1.0)
3389array ps_string_geometry(resource $psdoc, string $text [, int $fontid=0 [, float $size=0.0]]) |Gets geometry of a string (PECL ps >= 1.2.0)
3390float ps_stringwidth(resource $psdoc, string $text [, int $fontid=0 [, float $size=0.0]]) |Gets width of a string (PECL ps >= 1.1.0)
3391bool ps_stroke(resource $psdoc) |Draws the current path (PECL ps >= 1.1.0)
3392string ps_symbol_name(resource $psdoc, int $ord [, int $fontid=0]) |Gets name of a glyph (PECL ps >= 1.2.0)
3393float ps_symbol_width(resource $psdoc, int $ord [, int $fontid=0 [, float $size=0.0]]) |Gets width of a glyph (PECL ps >= 1.2.0)
3394bool ps_symbol(resource $psdoc, int $ord) |Output a glyph (PECL ps >= 1.2.0)
3395bool ps_translate(resource $psdoc, float $x, float $y) |Sets translation (PECL ps >= 1.1.0)
3396bool pspell_add_to_personal(int $dictionary_link, string $word) |Add the word to a personal wordlist (PHP 4 >= 4.0.2, PHP 5)
3397bool pspell_add_to_session(int $dictionary_link, string $word) |Add the word to the wordlist in the current session (PHP 4 >= 4.0.2, PHP 5)
3398bool pspell_check(int $dictionary_link, string $word) |Check a word (PHP 4 >= 4.0.2, PHP 5)
3399bool pspell_clear_session(int $dictionary_link) |Clear the current session (PHP 4 >= 4.0.2, PHP 5)
3400int pspell_config_create(string $language [, string $spelling [, string $jargon [, string $encoding]]]) |Create a config used to open a dictionary (PHP 4 >= 4.0.2, PHP 5)
3401bool pspell_config_data_dir(int $conf, string $directory) |location of language data files (PHP 5)
3402bool pspell_config_dict_dir(int $conf, string $directory) |Location of the main word list (PHP 5)
3403bool pspell_config_ignore(int $dictionary_link, int $n) |Ignore words less than N characters long (PHP 4 >= 4.0.2, PHP 5)
3404bool pspell_config_mode(int $dictionary_link, int $mode) |Change the mode number of suggestions returned (PHP 4 >= 4.0.2, PHP 5)
3405bool pspell_config_personal(int $dictionary_link, string $file) |Set a file that contains personal wordlist (PHP 4 >= 4.0.2, PHP 5)
3406bool pspell_config_repl(int $dictionary_link, string $file) |Set a file that contains replacement pairs (PHP 4 >= 4.0.2, PHP 5)
3407bool pspell_config_runtogether(int $dictionary_link, bool $flag) |Consider run-together words as valid compounds (PHP 4 >= 4.0.2, PHP 5)
3408bool pspell_config_save_repl(int $dictionary_link, bool $flag) |Determine whether to save a replacement pairs list along with the wordlist (PHP 4 >= 4.0.2, PHP 5)
3409int pspell_new_config(int $config) |Load a new dictionary with settings based on a given config (PHP 4 >= 4.0.2, PHP 5)
3410int pspell_new_personal(string $personal, string $language [, string $spelling [, string $jargon [, string $encoding [, int $mode=0]]]]) |Load a new dictionary with personal wordlist (PHP 4 >= 4.0.2, PHP 5)
3411int pspell_new(string $language [, string $spelling [, string $jargon [, string $encoding [, int $mode=0]]]]) |Load a new dictionary (PHP 4 >= 4.0.2, PHP 5)
3412bool pspell_save_wordlist(int $dictionary_link) |Save the personal wordlist to a file (PHP 4 >= 4.0.2, PHP 5)
3413bool pspell_store_replacement(int $dictionary_link, string $misspelled, string $correct) |Store a replacement pair for a word (PHP 4 >= 4.0.2, PHP 5)
3414array pspell_suggest(int $dictionary_link, string $word) |Suggest spellings of a word (PHP 4 >= 4.0.2, PHP 5)
3415bool putenv(string $setting) |Sets the value of an environment variable (PHP 4, PHP 5)
3416bool px_close(resource $pxdoc) |Closes a paradox database (PECL paradox >= 1.0.0)
3417bool px_create_fp(resource $pxdoc, resource $file, array $fielddesc) |Create a new paradox database (PECL paradox >= 1.0.0)
3418string px_date2string(resource $pxdoc, int $value, string $format) |Converts a date into a string. (PECL paradox >= 1.4.0)
3419bool px_delete_record(resource $pxdoc, int $num) |Deletes record from paradox database (PECL paradox >= 1.4.0)
3420bool px_delete(resource $pxdoc) |Deletes resource of paradox database (PECL paradox >= 1.0.0)
3421array px_get_field(resource $pxdoc, int $fieldno) |Returns the specification of a single field (PECL paradox >= 1.0.0)
3422array px_get_info(resource $pxdoc) |Return lots of information about a paradox file (PECL paradox >= 1.0.0)
3423string px_get_parameter(resource $pxdoc, string $name) |Gets a parameter (PECL paradox >= 1.1.0)
3424array px_get_record(resource $pxdoc, int $num [, int $mode=0]) |Returns record of paradox database (PECL paradox >= 1.0.0)
3425array px_get_schema(resource $pxdoc [, int $mode=0]) |Returns the database schema (PECL paradox >= 1.0.0)
3426float px_get_value(resource $pxdoc, string $name) |Gets a value (PECL paradox >= 1.1.0)
3427int px_insert_record(resource $pxdoc, array $data) |Inserts record into paradox database (PECL paradox >= 1.4.0)
3428resource px_new() |Create a new paradox object (PECL paradox >= 1.0.0)
3429int px_numfields(resource $pxdoc) |Returns number of fields in a database (PECL paradox >= 1.0.0)
3430int px_numrecords(resource $pxdoc) |Returns number of records in a database (PECL paradox >= 1.0.0)
3431bool px_open_fp(resource $pxdoc, resource $file) |Open paradox database (PECL paradox >= 1.0.0)
3432bool px_put_record(resource $pxdoc, array $record [, int $recpos=-1]) |Stores record into paradox database (PECL paradox >= 1.0.0)
3433array px_retrieve_record(resource $pxdoc, int $num [, int $mode=0]) |Returns record of paradox database (PECL paradox >= 1.4.0)
3434bool px_set_blob_file(resource $pxdoc, string $filename) |Sets the file where blobs are read from (PECL paradox >= 1.3.0)
3435bool px_set_parameter(resource $pxdoc, string $name, string $value) |Sets a parameter (PECL paradox >= 1.1.0)
3436void px_set_tablename(resource $pxdoc, string $name) |Sets the name of a table (deprecated) (PECL paradox >= 1.0.0)
3437bool px_set_targetencoding(resource $pxdoc, string $encoding) |Sets the encoding for character fields (deprecated) (PECL paradox >= 1.0.0)
3438bool px_set_value(resource $pxdoc, string $name, float $value) |Sets a value (PECL paradox >= 1.1.0)
3439string px_timestamp2string(resource $pxdoc, float $value, string $format) |Converts the timestamp into a string. (PECL paradox >= 1.4.0)
3440bool px_update_record(resource $pxdoc, array $data, int $num) |Updates record in paradox database (PECL paradox >= 1.4.0)
3441string qdom_error() |Returns the error string from the last QDOM operation or FALSE if no errors occurred (PHP 4 >= 4.0.5)
3442QDomDocument qdom_tree(string $doc) |Creates a tree of an XML string (PHP 4 >= 4.0.4)
3443string quoted_printable_decode(string $str) |Convert a quoted-printable string to an 8 bit string (PHP 4, PHP 5)
3444string quoted_printable_encode(string $str) |Convert a 8 bit string to a quoted-printable string (PHP 5 >= 5.3.0)
3445string quotemeta(string $str) |Quote meta characters (PHP 4, PHP 5)
3446float rad2deg(float $number) |Converts the radian number to the equivalent number in degrees (PHP 4, PHP 5)
3447resource radius_acct_open() |Creates a Radius handle for accounting (PECL radius >= 1.1.0)
3448bool radius_add_server(resource $radius_handle, string $hostname, int $port, string $secret, int $timeout, int $max_tries) |Adds a server (PECL radius >= 1.1.0)
3449resource radius_auth_open() |Creates a Radius handle for authentication (PECL radius >= 1.1.0)
3450bool radius_close(resource $radius_handle) |Frees all ressources (PECL radius >= 1.1.0)
3451bool radius_config(resource $radius_handle, string $file) |Causes the library to read the given configuration file (PECL radius >= 1.1.0)
3452bool radius_create_request(resource $radius_handle, int $type) |Create accounting or authentication request (PECL radius >= 1.1.0)
3453string radius_cvt_addr(string $data) |Converts raw data to IP-Address (PECL radius >= 1.1.0)
3454int radius_cvt_int(string $data) |Converts raw data to integer (PECL radius >= 1.1.0)
3455string radius_cvt_string(string $data) |Converts raw data to string (PECL radius >= 1.1.0)
3456string radius_demangle_mppe_key(resource $radius_handle, string $mangled) |Derives mppe-keys from mangled data (PECL radius >= 1.2.0)
3457string radius_demangle(resource $radius_handle, string $mangled) |Demangles data (PECL radius >= 1.2.0)
3458mixed radius_get_attr(resource $radius_handle) |Extracts an attribute (PECL radius >= 1.1.0)
3459array radius_get_vendor_attr(string $data) |Extracts a vendor specific attribute (PECL radius >= 1.1.0)
3460bool radius_put_addr(resource $radius_handle, int $type, string $addr) |Attaches an IP-Address attribute (PECL radius >= 1.1.0)
3461bool radius_put_attr(resource $radius_handle, int $type, string $value) |Attaches a binary attribute (PECL radius >= 1.1.0)
3462bool radius_put_int(resource $radius_handle, int $type, int $value) |Attaches an integer attribute (PECL radius >= 1.1.0)
3463bool radius_put_string(resource $radius_handle, int $type, string $value) |Attaches a string attribute (PECL radius >= 1.1.0)
3464bool radius_put_vendor_addr(resource $radius_handle, int $vendor, int $type, string $addr) |Attaches a vendor specific IP-Address attribute (PECL radius >= 1.1.0)
3465bool radius_put_vendor_attr(resource $radius_handle, int $vendor, int $type, string $value) |Attaches a vendor specific binary attribute (PECL radius >= 1.1.0)
3466bool radius_put_vendor_int(resource $radius_handle, int $vendor, int $type, int $value) |Attaches a vendor specific integer attribute (PECL radius >= 1.1.0)
3467bool radius_put_vendor_string(resource $radius_handle, int $vendor, int $type, string $value) |Attaches a vendor specific string attribute (PECL radius >= 1.1.0)
3468string radius_request_authenticator(resource $radius_handle) |Returns the request authenticator (PECL radius >= 1.1.0)
3469int radius_send_request(resource $radius_handle) |Sends the request and waites for a reply (PECL radius >= 1.1.0)
3470string radius_server_secret(resource $radius_handle) |Returns the shared secret (PECL radius >= 1.1.0)
3471string radius_strerror(resource $radius_handle) |Returns an error message (PECL radius >= 1.1.0)
3472int rand() |Generate a random integer (PHP 4, PHP 5)
3473array range(mixed $start, mixed $end [, number $step=1]) |Create an array containing a range of elements (PHP 4, PHP 5)
3474string rar_wrapper_cache_stats() |Cache hits and misses for the URL wrapper (PECL rar >= 3.0.0)
3475string rawurldecode(string $str) |Decode URL-encoded strings (PHP 4, PHP 5)
3476string rawurlencode(string $str) |URL-encode according to RFC 3986 (PHP 4, PHP 5)
3477string readdir( [resource $dir_handle]) |Read entry from directory handle (PHP 4, PHP 5)
3478int readfile(string $filename [, bool $use_include_path=false [, resource $context]]) |Outputs a file (PHP 4, PHP 5)
3479int readgzfile(string $filename [, int $use_include_path=0]) |Output a gz-file (PHP 4, PHP 5)
3480bool readline_add_history(string $line) |Adds a line to the history (PHP 4, PHP 5)
3481bool readline_callback_handler_install(string $prompt, callable $callback) |Initializes the readline callback interface and terminal, prints the prompt and returns immediately (PHP 5 >= 5.1.0)
3482bool readline_callback_handler_remove() |Removes a previously installed callback handler and restores terminal settings (PHP 5 >= 5.1.0)
3483void readline_callback_read_char() |Reads a character and informs the readline callback interface when a line is received (PHP 5 >= 5.1.0)
3484bool readline_clear_history() |Clears the history (PHP 4, PHP 5)
3485bool readline_completion_function(callable $function) |Registers a completion function (PHP 4, PHP 5)
3486mixed readline_info( [string $varname [, string $newvalue]]) |Gets/sets various internal readline variables (PHP 4, PHP 5)
3487array readline_list_history() |Lists the history (PHP 4, PHP 5)
3488void readline_on_new_line() |Inform readline that the cursor has moved to a new line (PHP 5 >= 5.1.0)
3489bool readline_read_history( [string $filename]) |Reads the history (PHP 4, PHP 5)
3490void readline_redisplay() |Redraws the display (PHP 5 >= 5.1.0)
3491bool readline_write_history( [string $filename]) |Writes the history (PHP 4, PHP 5)
3492string readline( [string $prompt]) |Reads a line (PHP 4, PHP 5)
3493string readlink(string $path) |Returns the target of a symbolic link (PHP 4, PHP 5)
3494array realpath_cache_get() |Get realpath cache entries (PHP 5 >= 5.3.2)
3495int realpath_cache_size() |Get realpath cache size (PHP 5 >= 5.3.2)
3496string realpath(string $path) |Returns canonicalized absolute pathname (PHP 4, PHP 5)
3497bool recode_file(string $request, resource $input, resource $output) |Recode from file to file according to recode request (PHP 4, PHP 5)
3498string recode_string(string $request, string $string) |Recode a string according to a recode request (PHP 4, PHP 5)
3499void register_shutdown_function(callable $callback [, mixed $parameter [, mixed $...]]) |Register a function for execution on shutdown (PHP 4, PHP 5)
3500bool register_tick_function(callable $function [, mixed $arg [, mixed $...]]) |Register a function for execution on each tick (PHP 4 >= 4.0.3, PHP 5)
3501bool rename_function(string $original_name, string $new_name) |Renames orig_name to new_name in the global function table (PECL apd >= 0.2)
3502bool rename(string $oldname, string $newname [, resource $context]) |Renames a file or directory (PHP 4, PHP 5)
3503mixed reset(array& $array) |Set the internal pointer of an array to its first element (PHP 4, PHP 5)
3504bool restore_error_handler() |Restores the previous error handler function (PHP 4 >= 4.0.1, PHP 5)
3505bool restore_exception_handler() |Restores the previously defined exception handler function (PHP 5)
3506void restore_include_path() |Restores the value of the include_path configuration option (PHP 4 >= 4.3.0, PHP 5)
3507bool rewind(resource $handle) |Rewind the position of a file pointer (PHP 4, PHP 5)
3508void rewinddir( [resource $dir_handle]) |Rewind directory handle (PHP 4, PHP 5)
3509bool rmdir(string $dirname [, resource $context]) |Removes directory (PHP 4, PHP 5)
3510float round(float $val [, int $precision=0 [, int $mode=PHP_ROUND_HALF_UP]]) |Rounds a float (PHP 4, PHP 5)
3511bool rpm_close(resource $rpmr) |Closes an RPM file (PECL rpmreader >= 0.1.0)
3512mixed rpm_get_tag(resource $rpmr, int $tagnum) |Retrieves a header tag from an RPM file (PECL rpmreader >= 0.1.0)
3513bool rpm_is_valid(string $filename) |Tests a filename for validity as an RPM file (PECL rpmreader >= 0.1.0)
3514resource rpm_open(string $filename) |Opens an RPM file (PECL rpmreader >= 0.1.0)
3515string rpm_version() |Returns a string representing the current version of the rpmreader extension (PECL rpmreader >= 0.3.0)
3516bool rrd_create(string $filename, array $options) |Creates rrd database file (PECL rrd >= 0.9.0)
3517string rrd_error() |Gets latest error message. (PECL rrd >= 0.9.0)
3518array rrd_fetch(string $filename, array $options) |Fetch the data for graph as array. (PECL rrd >= 0.9.0)
3519int rrd_first(string $file [, int $raaindex=0]) |Gets the timestamp of the first sample from rrd file. (PECL rrd >= 0.9.0)
3520array rrd_graph(string $filename, array $options) |Creates image from a data. (PECL rrd >= 0.9.0)
3521array rrd_info(string $filename) |Gets information about rrd file (PECL rrd >= 0.9.0)
3522int rrd_last(string $filename) |Gets unix timestamp of the last sample. (PECL rrd >= 0.9.0)
3523array rrd_lastupdate(string $filename) |Gets information about last updated data. (PECL rrd >= 0.9.0)
3524bool rrd_restore(string $xml_file, string $rrd_file [, array $options]) |Restores the RRD file from XML dump. (PECL rrd >= 0.9.0)
3525bool rrd_tune(string $filename, array $options) |Tunes some RRD database file header options. (PECL rrd >= 0.9.0)
3526bool rrd_update(string $filename, array $options) |Updates the RRD database. (PECL rrd >= 0.9.0)
3527string rrd_version() |Gets information about underlying rrdtool library (PECL rrd >= 1.0.0)
3528array rrd_xport(array $options) |Exports the information about RRD database. (PECL rrd >= 0.9.0)
3529bool rsort(array& $array [, int $sort_flags=SORT_REGULAR]) |Sort an array in reverse order (PHP 4, PHP 5)
3530string rtrim(string $str [, string $charlist]) |Strip whitespace (or other characters) from the end of a string (PHP 4, PHP 5)
3531bool runkit_class_adopt(string $classname, string $parentname) |Convert a base class to an inherited class, add ancestral methods when appropriate (PECL runkit >= 0.7.0)
3532bool runkit_class_emancipate(string $classname) |Convert an inherited class to a base class, removes any method whose scope is ancestral (PECL runkit >= 0.7.0)
3533bool runkit_constant_add(string $constname, mixed $value) |Similar to define(), but allows defining in class definitions as well (PECL runkit >= 0.7.0)
3534bool runkit_constant_redefine(string $constname, mixed $newvalue) |Redefine an already defined constant (PECL runkit >= 0.7.0)
3535bool runkit_constant_remove(string $constname) |Remove/Delete an already defined constant (PECL runkit >= 0.7.0)
3536bool runkit_function_add(string $funcname, string $arglist, string $code) |Add a new function, similar to create_function() (PECL runkit >= 0.7.0)
3537bool runkit_function_copy(string $funcname, string $targetname) |Copy a function to a new function name (PECL runkit >= 0.7.0)
3538bool runkit_function_redefine(string $funcname, string $arglist, string $code) |Replace a function definition with a new implementation (PECL runkit >= 0.7.0)
3539bool runkit_function_remove(string $funcname) |Remove a function definition (PECL runkit >= 0.7.0)
3540bool runkit_function_rename(string $funcname, string $newname) |Change a function's name (PECL runkit >= 0.7.0)
3541bool runkit_import(string $filename [, int $flags=RUNKIT_IMPORT_CLASS_METHODS]) |Process a PHP file importing function and class definitions, overwriting where appropriate (PECL runkit >= 0.7.0)
3542bool runkit_lint_file(string $filename) |Check the PHP syntax of the specified file (PECL runkit >= 0.7.0)
3543bool runkit_lint(string $code) |Check the PHP syntax of the specified php code (PECL runkit >= 0.7.0)
3544bool runkit_method_add(string $classname, string $methodname, string $args, string $code [, int $flags=RUNKIT_ACC_PUBLIC]) |Dynamically adds a new method to a given class (PECL runkit >= 0.7.0)
3545bool runkit_method_copy(string $dClass, string $dMethod, string $sClass [, string $sMethod]) |Copies a method from class to another (PECL runkit >= 0.7.0)
3546bool runkit_method_redefine(string $classname, string $methodname, string $args, string $code [, int $flags=RUNKIT_ACC_PUBLIC]) |Dynamically changes the code of the given method (PECL runkit >= 0.7.0)
3547bool runkit_method_remove(string $classname, string $methodname) |Dynamically removes the given method (PECL runkit >= 0.7.0)
3548bool runkit_method_rename(string $classname, string $methodname, string $newname) |Dynamically changes the name of the given method (PECL runkit >= 0.7.0)
3549bool runkit_return_value_used() |Determines if the current functions return value will be used (PECL runkit >= 0.8.0)
3550mixed runkit_sandbox_output_handler(object $sandbox [, mixed $callback]) |Specify a function to capture and/or process output from a runkit sandbox (PECL runkit >= 0.7.0)
3551array runkit_superglobals() |Return numerically indexed array of registered superglobals (PECL runkit >= 0.7.0)
3552array scandir(string $directory [, int $sorting_order=SCANDIR_SORT_ASCENDING [, resource $context]]) |List files and directories inside the specified path (PHP 5)
3553bool sem_acquire(resource $sem_identifier) |Acquire a semaphore (PHP 4, PHP 5)
3554resource sem_get(int $key [, int $max_acquire=1 [, int $perm=0666 [, int $auto_release=1]]]) |Get a semaphore id (PHP 4, PHP 5)
3555bool sem_release(resource $sem_identifier) |Release a semaphore (PHP 4, PHP 5)
3556bool sem_remove(resource $sem_identifier) |Remove a semaphore (PHP 4 >= 4.1.0, PHP 5)
3557string serialize(mixed $value) |Generates a storable representation of a value (PHP 4, PHP 5)
3558int session_cache_expire( [string $new_cache_expire]) |Return current cache expire (PHP 4 >= 4.2.0, PHP 5)
3559string session_cache_limiter( [string $cache_limiter]) |Get and/or set the current cache limiter (PHP 4 >= 4.0.3, PHP 5)
3560bool session_decode(string $data) |Decodes session data from a session encoded string (PHP 4, PHP 5)
3561bool session_destroy() |Destroys all data registered to a session (PHP 4, PHP 5)
3562string session_encode() |Encodes the current session data as a session encoded string (PHP 4, PHP 5)
3563array session_get_cookie_params() |Get the session cookie parameters (PHP 4, PHP 5)
3564string session_id( [string $id]) |Get and/or set the current session id (PHP 4, PHP 5)
3565bool session_is_registered(string $name) |Find out whether a global variable is registered in a session (PHP 4, PHP 5 < 5.4.0)
3566string session_module_name( [string $module]) |Get and/or set the current session module (PHP 4, PHP 5)
3567string session_name( [string $name]) |Get and/or set the current session name (PHP 4, PHP 5)
3568bool session_pgsql_add_error(int $error_level [, string $error_message]) |Increments error counts and sets last error message (PECL session_pgsql SVN)
3569array session_pgsql_get_error( [bool $with_error_message=false]) |Returns number of errors and last error message (PECL session_pgsql SVN)
3570string session_pgsql_get_field() |Get custom field value (PECL session_pgsql SVN)
3571bool session_pgsql_reset() |Reset connection to session database servers (PECL session_pgsql SVN)
3572bool session_pgsql_set_field(string $value) |Set custom field value (PECL session_pgsql SVN)
3573array session_pgsql_status() |Get current save handler status (PECL session_pgsql SVN)
3574bool session_regenerate_id( [bool $delete_old_session=false]) |Update the current session id with a newly generated one (PHP 4 >= 4.3.2, PHP 5)
3575void session_register_shutdown() |Session shutdown function (PHP >=5.4.0)
3576bool session_register(mixed $name [, mixed $...]) |Register one or more global variables with the current session (PHP 4, PHP 5 < 5.4.0)
3577string session_save_path( [string $path]) |Get and/or set the current session save path (PHP 4, PHP 5)
3578void session_set_cookie_params(int $lifetime [, string $path [, string $domain [, bool $secure=false [, bool $httponly=false]]]]) |Set the session cookie parameters (PHP 4, PHP 5)
3579bool session_set_save_handler(callable $open, callable $close, callable $read, callable $write, callable $destroy, callable $gc) |Sets user-level session storage functions (PHP 4, PHP 5)
3580bool session_start() |Start new or resume existing session (PHP 4, PHP 5)
3581int session_status() |Returns the current session status (PHP >=5.4.0)
3582bool session_unregister(string $name) |Unregister a global variable from the current session (PHP 4, PHP 5 < 5.4.0)
3583void session_unset() |Free all session variables (PHP 4, PHP 5)
3584void session_write_close() |Write session data and end session (PHP 4 >= 4.0.4, PHP 5)
3585mixed set_error_handler(callable $error_handler [, int $error_types=E_ALL|E_STRICT]) |Sets a user-defined error handler function (PHP 4 >= 4.0.1, PHP 5)
3586callable set_exception_handler(callable $exception_handler) |Sets a user-defined exception handler function (PHP 5)
3587string set_include_path(string $new_include_path) |Sets the include_path configuration option (PHP 4 >= 4.3.0, PHP 5)
3588bool set_magic_quotes_runtime(bool $new_setting) |Sets the current active configuration setting of magic_quotes_runtime (PHP 4, PHP 5 < 5.4.0)
3589void set_time_limit(int $seconds) |Limits the maximum execution time (PHP 4, PHP 5)
3590bool setcookie(string $name [, string $value [, int $expire=0 [, string $path [, string $domain [, bool $secure=false [, bool $httponly=false]]]]]]) |Send a cookie (PHP 4, PHP 5)
3591string setlocale(int $category, string $locale [, string $...]) |Set locale information (PHP 4, PHP 5)
3592void setproctitle(string $title) |Set the process title (PECL proctitle >= 0.1.0)
3593bool setrawcookie(string $name [, string $value [, int $expire=0 [, string $path [, string $domain [, bool $secure=false [, bool $httponly=false]]]]]]) |Send a cookie without urlencoding the cookie value (PHP 5)
3594bool setthreadtitle(string $title) |Set the thread title (PECL proctitle >= 0.1.2)
3595bool settype(mixed& $var, string $type) |Set the type of a variable (PHP 4, PHP 5)
3596string sha1_file(string $filename [, bool $raw_output=false]) |Calculate the sha1 hash of a file (PHP 4 >= 4.3.0, PHP 5)
3597string sha1(string $str [, bool $raw_output=false]) |Calculate the sha1 hash of a string (PHP 4 >= 4.3.0, PHP 5)
3598string shell_exec(string $cmd) |Execute command via shell and return the complete output as a string (PHP 4, PHP 5)
3599resource shm_attach(int $key [, int $memsize [, int $perm=0666]]) |Creates or open a shared memory segment (PHP 4, PHP 5)
3600bool shm_detach(resource $shm_identifier) |Disconnects from shared memory segment (PHP 4, PHP 5)
3601mixed shm_get_var(resource $shm_identifier, int $variable_key) |Returns a variable from shared memory (PHP 4, PHP 5)
3602bool shm_has_var(resource $shm_identifier, int $variable_key) |Check whether a specific entry exists (PHP 5 >= 5.3.0)
3603bool shm_put_var(resource $shm_identifier, int $variable_key, mixed $variable) |Inserts or updates a variable in shared memory (PHP 4, PHP 5)
3604bool shm_remove_var(resource $shm_identifier, int $variable_key) |Removes a variable from shared memory (PHP 4, PHP 5)
3605bool shm_remove(resource $shm_identifier) |Removes shared memory from Unix systems (PHP 4, PHP 5)
3606void shmop_close(int $shmid) |Close shared memory block (PHP 4 >= 4.0.4, PHP 5)
3607bool shmop_delete(int $shmid) |Delete shared memory block (PHP 4 >= 4.0.4, PHP 5)
3608int shmop_open(int $key, string $flags, int $mode, int $size) |Create or open shared memory block (PHP 4 >= 4.0.4, PHP 5)
3609string shmop_read(int $shmid, int $start, int $count) |Read data from shared memory block (PHP 4 >= 4.0.4, PHP 5)
3610int shmop_size(int $shmid) |Get size of shared memory block (PHP 4 >= 4.0.4, PHP 5)
3611int shmop_write(int $shmid, string $data, int $offset) |Write data into shared memory block (PHP 4 >= 4.0.4, PHP 5)
3612bool shuffle(array& $array) |Shuffle an array (PHP 4, PHP 5)
3613stringnthmac(string $clent, string $data) |Obtain the payment url (needs 2 arguments) (PECL spplus >= 1.0.0)
3614int similar_text(string $first, string $second [, float& $percent]) |Calculate the similarity between two strings (PHP 4, PHP 5)
3615SimpleXMLElement simplexml_import_dom(DOMNode $node [, string $class_name="SimpleXMLElement"]) |Get a SimpleXMLElement object from a DOM node. (PHP 5)
3616SimpleXMLElement simplexml_load_file(string $filename [, string $class_name="SimpleXMLElement" [, int $options=0 [, string $ns="" [, bool $is_prefix=false]]]]) |Interprets an XML file into an object (PHP 5)
3617SimpleXMLElement simplexml_load_string(string $data [, string $class_name="SimpleXMLElement" [, int $options=0 [, string $ns="" [, bool $is_prefix=false]]]]) |Interprets a string of XML into an object (PHP 5)
3618float sin(float $arg) |Sine (PHP 4, PHP 5)
3619float sinh(float $arg) |Hyperbolic sine (PHP 4 >= 4.1.0, PHP 5)
3620int sleep(int $seconds) |Delay execution (PHP 4, PHP 5)
3621bool snmp_get_quick_print() |Fetches the current value of the UCD library's quick_print setting (PHP 4, PHP 5)
3622int snmp_get_valueretrieval() |Return the method how the SNMP values will be returned (PHP 4 >= 4.3.3, PHP 5)
3623bool snmp_read_mib(string $filename) |Reads and parses a MIB file into the active MIB tree (PHP 5)
3624bool snmp_set_enum_print(int $enum_print) |Return all values that are enums with their enum value instead of the raw integer (PHP 4 >= 4.3.0, PHP 5)
3625void snmp_set_oid_numeric_print(int $oid_format) |Return all objects including their respective object id within the specified one (PHP 4 >= 4.3.0, PHP 5)
3626bool snmp_set_oid_output_format(int $oid_format=SNMP_OID_OUTPUT_MODULE) |Set the OID output format (PHP 5 >= 5.2.0)
3627bool snmp_set_quick_print(bool $quick_print) |Set the value of quick_print within the UCD SNMP library (PHP 4, PHP 5)
3628bool snmp_set_valueretrieval(int $method=SNMP_VALUE_LIBRARY) |Specify the method how the SNMP values will be returned (PHP 4 >= 4.3.3, PHP 5)
3629string snmp2_get(string $host, string $community, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Fetch an SNMP object (PHP 5 >= 5.2.0)
3630string snmp2_getnext(string $host, string $community, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Fetch the SNMP object which follows the given object id (PHP >= 5.2.0)
3631array snmp2_real_walk(string $host, string $community, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Return all objects including their respective object ID within the specified one (PHP >= 5.2.0)
3632bool snmp2_set(string $host, string $community, string $object_id, string $type, string $value [, string $timeout=1000000 [, string $retries=5]]) |Set the value of an SNMP object (PHP >= 5.2.0)
3633array snmp2_walk(string $host, string $community, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Fetch all the SNMP objects from an agent (PHP >= 5.2.0)
3634string snmp3_get(string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Fetch an SNMP object (PHP 4, PHP 5)
3635string snmp3_getnext(string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Fetch the SNMP object which follows the given object id (PHP 5)
3636array snmp3_real_walk(string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Return all objects including their respective object ID within the specified one (PHP 4, PHP 5)
3637bool snmp3_set(string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id, string $type, string $value [, int $timeout=1000000 [, int $retries=5]]) |Set the value of an SNMP object (PHP 4, PHP 5)
3638array snmp3_walk(string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout=1000000 [, string $retries=5]]) |Fetch all the SNMP objects from an agent (PHP 4, PHP 5)
3639string snmpget(string $hostname, string $community, string $object_id [, int $timeout=1000000 [, int $retries=5]]) |Fetch an SNMP object (PHP 4, PHP 5)
3640string snmpgetnext(string $host, string $community, string $object_id [, int $timeout=1000000 [, int $retries=5]]) |Fetch the SNMP object which follows the given object id (PHP 5)
3641array snmprealwalk(string $host, string $community, string $object_id [, int $timeout=1000000 [, int $retries=5]]) |Return all objects including their respective object ID within the specified one (PHP 4, PHP 5)
3642bool snmpset(string $host, string $community, string $object_id, string $type, mixed $value [, int $timeout=1000000 [, int $retries=5]]) |Set the value of an SNMP object (PHP 4, PHP 5)
3643array snmpwalk(string $hostname, string $community, string $object_id [, int $timeout=1000000 [, int $retries=5]]) |Fetch all the SNMP objects from an agent (PHP 4, PHP 5)
3644array snmpwalkoid(string $hostname, string $community, string $object_id [, int $timeout=1000000 [, int $retries=5]]) |Query for a tree of information about a network entity (PHP 4, PHP 5)
3645resource socket_accept(resource $socket) |Accepts a connection on a socket (PHP 4 >= 4.1.0, PHP 5)
3646bool socket_bind(resource $socket, string $address [, int $port=0]) |Binds a name to a socket (PHP 4 >= 4.1.0, PHP 5)
3647void socket_clear_error( [resource $socket]) |Clears the error on the socket or the last error code (PHP 4 >= 4.2.0, PHP 5)
3648void socket_close(resource $socket) |Closes a socket resource (PHP 4 >= 4.1.0, PHP 5)
3649bool socket_connect(resource $socket, string $address [, int $port=0]) |Initiates a connection on a socket (PHP 4 >= 4.1.0, PHP 5)
3650resource socket_create_listen(int $port [, int $backlog=128]) |Opens a socket on port to accept connections (PHP 4 >= 4.1.0, PHP 5)
3651bool socket_create_pair(int $domain, int $type, int $protocol, array& $fd) |Creates a pair of indistinguishable sockets and stores them in an array (PHP 4 >= 4.1.0, PHP 5)
3652resource socket_create(int $domain, int $type, int $protocol) |Create a socket (endpoint for communication) (PHP 4 >= 4.1.0, PHP 5)
3653mixed socket_get_option(resource $socket, int $level, int $optname) |Gets socket options for the socket (PHP 4 >= 4.3.0, PHP 5)
3654bool socket_getpeername(resource $socket, string& $address [, int& $port]) |Queries the remote side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type (PHP 4 >= 4.1.0, PHP 5)
3655bool socket_getsockname(resource $socket, string& $addr [, int& $port]) |Queries the local side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type (PHP 4 >= 4.1.0, PHP 5)
3656resource socket_import_stream(resource $stream) |Import a stream (PHP 4 >= 5.4.0)
3657int socket_last_error( [resource $socket]) |Returns the last error on the socket (PHP 4 >= 4.1.0, PHP 5)
3658bool socket_listen(resource $socket [, int $backlog=0]) |Listens for a connection on a socket (PHP 4 >= 4.1.0, PHP 5)
3659string socket_read(resource $socket, int $length [, int $type=PHP_BINARY_READ]) |Reads a maximum of length bytes from a socket (PHP 4 >= 4.1.0, PHP 5)
3660int socket_recv(resource $socket, string& $buf, int $len, int $flags) |Receives data from a connected socket (PHP 4 >= 4.1.0, PHP 5)
3661int socket_recvfrom(resource $socket, string& $buf, int $len, int $flags, string& $name [, int& $port]) |Receives data from a socket whether or not it is connection-oriented (PHP 4 >= 4.1.0, PHP 5)
3662int socket_select(array& $read, array& $write, array& $except, int $tv_sec [, int $tv_usec=0]) |Runs the select() system call on the given arrays of sockets with a specified timeout (PHP 4 >= 4.1.0, PHP 5)
3663int socket_send(resource $socket, string $buf, int $len, int $flags) |Sends data to a connected socket (PHP 4 >= 4.1.0, PHP 5)
3664int socket_sendto(resource $socket, string $buf, int $len, int $flags, string $addr [, int $port=0]) |Sends a message to a socket, whether it is connected or not (PHP 4 >= 4.1.0, PHP 5)
3665bool socket_set_block(resource $socket) |Sets blocking mode on a socket resource (PHP 4 >= 4.2.0, PHP 5)
3666bool socket_set_nonblock(resource $socket) |Sets nonblocking mode for file descriptor fd (PHP 4 >= 4.1.0, PHP 5)
3667bool socket_set_option(resource $socket, int $level, int $optname, mixed $optval) |Sets socket options for the socket (PHP 4 >= 4.3.0, PHP 5)
3668bool socket_shutdown(resource $socket [, int $how=2]) |Shuts down a socket for receiving, sending, or both (PHP 4 >= 4.1.0, PHP 5)
3669string socket_strerror(int $errno) |Return a string describing a socket error (PHP 4 >= 4.1.0, PHP 5)
3670int socket_write(resource $socket, string $buffer [, int $length=0]) |Write to a socket (PHP 4 >= 4.1.0, PHP 5)
3671string solr_get_version() |Returns the current version of the Apache Solr extension (PECL solr >= 0.9.1)
3672bool sort(array& $array [, int $sort_flags=SORT_REGULAR]) |Sort an array (PHP 4, PHP 5)
3673string soundex(string $str) |Calculate the soundex key of a string (PHP 4, PHP 5)
3674void spl_autoload_call(string $class_name) |Try all registered __autoload() function to load the requested class (PHP 5 >= 5.1.2)
3675string spl_autoload_extensions( [string $file_extensions]) |Register and return default file extensions for spl_autoload (PHP 5 >= 5.1.2)
3676array spl_autoload_functions() |Return all registered __autoload() functions (PHP 5 >= 5.1.2)
3677bool spl_autoload_register( [callable $autoload_function [, bool $throw=true [, bool $prepend=false]]]) |Register given function as __autoload() implementation (PHP 5 >= 5.1.2)
3678bool spl_autoload_unregister(mixed $autoload_function) |Unregister given function as __autoload() implementation (PHP 5 >= 5.1.2)
3679void spl_autoload(string $class_name [, string $file_extensions=spl_autoload_extensions()]) |Default implementation for __autoload() (PHP 5 >= 5.1.2)
3680array spl_classes() |Return available SPL classes (PHP 5)
3681string spl_object_hash(object $obj) |Return hash id for given object (PHP 5 >= 5.2.0)
3682array split(string $pattern, string $string [, int $limit=-1]) |Split string into array by regular expression (PHP 4, PHP 5)
3683array spliti(string $pattern, string $string [, int $limit=-1]) |Split string into array by regular expression case insensitive (PHP 4 >= 4.0.1, PHP 5)
3684string sprintf(string $format [, mixed $args [, mixed $...]]) |Return a formatted string (PHP 4, PHP 5)
3685string sql_regcase(string $string) |Make regular expression for case insensitive match (PHP 4, PHP 5)
3686array sqlite_array_query(resource $dbhandle, string $query [, int $result_type=SQLITE_BOTH [, bool $decode_binary=true]]) |Execute a query against a given database and returns an array (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3687void sqlite_busy_timeout(resource $dbhandle, int $milliseconds) |Set busy timeout duration, or disable busy handlers (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3688int sqlite_changes(resource $dbhandle) |Returns the number of rows that were changed by the most recent SQL statement (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3689void sqlite_close(resource $dbhandle) |Closes an open SQLite database (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3690mixed sqlite_column(resource $result, mixed $index_or_name [, bool $decode_binary=true]) |Fetches a column from the current row of a result set (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3691void sqlite_create_aggregate(resource $dbhandle, string $function_name, callable $step_func, callable $finalize_func [, int $num_args=-1]) |Register an aggregating UDF for use in SQL statements (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3692void sqlite_create_function(resource $dbhandle, string $function_name, callable $callback [, int $num_args=-1]) |Registers a "regular" User Defined Function for use in SQL statements (PHP 5 < 5.4.0, sqlite >= 1.0.0)
3693array sqlite_current(resource $result [, int $result_type=SQLITE_BOTH [, bool $decode_binary=true]]) |Fetches the current row from a result set as an array (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3694string sqlite_error_string(int $error_code) |Returns the textual description of an error code (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3695string sqlite_escape_string(string $item) |Escapes a string for use as a query parameter (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3696bool sqlite_exec(resource $dbhandle, string $query [, string& $error_msg]) |Executes a result-less query against a given database (PHP 5 < 5.4.0, PECL sqlite >= 1.0.3)
3697SQLiteDatabase sqlite_factory(string $filename [, int $mode=0666 [, string& $error_message]]) |Opens an SQLite database and returns an SQLiteDatabase object (PHP 5 < 5.4.0)
3698array sqlite_fetch_all(resource $result [, int $result_type=SQLITE_BOTH [, bool $decode_binary=true]]) |Fetches all rows from a result set as an array of arrays (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3699array sqlite_fetch_array(resource $result [, int $result_type=SQLITE_BOTH [, bool $decode_binary=true]]) |Fetches the next row from a result set as an array (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3700array sqlite_fetch_column_types(string $table_name, resource $dbhandle [, int $result_type=SQLITE_ASSOC]) |Return an array of column types from a particular table (PHP 5 < 5.4.0)
3701object sqlite_fetch_object(resource $result [, string $class_name [, array $ctor_params [, bool $decode_binary=true]]]) |Fetches the next row from a result set as an object (PHP 5 < 5.4.0)
3702string sqlite_fetch_single(resource $result [, bool $decode_binary=true]) |Fetches the first column of a result set as a string (PHP 5 < 5.4.0, PECL sqlite >= 1.0.1)
3703string sqlite_field_name(resource $result, int $field_index) |Returns the name of a particular field (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3704bool sqlite_has_more(resource $result) |Finds whether or not more rows are available (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3705bool sqlite_has_prev(resource $result) |Returns whether or not a previous row is available (PHP 5 < 5.4.0)
3706int SQLiteResult::key() |Returns the current row index (PHP 5 >= 5.1.0 and < 5.4.0)
3707int sqlite_last_error(resource $dbhandle) |Returns the error code of the last error for a database (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3708int sqlite_last_insert_rowid(resource $dbhandle) |Returns the rowid of the most recently inserted row (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3709string sqlite_libencoding() |Returns the encoding of the linked SQLite library (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3710string sqlite_libversion() |Returns the version of the linked SQLite library (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3711bool sqlite_next(resource $result) |Seek to the next row number (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3712int sqlite_num_fields(resource $result) |Returns the number of fields in a result set (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3713int sqlite_num_rows(resource $result) |Returns the number of rows in a buffered result set (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3714resource sqlite_open(string $filename [, int $mode=0666 [, string& $error_message]]) |Opens an SQLite database and create the database if it does not exist (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3715resource sqlite_popen(string $filename [, int $mode=0666 [, string& $error_message]]) |Opens a persistent handle to an SQLite database and create the database if it does not exist (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3716bool sqlite_prev(resource $result) |Seek to the previous row number of a result set (PHP 5 < 5.4.0)
3717resource sqlite_query(resource $dbhandle, string $query [, int $result_type=SQLITE_BOTH [, string& $error_msg]]) |Executes a query against a given database and returns a result handle (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3718bool sqlite_rewind(resource $result) |Seek to the first row number (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3719bool sqlite_seek(resource $result, int $rownum) |Seek to a particular row number of a buffered result set (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3720array sqlite_single_query(resource $db, string $query [, bool $first_row_only [, bool $decode_binary]]) |Executes a query and returns either an array for one single column or the value of the first row (PHP 5 < 5.4.0, PECL sqlite >= 1.0.1)
3721string sqlite_udf_decode_binary(string $data) |Decode binary data passed as parameters to an UDF (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3722string sqlite_udf_encode_binary(string $data) |Encode binary data before returning it from an UDF (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3723resource sqlite_unbuffered_query(resource $dbhandle, string $query [, int $result_type=SQLITE_BOTH [, string& $error_msg]]) |Execute a query that does not prefetch and buffer all data (PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)
3724bool sqlite_valid(resource $result) |Returns whether more rows are available (PHP 5 < 5.4.0)
3725bool sqlsrv_begin_transaction(resource $conn) |Begins a database transaction (No version information available, might only be in SVN)
3726bool sqlsrv_cancel(resource $stmt) |Cancels a statement (No version information available, might only be in SVN)
3727array sqlsrv_client_info(resource $conn) |Returns information about the client and specified connection (No version information available, might only be in SVN)
3728bool sqlsrv_close(resource $conn) |Closes an open connection and releases resourses associated with the connection (No version information available, might only be in SVN)
3729bool sqlsrv_commit(resource $conn) |Commits a transaction that was begun with sqlsrv_begin_transaction() (No version information available, might only be in SVN)
3730bool sqlsrv_configure(string $setting, mixed $value) |Changes the driver error handling and logging configurations (No version information available, might only be in SVN)
3731resource sqlsrv_connect(string $serverName [, array $connectionInfo]) |Opens a connection to a Microsoft SQL Server database (No version information available, might only be in SVN)
3732mixed sqlsrv_errors( [int $errorsOrWarnings]) |Returns error and warning information about the last SQLSRV operation performed (No version information available, might only be in SVN)
3733bool sqlsrv_execute(resource $stmt) |Executes a statement prepared with sqlsrv_prepare() (No version information available, might only be in SVN)
3734array sqlsrv_fetch_array(resource $stmt [, int $fetchType [, int $row [, int $offset]]]) |Returns a row as an array (No version information available, might only be in SVN)
3735mixed sqlsrv_fetch_object(resource $stmt [, string $className [, array $ctorParams [, int $row [, int $offset]]]]) |Retrieves the next row of data in a result set as an object (No version information available, might only be in SVN)
3736mixed sqlsrv_fetch(resource $stmt [, int $row [, int $offset]]) |Makes the next row in a result set available for reading (No version information available, might only be in SVN)
3737mixed sqlsrv_field_metadata(resource $stmt) |Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare() or sqlsrv_query() (No version information available, might only be in SVN)
3738bool sqlsrv_free_stmt(resource $stmt) |Frees all resources for the specified statement (No version information available, might only be in SVN)
3739mixed sqlsrv_get_config(string $setting) |Returns the value of the specified configuration setting (No version information available, might only be in SVN)
3740mixed sqlsrv_get_field(resource $stmt, int $fieldIndex [, int $getAsType]) |Gets field data from the currently selected row (No version information available, might only be in SVN)
3741bool sqlsrv_has_rows(resource $stmt) |Indicates whether the specified statement has rows (No version information available, might only be in SVN)
3742mixed sqlsrv_next_result(resource $stmt) |Makes the next result of the specified statement active (No version information available, might only be in SVN)
3743mixed sqlsrv_num_fields(resource $stmt) |Retrieves the number of fields (columns) on a statement (No version information available, might only be in SVN)
3744mixed sqlsrv_num_rows(resource $stmt) |Retrieves the number of rows in a result set (No version information available, might only be in SVN)
3745mixed sqlsrv_prepare(resource $conn, string $sql [, array $params [, array $options]]) |Prepares a query for execution (No version information available, might only be in SVN)
3746mixed sqlsrv_query(resource $conn, string $sql [, array $params [, array $options]]) |Prepares and executes a query. (No version information available, might only be in SVN)
3747bool sqlsrv_rollback(resource $conn) |Rolls back a transaction that was begun with sqlsrv_begin_transaction() (No version information available, might only be in SVN)
3748int sqlsrv_rows_affected(resource $stmt) |Returns the number of rows modified by the last INSERT, UPDATE, or DELETE query executed (No version information available, might only be in SVN)
3749bool sqlsrv_send_stream_data(resource $stmt) |Sends data from parameter streams to the server (No version information available, might only be in SVN)
3750array sqlsrv_server_info(resource $conn) |Returns information about the server (No version information available, might only be in SVN)
3751float sqrt(float $arg) |Square root (PHP 4, PHP 5)
3752void srand( [int $seed]) |Seed the random number generator (PHP 4, PHP 5)
3753mixed sscanf(string $str, string $format [, mixed& $...]) |Parses input from a string according to a format (PHP 4 >= 4.0.1, PHP 5)
3754int ssdeep_fuzzy_compare(string $signature1, string $signature2) |Calculates the match score between two fuzzy hash signatures (PECL ssdeep >= 1.0.0)
3755string ssdeep_fuzzy_hash_filename(string $file_name) |Create a fuzzy hash from a file (PECL ssdeep >= 1.0.0)
3756string ssdeep_fuzzy_hash(string $to_hash) |Create a fuzzy hash from a string (PECL ssdeep >= 1.0.0)
3757bool ssh2_auth_agent(resource $session, string $username) |Authenticate over SSH using the ssh agent (PECL ssh2 >= 0.12)
3758bool ssh2_auth_hostbased_file(resource $session, string $username, string $hostname, string $pubkeyfile, string $privkeyfile [, string $passphrase [, string $local_username]]) |Authenticate using a public hostkey (PECL ssh2 >= 0.9.0)
3759mixed ssh2_auth_none(resource $session, string $username) |Authenticate as "none" (PECL ssh2 >= 0.9.0)
3760bool ssh2_auth_password(resource $session, string $username, string $password) |Authenticate over SSH using a plain password (PECL ssh2 >= 0.9.0)
3761bool ssh2_auth_pubkey_file(resource $session, string $username, string $pubkeyfile, string $privkeyfile [, string $passphrase]) |Authenticate using a public key (PECL ssh2 >= 0.9.0)
3762resource ssh2_connect(string $host [, int $port=22 [, array $methods [, array $callbacks]]]) |Connect to an SSH server (PECL ssh2 >= 0.9.0)
3763resource ssh2_exec(resource $session, string $command [, string $pty [, array $env [, int $width=80 [, int $height=25 [, int $width_height_type=SSH2_TERM_UNIT_CHARS]]]]]) |Execute a command on a remote server (PECL ssh2 >= 0.9.0)
3764resource ssh2_fetch_stream(resource $channel, int $streamid) |Fetch an extended data stream (PECL ssh2 >= 0.9.0)
3765string ssh2_fingerprint(resource $session [, int $flags=SSH2_FINGERPRINT_MD5|SSH2_FINGERPRINT_HEX]) |Retrieve fingerprint of remote server (PECL ssh2 >= 0.9.0)
3766array ssh2_methods_negotiated(resource $session) |Return list of negotiated methods (PECL ssh2 >= 0.9.0)
3767bool ssh2_publickey_add(resource $pkey, string $algoname, string $blob [, bool $overwrite=false [, array $attributes]]) |Add an authorized publickey (PECL ssh2 >= 0.10)
3768resource ssh2_publickey_init(resource $session) |Initialize Publickey subsystem (PECL ssh2 >= 0.10)
3769array ssh2_publickey_list(resource $pkey) |List currently authorized publickeys (PECL ssh2 >= 0.10)
3770bool ssh2_publickey_remove(resource $pkey, string $algoname, string $blob) |Remove an authorized publickey (PECL ssh2 >= 0.10)
3771bool ssh2_scp_recv(resource $session, string $remote_file, string $local_file) |Request a file via SCP (PECL ssh2 >= 0.9.0)
3772bool ssh2_scp_send(resource $session, string $local_file, string $remote_file [, int $create_mode=0644]) |Send a file via SCP (PECL ssh2 >= 0.9.0)
3773bool ssh2_sftp_chmod(resource $sftp, string $filename, int $mode) |Changes file mode (PECL ssh2 >= 0.12)
3774array ssh2_sftp_lstat(resource $sftp, string $path) |Stat a symbolic link (PECL ssh2 >= 0.9.0)
3775bool ssh2_sftp_mkdir(resource $sftp, string $dirname [, int $mode=0777 [, bool $recursive=false]]) |Create a directory (PECL ssh2 >= 0.9.0)
3776string ssh2_sftp_readlink(resource $sftp, string $link) |Return the target of a symbolic link (PECL ssh2 >= 0.9.0)
3777string ssh2_sftp_realpath(resource $sftp, string $filename) |Resolve the realpath of a provided path string (PECL ssh2 >= 0.9.0)
3778bool ssh2_sftp_rename(resource $sftp, string $from, string $to) |Rename a remote file (PECL ssh2 >= 0.9.0)
3779bool ssh2_sftp_rmdir(resource $sftp, string $dirname) |Remove a directory (PECL ssh2 >= 0.9.0)
3780array ssh2_sftp_stat(resource $sftp, string $path) |Stat a file on a remote filesystem (PECL ssh2 >= 0.9.0)
3781bool ssh2_sftp_symlink(resource $sftp, string $target, string $link) |Create a symlink (PECL ssh2 >= 0.9.0)
3782bool ssh2_sftp_unlink(resource $sftp, string $filename) |Delete a file (PECL ssh2 >= 0.9.0)
3783resource ssh2_sftp(resource $session) |Initialize SFTP subsystem (PECL ssh2 >= 0.9.0)
3784resource ssh2_shell(resource $session [, string $term_type="vanilla" [, array $env [, int $width=80 [, int $height=25 [, int $width_height_type=SSH2_TERM_UNIT_CHARS]]]]]) |Request an interactive shell (PECL ssh2 >= 0.9.0)
3785resource ssh2_tunnel(resource $session, string $host, int $port) |Open a tunnel through a remote server (PECL ssh2 >= 0.9.0)
3786array stat(string $filename) |Gives information about a file (PHP 4, PHP 5)
3787float stats_absolute_deviation(array $a) |Returns the absolute deviation of an array of values (PECL stats >= 1.0.0)
3788float stats_cdf_beta(float $par1, float $par2, float $par3, int $which) |CDF function for BETA Distribution. Calculates any one parameter of the beta distribution given values for the others. (PECL stats >= 1.0.0)
3789float stats_cdf_binomial(float $par1, float $par2, float $par3, int $which) |Calculates any one parameter of the binomial distribution given values for the others. (PECL stats >= 1.0.0)
3790float stats_cdf_cauchy(float $par1, float $par2, float $par3, int $which) |Not documented (PECL stats >= 1.0.0)
3791float stats_cdf_chisquare(float $par1, float $par2, int $which) |Calculates any one parameter of the chi-square distribution given values for the others. (PECL stats >= 1.0.0)
3792float stats_cdf_exponential(float $par1, float $par2, int $which) |Not documented (PECL stats >= 1.0.0)
3793float stats_cdf_f(float $par1, float $par2, float $par3, int $which) |Calculates any one parameter of the F distribution given values for the others. (PECL stats >= 1.0.0)
3794float stats_cdf_gamma(float $par1, float $par2, float $par3, int $which) |Calculates any one parameter of the gamma distribution given values for the others. (PECL stats >= 1.0.0)
3795float stats_cdf_laplace(float $par1, float $par2, float $par3, int $which) |Not documented (PECL stats >= 1.0.0)
3796float stats_cdf_logistic(float $par1, float $par2, float $par3, int $which) |Not documented (PECL stats >= 1.0.0)
3797float stats_cdf_negative_binomial(float $par1, float $par2, float $par3, int $which) |Calculates any one parameter of the negative binomial distribution given values for the others. (PECL stats >= 1.0.0)
3798float stats_cdf_noncentral_chisquare(float $par1, float $par2, float $par3, int $which) |Calculates any one parameter of the non-central chi-square distribution given values for the others. (PECL stats >= 1.0.0)
3799float stats_cdf_noncentral_f(float $par1, float $par2, float $par3, float $par4, int $which) |Calculates any one parameter of the Non-central F distribution given values for the others. (PECL stats >= 1.0.0)
3800float stats_cdf_poisson(float $par1, float $par2, int $which) |Calculates any one parameter of the Poisson distribution given values for the others. (PECL stats >= 1.0.0)
3801float stats_cdf_t(float $par1, float $par2, int $which) |Calculates any one parameter of the T distribution given values for the others. (PECL stats >= 1.0.0)
3802float stats_cdf_uniform(float $par1, float $par2, float $par3, int $which) |Not documented (PECL stats >= 1.0.0)
3803float stats_cdf_weibull(float $par1, float $par2, float $par3, int $which) |Not documented (PECL stats >= 1.0.0)
3804float stats_covariance(array $a, array $b) |Computes the covariance of two data sets (PECL stats >= 1.0.0)
3805float stats_den_uniform(float $x, float $a, float $b) |Not documented (PECL stats >= 1.0.0)
3806float stats_dens_beta(float $x, float $a, float $b) |Not documented (PECL stats >= 1.0.0)
3807float stats_dens_cauchy(float $x, float $ave, float $stdev) |Not documented (PECL stats >= 1.0.0)
3808float stats_dens_chisquare(float $x, float $dfr) |Not documented (PECL stats >= 1.0.0)
3809float stats_dens_exponential(float $x, float $scale) |Not documented (PECL stats >= 1.0.0)
3810float stats_dens_f(float $x, float $dfr1, float $dfr2) |Description float stats_dens_f ( float $x , float $dfr1 , float $dfr2 ) WarningThis function is currently not documented; only its argument list is available. Parameters x (PECL stats >= 1.0.0)
3811float stats_dens_gamma(float $x, float $shape, float $scale) |Not documented (PECL stats >= 1.0.0)
3812float stats_dens_laplace(float $x, float $ave, float $stdev) |Not documented (PECL stats >= 1.0.0)
3813float stats_dens_logistic(float $x, float $ave, float $stdev) |Not documented (PECL stats >= 1.0.0)
3814float stats_dens_negative_binomial(float $x, float $n, float $pi) |Not documented (PECL stats >= 1.0.0)
3815float stats_dens_normal(float $x, float $ave, float $stdev) |Not documented (PECL stats >= 1.0.0)
3816float stats_dens_pmf_binomial(float $x, float $n, float $pi) |Not documented (PECL stats >= 1.0.0)
3817float stats_dens_pmf_hypergeometric(float $n1, float $n2, float $N1, float $N2) |Description float stats_dens_pmf_hypergeometric ( float $n1 , float $n2 , float $N1 , float $N2 ) WarningThis function is currently not documented; only its argument list is available. Parameters n1 n2 (PECL stats >= 1.0.0)
3818float stats_dens_pmf_poisson(float $x, float $lb) |Not documented (PECL stats >= 1.0.0)
3819float stats_dens_t(float $x, float $dfr) |Not documented (PECL stats >= 1.0.0)
3820float stats_dens_weibull(float $x, float $a, float $b) |Not documented (PECL stats >= 1.0.0)
3821number stats_harmonic_mean(array $a) |Returns the harmonic mean of an array of values (PECL stats >= 1.0.0)
3822float stats_kurtosis(array $a) |Computes the kurtosis of the data in the array (PECL stats >= 1.0.0)
3823float stats_rand_gen_beta(float $a, float $b) |Generates beta random deviate (PECL stats >= 1.0.0)
3824float stats_rand_gen_chisquare(float $df) |Generates random deviate from the distribution of a chisquare with "df" degrees of freedom random variable. (PECL stats >= 1.0.0)
3825float stats_rand_gen_exponential(float $av) |Generates a single random deviate from an exponential distribution with mean "av" (PECL stats >= 1.0.0)
3826float stats_rand_gen_f(float $dfn, float $dfd) |Generates a random deviate (PECL stats >= 1.0.0)
3827float stats_rand_gen_funiform(float $low, float $high) |Generates uniform float between low (exclusive) and high (exclusive) (PECL stats >= 1.0.0)
3828float stats_rand_gen_gamma(float $a, float $r) |Generates random deviates from a gamma distribution (PECL stats >= 1.0.0)
3829int stats_rand_gen_ibinomial_negative(int $n, float $p) |Generates a single random deviate from a negative binomial distribution. Arguments : n - the number of trials in the negative binomial distribution from which a random deviate is to be generated (n > 0), p - the probability of an event (0 < p < 1)). (PECL stats >= 1.0.0)
3830int stats_rand_gen_ibinomial(int $n, float $pp) |Generates a single random deviate from a binomial distribution whose number of trials is "n" (n >= 0) and whose probability of an event in each trial is "pp" ([0;1]). Method : algorithm BTPE (PECL stats >= 1.0.0)
3831int stats_rand_gen_int() |Generates random integer between 1 and 2147483562 (PECL stats >= 1.0.0)
3832int stats_rand_gen_ipoisson(float $mu) |Generates a single random deviate from a Poisson distribution with mean "mu" (mu >= 0.0). (PECL stats >= 1.0.0)
3833int stats_rand_gen_iuniform(int $low, int $high) |Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive) (PECL stats >= 1.0.0)
3834float stats_rand_gen_noncenral_chisquare(float $df, float $xnonc) |Generates random deviate from the distribution of a noncentral chisquare with "df" degrees of freedom and noncentrality parameter "xnonc". d must be >= 1.0, xnonc must >= 0.0 (PECL stats >= 1.0.0)
3835float stats_rand_gen_noncentral_f(float $dfn, float $dfd, float $xnonc) |Generates a random deviate from the noncentral F (variance ratio) distribution with "dfn" degrees of freedom in the numerator, and "dfd" degrees of freedom in the denominator, and noncentrality parameter "xnonc". Method : directly generates ratio of noncentral numerator chisquare variate to central denominator chisquare variate. (PECL stats >= 1.0.0)
3836float stats_rand_gen_noncentral_t(float $df, float $xnonc) |Generates a single random deviate from a noncentral T distribution (PECL stats >= 1.0.0)
3837float stats_rand_gen_normal(float $av, float $sd) |Generates a single random deviate from a normal distribution with mean, av, and standard deviation, sd (sd >= 0). Method : Renames SNORM from TOMS as slightly modified by BWB to use RANF instead of SUNIF. (PECL stats >= 1.0.0)
3838float stats_rand_gen_t(float $df) |Generates a single random deviate from a T distribution (PECL stats >= 1.0.0)
3839array stats_rand_get_seeds() |Not documented (PECL stats >= 1.0.0)
3840array stats_rand_phrase_to_seeds(string $phrase) |generate two seeds for the RGN random number generator (PECL stats >= 1.0.0)
3841float stats_rand_ranf() |Returns a random floating point number from a uniform distribution over 0 - 1 (endpoints of this interval are not returned) using the current generator (PECL stats >= 1.0.0)
3842void stats_rand_setall(int $iseed1, int $iseed2) |Not documented (PECL stats >= 1.0.0)
3843float stats_skew(array $a) |Computes the skewness of the data in the array (PECL stats >= 1.0.0)
3844float stats_standard_deviation(array $a [, bool $sample=false]) |Returns the standard deviation (PECL stats >= 1.0.0)
3845float stats_stat_binomial_coef(int $x, int $n) |Not documented (PECL stats >= 1.0.0)
3846float stats_stat_correlation(array $arr1, array $arr2) |Not documented (PECL stats >= 1.0.0)
3847float stats_stat_gennch(int $n) |Not documented (PECL stats >= 1.0.0)
3848float stats_stat_independent_t(array $arr1, array $arr2) |Not documented (PECL stats >= 1.0.0)
3849float stats_stat_innerproduct(array $arr1, array $arr2) |Description float stats_stat_innerproduct ( array $arr1 , array $arr2 ) WarningThis function is currently not documented; only its argument list is available. Parameters (PECL stats >= 1.0.0)
3850float stats_stat_noncentral_t(float $par1, float $par2, float $par3, int $which) |Calculates any one parameter of the noncentral t distribution give values for the others. (PECL stats >= 1.0.0)
3851float stats_stat_paired_t(array $arr1, array $arr2) |Not documented (PECL stats >= 1.0.0)
3852float stats_stat_percentile(float $df, float $xnonc) |Not documented (PECL stats >= 1.0.0)
3853float stats_stat_powersum(array $arr, float $power) |Not documented (PECL stats >= 1.0.0)
3854float stats_variance(array $a [, bool $sample=false]) |Returns the population variance (PECL stats >= 1.0.0)
3855string stomp_connect_error() |Returns a string description of the last connect error (PECL stomp >= 0.3.0)
3856string stomp_version() |Gets the current stomp extension version (PECL stomp >= 0.1.0)
3857array str_getcsv(string $input [, string $delimiter=', ' [, string $enclosure='"' [, string $escape='\\']]]) |Parse a CSV string into an array (PHP 5 >= 5.3.0)
3858mixed str_ireplace(mixed $search, mixed $replace, mixed $subject [, int& $count]) |Case-insensitive version of str_replace(). (PHP 5)
3859string str_pad(string $input, int $pad_length [, string $pad_string="" [, int $pad_type=STR_PAD_RIGHT]]) |Pad a string to a certain length with another string (PHP 4 >= 4.0.1, PHP 5)
3860string str_repeat(string $input, int $multiplier) |Repeat a string (PHP 4, PHP 5)
3861mixed str_replace(mixed $search, mixed $replace, mixed $subject [, int& $count]) |Replace all occurrences of the search string with the replacement string (PHP 4, PHP 5)
3862string str_rot13(string $str) |Perform the rot13 transform on a string (PHP 4 >= 4.2.0, PHP 5)
3863string str_shuffle(string $str) |Randomly shuffles a string (PHP 4 >= 4.3.0, PHP 5)
3864array str_split(string $string [, int $split_length=1]) |Convert a string to an array (PHP 5)
3865mixed str_word_count(string $string [, int $format=0 [, string $charlist]]) |Return information about words used in a string (PHP 4 >= 4.3.0, PHP 5)
3866int strcasecmp(string $str1, string $str2) |Binary safe case-insensitive string comparison (PHP 4, PHP 5)
3867int strcmp(string $str1, string $str2) |Binary safe string comparison (PHP 4, PHP 5)
3868int strcoll(string $str1, string $str2) |Locale based string comparison (PHP 4 >= 4.0.5, PHP 5)
3869int strcspn(string $str1, string $str2 [, int $start [, int $length]]) |Find length of initial segment not matching mask (PHP 4, PHP 5)
3870void stream_bucket_append(resource $brigade, resource $bucket) |Append bucket to brigade (PHP 5)
3871object stream_bucket_make_writeable(resource $brigade) |Return a bucket object from the brigade for operating on (PHP 5)
3872object stream_bucket_new(resource $stream, string $buffer) |Create a new bucket for use on the current stream (PHP 5)
3873void stream_bucket_prepend(resource $brigade, resource $bucket) |Prepend bucket to brigade (PHP 5)
3874resource stream_context_create( [array $options [, array $params]]) |Creates a stream context (PHP 4 >= 4.3.0, PHP 5)
3875resource stream_context_get_default( [array $options]) |Retrieve the default stream context (PHP 5 >= 5.1.0)
3876array stream_context_get_options(resource $stream_or_context) |Retrieve options for a stream/wrapper/context (PHP 4 >= 4.3.0, PHP 5)
3877array stream_context_get_params(resource $stream_or_context) |Retrieves parameters from a context (PHP 5 >= 5.3.0)
3878resource stream_context_set_default(array $options) |Set the default stream context (PHP 5 >= 5.3.0)
3879bool stream_context_set_option(resource $stream_or_context, string $wrapper, string $option, mixed $value) |Sets an option for a stream/wrapper/context (PHP 4 >= 4.3.0, PHP 5)
3880bool stream_context_set_params(resource $stream_or_context, array $params) |Set parameters for a stream/wrapper/context (PHP 4 >= 4.3.0, PHP 5)
3881int stream_copy_to_stream(resource $source, resource $dest [, int $maxlength=-1 [, int $offset=0]]) |Copies data from one stream to another (PHP 5)
3882bool stream_encoding(resource $stream [, string $encoding]) |Set character set for stream encoding (No version information available, might only be in SVN)
3883resource stream_filter_append(resource $stream, string $filtername [, int $read_write [, mixed $params]]) |Attach a filter to a stream (PHP 4 >= 4.3.0, PHP 5)
3884resource stream_filter_prepend(resource $stream, string $filtername [, int $read_write [, mixed $params]]) |Attach a filter to a stream (PHP 4 >= 4.3.0, PHP 5)
3885bool stream_filter_register(string $filtername, string $classname) |Register a user defined stream filter (PHP 5)
3886bool stream_filter_remove(resource $stream_filter) |Remove a filter from a stream (PHP 5 >= 5.1.0)
3887string stream_get_contents(resource $handle [, int $maxlength=-1 [, int $offset=-1]]) |Reads remainder of a stream into a string (PHP 5)
3888array stream_get_filters() |Retrieve list of registered filters (PHP 5)
3889string stream_get_line(resource $handle, int $length [, string $ending]) |Gets line from stream resource up to a given delimiter (PHP 5)
3890array stream_get_meta_data(resource $stream) |Retrieves header/meta data from streams/file pointers (PHP 4 >= 4.3.0, PHP 5)
3891array stream_get_transports() |Retrieve list of registered socket transports (PHP 5)
3892array stream_get_wrappers() |Retrieve list of registered streams (PHP 5)
3893bool stream_is_local(mixed $stream_or_url) |Checks if a stream is a local stream (PHP 5 >= 5.2.4)
3894void stream_notification_callback(int $notification_code, int $severity, string $message, int $message_code, int $bytes_transferred, int $bytes_max) |A callback function for the notification context paramater (PHP 5 >= 5.2.0)
3895string stream_resolve_include_path(string $filename) |Resolve filename against the include path (PHP 5 >= 5.3.2)
3896int stream_select(array& $read, array& $write, array& $except, int $tv_sec [, int $tv_usec=0]) |Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec (PHP 4 >= 4.3.0, PHP 5)
3897bool stream_set_blocking(resource $stream, int $mode) |Set blocking/non-blocking mode on a stream (PHP 4 >= 4.3.0, PHP 5)
3898int stream_set_chunk_size(resource $fp, int $chunk_size) |Set the stream chunk size (PHP 5 >= 5.4.0)
3899int stream_set_read_buffer(resource $stream, int $buffer) |Set read file buffering on the given stream (PHP 5 >= 5.3.3)
3900bool stream_set_timeout(resource $stream, int $seconds [, int $microseconds=0]) |Set timeout period on a stream (PHP 4 >= 4.3.0, PHP 5)
3901int stream_set_write_buffer(resource $stream, int $buffer) |Sets write file buffering on the given stream (PHP 4 >= 4.3.0, PHP 5)
3902resource stream_socket_accept(resource $server_socket [, float $timeout=ini_get("default_socket_timeout") [, string& $peername]]) |Accept a connection on a socket created by stream_socket_server() (PHP 5)
3903resource stream_socket_client(string $remote_socket [, int& $errno [, string& $errstr [, float $timeout=ini_get("default_socket_timeout") [, int $flags=STREAM_CLIENT_CONNECT [, resource $context]]]]]) |Open Internet or Unix domain socket connection (PHP 5)
3904mixed stream_socket_enable_crypto(resource $stream, bool $enable [, int $crypto_type [, resource $session_stream]]) |Turns encryption on/off on an already connected socket (PHP 5 >= 5.1.0)
3905string stream_socket_get_name(resource $handle, bool $want_peer) |Retrieve the name of the local or remote sockets (PHP 5)
3906array stream_socket_pair(int $domain, int $type, int $protocol) |Creates a pair of connected, indistinguishable socket streams (PHP 5 >= 5.1.0)
3907string stream_socket_recvfrom(resource $socket, int $length [, int $flags=0 [, string& $address]]) |Receives data from a socket, connected or not (PHP 5)
3908int stream_socket_sendto(resource $socket, string $data [, int $flags=0 [, string $address]]) |Sends a message to a socket, whether it is connected or not (PHP 5)
3909resource stream_socket_server(string $local_socket [, int& $errno [, string& $errstr [, int $flags=STREAM_SERVER_BIND|STREAM_SERVER_LISTEN [, resource $context]]]]) |Create an Internet or Unix domain server socket (PHP 5)
3910bool stream_socket_shutdown(resource $stream, int $how) |Shutdown a full-duplex connection (PHP 5 >= 5.2.1)
3911bool stream_supports_lock(resource $stream) |Tells whether the stream supports locking. (PHP 5 >= 5.3.0)
3912bool stream_wrapper_register(string $protocol, string $classname [, int $flags=0]) |Register a URL wrapper implemented as a PHP class (PHP 4 >= 4.3.2, PHP 5)
3913bool stream_wrapper_restore(string $protocol) |Restores a previously unregistered built-in wrapper (PHP 5 >= 5.1.0)
3914bool stream_wrapper_unregister(string $protocol) |Unregister a URL wrapper (PHP 5 >= 5.1.0)
3915string strftime(string $format [, int $timestamp=time()]) |Format a local time/date according to locale settings (PHP 4, PHP 5)
3916string strip_tags(string $str [, string $allowable_tags]) |Strip HTML and PHP tags from a string (PHP 4, PHP 5)
3917string stripcslashes(string $str) |Un-quote string quoted with addcslashes() (PHP 4, PHP 5)
3918int stripos(string $haystack, string $needle [, int $offset=0]) |Find the position of the first occurrence of a case-insensitive substring in a string (PHP 5)
3919string stripslashes(string $str) |Un-quotes a quoted string (PHP 4, PHP 5)
3920string stristr(string $haystack, mixed $needle [, bool $before_needle=false]) |Case-insensitive strstr() (PHP 4, PHP 5)
3921int strlen(string $string) |Get string length (PHP 4, PHP 5)
3922int strnatcasecmp(string $str1, string $str2) |Case insensitive string comparisons using a "natural order" algorithm (PHP 4, PHP 5)
3923int strnatcmp(string $str1, string $str2) |String comparisons using a "natural order" algorithm (PHP 4, PHP 5)
3924int strncasecmp(string $str1, string $str2, int $len) |Binary safe case-insensitive string comparison of the first n characters (PHP 4 >= 4.0.2, PHP 5)
3925int strncmp(string $str1, string $str2, int $len) |Binary safe string comparison of the first n characters (PHP 4, PHP 5)
3926string strpbrk(string $haystack, string $char_list) |Search a string for any of a set of characters (PHP 5)
3927int strpos(string $haystack, mixed $needle [, int $offset=0]) |Find the position of the first occurrence of a substring in a string (PHP 4, PHP 5)
3928array strptime(string $date, string $format) |Parse a time/date generated with strftime() (PHP 5 >= 5.1.0)
3929string strrchr(string $haystack, mixed $needle) |Find the last occurrence of a character in a string (PHP 4, PHP 5)
3930string strrev(string $string) |Reverse a string (PHP 4, PHP 5)
3931int strripos(string $haystack, string $needle [, int $offset=0]) |Find the position of the last occurrence of a case-insensitive substring in a string (PHP 5)
3932int strrpos(string $haystack, string $needle [, int $offset=0]) |Find the position of the last occurrence of a substring in a string (PHP 4, PHP 5)
3933int strspn(string $subject, string $mask [, int $start [, int $length]]) |Finds the length of the initial segment of a string consisting entirely of characters contained within a given mask. (PHP 4, PHP 5)
3934string strstr(string $haystack, mixed $needle [, bool $before_needle=false]) |Find the first occurrence of a string (PHP 4, PHP 5)
3935string strtok(string $str, string $token) |Tokenize string (PHP 4, PHP 5)
3936string strtolower(string $str) |Make a string lowercase (PHP 4, PHP 5)
3937int strtotime(string $time [, int $now=time()]) |Parse about any English textual datetime description into a Unix timestamp (PHP 4, PHP 5)
3938string strtoupper(string $string) |Make a string uppercase (PHP 4, PHP 5)
3939string strtr(string $str, string $from, string $to) |Translate characters or replace substrings (PHP 4, PHP 5)
3940string strval(mixed $var) |Get string value of a variable (PHP 4, PHP 5)
3941int substr_compare(string $main_str, string $str, int $offset [, int $length [, bool $case_insensitivity=false]]) |Binary safe comparison of two strings from an offset, up to length characters (PHP 5)
3942int substr_count(string $haystack, string $needle [, int $offset=0 [, int $length]]) |Count the number of substring occurrences (PHP 4, PHP 5)
3943mixed substr_replace(mixed $string, mixed $replacement, mixed $start [, mixed $length]) |Replace text within a portion of a string (PHP 4, PHP 5)
3944string substr(string $string, int $start [, int $length]) |Return part of a string (PHP 4, PHP 5)
3945bool svn_add(string $path [, bool $recursive=true [, bool $force=false]]) |Schedules the addition of an item in a working directory (PECL svn >= 0.1.0)
3946string svn_auth_get_parameter(string $key) |Retrieves authentication parameter (PECL svn >= 0.1.0)
3947void svn_auth_set_parameter(string $key, string $value) |Sets an authentication parameter (PECL svn >= 0.1.0)
3948array svn_blame(string $repository_url [, int $revision_no=SVN_REVISION_HEAD]) |Get the SVN blame for a file (PECL svn >= 0.3.0)
3949string svn_cat(string $repos_url [, int $revision_no]) |Returns the contents of a file in a repository (PECL svn >= 0.1.0)
3950bool svn_checkout(string $repos, string $targetpath [, int $revision [, int $flags=0]]) |Checks out a working copy from the repository (PECL svn >= 0.1.0)
3951bool svn_cleanup(string $workingdir) |Recursively cleanup a working copy directory, finishing incomplete operations and removing locks (PECL svn >= 0.1.0)
3952string svn_client_version() |Returns the version of the SVN client libraries (PECL svn >= 0.1.0)
3953array svn_commit(string $log, array $targets [, bool $recursive=true]) |Sends changes from the local working copy to the repository (PECL svn >= 0.1.0)
3954bool svn_delete(string $path [, bool $force=false]) |Delete items from a working copy or repository. (PECL svn >= 0.4.0)
3955array svn_diff(string $path1, int $rev1, string $path2, int $rev2) |Recursively diffs two paths (PECL svn >= 0.1.0)
3956bool svn_export(string $frompath, string $topath [, bool $working_copy=true [, int $revision_no=-1]]) |Export the contents of a SVN directory (PECL svn >= 0.3.0)
3957bool svn_fs_abort_txn(resource $txn) |Abort a transaction, returns true if everything is okay, false otherwise (PECL svn >= 0.2.0)
3958resource svn_fs_apply_text(resource $root, string $path) |Creates and returns a stream that will be used to replace (PECL svn >= 0.2.0)
3959resource svn_fs_begin_txn2(resource $repos, int $rev) |Create a new transaction (PECL svn >= 0.2.0)
3960bool svn_fs_change_node_prop(resource $root, string $path, string $name, string $value) |Return true if everything is ok, false otherwise (PECL svn >= 0.2.0)
3961int svn_fs_check_path(resource $fsroot, string $path) |Determines what kind of item lives at path in a given repository fsroot (PECL svn >= 0.1.0)
3962bool svn_fs_contents_changed(resource $root1, string $path1, resource $root2, string $path2) |Return true if content is different, false otherwise (PECL svn >= 0.2.0)
3963bool svn_fs_copy(resource $from_root, string $from_path, resource $to_root, string $to_path) |Copies a file or a directory, returns true if all is ok, false otherwise (PECL svn >= 0.2.0)
3964bool svn_fs_delete(resource $root, string $path) |Deletes a file or a directory, return true if all is ok, false otherwise (PECL svn >= 0.2.0)
3965array svn_fs_dir_entries(resource $fsroot, string $path) |Enumerates the directory entries under path; returns a hash of dir names to file type (PECL svn >= 0.1.0)
3966resource svn_fs_file_contents(resource $fsroot, string $path) |Returns a stream to access the contents of a file from a given version of the fs (PECL svn >= 0.1.0)
3967int svn_fs_file_length(resource $fsroot, string $path) |Returns the length of a file from a given version of the fs (PECL svn >= 0.1.0)
3968bool svn_fs_is_dir(resource $root, string $path) |Return true if the path points to a directory, false otherwise (PECL svn >= 0.2.0)
3969bool svn_fs_is_file(resource $root, string $path) |Return true if the path points to a file, false otherwise (PECL svn >= 0.2.0)
3970bool svn_fs_make_dir(resource $root, string $path) |Creates a new empty directory, returns true if all is ok, false otherwise (PECL svn >= 0.2.0)
3971bool svn_fs_make_file(resource $root, string $path) |Creates a new empty file, returns true if all is ok, false otherwise (PECL svn >= 0.2.0)
3972int svn_fs_node_created_rev(resource $fsroot, string $path) |Returns the revision in which path under fsroot was created (PECL svn >= 0.1.0)
3973string svn_fs_node_prop(resource $fsroot, string $path, string $propname) |Returns the value of a property for a node (PECL svn >= 0.1.0)
3974bool svn_fs_props_changed(resource $root1, string $path1, resource $root2, string $path2) |Return true if props are different, false otherwise (PECL svn >= 0.2.0)
3975string svn_fs_revision_prop(resource $fs, int $revnum, string $propname) |Fetches the value of a named property (PECL svn >= 0.1.0)
3976resource svn_fs_revision_root(resource $fs, int $revnum) |Get a handle on a specific version of the repository root (PECL svn >= 0.1.0)
3977resource svn_fs_txn_root(resource $txn) |Creates and returns a transaction root (PECL svn >= 0.2.0)
3978int svn_fs_youngest_rev(resource $fs) |Returns the number of the youngest revision in the filesystem (PECL svn >= 0.1.0)
3979bool svn_import(string $path, string $url, bool $nonrecursive) |Imports an unversioned path into a repository (PECL svn >= 0.2.0)
3980array svn_log(string $repos_url [, int $start_revision [, int $end_revision [, int $limit=0 [, int $flags=SVN_DISCOVER_CHANGED_PATHS|SVN_STOP_ON_COPY]]]]) |Returns the commit log messages of a repository URL (PECL svn >= 0.1.0)
3981array svn_ls(string $repos_url [, int $revision_no=SVN_REVISION_HEAD [, bool $recurse=false [, bool $peg=false]]]) |Returns list of directory contents in repository URL, optionally at revision number (PECL svn >= 0.1.0)
3982bool svn_mkdir(string $path [, string $log_message]) |Creates a directory in a working copy or repository (PECL svn >= 0.4.0)
3983resource svn_repos_create(string $path [, array $config [, array $fsconfig]]) |Create a new subversion repository at path (PECL svn >= 0.1.0)
3984resource svn_repos_fs_begin_txn_for_commit(resource $repos, int $rev, string $author, string $log_msg) |Create a new transaction (PECL svn >= 0.2.0)
3985int svn_repos_fs_commit_txn(resource $txn) |Commits a transaction and returns the new revision (PECL svn >= 0.2.0)
3986resource svn_repos_fs(resource $repos) |Gets a handle on the filesystem for a repository (PECL svn >= 0.1.0)
3987bool svn_repos_hotcopy(string $repospath, string $destpath, bool $cleanlogs) |Make a hot-copy of the repos at repospath; copy it to destpath (PECL svn >= 0.1.0)
3988resource svn_repos_open(string $path) |Open a shared lock on a repository. (PECL svn >= 0.1.0)
3989bool svn_repos_recover(string $path) |Run recovery procedures on the repository located at path. (PECL svn >= 0.1.0)
3990bool svn_revert(string $path [, bool $recursive=false]) |Revert changes to the working copy (PECL svn >= 0.3.0)
3991array svn_status(string $path [, int $flags=0]) |Returns the status of working copy files and directories (PECL svn >= 0.1.0)
3992int svn_update(string $path [, int $revno=SVN_REVISION_HEAD [, bool $recurse=true]]) |Update working copy (PECL svn >= 0.1.0)
3993void swf_actiongeturl(string $url, string $target) |Get a URL from a Shockwave Flash movie (PHP 4)
3994void swf_actiongotoframe(int $framenumber) |Play a frame and then stop (PHP 4)
3995void swf_actiongotolabel(string $label) |Display a frame with the specified label (PHP 4)
3996void swf_actionnextframe() |Go forward one frame (PHP 4)
3997void swf_actionplay() |Start playing the flash movie from the current frame (PHP 4)
3998void swf_actionprevframe() |Go backwards one frame (PHP 4)
3999void swf_actionsettarget(string $target) |Set the context for actions (PHP 4)
4000void swf_actionstop() |Stop playing the flash movie at the current frame (PHP 4)
4001void swf_actiontogglequality() |Toggle between low and high quality (PHP 4)
4002void swf_actionwaitforframe(int $framenumber, int $skipcount) |Skip actions if a frame has not been loaded (PHP 4)
4003void swf_addbuttonrecord(int $states, int $shapeid, int $depth) |Controls location, appearance and active area of the current button (PHP 4)
4004void swf_addcolor(float $r, float $g, float $b, float $a) |Set the global add color to the rgba value specified (PHP 4)
4005void swf_closefile( [int $return_file]) |Close the current Shockwave Flash file (PHP 4)
4006void swf_definebitmap(int $objid, string $image_name) |Define a bitmap (PHP 4)
4007void swf_definefont(int $fontid, string $fontname) |Defines a font (PHP 4)
4008void swf_defineline(int $objid, float $x1, float $y1, float $x2, float $y2, float $width) |Define a line (PHP 4)
4009void swf_definepoly(int $objid, array $coords, int $npoints, float $width) |Define a polygon (PHP 4)
4010void swf_definerect(int $objid, float $x1, float $y1, float $x2, float $y2, float $width) |Define a rectangle (PHP 4)
4011void swf_definetext(int $objid, string $str, int $docenter) |Define a text string (PHP 4)
4012void swf_endbutton() |End the definition of the current button (PHP 4)
4013void swf_enddoaction() |End the current action (PHP 4)
4014void swf_endshape() |Completes the definition of the current shape (PHP 4)
4015void swf_endsymbol() |End the definition of a symbol (PHP 4)
4016void swf_fontsize(float $size) |Change the font size (PHP 4)
4017void swf_fontslant(float $slant) |Set the font slant (PHP 4)
4018void swf_fonttracking(float $tracking) |Set the current font tracking (PHP 4)
4019array swf_getbitmapinfo(int $bitmapid) |Get information about a bitmap (PHP 4)
4020array swf_getfontinfo() |Gets font information (PHP 4)
4021int swf_getframe() |Get the frame number of the current frame (PHP 4)
4022void swf_labelframe(string $name) |Label the current frame (PHP 4)
4023void swf_lookat(float $view_x, float $view_y, float $view_z, float $reference_x, float $reference_y, float $reference_z, float $twist) |Define a viewing transformation (PHP 4)
4024void swf_modifyobject(int $depth, int $how) |Modify an object (PHP 4)
4025void swf_mulcolor(float $r, float $g, float $b, float $a) |Sets the global multiply color to the rgba value specified (PHP 4)
4026int swf_nextid() |Returns the next free object id (PHP 4)
4027void swf_oncondition(int $transition) |Describe a transition used to trigger an action list (PHP 4)
4028void swf_openfile(string $filename, float $width, float $height, float $framerate, float $r, float $g, float $b) |Open a new Shockwave Flash file (PHP 4)
4029void swf_ortho(float $xmin, float $xmax, float $ymin, float $ymax, float $zmin, float $zmax) |Defines an orthographic mapping of user coordinates onto the current viewport (PHP 4 >= 4.0.1)
4030void swf_ortho2(float $xmin, float $xmax, float $ymin, float $ymax) |Defines 2D orthographic mapping of user coordinates onto the current viewport (PHP 4)
4031void swf_perspective(float $fovy, float $aspect, float $near, float $far) |Define a perspective projection transformation (PHP 4)
4032void swf_placeobject(int $objid, int $depth) |Place an object onto the screen (PHP 4)
4033void swf_polarview(float $dist, float $azimuth, float $incidence, float $twist) |Define the viewer's position with polar coordinates (PHP 4)
4034void swf_popmatrix() |Restore a previous transformation matrix (PHP 4)
4035void swf_posround(int $round) |Enables or Disables the rounding of the translation when objects are placed or moved (PHP 4)
4036void swf_pushmatrix() |Push the current transformation matrix back onto the stack (PHP 4)
4037void swf_removeobject(int $depth) |Remove an object (PHP 4)
4038void swf_rotate(float $angle, string $axis) |Rotate the current transformation (PHP 4)
4039void swf_scale(float $x, float $y, float $z) |Scale the current transformation (PHP 4)
4040void swf_setfont(int $fontid) |Change the current font (PHP 4)
4041void swf_setframe(int $framenumber) |Switch to a specified frame (PHP 4)
4042void swf_shapearc(float $x, float $y, float $r, float $ang1, float $ang2) |Draw a circular arc (PHP 4)
4043void swf_shapecurveto(float $x1, float $y1, float $x2, float $y2) |Draw a quadratic bezier curve between two points (PHP 4)
4044void swf_shapecurveto3(float $x1, float $y1, float $x2, float $y2, float $x3, float $y3) |Draw a cubic bezier curve (PHP 4)
4045void swf_shapefillbitmapclip(int $bitmapid) |Set current fill mode to clipped bitmap (PHP 4)
4046void swf_shapefillbitmaptile(int $bitmapid) |Set current fill mode to tiled bitmap (PHP 4)
4047void swf_shapefilloff() |Turns off filling (PHP 4)
4048void swf_shapefillsolid(float $r, float $g, float $b, float $a) |Set the current fill style to the specified color (PHP 4)
4049void swf_shapelinesolid(float $r, float $g, float $b, float $a, float $width) |Set the current line style (PHP 4)
4050void swf_shapelineto(float $x, float $y) |Draw a line (PHP 4)
4051void swf_shapemoveto(float $x, float $y) |Move the current position (PHP 4)
4052void swf_showframe() |Display the current frame (PHP 4)
4053void swf_startbutton(int $objid, int $type) |Start the definition of a button (PHP 4)
4054void swf_startdoaction() |Start a description of an action list for the current frame (PHP 4)
4055void swf_startshape(int $objid) |Start a complex shape (PHP 4)
4056void swf_startsymbol(int $objid) |Define a symbol (PHP 4)
4057float swf_textwidth(string $str) |Get the width of a string (PHP 4)
4058void swf_translate(float $x, float $y, float $z) |Translate the current transformations (PHP 4)
4059void swf_viewport(float $xmin, float $xmax, float $ymin, float $ymax) |Select an area for future drawing (PHP 4)
4060int sybase_affected_rows( [resource $link_identifier]) |Gets number of affected rows in last query (PHP 4, PHP 5)
4061bool sybase_close( [resource $link_identifier]) |Closes a Sybase connection (PHP 4, PHP 5)
4062resource sybase_connect( [string $servername [, string $username [, string $password [, string $charset [, string $appname [, bool $new=false]]]]]]) |Opens a Sybase server connection (PHP 4, PHP 5)
4063bool sybase_data_seek(resource $result_identifier, int $row_number) |Moves internal row pointer (PHP 4, PHP 5)
4064void sybase_deadlock_retry_count(int $retry_count) |Sets the deadlock retry count (PHP 4 >= 4.3.0, PHP 5)
4065array sybase_fetch_array(resource $result) |Fetch row as array (PHP 4, PHP 5)
4066array sybase_fetch_assoc(resource $result) |Fetch a result row as an associative array (PHP 4 >= 4.3.0, PHP 5)
4067object sybase_fetch_field(resource $result [, int $field_offset=-1]) |Get field information from a result (PHP 4, PHP 5)
4068object sybase_fetch_object(resource $result [, mixed $object]) |Fetch a row as an object (PHP 4, PHP 5)
4069array sybase_fetch_row(resource $result) |Get a result row as an enumerated array (PHP 4, PHP 5)
4070bool sybase_field_seek(resource $result, int $field_offset) |Sets field offset (PHP 4, PHP 5)
4071bool sybase_free_result(resource $result) |Frees result memory (PHP 4, PHP 5)
4072string sybase_get_last_message() |Returns the last message from the server (PHP 4, PHP 5)
4073void sybase_min_client_severity(int $severity) |Sets minimum client severity (PHP 4, PHP 5)
4074void sybase_min_error_severity(int $severity) |Sets minimum error severity (PHP 4, PHP 5)
4075void sybase_min_message_severity(int $severity) |Sets minimum message severity (PHP 4, PHP 5)
4076void sybase_min_server_severity(int $severity) |Sets minimum server severity (PHP 4, PHP 5)
4077int sybase_num_fields(resource $result) |Gets the number of fields in a result set (PHP 4, PHP 5)
4078int sybase_num_rows(resource $result) |Get number of rows in a result set (PHP 4, PHP 5)
4079resource sybase_pconnect( [string $servername [, string $username [, string $password [, string $charset [, string $appname]]]]]) |Open persistent Sybase connection (PHP 4, PHP 5)
4080mixed sybase_query(string $query [, resource $link_identifier]) |Sends a Sybase query (PHP 4, PHP 5)
4081string sybase_result(resource $result, int $row, mixed $field) |Get result data (PHP 4, PHP 5)
4082bool sybase_select_db(string $database_name [, resource $link_identifier]) |Selects a Sybase database (PHP 4, PHP 5)
4083bool sybase_set_message_handler(callable $handler [, resource $link_identifier]) |Sets the handler called when a server message is raised (PHP 4 >= 4.3.0, PHP 5)
4084resource sybase_unbuffered_query(string $query, resource $link_identifier [, bool $store_result]) |Send a Sybase query and do not block (PHP 4 >= 4.3.0, PHP 5)
4085bool symlink(string $target, string $link) |Creates a symbolic link (PHP 4, PHP 5)
4086string sys_get_temp_dir() |Returns directory path used for temporary files (PHP 5 >= 5.2.1)
4087array sys_getloadavg() |Gets system load average (PHP 5 >= 5.1.3)
4088bool syslog(int $priority, string $message) |Generate a system log message (PHP 4, PHP 5)
4089string system(string $command [, int& $return_var]) |Execute an external program and display the output (PHP 4, PHP 5)
4090bool taint(string& $string [, string $...]) |Taint a string (PECL taint >=0.1.0)
4091float tan(float $arg) |Tangent (PHP 4, PHP 5)
4092float tanh(float $arg) |Hyperbolic tangent (PHP 4 >= 4.1.0, PHP 5)
4093bool tcpwrap_check(string $daemon, string $address [, string $user [, bool $nodns=false]]) |Performs a tcpwrap check (PECL tcpwrap >= 0.1.0)
4094string tempnam(string $dir, string $prefix) |Create file with unique file name (PHP 4, PHP 5)
4095string textdomain(string $text_domain) |Sets the default domain (PHP 4, PHP 5)
4096int tidy_access_count(tidy $object) |Returns the Number of Tidy accessibility warnings encountered for specified document (PHP 5, PECL tidy >= 0.5.2)
4097int tidy_config_count(tidy $object) |Returns the Number of Tidy configuration errors encountered for specified document (PHP 5, PECL tidy >= 0.5.2)
4098int tidy_error_count(tidy $object) |Returns the Number of Tidy errors encountered for specified document (PHP 5, PECL tidy >= 0.5.2)
4099string tidy_get_output(tidy $object) |Return a string representing the parsed tidy markup (PHP 5, PECL tidy >= 0.5.2)
4100void tidy_load_config(string $filename, string $encoding) |Load an ASCII Tidy configuration file with the specified encoding (PECL tidy >= 0.5.2)
4101bool tidy_reset_config() |Restore Tidy configuration to default values (PECL tidy >= 0.7.0)
4102bool tidy_save_config(string $filename) |Save current settings to named file (PECL tidy >= 0.5.2)
4103bool tidy_set_encoding(string $encoding) |Set the input/output character encoding for parsing markup (PECL tidy >= 0.5.2)
4104bool tidy_setopt(string $option, mixed $value) |Updates the configuration settings for the specified tidy document (PECL tidy >= 0.5.2)
4105int tidy_warning_count(tidy $object) |Returns the Number of Tidy warnings encountered for specified document (PHP 5, PECL tidy >= 0.5.2)
4106mixed time_nanosleep(int $seconds, int $nanoseconds) |Delay for a number of seconds and nanoseconds (PHP 5)
4107bool time_sleep_until(float $timestamp) |Make the script sleep until the specified time (PHP 5 >= 5.1.0)
4108int time() |Return current Unix timestamp (PHP 4, PHP 5)
4109string timezone_name_from_abbr(string $abbr [, int $gmtOffset=-1 [, int $isdst=-1]]) |Returns the timezone name from abbreviation (PHP 5 >= 5.1.3)
4110string timezone_version_get() |Gets the version of the timezonedb (PHP 5 >= 5.3.0)
4111resource tmpfile() |Creates a temporary file (PHP 4, PHP 5)
4112array token_get_all(string $source) |Split given source into PHP tokens (PHP 4 >= 4.2.0, PHP 5)
4113string token_name(int $token) |Get the symbolic name of a given PHP token (PHP 4 >= 4.2.0, PHP 5)
4114bool touch(string $filename [, int $time=time() [, int $atime]]) |Sets access and modification time of file (PHP 4, PHP 5)
4115array trader_acos(array $real) |Vector Trigonometric ACos (PECL trader >= 0.2.0)
4116array trader_ad(array $high, array $low, array $close, array $volume) |Chaikin A/D Line (PECL trader >= 0.2.0)
4117array trader_add(array $real0, array $real1) |Vector Arithmetic Add (PECL trader >= 0.2.0)
4118array trader_adosc(array $high, array $low, array $close, array $volume [, integer $fastPeriod [, integer $slowPeriod]]) |Chaikin A/D Oscillator (PECL trader >= 0.2.0)
4119array trader_adx(array $high, array $low, array $close [, integer $timePeriod]) |Average Directional Movement Index (PECL trader >= 0.2.0)
4120array trader_adxr(array $high, array $low, array $close [, integer $timePeriod]) |Average Directional Movement Index Rating (PECL trader >= 0.2.0)
4121array trader_apo(array $real [, integer $fastPeriod [, integer $slowPeriod [, integer $mAType]]]) |Absolute Price Oscillator (PECL trader >= 0.2.0)
4122array trader_aroon(array $high, array $low [, integer $timePeriod]) |Aroon (PECL trader >= 0.2.0)
4123array trader_aroonosc(array $high, array $low [, integer $timePeriod]) |Aroon Oscillator (PECL trader >= 0.2.0)
4124array trader_asin(array $real) |Vector Trigonometric ASin (PECL trader >= 0.2.0)
4125array trader_atan(array $real) |Vector Trigonometric ATan (PECL trader >= 0.2.0)
4126array trader_atr(array $high, array $low, array $close [, integer $timePeriod]) |Average True Range (PECL trader >= 0.2.0)
4127array trader_avgprice(array $open, array $high, array $low, array $close) |Average Price (PECL trader >= 0.2.0)
4128array trader_bbands(array $real [, integer $timePeriod [, float $nbDevUp [, float $nbDevDn [, integer $mAType]]]]) |Bollinger Bands (PECL trader >= 0.2.0)
4129array trader_beta(array $real0, array $real1 [, integer $timePeriod]) |Beta (PECL trader >= 0.2.0)
4130array trader_bop(array $open, array $high, array $low, array $close) |Balance Of Power (PECL trader >= 0.2.0)
4131array trader_cci(array $high, array $low, array $close [, integer $timePeriod]) |Commodity Channel Index (PECL trader >= 0.2.0)
4132array trader_cdl2crows(array $open, array $high, array $low, array $close) |Two Crows (PECL trader >= 0.2.0)
4133array trader_cdl3blackcrows(array $open, array $high, array $low, array $close) |Three Black Crows (PECL trader >= 0.2.0)
4134array trader_cdl3inside(array $open, array $high, array $low, array $close) |Three Inside Up/Down (PECL trader >= 0.2.0)
4135array trader_cdl3linestrike(array $open, array $high, array $low, array $close) |Three-Line Strike (PECL trader >= 0.2.0)
4136array trader_cdl3outside(array $open, array $high, array $low, array $close) |Three Outside Up/Down (PECL trader >= 0.2.0)
4137array trader_cdl3starsinsouth(array $open, array $high, array $low, array $close) |Three Stars In The South (PECL trader >= 0.2.0)
4138array trader_cdl3whitesoldiers(array $open, array $high, array $low, array $close) |Three Advancing White Soldiers (PECL trader >= 0.2.0)
4139array trader_cdlabandonedbaby(array $open, array $high, array $low, array $close [, float $penetration]) |Abandoned Baby (PECL trader >= 0.2.0)
4140array trader_cdladvanceblock(array $open, array $high, array $low, array $close) |Advance Block (PECL trader >= 0.2.0)
4141array trader_cdlbelthold(array $open, array $high, array $low, array $close) |Belt-hold (PECL trader >= 0.2.0)
4142array trader_cdlbreakaway(array $open, array $high, array $low, array $close) |Breakaway (PECL trader >= 0.2.0)
4143array trader_cdlclosingmarubozu(array $open, array $high, array $low, array $close) |Closing Marubozu (PECL trader >= 0.2.0)
4144array trader_cdlconcealbabyswall(array $open, array $high, array $low, array $close) |Concealing Baby Swallow (PECL trader >= 0.2.0)
4145array trader_cdlcounterattack(array $open, array $high, array $low, array $close) |Counterattack (PECL trader >= 0.2.0)
4146array trader_cdldarkcloudcover(array $open, array $high, array $low, array $close [, float $penetration]) |Dark Cloud Cover (PECL trader >= 0.2.0)
4147array trader_cdldoji(array $open, array $high, array $low, array $close) |Doji (PECL trader >= 0.2.0)
4148array trader_cdldojistar(array $open, array $high, array $low, array $close) |Doji Star (PECL trader >= 0.2.0)
4149array trader_cdldragonflydoji(array $open, array $high, array $low, array $close) |Dragonfly Doji (PECL trader >= 0.2.0)
4150array trader_cdlengulfing(array $open, array $high, array $low, array $close) |Engulfing Pattern (PECL trader >= 0.2.0)
4151array trader_cdleveningdojistar(array $open, array $high, array $low, array $close [, float $penetration]) |Evening Doji Star (PECL trader >= 0.2.0)
4152array trader_cdleveningstar(array $open, array $high, array $low, array $close [, float $penetration]) |Evening Star (PECL trader >= 0.2.0)
4153array trader_cdlgapsidesidewhite(array $open, array $high, array $low, array $close) |Up/Down-gap side-by-side white lines (PECL trader >= 0.2.0)
4154array trader_cdlgravestonedoji(array $open, array $high, array $low, array $close) |Gravestone Doji (PECL trader >= 0.2.0)
4155array trader_cdlhammer(array $open, array $high, array $low, array $close) |Hammer (PECL trader >= 0.2.0)
4156array trader_cdlhangingman(array $open, array $high, array $low, array $close) |Hanging Man (PECL trader >= 0.2.0)
4157array trader_cdlharami(array $open, array $high, array $low, array $close) |Harami Pattern (PECL trader >= 0.2.0)
4158array trader_cdlharamicross(array $open, array $high, array $low, array $close) |Harami Cross Pattern (PECL trader >= 0.2.0)
4159array trader_cdlhighwave(array $open, array $high, array $low, array $close) |High-Wave Candle (PECL trader >= 0.2.0)
4160array trader_cdlhikkake(array $open, array $high, array $low, array $close) |Hikkake Pattern (PECL trader >= 0.2.0)
4161array trader_cdlhikkakemod(array $open, array $high, array $low, array $close) |Modified Hikkake Pattern (PECL trader >= 0.2.0)
4162array trader_cdlhomingpigeon(array $open, array $high, array $low, array $close) |Homing Pigeon (PECL trader >= 0.2.0)
4163array trader_cdlidentical3crows(array $open, array $high, array $low, array $close) |Identical Three Crows (PECL trader >= 0.2.0)
4164array trader_cdlinneck(array $open, array $high, array $low, array $close) |In-Neck Pattern (PECL trader >= 0.2.0)
4165array trader_cdlinvertedhammer(array $open, array $high, array $low, array $close) |Inverted Hammer (PECL trader >= 0.2.0)
4166array trader_cdlkicking(array $open, array $high, array $low, array $close) |Kicking (PECL trader >= 0.2.0)
4167array trader_cdlkickingbylength(array $open, array $high, array $low, array $close) |Kicking - bull/bear determined by the longer marubozu (PECL trader >= 0.2.0)
4168array trader_cdlladderbottom(array $open, array $high, array $low, array $close) |Ladder Bottom (PECL trader >= 0.2.0)
4169array trader_cdllongleggeddoji(array $open, array $high, array $low, array $close) |Long Legged Doji (PECL trader >= 0.2.0)
4170array trader_cdllongline(array $open, array $high, array $low, array $close) |Long Line Candle (PECL trader >= 0.2.0)
4171array trader_cdlmarubozu(array $open, array $high, array $low, array $close) |Marubozu (PECL trader >= 0.2.0)
4172array trader_cdlmatchinglow(array $open, array $high, array $low, array $close) |Matching Low (PECL trader >= 0.2.0)
4173array trader_cdlmathold(array $open, array $high, array $low, array $close [, float $penetration]) |Mat Hold (PECL trader >= 0.2.0)
4174array trader_cdlmorningdojistar(array $open, array $high, array $low, array $close [, float $penetration]) |Morning Doji Star (PECL trader >= 0.2.0)
4175array trader_cdlmorningstar(array $open, array $high, array $low, array $close [, float $penetration]) |Morning Star (PECL trader >= 0.2.0)
4176array trader_cdlonneck(array $open, array $high, array $low, array $close) |On-Neck Pattern (PECL trader >= 0.2.0)
4177array trader_cdlpiercing(array $open, array $high, array $low, array $close) |Piercing Pattern (PECL trader >= 0.2.0)
4178array trader_cdlrickshawman(array $open, array $high, array $low, array $close) |Rickshaw Man (PECL trader >= 0.2.0)
4179array trader_cdlrisefall3methods(array $open, array $high, array $low, array $close) |Rising/Falling Three Methods (PECL trader >= 0.2.0)
4180array trader_cdlseparatinglines(array $open, array $high, array $low, array $close) |Separating Lines (PECL trader >= 0.2.0)
4181array trader_cdlshootingstar(array $open, array $high, array $low, array $close) |Shooting Star (PECL trader >= 0.2.0)
4182array trader_cdlshortline(array $open, array $high, array $low, array $close) |Short Line Candle (PECL trader >= 0.2.0)
4183array trader_cdlspinningtop(array $open, array $high, array $low, array $close) |Spinning Top (PECL trader >= 0.2.0)
4184array trader_cdlstalledpattern(array $open, array $high, array $low, array $close) |Stalled Pattern (PECL trader >= 0.2.0)
4185array trader_cdlsticksandwich(array $open, array $high, array $low, array $close) |Stick Sandwich (PECL trader >= 0.2.0)
4186array trader_cdltakuri(array $open, array $high, array $low, array $close) |Takuri (Dragonfly Doji with very long lower shadow) (PECL trader >= 0.2.0)
4187array trader_cdltasukigap(array $open, array $high, array $low, array $close) |Tasuki Gap (PECL trader >= 0.2.0)
4188array trader_cdlthrusting(array $open, array $high, array $low, array $close) |Thrusting Pattern (PECL trader >= 0.2.0)
4189array trader_cdltristar(array $open, array $high, array $low, array $close) |Tristar Pattern (PECL trader >= 0.2.0)
4190array trader_cdlunique3river(array $open, array $high, array $low, array $close) |Unique 3 River (PECL trader >= 0.2.0)
4191array trader_cdlupsidegap2crows(array $open, array $high, array $low, array $close) |Upside Gap Two Crows (PECL trader >= 0.2.0)
4192array trader_cdlxsidegap3methods(array $open, array $high, array $low, array $close) |Upside/Downside Gap Three Methods (PECL trader >= 0.2.0)
4193array trader_ceil(array $real) |Vector Ceil (PECL trader >= 0.2.0)
4194array trader_cmo(array $real [, integer $timePeriod]) |Chande Momentum Oscillator (PECL trader >= 0.2.0)
4195array trader_correl(array $real0, array $real1 [, integer $timePeriod]) |Pearson's Correlation Coefficient (r) (PECL trader >= 0.2.0)
4196array trader_cos(array $real) |Vector Trigonometric Cos (PECL trader >= 0.2.0)
4197array trader_cosh(array $real) |Vector Trigonometric Cosh (PECL trader >= 0.2.0)
4198array trader_dema(array $real [, integer $timePeriod]) |Double Exponential Moving Average (PECL trader >= 0.2.0)
4199array trader_div(array $real0, array $real1) |Vector Arithmetic Div (PECL trader >= 0.2.0)
4200array trader_dx(array $high, array $low, array $close [, integer $timePeriod]) |Directional Movement Index (PECL trader >= 0.2.0)
4201array trader_ema(array $real [, integer $timePeriod]) |Exponential Moving Average (PECL trader >= 0.2.0)
4202integer trader_errno() |Get error code (PECL trader >= 0.3.0)
4203array trader_exp(array $real) |Vector Arithmetic Exp (PECL trader >= 0.2.0)
4204array trader_floor(array $real) |Vector Floor (PECL trader >= 0.2.0)
4205integer trader_get_compat() |Get compatibility mode (PECL trader >= 0.2.2)
4206integer trader_get_unstable_period(integer $functionId) |Get unstable period (PECL trader >= 0.2.2)
4207array trader_ht_dcperiod(array $real) |Hilbert Transform - Dominant Cycle Period (PECL trader >= 0.2.0)
4208array trader_ht_dcphase(array $real) |Hilbert Transform - Dominant Cycle Phase (PECL trader >= 0.2.0)
4209array trader_ht_phasor(array $real) |Hilbert Transform - Phasor Components (PECL trader >= 0.2.0)
4210array trader_ht_sine(array $real) |Hilbert Transform - SineWave (PECL trader >= 0.2.0)
4211array trader_ht_trendline(array $real) |Hilbert Transform - Instantaneous Trendline (PECL trader >= 0.2.0)
4212array trader_ht_trendmode(array $real) |Hilbert Transform - Trend vs Cycle Mode (PECL trader >= 0.2.0)
4213array trader_kama(array $real [, integer $timePeriod]) |Kaufman Adaptive Moving Average (PECL trader >= 0.2.0)
4214array trader_linearreg_angle(array $real [, integer $timePeriod]) |Linear Regression Angle (PECL trader >= 0.2.0)
4215array trader_linearreg_intercept(array $real [, integer $timePeriod]) |Linear Regression Intercept (PECL trader >= 0.2.0)
4216array trader_linearreg_slope(array $real [, integer $timePeriod]) |Linear Regression Slope (PECL trader >= 0.2.0)
4217array trader_linearreg(array $real [, integer $timePeriod]) |Linear Regression (PECL trader >= 0.2.0)
4218array trader_ln(array $real) |Vector Log Natural (PECL trader >= 0.2.0)
4219array trader_log10(array $real) |Vector Log10 (PECL trader >= 0.2.0)
4220array trader_ma(array $real [, integer $timePeriod [, integer $mAType]]) |Moving average (PECL trader >= 0.2.0)
4221array trader_macd(array $real [, integer $fastPeriod [, integer $slowPeriod [, integer $signalPeriod]]]) |Moving Average Convergence/Divergence (PECL trader >= 0.2.0)
4222array trader_macdext(array $real [, integer $fastPeriod [, integer $fastMAType [, integer $slowPeriod [, integer $slowMAType [, integer $signalPeriod [, integer $signalMAType]]]]]]) |MACD with controllable MA type (PECL trader >= 0.2.0)
4223array trader_macdfix(array $real [, integer $signalPeriod]) |Moving Average Convergence/Divergence Fix 12/26 (PECL trader >= 0.2.0)
4224array trader_mama(array $real [, float $fastLimit [, float $slowLimit]]) |MESA Adaptive Moving Average (PECL trader >= 0.2.0)
4225array trader_mavp(array $real, array $periods [, integer $minPeriod [, integer $maxPeriod [, integer $mAType]]]) |Moving average with variable period (PECL trader >= 0.2.0)
4226array trader_max(array $real [, integer $timePeriod]) |Highest value over a specified period (PECL trader >= 0.2.0)
4227array trader_maxindex(array $real [, integer $timePeriod]) |Index of highest value over a specified period (PECL trader >= 0.2.0)
4228array trader_medprice(array $high, array $low) |Median Price (PECL trader >= 0.2.0)
4229array trader_mfi(array $high, array $low, array $close, array $volume [, integer $timePeriod]) |Money Flow Index (PECL trader >= 0.2.0)
4230array trader_midpoint(array $real [, integer $timePeriod]) |MidPoint over period (PECL trader >= 0.2.0)
4231array trader_midprice(array $high, array $low [, integer $timePeriod]) |Midpoint Price over period (PECL trader >= 0.2.0)
4232array trader_min(array $real [, integer $timePeriod]) |Lowest value over a specified period (PECL trader >= 0.2.0)
4233array trader_minindex(array $real [, integer $timePeriod]) |Index of lowest value over a specified period (PECL trader >= 0.2.0)
4234array trader_minmax(array $real [, integer $timePeriod]) |Lowest and highest values over a specified period (PECL trader >= 0.2.0)
4235array trader_minmaxindex(array $real [, integer $timePeriod]) |Indexes of lowest and highest values over a specified period (PECL trader >= 0.2.0)
4236array trader_minus_di(array $high, array $low, array $close [, integer $timePeriod]) |Minus Directional Indicator (PECL trader >= 0.2.0)
4237array trader_minus_dm(array $high, array $low [, integer $timePeriod]) |Minus Directional Movement (PECL trader >= 0.2.0)
4238array trader_mom(array $real [, integer $timePeriod]) |Momentum (PECL trader >= 0.2.0)
4239array trader_mult(array $real0, array $real1) |Vector Arithmetic Mult (PECL trader >= 0.2.0)
4240array trader_natr(array $high, array $low, array $close [, integer $timePeriod]) |Normalized Average True Range (PECL trader >= 0.2.0)
4241array trader_obv(array $real, array $volume) |On Balance Volume (PECL trader >= 0.2.0)
4242array trader_plus_di(array $high, array $low, array $close [, integer $timePeriod]) |Plus Directional Indicator (PECL trader >= 0.2.0)
4243array trader_plus_dm(array $high, array $low [, integer $timePeriod]) |Plus Directional Movement (PECL trader >= 0.2.0)
4244array trader_ppo(array $real [, integer $fastPeriod [, integer $slowPeriod [, integer $mAType]]]) |Percentage Price Oscillator (PECL trader >= 0.2.0)
4245array trader_roc(array $real [, integer $timePeriod]) |Rate of change : ((price/prevPrice)-1)*100 (PECL trader >= 0.2.0)
4246array trader_rocp(array $real [, integer $timePeriod]) |Rate of change Percentage: (price-prevPrice)/prevPrice (PECL trader >= 0.2.0)
4247array trader_rocr(array $real [, integer $timePeriod]) |Rate of change ratio: (price/prevPrice) (PECL trader >= 0.2.0)
4248array trader_rocr100(array $real [, integer $timePeriod]) |Rate of change ratio 100 scale: (price/prevPrice)*100 (PECL trader >= 0.2.0)
4249array trader_rsi(array $real [, integer $timePeriod]) |Relative Strength Index (PECL trader >= 0.2.0)
4250array trader_sar(array $high, array $low [, float $acceleration [, float $maximum]]) |Parabolic SAR (PECL trader >= 0.2.0)
4251array trader_sarext(array $high, array $low [, float $startValue [, float $offsetOnReverse [, float $accelerationInitLong [, float $accelerationLong [, float $accelerationMaxLong [, float $accelerationInitShort [, float $accelerationShort [, float $accelerationMaxShort]]]]]]]]) |Parabolic SAR - Extended (PECL trader >= 0.2.0)
4252void trader_set_compat(integer $compatId) |Set compatibility mode (PECL trader >= 0.2.2)
4253void trader_set_unstable_period(integer $functionId, integer $timePeriod) |Set unstable period (PECL trader >= 0.2.2)
4254array trader_sin(array $real) |Vector Trigonometric Sin (PECL trader >= 0.2.0)
4255array trader_sinh(array $real) |Vector Trigonometric Sinh (PECL trader >= 0.2.0)
4256array trader_sma(array $real [, integer $timePeriod]) |Simple Moving Average (PECL trader >= 0.2.0)
4257array trader_sqrt(array $real) |Vector Square Root (PECL trader >= 0.2.0)
4258array trader_stddev(array $real [, integer $timePeriod [, float $nbDev]]) |Standard Deviation (PECL trader >= 0.2.0)
4259array trader_stoch(array $high, array $low, array $close [, integer $fastK_Period [, integer $slowK_Period [, integer $slowK_MAType [, integer $slowD_Period [, integer $slowD_MAType]]]]]) |Stochastic (PECL trader >= 0.2.0)
4260array trader_stochf(array $high, array $low, array $close [, integer $fastK_Period [, integer $fastD_Period [, integer $fastD_MAType]]]) |Stochastic Fast (PECL trader >= 0.2.0)
4261array trader_stochrsi(array $real [, integer $timePeriod [, integer $fastK_Period [, integer $fastD_Period [, integer $fastD_MAType]]]]) |Stochastic Relative Strength Index (PECL trader >= 0.2.0)
4262array trader_sub(array $real0, array $real1) |Vector Arithmetic Substraction (PECL trader >= 0.2.0)
4263array trader_sum(array $real [, integer $timePeriod]) |Summation (PECL trader >= 0.2.0)
4264array trader_t3(array $real [, integer $timePeriod [, float $vFactor]]) |Triple Exponential Moving Average (T3) (PECL trader >= 0.2.0)
4265array trader_tan(array $real) |Vector Trigonometric Tan (PECL trader >= 0.2.0)
4266array trader_tanh(array $real) |Vector Trigonometric Tanh (PECL trader >= 0.2.0)
4267array trader_tema(array $real [, integer $timePeriod]) |Triple Exponential Moving Average (PECL trader >= 0.2.0)
4268array trader_trange(array $high, array $low, array $close) |True Range (PECL trader >= 0.2.0)
4269array trader_trima(array $real [, integer $timePeriod]) |Triangular Moving Average (PECL trader >= 0.2.0)
4270array trader_trix(array $real [, integer $timePeriod]) |1-day Rate-Of-Change (ROC) of a Triple Smooth EMA (PECL trader >= 0.2.0)
4271array trader_tsf(array $real [, integer $timePeriod]) |Time Series Forecast (PECL trader >= 0.2.0)
4272array trader_typprice(array $high, array $low, array $close) |Typical Price (PECL trader >= 0.2.0)
4273array trader_ultosc(array $high, array $low, array $close [, integer $timePeriod1 [, integer $timePeriod2 [, integer $timePeriod3]]]) |Ultimate Oscillator (PECL trader >= 0.2.0)
4274array trader_var(array $real [, integer $timePeriod [, float $nbDev]]) |Variance (PECL trader >= 0.2.0)
4275array trader_wclprice(array $high, array $low, array $close) |Weighted Close Price (PECL trader >= 0.2.0)
4276array trader_willr(array $high, array $low, array $close [, integer $timePeriod]) |Williams' %R (PECL trader >= 0.2.0)
4277array trader_wma(array $real [, integer $timePeriod]) |Weighted Moving Average (PECL trader >= 0.2.0)
4278bool trait_exists(string $traitname [, bool $autoload]) |Checks if the trait exists (No version information available, might only be in SVN)
4279bool trigger_error(string $error_msg [, int $error_type=E_USER_NOTICE]) |Generates a user-level error/warning/notice message (PHP 4 >= 4.0.1, PHP 5)
4280string trim(string $str [, string $charlist]) |Strip whitespace (or other characters) from the beginning and end of a string (PHP 4, PHP 5)
4281bool uasort(array& $array, callable $cmp_function) |Sort an array with a user-defined comparison function and maintain index association (PHP 4, PHP 5)
4282string ucfirst(string $str) |Make a string's first character uppercase (PHP 4, PHP 5)
4283string ucwords(string $str) |Uppercase the first character of each word in a string (PHP 4, PHP 5)
4284bool udm_add_search_limit(resource $agent, int $var, string $val) |Add various search limits (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4285resource udm_alloc_agent_array(array $databases) |Allocate mnoGoSearch session (PHP 4 >= 4.3.3, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4286resource udm_alloc_agent(string $dbaddr [, string $dbmode]) |Allocate mnoGoSearch session (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4287int udm_api_version() |Get mnoGoSearch API version (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4288array udm_cat_list(resource $agent, string $category) |Get all the categories on the same level with the current one (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4289array udm_cat_path(resource $agent, string $category) |Get the path to the current category (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4290bool udm_check_charset(resource $agent, string $charset) |Check if the given charset is known to mnogosearch (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4291int udm_check_stored(resource $agent, int $link, string $doc_id) |Check connection to stored (PHP 4 >= 4.2.0)
4292bool udm_clear_search_limits(resource $agent) |Clear all mnoGoSearch search restrictions (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4293int udm_close_stored(resource $agent, int $link) |Close connection to stored (PHP 4 >= 4.2.0)
4294int udm_crc32(resource $agent, string $str) |Return CRC32 checksum of given string (PHP 4 >= 4.2.0, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4295int udm_errno(resource $agent) |Get mnoGoSearch error number (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4296string udm_error(resource $agent) |Get mnoGoSearch error message (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4297resource udm_find(resource $agent, string $query) |Perform search (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4298int udm_free_agent(resource $agent) |Free mnoGoSearch session (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4299bool udm_free_ispell_data(int $agent) |Free memory allocated for ispell data (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4300bool udm_free_res(resource $res) |Free mnoGoSearch result (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4301int udm_get_doc_count(resource $agent) |Get total number of documents in database (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4302string udm_get_res_field(resource $res, int $row, int $field) |Fetch a result field (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4303string udm_get_res_param(resource $res, int $param) |Get mnoGoSearch result parameters (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4304int udm_hash32(resource $agent, string $str) |Return Hash32 checksum of gived string (PHP 4 >= 4.3.3, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4305bool udm_load_ispell_data(resource $agent, int $var, string $val1, string $val2, int $flag) |Load ispell data (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4306int udm_open_stored(resource $agent, string $storedaddr) |Open connection to stored (PHP 4 >= 4.2.0)
4307bool udm_set_agent_param(resource $agent, int $var, string $val) |Set mnoGoSearch agent session parameters (PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0)
4308bool uksort(array& $array, callable $cmp_function) |Sort an array by keys using a user-defined comparison function (PHP 4, PHP 5)
4309int umask( [int $mask]) |Changes the current umask (PHP 4, PHP 5)
4310string uniqid( [string $prefix="" [, bool $more_entropy=false]]) |Generate a unique ID (PHP 4, PHP 5)
4311int unixtojd( [int $timestamp=time()]) |Convert Unix timestamp to Julian Day (PHP 4, PHP 5)
4312bool unlink(string $filename [, resource $context]) |Deletes a file (PHP 4, PHP 5)
4313array unpack(string $format, string $data) |Unpack data from binary string (PHP 4, PHP 5)
4314void unregister_tick_function(string $function_name) |De-register a function for execution on each tick (PHP 4 >= 4.0.3, PHP 5)
4315mixed unserialize(string $str) |Creates a PHP value from a stored representation (PHP 4, PHP 5)
4316void unset(mixed $var [, mixed $...]) |Unset a given variable (PHP 4, PHP 5)
4317bool untaint(string& $string [, string $...]) |Untaint strings (PECL taint >=0.1.0)
4318string urldecode(string $str) |Decodes URL-encoded string (PHP 4, PHP 5)
4319string urlencode(string $str) |URL-encodes string (PHP 4, PHP 5)
4320bool use_soap_error_handler( [bool $handler=true]) |Set whether to use the SOAP error handler (Unknown)
4321void usleep(int $micro_seconds) |Delay execution in microseconds (PHP 4, PHP 5)
4322bool usort(array& $array, callable $cmp_function) |Sort an array by values using a user-defined comparison function (PHP 4, PHP 5)
4323string utf8_decode(string $data) |Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1 (PHP 4, PHP 5)
4324string utf8_encode(string $data) |Encodes an ISO-8859-1 string to UTF-8 (PHP 4, PHP 5)
4325void var_dump(mixed $expression [, mixed $...]) |Dumps information about a variable (PHP 4, PHP 5)
4326mixed var_export(mixed $expression [, bool $return=false]) |Outputs or returns a parsable string representation of a variable (PHP 4 >= 4.2.0, PHP 5)
4327mixed variant_abs(mixed $val) |Returns the absolute value of a variant (PHP 5)
4328mixed variant_add(mixed $left, mixed $right) |"Adds" two variant values together and returns the result (PHP 5)
4329mixed variant_and(mixed $left, mixed $right) |Performs a bitwise AND operation between two variants (PHP 5)
4330variant variant_cast(variant $variant, int $type) |Convert a variant into a new variant object of another type (PHP 5)
4331mixed variant_cat(mixed $left, mixed $right) |concatenates two variant values together and returns the result (PHP 5)
4332int variant_cmp(mixed $left, mixed $right [, int $lcid [, int $flags]]) |Compares two variants (PHP 5)
4333variant variant_date_from_timestamp(int $timestamp) |Returns a variant date representation of a Unix timestamp (PHP 5)
4334int variant_date_to_timestamp(variant $variant) |Converts a variant date/time value to Unix timestamp (PHP 5)
4335mixed variant_div(mixed $left, mixed $right) |Returns the result from dividing two variants (PHP 5)
4336mixed variant_eqv(mixed $left, mixed $right) |Performs a bitwise equivalence on two variants (PHP 5)
4337mixed variant_fix(mixed $variant) |Returns the integer portion of a variant (PHP 5)
4338int variant_get_type(variant $variant) |Returns the type of a variant object (PHP 5)
4339mixed variant_idiv(mixed $left, mixed $right) |Converts variants to integers and then returns the result from dividing them (PHP 5)
4340mixed variant_imp(mixed $left, mixed $right) |Performs a bitwise implication on two variants (PHP 5)
4341mixed variant_int(mixed $variant) |Returns the integer portion of a variant (PHP 5)
4342mixed variant_mod(mixed $left, mixed $right) |Divides two variants and returns only the remainder (PHP 5)
4343mixed variant_mul(mixed $left, mixed $right) |Multiplies the values of the two variants (PHP 5)
4344mixed variant_neg(mixed $variant) |Performs logical negation on a variant (PHP 5)
4345mixed variant_not(mixed $variant) |Performs bitwise not negation on a variant (PHP 5)
4346mixed variant_or(mixed $left, mixed $right) |Performs a logical disjunction on two variants (PHP 5)
4347mixed variant_pow(mixed $left, mixed $right) |Returns the result of performing the power function with two variants (PHP 5)
4348mixed variant_round(mixed $variant, int $decimals) |Rounds a variant to the specified number of decimal places (PHP 5)
4349void variant_set_type(variant $variant, int $type) |Convert a variant into another type "in-place" (PHP 5)
4350void variant_set(variant $variant, mixed $value) |Assigns a new value for a variant object (PHP 5)
4351mixed variant_sub(mixed $left, mixed $right) |Subtracts the value of the right variant from the left variant value (PHP 5)
4352mixed variant_xor(mixed $left, mixed $right) |Performs a logical exclusion on two variants (PHP 5)
4353mixed version_compare(string $version1, string $version2 [, string $operator]) |Compares two "PHP-standardized" version number strings (PHP 4 >= 4.1.0, PHP 5)
4354int vfprintf(resource $handle, string $format, array $args) |Write a formatted string to a stream (PHP 5)
4355bool virtual(string $filename) |Perform an Apache sub-request (PHP 4, PHP 5)
4356bool vpopmail_add_alias_domain_ex(string $olddomain, string $newdomain) |Add alias to an existing virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4357bool vpopmail_add_alias_domain(string $domain, string $aliasdomain) |Add an alias for a virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4358bool vpopmail_add_domain_ex(string $domain, string $passwd [, string $quota [, string $bounce [, bool $apop]]]) |Add a new virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4359bool vpopmail_add_domain(string $domain, string $dir, int $uid, int $gid) |Add a new virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4360bool vpopmail_add_user(string $user, string $domain, string $password [, string $gecos [, bool $apop]]) |Add a new user to the specified virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4361bool vpopmail_alias_add(string $user, string $domain, string $alias) |Insert a virtual alias (PHP 4 >= 4.0.7, PECL vpopmail >= 0.2)
4362bool vpopmail_alias_del_domain(string $domain) |Deletes all virtual aliases of a domain (PHP 4 >= 4.0.7, PECL vpopmail >= 0.2)
4363bool vpopmail_alias_del(string $user, string $domain) |Deletes all virtual aliases of a user (PHP 4 >= 4.0.7, PECL vpopmail >= 0.2)
4364array vpopmail_alias_get_all(string $domain) |Get all lines of an alias for a domain (PHP 4 >= 4.0.7, PECL vpopmail >= 0.2)
4365array vpopmail_alias_get(string $alias, string $domain) |Get all lines of an alias for a domain (PHP 4 >= 4.0.7, PECL vpopmail >= 0.2)
4366bool vpopmail_auth_user(string $user, string $domain, string $password [, string $apop]) |Attempt to validate a username/domain/password (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4367bool vpopmail_del_domain_ex(string $domain) |Delete a virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4368bool vpopmail_del_domain(string $domain) |Delete a virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4369bool vpopmail_del_user(string $user, string $domain) |Delete a user from a virtual domain (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4370string vpopmail_error() |Get text message for last vpopmail error (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4371bool vpopmail_passwd(string $user, string $domain, string $password [, bool $apop]) |Change a virtual user's password (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4372bool vpopmail_set_user_quota(string $user, string $domain, string $quota) |Sets a virtual user's quota (PHP 4 >= 4.0.5, PECL vpopmail >= 0.2)
4373int vprintf(string $format, array $args) |Output a formatted string (PHP 4 >= 4.1.0, PHP 5)
4374string vsprintf(string $format, array $args) |Return a formatted string (PHP 4 >= 4.1.0, PHP 5)
4375bool w32api_deftype(string $typename, string $member1_type, string $member1_name [, string $... [, string $...]]) |Defines a type for use with other w32api_functions (PHP 4 >= 4.2.0)
4376resource w32api_init_dtype(string $typename, mixed $value [, mixed $...]) |Creates an instance of the data type typename and fills it with the values passed (PHP 4 >= 4.2.0)
4377mixed w32api_invoke_function(string $funcname, mixed $argument [, mixed $...]) |Invokes function funcname with the arguments passed after the function name (PHP 4 >= 4.2.0)
4378bool w32api_register_function(string $library, string $function_name, string $return_type) |Registers function function_name from library with PHP (PHP 4 >= 4.2.0)
4379void w32api_set_call_method(int $method) |Sets the calling method used (PHP 4 >= 4.2.0)
4380bool wddx_add_vars(resource $packet_id, mixed $var_name [, mixed $...]) |Add variables to a WDDX packet with the specified ID (PHP 4, PHP 5)
4381mixed wddx_deserialize(string $packet) |Unserializes a WDDX packet (PHP 4, PHP 5)
4382string wddx_packet_end(resource $packet_id) |Ends a WDDX packet with the specified ID (PHP 4, PHP 5)
4383resource wddx_packet_start( [string $comment]) |Starts a new WDDX packet with structure inside it (PHP 4, PHP 5)
4384string wddx_serialize_value(mixed $var [, string $comment]) |Serialize a single value into a WDDX packet (PHP 4, PHP 5)
4385string wddx_serialize_vars(mixed $var_name [, mixed $...]) |Serialize variables into a WDDX packet (PHP 4, PHP 5)
4386int win32_continue_service(string $servicename [, string $machine]) |Resumes a paused service (PECL win32service SVN)
4387mixed win32_create_service(array $details [, string $machine]) |Creates a new service entry in the SCM database (PECL win32service SVN)
4388mixed win32_delete_service(string $servicename [, string $machine]) |Deletes a service entry from the SCM database (PECL win32service SVN)
4389int win32_get_last_control_message() |Returns the last control message that was sent to this service (PECL win32service SVN)
4390int win32_pause_service(string $servicename [, string $machine]) |Pauses a service (PECL win32service SVN)
4391array win32_ps_list_procs() |List running processes (PECL win32ps >= 1.0.1)
4392array win32_ps_stat_mem() |Stat memory utilization (PECL win32ps >= 1.0.1)
4393array win32_ps_stat_proc( [int $pid=0]) |Stat process (PECL win32ps >= 1.0.1)
4394mixed win32_query_service_status(string $servicename [, string $machine]) |Queries the status of a service (PECL win32service SVN)
4395bool win32_set_service_status(int $status [, int $checkpoint=0]) |Update the service status (PECL win32service SVN)
4396mixed win32_start_service_ctrl_dispatcher(string $name) |Registers the script with the SCM, so that it can act as the service with the given name (PECL win32service SVN)
4397int win32_start_service(string $servicename [, string $machine]) |Starts a service (PECL win32service SVN)
4398int win32_stop_service(string $servicename [, string $machine]) |Stops a service (PECL win32service SVN)
4399array wincache_fcache_fileinfo( [bool $summaryonly=false]) |Retrieves information about files cached in the file cache (PECL wincache >= 1.0.0)
4400array wincache_fcache_meminfo() |Retrieves information about file cache memory usage (PECL wincache >= 1.0.0)
4401bool wincache_lock(string $key [, bool $isglobal=false]) |Acquires an exclusive lock on a given key (PECL wincache >= 1.1.0)
4402array wincache_ocache_fileinfo( [bool $summaryonly=false]) |Retrieves information about files cached in the opcode cache (PECL wincache >= 1.0.0)
4403array wincache_ocache_meminfo() |Retrieves information about opcode cache memory usage (PECL wincache >= 1.0.0)
4404bool wincache_refresh_if_changed( [array $files]) |Refreshes the cache entries for the cached files (PECL wincache >= 1.0.0)
4405array wincache_rplist_fileinfo( [bool $summaryonly=false]) |Retrieves information about resolve file path cache (PECL wincache >= 1.0.0)
4406array wincache_rplist_meminfo() |Retrieves information about memory usage by the resolve file path cache (PECL wincache >= 1.0.0)
4407array wincache_scache_info( [bool $summaryonly=false]) |Retrieves information about files cached in the session cache (PECL wincache >= 1.1.0)
4408array wincache_scache_meminfo() |Retrieves information about session cache memory usage (PECL wincache >= 1.1.0)
4409bool wincache_ucache_add(string $key, mixed $value [, int $ttl=0]) |Adds a variable in user cache only if variable does not already exist in the cache (PECL wincache >= 1.1.0)
4410bool wincache_ucache_cas(string $key, int $old_value, int $new_value) |Compares the variable with old value and assigns new value to it (PECL wincache >= 1.1.0)
4411bool wincache_ucache_clear() |Deletes entire content of the user cache (PECL wincache >= 1.1.0)
4412mixed wincache_ucache_dec(string $key [, int $dec_by=1 [, bool& $success]]) |Decrements the value associated with the key (PECL wincache >= 1.1.0)
4413bool wincache_ucache_delete(mixed $key) |Deletes variables from the user cache (PECL wincache >= 1.1.0)
4414bool wincache_ucache_exists(string $key) |Checks if a variable exists in the user cache (PECL wincache >= 1.1.0)
4415mixed wincache_ucache_get(mixed $key [, bool& $success]) |Gets a variable stored in the user cache (PECL wincache >= 1.1.0)
4416mixed wincache_ucache_inc(string $key [, int $inc_by=1 [, bool& $success]]) |Increments the value associated with the key (PECL wincache >= 1.1.0)
4417array wincache_ucache_info( [bool $summaryonly=false [, string $key]]) |Retrieves information about data stored in the user cache (PECL wincache >= 1.1.0)
4418array wincache_ucache_meminfo() |Retrieves information about user cache memory usage (PECL wincache >= 1.1.0)
4419bool wincache_ucache_set(mixed $key, mixed $value [, int $ttl=0]) |Adds a variable in user cache and overwrites a variable if it already exists in the cache (PECL wincache >= 1.1.0)
4420bool wincache_unlock(string $key) |Releases an exclusive lock on a given key (PECL wincache >= 1.1.0)
4421string wordwrap(string $str [, int $width=75 [, string $break="\n" [, bool $cut=false]]]) |Wraps a string to a given number of characters (PHP 4 >= 4.0.2, PHP 5)
4422string xattr_get(string $filename, string $name [, int $flags=0]) |Get an extended attribute (PECL xattr >= 0.9.0)
4423array xattr_list(string $filename [, int $flags=0]) |Get a list of extended attributes (PECL xattr >= 0.9.0)
4424bool xattr_remove(string $filename, string $name [, int $flags=0]) |Remove an extended attribute (PECL xattr >= 0.9.0)
4425bool xattr_set(string $filename, string $name, string $value [, int $flags=0]) |Set an extended attribute (PECL xattr >= 0.9.0)
4426bool xattr_supported(string $filename [, int $flags=0]) |Check if filesystem supports extended attributes (PECL xattr >= 1.0.0)
4427int xdiff_file_bdiff_size(string $file) |Read a size of file created by applying a binary diff (PECL xdiff >= 1.5.0)
4428bool xdiff_file_bdiff(string $old_file, string $new_file, string $dest) |Make binary diff of two files (PECL xdiff >= 1.5.0)
4429bool xdiff_file_bpatch(string $file, string $patch, string $dest) |Patch a file with a binary diff (PECL xdiff >= 1.5.0)
4430bool xdiff_file_diff_binary(string $old_file, string $new_file, string $dest) |Alias of xdiff_file_bdiff (PECL xdiff >= 0.2.0)
4431bool xdiff_file_diff(string $old_file, string $new_file, string $dest [, int $context=3 [, bool $minimal=false]]) |Make unified diff of two files (PECL xdiff >= 0.2.0)
4432mixed xdiff_file_merge3(string $old_file, string $new_file1, string $new_file2, string $dest) |Merge 3 files into one (PECL xdiff >= 0.2.0)
4433bool xdiff_file_patch_binary(string $file, string $patch, string $dest) |Alias of xdiff_file_bpatch (PECL xdiff >= 0.2.0)
4434mixed xdiff_file_patch(string $file, string $patch, string $dest [, int $flags=DIFF_PATCH_NORMAL]) |Patch a file with an unified diff (PECL xdiff >= 0.2.0)
4435bool xdiff_file_rabdiff(string $old_file, string $new_file, string $dest) |Make binary diff of two files using the Rabin's polynomial fingerprinting algorithm (PECL xdiff >= 1.5.0)
4436int xdiff_string_bdiff_size(string $patch) |Read a size of file created by applying a binary diff (PECL xdiff >= 1.5.0)
4437string xdiff_string_bdiff(string $old_data, string $new_data) |Make binary diff of two strings (PECL xdiff >= 1.5.0)
4438string xdiff_string_bpatch(string $str, string $patch) |Patch a string with a binary diff (PECL xdiff >= 1.5.0)
4439stringxdiff_string_bdiff(string $old_data, string $new_data) |Alias of xdiff_string_bdiff (PECL xdiff >= 0.2.0)
4440string xdiff_string_diff(string $old_data, string $new_data [, int $context=3 [, bool $minimal=false]]) |Make unified diff of two strings (PECL xdiff >= 0.2.0)
4441mixed xdiff_string_merge3(string $old_data, string $new_data1, string $new_data2 [, string& $error]) |Merge 3 strings into one (PECL xdiff >= 0.2.0)
4442string xdiff_string_patch_binary(string $str, string $patch) |Alias of xdiff_string_bpatch (PECL xdiff >= 0.2.0)
4443string xdiff_string_patch(string $str, string $patch [, int $flags [, string& $error]]) |Patch a string with an unified diff (PECL xdiff >= 0.2.0)
4444stringxdiff_string_bdiff(string $old_data, string $new_data) |Make binary diff of two strings using the Rabin's polynomial fingerprinting algorithm (PECL xdiff >= 1.5.0)
4445array xhprof_disable() |Stops xhprof profiler (PECL xhprof >= 0.9.0)
4446void xhprof_enable( [int $flags=0 [, array $options]]) |Start xhprof profiler (PECL xhprof >= 0.9.0)
4447array xhprof_sample_disable() |Stops xhprof sample profiler (PECL xhprof >= 0.9.0)
4448void xhprof_sample_enable() |Description (PECL xhprof >= 0.9.0)
4449string xml_error_string(int $code) |Get XML parser error string (PHP 4, PHP 5)
4450int xml_get_current_byte_index(resource $parser) |Get current byte index for an XML parser (PHP 4, PHP 5)
4451int xml_get_current_column_number(resource $parser) |Get current column number for an XML parser (PHP 4, PHP 5)
4452int xml_get_current_line_number(resource $parser) |Get current line number for an XML parser (PHP 4, PHP 5)
4453int xml_get_error_code(resource $parser) |Get XML parser error code (PHP 4, PHP 5)
4454int xml_parse_into_struct(resource $parser, string $data, array& $values [, array& $index]) |Parse XML data into an array structure (PHP 4, PHP 5)
4455int xml_parse(resource $parser, string $data [, bool $is_final=false]) |Start parsing an XML document (PHP 4, PHP 5)
4456resource xml_parser_create_ns( [string $encoding [, string $separator=':']]) |Create an XML parser with namespace support (PHP 4 >= 4.0.5, PHP 5)
4457resource xml_parser_create( [string $encoding]) |Create an XML parser (PHP 4, PHP 5)
4458bool xml_parser_free(resource $parser) |Free an XML parser (PHP 4, PHP 5)
4459mixed xml_parser_get_option(resource $parser, int $option) |Get options from an XML parser (PHP 4, PHP 5)
4460bool xml_parser_set_option(resource $parser, int $option, mixed $value) |Set options in an XML parser (PHP 4, PHP 5)
4461bool xml_set_character_data_handler(resource $parser, callable $handler) |Set up character data handler (PHP 4, PHP 5)
4462bool xml_set_default_handler(resource $parser, callable $handler) |Set up default handler (PHP 4, PHP 5)
4463bool xml_set_element_handler(resource $parser, callable $start_element_handler, callable $end_element_handler) |Set up start and end element handlers (PHP 4, PHP 5)
4464bool xml_set_end_namespace_decl_handler(resource $parser, callable $handler) |Set up end namespace declaration handler (PHP 4 >= 4.0.5, PHP 5)
4465bool xml_set_external_entity_ref_handler(resource $parser, callable $handler) |Set up external entity reference handler (PHP 4, PHP 5)
4466bool xml_set_notation_decl_handler(resource $parser, callable $handler) |Set up notation declaration handler (PHP 4, PHP 5)
4467bool xml_set_object(resource $parser, object& $object) |Use XML Parser within an object (PHP 4, PHP 5)
4468bool xml_set_processing_instruction_handler(resource $parser, callable $handler) |Set up processing instruction (PI) handler (PHP 4, PHP 5)
4469bool xml_set_start_namespace_decl_handler(resource $parser, callable $handler) |Set up start namespace declaration handler (PHP 4 >= 4.0.5, PHP 5)
4470bool xml_set_unparsed_entity_decl_handler(resource $parser, callable $handler) |Set up unparsed entity declaration handler (PHP 4, PHP 5)
4471mixed xmlrpc_decode_request(string $xml, string& $method [, string $encoding]) |Decodes XML into native PHP types (PHP 4 >= 4.1.0, PHP 5)
4472mixed xmlrpc_decode(string $xml [, string $encoding="iso-8859-1"]) |Decodes XML into native PHP types (PHP 4 >= 4.1.0, PHP 5)
4473string xmlrpc_encode_request(string $method, mixed $params [, array $output_options]) |Generates XML for a method request (PHP 4 >= 4.1.0, PHP 5)
4474string xmlrpc_encode(mixed $value) |Generates XML for a PHP value (PHP 4 >= 4.1.0, PHP 5)
4475string xmlrpc_get_type(mixed $value) |Gets xmlrpc type for a PHP value (PHP 4 >= 4.1.0, PHP 5)
4476bool xmlrpc_is_fault(array $arg) |Determines if an array value represents an XMLRPC fault (PHP 4 >= 4.3.0, PHP 5)
4477array xmlrpc_parse_method_descriptions(string $xml) |Decodes XML into a list of method descriptions (PHP 4 >= 4.1.0, PHP 5)
4478int xmlrpc_server_add_introspection_data(resource $server, array $desc) |Adds introspection documentation (PHP 4 >= 4.1.0, PHP 5)
4479string xmlrpc_server_call_method(resource $server, string $xml, mixed $user_data [, array $output_options]) |Parses XML requests and call methods (PHP 4 >= 4.1.0, PHP 5)
4480resource xmlrpc_server_create() |Creates an xmlrpc server (PHP 4 >= 4.1.0, PHP 5)
4481int xmlrpc_server_destroy(resource $server) |Destroys server resources (PHP 4 >= 4.1.0, PHP 5)
4482bool xmlrpc_server_register_introspection_callback(resource $server, string $function) |Register a PHP function to generate documentation (PHP 4 >= 4.1.0, PHP 5)
4483bool xmlrpc_server_register_method(resource $server, string $method_name, string $function) |Register a PHP function to resource method matching method_name (PHP 4 >= 4.1.0, PHP 5)
4484bool xmlrpc_set_type(string& $value, string $type) |Sets xmlrpc type, base64 or datetime, for a PHP string value (PHP 4 >= 4.1.0, PHP 5)
4485bool XMLWriter::endAttribute() |End attribute (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4486bool XMLWriter::endCData() |End current CDATA (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4487bool XMLWriter::endComment() |Create end comment (PHP 5 >= 5.1.2, PECL xmlwriter >= 1.0.0)
4488bool XMLWriter::endDocument() |End current document (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4489bool XMLWriter::endDTDAttlist() |End current DTD AttList (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4490bool XMLWriter::endDTDElement() |End current DTD element (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4491bool XMLWriter::endDTDEntity() |End current DTD Entity (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4492bool XMLWriter::endDTD() |End current DTD (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4493bool XMLWriter::endElement() |End current element (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4494bool XMLWriter::endPI() |End current PI (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4495mixed XMLWriter::flush( [bool $empty=true]) |Flush current buffer (PHP 5 >= 5.1.2, PECL xmlwriter >= 1.0.0)
4496bool XMLWriter::fullEndElement() |End current element (PHP 5 >= 5.2.0, PECL xmlwriter >= 2.0.4)
4497bool XMLWriter::openMemory() |Create new xmlwriter using memory for string output (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4498bool XMLWriter::openURI(string $uri) |Create new xmlwriter using source uri for output (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4499string XMLWriter::outputMemory( [bool $flush=true]) |Returns current buffer (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4500bool XMLWriter::setIndentString(string $indentString) |Set string used for indenting (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4501bool XMLWriter::setIndent(bool $indent) |Toggle indentation on/off (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4502bool XMLWriter::startAttributeNS(string $prefix, string $name, string $uri) |Create start namespaced attribute (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4503bool XMLWriter::startAttribute(string $name) |Create start attribute (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4504bool XMLWriter::startCData() |Create start CDATA tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4505bool XMLWriter::startComment() |Create start comment (PHP 5 >= 5.1.2, PECL xmlwriter >= 1.0.0)
4506bool XMLWriter::startDocument( [string $version=1.0 [, string $encoding= NULL [, string $standalone]]]) |Create document tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4507bool XMLWriter::startDTDAttlist(string $name) |Create start DTD AttList (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4508bool XMLWriter::startDTDElement(string $qualifiedName) |Create start DTD element (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4509bool XMLWriter::startDTDEntity(string $name, bool $isparam) |Create start DTD Entity (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4510bool XMLWriter::startDTD(string $qualifiedName [, string $publicId [, string $systemId]]) |Create start DTD tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4511bool XMLWriter::startElementNS(string $prefix, string $name, string $uri) |Create start namespaced element tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4512bool XMLWriter::startElement(string $name) |Create start element tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4513bool XMLWriter::startPI(string $target) |Create start PI tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4514bool XMLWriter::text(string $content) |Write text (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4515bool XMLWriter::writeAttributeNS(string $prefix, string $name, string $uri, string $content) |Write full namespaced attribute (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4516bool XMLWriter::writeAttribute(string $name, string $value) |Write full attribute (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4517bool XMLWriter::writeCData(string $content) |Write full CDATA tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4518bool XMLWriter::writeComment(string $content) |Write full comment tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4519bool XMLWriter::writeDTDAttlist(string $name, string $content) |Write full DTD AttList tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4520bool XMLWriter::writeDTDElement(string $name, string $content) |Write full DTD element tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4521bool XMLWriter::writeDTDEntity(string $name, string $content, bool $pe, string $pubid, string $sysid, string $ndataid) |Write full DTD Entity tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4522bool XMLWriter::writeDTD(string $name [, string $publicId [, string $systemId [, string $subset]]]) |Write full DTD tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4523bool XMLWriter::writeElementNS(string $prefix, string $name, string $uri [, string $content]) |Write full namespaced element tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4524bool XMLWriter::writeElement(string $name [, string $content]) |Write full element tag (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4525bool XMLWriter::writePI(string $target, string $content) |Writes a PI (PHP 5 >= 5.1.2, PECL xmlwriter >= 0.1.0)
4526bool XMLWriter::writeRaw(string $content) |Write a raw XML text (PHP 5 >= 5.2.0, PECL xmlwriter >= 2.0.4)
4527string xslt_backend_info() |Returns the information on the compilation settings of the backend (PHP 4 >= 4.3.0)
4528string xslt_backend_name() |Returns the name of the backend (PHP 4 >= 4.3.0)
4529string xslt_backend_version() |Returns the version number of Sablotron (PHP 4 >= 4.3.0)
4530resource xslt_create() |Create a new XSLT processor (PHP 4 >= 4.0.3)
4531int xslt_errno(resource $xh) |Returns an error number (PHP 4 >= 4.0.3)
4532string xslt_error(resource $xh) |Returns an error string (PHP 4 >= 4.0.3)
4533void xslt_free(resource $xh) |Free XSLT processor (PHP 4 >= 4.0.3)
4534int xslt_getopt(resource $processor) |Get options on a given xsl processor (PHP 4 >= 4.3.0)
4535mixed xslt_process(resource $xh, string $xmlcontainer, string $xslcontainer [, string $resultcontainer [, array $arguments [, array $parameters]]]) |Perform an XSLT transformation (PHP 4 >= 4.0.3)
4536void xslt_set_base(resource $xh, string $uri) |Set the base URI for all XSLT transformations (PHP 4 >= 4.0.5)
4537void xslt_set_encoding(resource $xh, string $encoding) |Set the encoding for the parsing of XML documents (PHP 4 >= 4.0.5)
4538void xslt_set_error_handler(resource $xh, mixed $handler) |Set an error handler for a XSLT processor (PHP 4 >= 4.0.4)
4539void xslt_set_log(resource $xh [, mixed $log]) |Set the log file to write log messages to (PHP 4 >= 4.0.6)
4540bool xslt_set_object(resource $processor, object& $obj) |Sets the object in which to resolve callback functions (PHP 4 >= 4.3.0)
4541void xslt_set_sax_handler(resource $xh, array $handlers) |Set SAX handlers for a XSLT processor (PHP 4 >= 4.0.3)
4542void xslt_set_sax_handlers(resource $processor, array $handlers) |Set the SAX handlers to be called when the XML document gets processed (PHP 4 >= 4.0.6)
4543void xslt_set_scheme_handler(resource $xh, array $handlers) |Set Scheme handlers for a XSLT processor (PHP 4 >= 4.0.5)
4544void xslt_set_scheme_handlers(resource $xh, array $handlers) |Set the scheme handlers for the XSLT processor (PHP 4 >= 4.0.6)
4545mixed xslt_setopt(resource $processor, int $newmask) |Set options on a given XSLT processor (PHP 4 >= 4.3.0)
4546bool yaml_emit_file(string $filename, mixed $data [, int $encoding=YAML_ANY_ENCODING [, int $linebreak=YAML_ANY_BREAK [, array $callbacks]]]) |Send the YAML representation of a value to a file (PECL yaml >= 0.5.0)
4547string yaml_emit(mixed $data [, int $encoding=YAML_ANY_ENCODING [, int $linebreak=YAML_ANY_BREAK [, array $callbacks]]]) |Returns the YAML representation of a value (PECL yaml >= 0.5.0)
4548mixed yaml_parse_file(string $filename [, int $pos=0 [, int& $ndocs [, array $callbacks]]]) |Parse a YAML stream from a file (PECL yaml >= 0.4.0)
4549mixed yaml_parse_url(string $url [, int $pos=0 [, int& $ndocs [, array $callbacks]]]) |Parse a Yaml stream from a URL (PECL yaml >= 0.4.0)
4550mixed yaml_parse(string $input [, int $pos=0 [, int& $ndocs [, array $callbacks]]]) |Parse a YAML stream (PECL yaml >= 0.4.0)
4551string yaz_addinfo(resource $id) |Returns additional error information (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4552void yaz_ccl_conf(resource $id, array $config) |Configure CCL parser (PHP 4 >= 4.0.5, PECL yaz >= 0.9.0)
4553bool yaz_ccl_parse(resource $id, string $query, array& $result) |Invoke CCL Parser (PHP 4 >= 4.0.5, PECL yaz >= 0.9.0)
4554bool yaz_close(resource $id) |Close YAZ connection (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4555mixed yaz_connect(string $zurl [, mixed $options]) |Prepares for a connection to a Z39.50 server (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4556bool yaz_database(resource $id, string $databases) |Specifies the databases within a session (PHP 4 >= 4.0.6, PECL yaz >= 0.9.0)
4557bool yaz_element(resource $id, string $elementset) |Specifies Element-Set Name for retrieval (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4558int yaz_errno(resource $id) |Returns error number (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4559string yaz_error(resource $id) |Returns error description (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4560array yaz_es_result(resource $id) |Inspects Extended Services Result (PHP 4 >= 4.2.0, PECL yaz >= 0.9.0)
4561void yaz_es(resource $id, string $type, array $args) |Prepares for an Extended Service Request (PECL yaz >= 0.9.0)
4562string yaz_get_option(resource $id, string $name) |Returns value of option for connection (PECL yaz >= 0.9.0)
4563int yaz_hits(resource $id [, array& $searchresult]) |Returns number of hits for last search (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4564void yaz_itemorder(resource $id, array $args) |Prepares for Z39.50 Item Order with an ILL-Request package (PHP 4 >= 4.0.5, PECL yaz >= 0.9.0)
4565bool yaz_present(resource $id) |Prepares for retrieval (Z39.50 present) (PHP 4 >= 4.0.5, PECL yaz >= 0.9.0)
4566void yaz_range(resource $id, int $start, int $number) |Specifies a range of records to retrieve (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4567string yaz_record(resource $id, int $pos, string $type) |Returns a record (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4568array yaz_scan_result(resource $id [, array& $result]) |Returns Scan Response result (PHP 4 >= 4.0.5, PECL yaz >= 0.9.0)
4569void yaz_scan(resource $id, string $type, string $startterm [, array $flags]) |Prepares for a scan (PHP 4 >= 4.0.5, PECL yaz >= 0.9.0)
4570void yaz_schema(resource $id, string $schema) |Specifies schema for retrieval (PHP 4 >= 4.2.0, PECL yaz >= 0.9.0)
4571bool yaz_search(resource $id, string $type, string $query) |Prepares for a search (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4572void yaz_set_option(resource $id, string $name, string $value) |Sets one or more options for connection (PECL yaz >= 0.9.0)
4573void yaz_sort(resource $id, string $criteria) |Sets sorting criteria (PHP 4 >= 4.0.7, PECL yaz >= 0.9.0)
4574void yaz_syntax(resource $id, string $syntax) |Specifies the preferred record syntax for retrieval (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4575mixed yaz_wait( [array& $options]) |Wait for Z39.50 requests to complete (PHP 4 >= 4.0.1, PECL yaz >= 0.9.0)
4576void yp_all(string $domain, string $map, string $callback) |Traverse the map and call a function on each entry (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5)
4577array yp_cat(string $domain, string $map) |Return an array containing the entire map (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5)
4578string yp_err_string(int $errorcode) |Returns the error string associated with the given error code (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5)
4579int yp_errno() |Returns the error code of the previous operation (PHP 4 >= 4.0.6, PHP 5 <= 5.0.5)
4580array yp_first(string $domain, string $map) |Returns the first key-value pair from the named map (PHP 4, PHP 5 <= 5.0.5)
4581string yp_get_default_domain() |Fetches the machine's default NIS domain (PHP 4, PHP 5 <= 5.0.5)
4582string yp_master(string $domain, string $map) |Returns the machine name of the master NIS server for a map (PHP 4, PHP 5 <= 5.0.5)
4583string yp_match(string $domain, string $map, string $key) |Returns the matched line (PHP 4, PHP 5 <= 5.0.5)
4584array yp_next(string $domain, string $map, string $key) |Returns the next key-value pair in the named map (PHP 4, PHP 5 <= 5.0.5)
4585int yp_order(string $domain, string $map) |Returns the order number for a map (PHP 4, PHP 5 <= 5.0.5)
4586string zend_logo_guid() |Gets the Zend guid (PHP 4, PHP 5 < 5.5)
4587int zend_thread_id() |Returns a unique identifier for the current thread (PHP 5)
4588string zend_version() |Gets the version of the current Zend engine (PHP 4, PHP 5)
4589void zip_close(resource $zip) |Close a ZIP file archive (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4590bool zip_entry_close(resource $zip_entry) |Close a directory entry (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4591int zip_entry_compressedsize(resource $zip_entry) |Retrieve the compressed size of a directory entry (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4592string zip_entry_compressionmethod(resource $zip_entry) |Retrieve the compression method of a directory entry (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4593int zip_entry_filesize(resource $zip_entry) |Retrieve the actual file size of a directory entry (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4594string zip_entry_name(resource $zip_entry) |Retrieve the name of a directory entry (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4595bool zip_entry_open(resource $zip, resource $zip_entry [, string $mode]) |Open a directory entry for reading (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4596string zip_entry_read(resource $zip_entry [, int $length]) |Read from an open directory entry (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4597resource zip_open(string $filename) |Open a ZIP file archive (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4598resource zip_read(resource $zip) |Read next entry in a ZIP file archive (PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
4599string zlib_decode(string $data [, string $max_decoded_len]) |Uncompress any raw/gzip/zlib encoded data (PHP 5 >= 5.4.0)
4600string zlib_encode(string $data, string $encoding [, string $level=-1]) |Compress data with the specified encoding (PHP 5 >= 5.4.0)
4601string zlib_get_coding_type() |Returns the coding type used for output compression (PHP 4 >= 4.3.2, PHP 5)
4602