Toutes les fonctions PHP en un seul fichier

abs(mixed number)

Absolute value –returns number--

cos(float arg)

Arc cosine –returns float--

cosh(float arg)

Inverse hyperbolic cosine –returns float--

ddcslashes(string str, string charlist)

Quote string with slashes in a C style –returns string--

ddslashes(string str)

Quote string with slashes –returns string--

ggregate_info(object object)

Gets aggregation information for a given object –returns array--

ggregate_methods_by_list(object object, string class_name, array methods_list [, bool exclude ])

Selective dynamic class methods aggregation to an object –returns void--

ggregate_methods_by_regexp(object object, string class_name, string regexp [, bool exclude ])

Selective class methods aggregation to an object using a regular expression –returns void--

ggregate_methods(object object, string class_name)

Dynamic class and object aggregation of methods –returns void--

ggregate_properties_by_list(object object, string class_name, array properties_list [, bool exclude ])

Selective dynamic class properties aggregation to an object –returns void--

ggregate_properties_by_regexp(object object, string class_name, string regexp [, bool exclude ])

Selective class properties aggregation to an object using a regular expression –returns void--

ggregate_properties(object object, string class_name)

Dynamic aggregation of class properties to an object –returns void--

ggregate(object object, string class_name)

Dynamic class and object aggregation of methods and properties –returns void--

ggregation_info

Alias of aggregate_info() –returns ?--

pache_child_terminate(void)

Terminate apache process after this request –returns bool--

pache_get_modules(void)

Get a list of loaded Apache modules –returns array--

pache_get_version(void)

Fetch Apache version –returns string--

pache_getenv(string variable [, bool walk_to_top ])

Get an Apache subprocess_env variable –returns string--

pache_lookup_uri(string filename)

Perform a partial request for the specified URI and return all info about it –returns object--

pache_note(string note_name [, string note_value ])

Get and set apache request notes –returns string--

pache_request_headers(void)

Fetch all HTTP request headers –returns array--

pache_reset_timeout(void)

Reset the Apache write timer –returns bool--

pache_response_headers(void)

Fetch all HTTP response headers –returns array--

pache_setenv(string variable, string value [, bool walk_to_top ])

Set an Apache subprocess_env variable –returns bool--

pc_add(string key, mixed var [, int ttl ])

Cache a variable in the data store –returns bool--

pc_cache_info ([ string cache_type [, bool limited ]])

Retrieves cached information from APC's data store –returns array--

pc_clear_cache ([ string cache_type ])

Clears the APC cache –returns bool--

pc_compile_file(string filename)

Stores a file in the bytecode cache, bypassing all filters. –returns bool--

pc_define_constants(string key, array constants [, bool case_sensitive ])

Defines a set of constants for retrieval and mass-definition –returns bool--

pc_delete(string key)

Removes a stored variable from the cache –returns bool--

pc_fetch(string key)

Fetch a stored variable from the cache –returns mixed--

pc_load_constants(string key [, bool case_sensitive ])

Loads a set of constants from the cache –returns bool--

pc_sma_info ([ bool limited ])

Retrieves APC's Shared Memory Allocation information –returns array--

pc_store(string key, mixed var [, int ttl ])

Cache a variable in the data store –returns bool--

pd_breakpoint(int debug_level)

Stops the interpreter and waits on a CR from the socket –returns bool--

pd_callstack(void)

Returns the current call stack as an array –returns array--

pd_clunk(string warning [, string delimiter ])

Throw a warning and a callstack –returns void--

pd_continue(int debug_level)

Restarts the interpreter –returns bool--

pd_croak(string warning [, string delimiter ])

Throw an error, a callstack and then exit –returns void--

pd_dump_function_table(void)

Outputs the current function table –returns void--

pd_dump_persistent_resources(void)

Return all persistent resources as an array –returns array--

pd_dump_regular_resources(void)

Return all current regular resources as an array –returns array--

pd_echo(string output)

Echo to the debugging socket –returns bool--

pd_get_active_symbols(void)

Get an array of the current variables names in the local scope –returns array--

pd_set_pprof_trace ([ string dump_directory [, string fragment ]])

Starts the session debugging –returns string--

pd_set_session_trace(int debug_level [, string dump_directory ])

Starts the session debugging –returns void--

pd_set_session(int debug_level)

Changes or sets the current debugging level –returns void--

pd_set_socket_session_trace(string tcp_server, int socket_type, int port, int debug_level)

Starts the remote session debugging –returns bool--

rray_change_key_case(array input [, int case ])

Changes all keys in an array –returns array--

rray_chunk(array input, int size [, bool preserve_keys ])

Split an array into chunks –returns array--

rray_combine(array keys, array values)

Creates an array by using one array for keys and another for its values –returns array--

rray_count_values(array input)

Counts all the values of an array –returns array--

rray_diff_assoc(array array1, array array2 [, array ... ])

Computes the difference of arrays with additional index check –returns array--

rray_diff_key(array array1, array array2 [, array ... ])

Computes the difference of arrays using keys for comparison –returns array--

rray_diff_uassoc(array array1, array array2 [, array ... ], callback key_compare_func)

Computes the difference of arrays with additional index check which is performed by a user supplied callback function –returns array--

rray_diff_ukey(array array1, array array2 [, array ... ], callback key_compare_func)

Computes the difference of arrays using a callback function on the keys for comparison –returns array--

rray_diff(array array1, array array2 [, array ... ])

Computes the difference of arrays –returns array--

rray_fill_keys(array keys, mixed value)

Fill an array with values, specifying keys –returns array--

rray_fill(int start_index, int num, mixed value)

Fill an array with values –returns array--

rray_filter(array input [, callback callback ])

Filters elements of an array using a callback function –returns array--

rray_flip(array trans)

Exchanges all keys with their associated values in an array –returns array--

rray_intersect_assoc(array array1, array array2 [, array ... ])

Computes the intersection of arrays with additional index check –returns array--

rray_intersect_key(array array1, array array2 [, array ... ])

Computes the intersection of arrays using keys for comparison –returns array--

rray_intersect_uassoc(array array1, array array2 [, array ... ], callback key_compare_func)

Computes the intersection of arrays with additional index check, compares indexes by a callback function –returns array--

rray_intersect_ukey(array array1, array array2 [, array ... ], callback key_compare_func)

Computes the intersection of arrays using a callback function on the keys for comparison –returns array--

rray_intersect(array array1, array array2 [, array ... ])

Computes the intersection of arrays –returns array--

rray_key_exists(mixed key, array search)

Checks if the given key or index exists in the array –returns bool--

rray_keys(array input [, mixed search_value [, bool strict ]])

Return all the keys of an array –returns array--

rray_map(callback callback, array arr1 [, array ... ])

Applies the callback to the elements of the given arrays –returns array--

rray_merge_recursive(array array1 [, array ... ])

Merge two or more arrays recursively –returns array--

rray_merge(array array1 [, array array2 [, array ... ]])

Merge one or more arrays –returns array--

rray_multisort(array arr [, mixed arg [, mixed ... ]])

Sort multiple or multi-dimensional arrays –returns bool--

rray_pad(array input, int pad_size, mixed pad_value)

Pad array to the specified length with a value –returns array--

rray_pop(array &array)

Pop the element off the end of array –returns mixed--

rray_product(array array)

Calculate the product of values in an array –returns number--

rray_push(array &array, mixed var [, mixed ... ])

Push one or more elements onto the end of array –returns int--

rray_rand(array input [, int num_req ])

Pick one or more random entries out of an array –returns mixed--

rray_reduce(array input, callback function [, int initial ])

Iteratively reduce the array to a single value using a callback function –returns mixed--

rray_reverse(array array [, bool preserve_keys ])

Return an array with elements in reverse order –returns array--

rray_search(mixed needle, array haystack [, bool strict ])

Searches the array for a given value and returns the corresponding key if successful –returns mixed--

rray_shift(array &array)

Shift an element off the beginning of array –returns mixed--

rray_slice(array array, int offset [, int length [, bool preserve_keys ]])

Extract a slice of the array –returns array--

rray_splice(array &input, int offset [, int length [, mixed replacement ]])

Remove a portion of the array and replace it with something else –returns array--

rray_sum(array array)

Calculate the sum of values in an array –returns number--

rray_udiff_assoc(array array1, array array2 [, array ... ], callback data_compare_func)

Computes the difference of arrays with additional index check, compares data by a callback function –returns array--

rray_udiff_uassoc(array array1, array array2 [, array ... ], callback data_compare_func, callback key_compare_func)

Computes the difference of arrays with additional index check, compares data and indexes by a callback function –returns array--

rray_udiff(array array1, array array2 [, array ... ], callback data_compare_func)

Computes the difference of arrays by using a callback function for data comparison –returns array--

rray_uintersect_assoc(array array1, array array2 [, array ... ], callback data_compare_func)

Computes the intersection of arrays with additional index check, compares data by a callback function –returns array--

rray_uintersect_uassoc(array array1, array array2 [, array ... ], callback data_compare_func, callback key_compare_func)

Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions –returns array--

rray_uintersect(array array1, array array2 [, array ... ], callback data_compare_func)

Computes the intersection of arrays, compares data by a callback function –returns array--

rray_unique(array array)

Removes duplicate values from an array –returns array--

rray_unshift(array &array, mixed var [, mixed ... ])

Prepend one or more elements to the beginning of an array –returns int--

rray_values(array input)

Return all the values of an array –returns array--

rray_walk_recursive(array &input, callback funcname [, mixed userdata ])

Apply a user function recursively to every member of an array –returns bool--

rray_walk(array &array, callback funcname [, mixed userdata ])

Apply a user function to every member of an array –returns bool--

rray ([ mixed ... ])

Create an array –returns array--

rsort(array &array [, int sort_flags ])

Sort an array in reverse order and maintain index association –returns bool--

scii2ebcdic(string ascii_str)

Translate string from ASCII to EBCDIC –returns int--

sin(float arg)

Arc sine –returns float--

sinh(float arg)

Inverse hyperbolic sine –returns float--

sort(array &array [, int sort_flags ])

Sort an array and maintain index association –returns bool--

ssert_options(int what [, mixed value ])

Set/get the various assert flags –returns mixed--

ssert(mixed assertion)

Checks if assertion is FALSE –returns bool--

tan(float arg)

Arc tangent –returns float--

tan2(float y, float x)

Arc tangent of two variables –returns float--

tanh(float arg)

Inverse hyperbolic tangent –returns float--

ase_convert(string number, int frombase, int tobase)

Convert a number between arbitrary bases –returns string--

ase64_decode(string data [, bool strict ])

Decodes data encoded with MIME base64 –returns string--

ase64_encode(string data)

Encodes data with MIME base64 –returns string--

asename(string path [, string suffix ])

Returns filename component of path –returns string--

bcode_add_element(resource bbcode_container, string tag_name, array tag_rules)

Adds a bbcode element –returns bool--

bcode_add_smiley(resource bbcode_container, string smiley, string replace_by)

Adds a smiley to the parser –returns bool--

bcode_create ([ array bbcode_initial_tags ])

Create a BBCode Resource –returns resource--

bcode_destroy(resource bbcode_container)

Close BBCode_container resource –returns bool--

bcode_parse(resource bbcode_container, string to_parse)

Parse a string following a given rule set –returns string--

bcode_set_arg_parser(resource bbcode_container, resource bbcode_arg_parser)

Attach another parser in order to use another rule set for argument parsing –returns bool--

bcode_set_flags(resource bbcode_container, int flags [, int mode ])

Set or alter parser options –returns bool--

cadd(string left_operand, string right_operand [, int scale ])

Add two arbitrary precision numbers –returns string--

ccomp(string left_operand, string right_operand [, int scale ])

Compare two arbitrary precision numbers –returns int--

cdiv(string left_operand, string right_operand [, int scale ])

Divide two arbitrary precision numbers –returns string--

cmod(string left_operand, string modulus)

Get modulus of an arbitrary precision number –returns string--

cmul(string left_operand, string right_operand [, int scale ])

Multiply two arbitrary precision number –returns string--

compiler_load_exe(string filename)

Reads and creates classes from a bcompiler exe file –returns bool--

compiler_load(string filename)

Reads and creates classes from a bz compressed file –returns bool--

compiler_parse_class(string class, string callback)

Reads the bytecodes of a class and calls back to a user function –returns bool--

compiler_read(resource filehandle)

Reads and creates classes from a filehandle –returns bool--

compiler_write_class(resource filehandle, string className [, string extends ])

Writes an defined class as bytecodes –returns bool--

compiler_write_constant(resource filehandle, string constantName)

Writes a defined constant as bytecodes –returns bool--

compiler_write_exe_footer(resource filehandle, int startpos)

Writes the start pos, and sig to the end of a exe type file –returns bool--

compiler_write_file(resource filehandle, string filename)

Writes a php source file as bytecodes –returns bool--

compiler_write_footer(resource filehandle)

Writes the single character \x00 to indicate End of compiled data –returns bool--

compiler_write_function(resource filehandle, string functionName)

Writes an defined function as bytecodes –returns bool--

compiler_write_functions_from_file(resource filehandle, string fileName)

Writes all functions defined in a file as bytecodes –returns bool--

compiler_write_header(resource filehandle [, string write_ver ])

Writes the bcompiler header –returns bool--

compiler_write_included_filename(resource filehandle, string filename)

Writes an included file as bytecodes –returns bool--

cpow(string left_operand, string right_operand [, int scale ])

Raise an arbitrary precision number to another –returns string--

cpowmod(string left_operand, string right_operand, string modulus [, int scale ])

Raise an arbitrary precision number to another, reduced by a specified modulus –returns string--

cscale(int scale)

Set default scale parameter for all bc math functions –returns bool--

csqrt(string operand [, int scale ])

Get the square root of an arbitrary precision number –returns string--

csub(string left_operand, string right_operand [, int scale ])

Subtract one arbitrary precision number from another –returns string--

in2hex(string str)

Convert binary data into hexadecimal representation –returns string--

ind_textdomain_codeset(string domain, string codeset)

Specify the character encoding in which the messages from the DOMAIN message catalog will be returned –returns string--

indec(string binary_string)

Binary to decimal –returns number--

indtextdomain(string domain, string directory)

Sets the path for a domain –returns string--

zclose(resource bz)

Close a bzip2 file –returns int--

zcompress(string source [, int blocksize [, int workfactor ]])

Compress a string into bzip2 encoded data –returns mixed--

zdecompress(string source [, int small ])

Decompresses bzip2 encoded data –returns mixed--

zerrno(resource bz)

Returns a bzip2 error number –returns int--

zerror(resource bz)

Returns the bzip2 error number and error string in an array –returns array--

zerrstr(resource bz)

Returns a bzip2 error string –returns string--

zflush(resource bz)

Force a write of all buffered data –returns int--

zopen(string filename, string mode)

Opens a bzip2 compressed file –returns resource--

zread(resource bz [, int length ])

Binary safe bzip2 file read –returns string--

zwrite(resource bz, string data [, int length ])

Binary safe bzip2 file write –returns int--

al_days_in_month(int calendar, int month, int year)

Return the number of days in a month for a given year and calendar –returns int--

al_from_jd(int jd, int calendar)

Converts from Julian Day Count to a supported calendar –returns array--

al_info ([ int calendar ])

Returns information about a particular calendar –returns array--

al_to_jd(int calendar, int month, int day, int year)

Converts from a supported calendar to Julian Day Count –returns int--

alcul_hmac(string clent, string siretcode, string price, string reference, string validity, string taxation, string devise, string language)

Obtain a hmac key (needs 8 arguments) –returns string--

alculhmac(string clent, string data)

Obtain a hmac key (needs 2 arguments) –returns string--

all_user_func_array(callback function, array param_arr)

Call a user function given with an array of parameters –returns mixed--

all_user_func(callback function [, mixed parameter [, mixed ... ]])

Call a user function given by the first parameter –returns mixed--

all_user_method_array(string method_name, object &obj, array params)

Call a user method given with an array of parameters [deprecated] –returns mixed--

all_user_method(string method_name, object &obj [, mixed parameter [, mixed ... ]])

Call a user method on an specific object [deprecated] –returns mixed--

eil(float value)

Round fractions up –returns float--

hdir(string directory)

Change directory –returns bool--

heckdate(int month, int day, int year)

Validate a Gregorian date –returns bool--

heckdnsrr(string host [, string type ])

Check DNS records corresponding to a given Internet host name or IP address –returns bool--

hgrp(string filename, mixed group)

Changes file group –returns bool--

hmod(string filename, int mode)

Changes file mode –returns bool--

hop

Alias of rtrim() –returns ?--

hown(string filename, mixed user)

Changes file owner –returns bool--

hr(int ascii)

Return a specific character –returns string--

hroot(string directory)

Change the root directory –returns bool--

hunk_split(string body [, int chunklen [, string end ]])

Split a string into smaller chunks –returns string--

lass_exists(string class_name [, bool autoload ])

Checks if the class has been defined –returns bool--

lass_implements(mixed class [, bool autoload ])

Return the interfaces which are implemented by the given class –returns array--

lass_parents(mixed class [, bool autoload ])

Return the parent classes of the given class –returns array--

lasskit_import(string filename)

Import new class method definitions from a file –returns array--

lasskit_method_add(string classname, string methodname, string args, string code [, int flags ])

Dynamically adds a new method to a given class –returns bool--

lasskit_method_copy(string dClass, string dMethod, string sClass [, string sMethod ])

Copies a method from class to another –returns bool--

lasskit_method_redefine(string classname, string methodname, string args, string code [, int flags ])

Dynamically changes the code of the given method –returns bool--

lasskit_method_remove(string classname, string methodname)

Dynamically removes the given method –returns bool--

lasskit_method_rename(string classname, string methodname, string newname)

Dynamically changes the name of the given method –returns bool--

learstatcache(void)

Clears file status cache –returns void--

losedir ([ resource dir_handle ])

Close directory handle –returns void--

loselog(void)

Close connection to system logger –returns bool--

om_addref(void)

Increases the components reference counter [deprecated] –returns void--

om_create_guid(void)

Generate a globally unique identifier (GUID) –returns string--

om_event_sink(variant comobject, object sinkobject [, mixed sinkinterface ])

Connect events from a COM object to a PHP object –returns bool--

om_get_active_object(string progid [, int code_page ])

Returns a handle to an already running instance of a COM object –returns variant--

om_get

Gets the value of a COM Component's property [deprecated] –returns ?--

om_invoke(resource com_object, string function_name [, mixed function_parameters ])

Calls a COM component's method [deprecated] –returns mixed--

om_isenum(variant com_module)

Indicates if a COM object has an IEnumVariant interface for iteration [deprecated] –returns bool--

om_load_typelib(string typelib_name [, bool case_insensitive ])

Loads a Typelib –returns bool--

om_load

Creates a new reference to a COM component [deprecated] –returns ?--

om_message_pump ([ int timeoutms ])

Process COM messages, sleeping for up to timeoutms milliseconds –returns bool--

om_print_typeinfo(object comobject [, string dispinterface [, bool wantsink ]])

Print out a PHP class definition for a dispatchable interface –returns bool--

om_propget

Alias of com_get() –returns ?--

om_propput

Alias of com_set() –returns ?--

om_propset

Alias of com_set() –returns ?--

om_release(void)

Decreases the components reference counter [deprecated] –returns void--

om_set

Assigns a value to a COM component's property –returns ?--

ompact(mixed varname [, mixed ... ])

Create array containing variables and their values –returns array--

onnection_aborted(void)

Check whether client disconnected –returns int--

onnection_status(void)

Returns connection status bitfield –returns int--

onnection_timeout(void)

Check if the script timed out –returns int--

onstant(string name)

Returns the value of a constant –returns mixed--

onvert_cyr_string(string str, string from, string to)

Convert from one Cyrillic character set to another –returns string--

onvert_uudecode(string data)

Decode a uuencoded string –returns string--

onvert_uuencode(string data)

Uuencode a string –returns string--

opy(string source, string dest [, resource context ])

Copies file –returns bool--

os(float arg)

Cosine –returns float--

osh(float arg)

Hyperbolic cosine –returns float--

ount_chars(string string [, int mode ])

Return information about characters used in a string –returns mixed--

ount(mixed var [, int mode ])

Count elements in an array, or properties in an object –returns int--

rack_check(resource dictionary, string password) bool crack_check(string password)

Performs an obscure check with the given password –returns bool--

rack_closedict ([ resource dictionary ])

Closes an open CrackLib dictionary –returns bool--

rack_getlastmessage(void)

Returns the message from the last obscure check –returns string--

rack_opendict(string dictionary)

Opens a new CrackLib dictionary –returns resource--

rc32(string str)

Calculates the crc32 polynomial of a string –returns int--

reate_function(string args, string code)

Create an anonymous (lambda-style) function –returns string--

rypt(string str [, string salt ])

One-way string encryption (hashing) –returns string--

type_alnum(string text)

Check for alphanumeric character(s) –returns bool--

type_alpha(string text)

Check for alphabetic character(s) –returns bool--

type_cntrl(string text)

Check for control character(s) –returns bool--

type_digit(string text)

Check for numeric character(s) –returns bool--

type_graph(string text)

Check for any printable character(s) except space –returns bool--

type_lower(string text)

Check for lowercase character(s) –returns bool--

type_print(string text)

Check for printable character(s) –returns bool--

type_punct(string text)

Check for any printable character which is not whitespace or an alphanumeric character –returns bool--

type_space(string text)

Check for whitespace character(s) –returns bool--

type_upper(string text)

Check for uppercase character(s) –returns bool--

type_xdigit(string text)

Check for character(s) representing a hexadecimal digit –returns bool--

url_close(resource ch)

Close a cURL session –returns void--

url_copy_handle(resource ch)

Copy a cURL handle along with all of its preferences –returns resource--

url_errno(resource ch)

Return the last error number –returns int--

url_error(resource ch)

Return a string containing the last error for the current session –returns string--

url_exec(resource ch)

Perform a cURL session –returns mixed--

url_getinfo(resource ch [, int opt ])

Get information regarding a specific transfer –returns mixed--

url_init ([ string url ])

Initialize a cURL session –returns resource--

url_multi_add_handle(resource mh, resource ch)

Add a normal cURL handle to a cURL multi handle –returns int--

url_multi_close(resource mh)

Close a set of cURL handles –returns void--

url_multi_exec(resource mh, int &still_running)

Run the sub-connections of the current cURL handle –returns int--

url_multi_getcontent(resource ch)

Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set –returns string--

url_multi_info_read(resource mh [, int msgs_in_queue ])

Get information about the current transfers –returns array--

url_multi_init(void)

Returns a new cURL multi handle –returns resource--

url_multi_remove_handle(resource mh, resource ch)

Remove a multi handle from a set of cURL handles –returns int--

url_multi_select(resource mh [, float timeout ])

Get all the sockets associated with the cURL extension, which can then be "selected" –returns int--

url_setopt_array(resource ch, array options)

Set multiple options for a cURL transfer –returns bool--

url_setopt(resource ch, int option, mixed value)

Set an option for a cURL transfer –returns bool--

url_version ([ int age ])

Gets cURL version information –returns array--

urrent(array &array)

Return the current element in an array –returns mixed--

yrus_authenticate(resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf [, string authname [, string password ]]]]]]])

Authenticate against a Cyrus IMAP server –returns void--

yrus_bind(resource connection, array callbacks)

Bind callbacks to a Cyrus IMAP connection –returns bool--

yrus_close(resource connection)

Close connection to a Cyrus IMAP server –returns bool--

yrus_connect ([ string host [, string port [, int flags ]]])

Connect to a Cyrus IMAP server –returns resource--

yrus_query(resource connection, string query)

Send a query to a Cyrus IMAP server –returns array--

yrus_unbind(resource connection, string trigger_name)

Unbind … –returns bool--

ate_add(DateTime object, DateInterval interval)

Adds an amount of days, months, years, hours, minutes and seconds to a DateTime object –returns void--

ate_create ([ string time [, DateTimeZone timezone ]]) DateTime DateTime::__construct ([ string time [, DateTimeZone timezone ]])

Returns new DateTime object –returns DateTime--

ate_date_set(DateTime object, int year, int month, int day) void DateTime::setDate(int year, int month, int day)

Sets the date –returns void--

ate_default_timezone_get(void)

Gets the default timezone used by all date/time functions in a script –returns string--

ate_default_timezone_set(string timezone_identifier)

Sets the default timezone used by all date/time functions in a script –returns bool--

ate_format(DateTime object, string format) string DateTime::format(string format)

Returns date formatted according to given format –returns string--

ate_isodate_set(DateTime object, int year, int week [, int day ]) void DateTime::setISODate(int year, int week [, int day ])

Sets the ISO date –returns void--

ate_modify(DateTime object, string modify) void DateTime::modify(string modify)

Alters the timestamp –returns void--

ate_offset_get(DateTime object) int DateTime::getOffset(void)

Returns the daylight saving time offset –returns int--

ate_parse(string date)

Returns associative array with detailed info about given date –returns array--

ate_sub(DateTime object, DateInterval interval)

Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object –returns void--

ate_sun_info(int time, float latitude, float longitude)

Returns an array with information about sunset/sunrise and twilight begin/end –returns array--

ate_sunrise(int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset ]]]]])

Returns time of sunrise for a given day and location –returns mixed--

ate_sunset(int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset ]]]]])

Returns time of sunset for a given day and location –returns mixed--

ate_time_set(DateTime object, int hour, int minute [, int second ]) void DateTime::setTime(int hour, int minute [, int second ])

Sets the time –returns void--

ate_timezone_get(DateTime object) DateTimeZone DateTime::getTimezone(void)

Return time zone relative to given DateTime –returns DateTimeZone--

ate_timezone_set(DateTime object, DateTimeZone timezone) void DateTime::setTimezone(DateTimeZone timezone)

Sets the time zone for the DateTime object –returns void--

ate(string format [, int timestamp ])

Format a local time/date –returns string--

b2_autocommit(resource connection [, bool value ])

Returns or sets the AUTOCOMMIT state for a database connection –returns mixed--

b2_bind_param(resource stmt, int parameter-number, string variable-name [, int parameter-type [, int data-type [, int precision [, int scale ]]]])

Binds a PHP variable to an SQL statement parameter –returns bool--

b2_client_info(resource connection)

Returns an object with properties that describe the DB2 database client –returns object--

b2_close(resource connection)

Closes a database connection –returns bool--

b2_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 –returns resource--

b2_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 –returns resource--

b2_commit(resource connection)

Commits a transaction –returns bool--

b2_conn_error ([ resource connection ])

Returns a string containing the SQLSTATE returned by the last connection attempt –returns string--

b2_conn_errormsg ([ resource connection ])

Returns the last connection error message and SQLCODE value –returns string--

b2_connect(string database, string username, string password [, array options ])

Returns a connection to a database –returns resource--

b2_cursor_type(resource stmt)

Returns the cursor type used by a statement resource –returns int--

b2_escape_string(string string_literal)

Used to escape certain characters –returns string--

b2_exec(resource connection, string statement [, array options ])

Executes an SQL statement directly –returns resource--

b2_execute(resource stmt [, array parameters ])

Executes a prepared SQL statement –returns bool--

b2_fetch_array(resource stmt [, int row_number ])

Returns an array, indexed by column position, representing a row in a result set –returns array--

b2_fetch_assoc(resource stmt [, int row_number ])

Returns an array, indexed by column name, representing a row in a result set –returns array--

b2_fetch_both(resource stmt [, int row_number ])

Returns an array, indexed by both column name and position, representing a row in a result set –returns array--

b2_fetch_object(resource stmt [, int row_number ])

Returns an object with properties representing columns in the fetched row –returns object--

b2_fetch_row(resource stmt [, int row_number ])

Sets the result set pointer to the next row or requested row –returns bool--

b2_field_display_size(resource stmt, mixed column)

Returns the maximum number of bytes required to display a column –returns int--

b2_field_name(resource stmt, mixed column)

Returns the name of the column in the result set –returns string--

b2_field_num(resource stmt, mixed column)

Returns the position of the named column in a result set –returns int--

b2_field_precision(resource stmt, mixed column)

Returns the precision of the indicated column in a result set –returns int--

b2_field_scale(resource stmt, mixed column)

Returns the scale of the indicated column in a result set –returns int--

b2_field_type(resource stmt, mixed column)

Returns the data type of the indicated column in a result set –returns string--

b2_field_width(resource stmt, mixed column)

Returns the width of the current value of the indicated column in a result set –returns int--

b2_foreign_keys(resource connection, string qualifier, string schema, string table-name)

Returns a result set listing the foreign keys for a table –returns resource--

b2_free_result(resource stmt)

Frees resources associated with a result set –returns bool--

b2_free_stmt(resource stmt)

Frees resources associated with the indicated statement resource –returns bool--

b2_get_option(resource resource, string option)

Retrieves an option value for a statement resource or a connection resource –returns string--

b2_lob_read(resource stmt, int colnum, int length)

Gets a user defined size of LOB files with each invocation –returns string--

b2_next_result(resource stmt)

Requests the next result set from a stored procedure –returns resource--

b2_num_fields(resource stmt)

Returns the number of fields contained in a result set –returns int--

b2_num_rows(resource stmt)

Returns the number of rows affected by an SQL statement –returns int--

b2_pconnect(string database, string username, string password [, array options ])

Returns a persistent connection to a database –returns resource--

b2_prepare(resource connection, string statement [, array options ])

Prepares an SQL statement to be executed –returns resource--

b2_primary_keys(resource connection, string qualifier, string schema, string table-name)

Returns a result set listing primary keys for a table –returns resource--

b2_procedure_columns(resource connection, string qualifier, string schema, string procedure, string parameter)

Returns a result set listing stored procedure parameters –returns resource--

b2_procedures(resource connection, string qualifier, string schema, string procedure)

Returns a result set listing the stored procedures registered in a database –returns resource--

b2_result(resource stmt, mixed column)

Returns a single column from a row in the result set –returns mixed--

b2_rollback(resource connection)

Rolls back a transaction –returns bool--

b2_server_info(resource connection)

Returns an object with properties that describe the DB2 database server –returns object--

b2_set_option(resource resource, array options, int type)

Set options for connection or statement resources –returns bool--

b2_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 –returns resource--

b2_statistics(resource connection, string qualifier, string schema, string table-name, bool unique)

Returns a result set listing the index and statistics for a table –returns resource--

b2_stmt_error ([ resource stmt ])

Returns a string containing the SQLSTATE returned by an SQL statement –returns string--

b2_stmt_errormsg ([ resource stmt ])

Returns a string containing the last SQL statement error message –returns string--

b2_table_privileges(resource connection [, string qualifier [, string schema [, string table_name ]]])

Returns a result set listing the tables and associated privileges in a database –returns resource--

b2_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 –returns resource--

ba_close(resource handle)

Close a DBA database –returns void--

ba_delete(string key, resource handle)

Delete DBA entry specified by key –returns bool--

ba_exists(string key, resource handle)

Check whether key exists –returns bool--

ba_fetch(string key, resource handle) string dba_fetch(string key, int skip, resource handle)

Fetch data specified by key –returns string--

ba_firstkey(resource handle)

Fetch first key –returns string--

ba_handlers ([ bool full_info ])

List all the handlers available –returns array--

ba_insert(string key, string value, resource handle)

Insert entry –returns bool--

ba_key_split(mixed key)

Splits a key in string representation into array representation –returns mixed--

ba_list(void)

List all open database files –returns array--

ba_nextkey(resource handle)

Fetch next key –returns string--

ba_open(string path, string mode [, string handler [, mixed ... ]])

Open database –returns resource--

ba_optimize(resource handle)

Optimize database –returns bool--

ba_popen(string path, string mode [, string handler [, mixed ... ]])

Open database persistently –returns resource--

ba_replace(string key, string value, resource handle)

Replace or insert entry –returns bool--

ba_sync(resource handle)

Synchronize database –returns bool--

base_add_record(int dbase_identifier, array record)

Adds a record to a database –returns bool--

base_close(int dbase_identifier)

Closes a database –returns bool--

base_create(string filename, array fields)

Creates a database –returns int--

base_delete_record(int dbase_identifier, int record_number)

Deletes a record from a database –returns bool--

base_get_header_info(int dbase_identifier)

Gets the header info of a database –returns array--

base_get_record_with_names(int dbase_identifier, int record_number)

Gets a record from a database as an associative array –returns array--

base_get_record(int dbase_identifier, int record_number)

Gets a record from a database as an indexed array –returns array--

base_numfields(int dbase_identifier)

Gets the number of fields of a database –returns int--

base_numrecords(int dbase_identifier)

Gets the number of records in a database –returns int--

base_open(string filename, int mode)

Opens a database –returns int--

base_pack(int dbase_identifier)

Packs a database –returns bool--

base_replace_record(int dbase_identifier, array record, int record_number)

Replaces a record in a database –returns bool--

bplus_add(resource relation, array tuple)

Add a tuple to a relation –returns int--

bplus_aql(string query [, string server [, string dbpath ]])

Perform AQL query –returns resource--

bplus_chdir ([ string newdir ])

Get/Set database virtual current directory –returns string--

bplus_close(resource relation)

Close a relation –returns mixed--

bplus_curr(resource relation, array &tuple)

Get current tuple from relation –returns int--

bplus_errcode ([ int errno ])

Get error string for given errorcode or last error –returns string--

bplus_errno(void)

Get error code for last operation –returns int--

bplus_find(resource relation, array constraints, mixed tuple)

Set a constraint on a relation –returns int--

bplus_first(resource relation, array &tuple)

Get first tuple from relation –returns int--

bplus_flush(resource relation)

Flush all changes made on a relation –returns int--

bplus_freealllocks(void)

Free all locks held by this client –returns int--

bplus_freelock(resource relation, string tuple)

Release write lock on tuple –returns int--

bplus_freerlocks(resource relation)

Free all tuple locks on given relation –returns int--

bplus_getlock(resource relation, string tuple)

Get a write lock on a tuple –returns int--

bplus_getunique(resource relation, int uniqueid)

Get an id number unique to a relation –returns int--

bplus_info(resource relation, string key, array &result)

Get information about a relation –returns int--

bplus_last(resource relation, array &tuple)

Get last tuple from relation –returns int--

bplus_lockrel(resource relation)

Request write lock on relation –returns int--

bplus_next(resource relation, array &tuple)

Get next tuple from relation –returns int--

bplus_open(string name)

Open relation file –returns resource--

bplus_prev(resource relation, array &tuple)

Get previous tuple from relation –returns int--

bplus_rchperm(resource relation, int mask, string user, string group)

Change relation permissions –returns int--

bplus_rcreate(string name, mixed domlist [, bool overwrite ])

Creates a new DB++ relation –returns resource--

bplus_rcrtexact(string name, resource relation [, bool overwrite ])

Creates an exact but empty copy of a relation including indices –returns mixed--

bplus_rcrtlike(string name, resource relation [, int overwrite ])

Creates an empty copy of a relation with default indices –returns mixed--

bplus_resolve(string relation_name)

Resolve host information for relation –returns array--

bplus_restorepos(resource relation, array tuple)

Restore position –returns int--

bplus_rkeys(resource relation, mixed domlist)

Specify new primary key for a relation –returns mixed--

bplus_ropen(string name)

Open relation file local –returns resource--

bplus_rquery(string query [, string dbpath ])

Perform local (raw) AQL query –returns resource--

bplus_rrename(resource relation, string name)

Rename a relation –returns int--

bplus_rsecindex(resource relation, mixed domlist, int type)

Create a new secondary index for a relation –returns mixed--

bplus_runlink(resource relation)

Remove relation from filesystem –returns int--

bplus_rzap(resource relation)

Remove all tuples from relation –returns int--

bplus_savepos(resource relation)

Save position –returns int--

bplus_setindex(resource relation, string idx_name)

Set index –returns int--

bplus_setindexbynumber(resource relation, int idx_number)

Set index by number –returns int--

bplus_sql(string query [, string server [, string dbpath ]])

Perform SQL query –returns resource--

bplus_tcl(int sid, string script)

Execute TCL code on server side –returns string--

bplus_tremove(resource relation, array tuple [, array &current ])

Remove tuple and return new current tuple –returns int--

bplus_undo(resource relation)

Undo –returns int--

bplus_undoprepare(resource relation)

Prepare undo –returns int--

bplus_unlockrel(resource relation)

Give up write lock on relation –returns int--

bplus_unselect(resource relation)

Remove a constraint from relation –returns int--

bplus_update(resource relation, array old, array new)

Update specified tuple in relation –returns int--

bplus_xlockrel(resource relation)

Request exclusive lock on relation –returns int--

bplus_xunlockrel(resource relation)

Free exclusive lock on relation –returns int--

bx_close(object link_identifier)

Close an open connection/database –returns int--

bx_compare(array row_a, array row_b, string column_key [, int flags ])

Compare two rows for sorting purposes –returns int--

bx_connect(mixed module, string host, string database, string username, string password [, int persistent ])

Open a connection/database –returns object--

bx_error(object link_identifier)

Report the error message of the latest function call in the module –returns string--

bx_escape_string(object link_identifier, string text)

Escape a string so it can safely be used in an sql-statement –returns string--

bx_fetch_row(object result_identifier)

Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set –returns mixed--

bx_query(object link_identifier, string sql_statement [, int flags ])

Send a query and fetch all results (if any) –returns mixed--

bx_sort(object result, string user_compare_function)

Sort a result from a dbx_query by a custom sort function –returns bool--

cgettext(string domain, string message, int category)

Overrides the domain for a single lookup –returns string--

cngettext(string domain, string msgid1, string msgid2, int n, int category)

Plural version of dcgettext –returns string--

eaggregate(object object [, string class_name ])

Removes the aggregated methods and properties from an object –returns void--

ebug_backtrace ([ bool provide_object ])

Generates a backtrace –returns array--

ebug_print_backtrace(void)

Prints a backtrace –returns void--

ebug_zval_dump(mixed variable)

Dumps a string representation of an internal zend value to output –returns void--

ecbin(int number)

Decimal to binary –returns string--

echex(int number)

Decimal to hexadecimal –returns string--

ecoct(int number)

Decimal to octal –returns string--

efine_syslog_variables(void)

Initializes all syslog related variables –returns void--

efine(string name, mixed value [, bool case_insensitive ])

Defines a named constant –returns bool--

efined(string name)

Checks whether a given named constant exists –returns bool--

eg2rad(float number)

Converts the number in degrees to the radian equivalent –returns float--

elete(void)

See unlink() or unset() –returns void--

gettext(string domain, string message)

Override the current domain –returns string--

ie

Equivalent to exit() –returns ?--

io_close(resource fd)

Closes the file descriptor given by fd –returns void--

io_fcntl(resource fd, int cmd [, mixed args ])

Performs a c library fcntl on fd –returns mixed--

io_open(string filename, int flags [, int mode ])

Opens a new filename with specified permissions of flags and creation permissions of mode –returns resource--

io_read(resource fd [, int len ])

Reads bytes from a file descriptor –returns string--

io_seek(resource fd, int pos [, int whence ])

Seeks to pos on fd from whence –returns int--

io_stat(resource fd)

Gets stat information about the file descriptor fd –returns array--

io_tcsetattr(resource fd, array options)

Sets terminal attributes and baud rate for a serial port –returns bool--

io_truncate(resource fd, int offset)

Truncates file descriptor fd to offset bytes –returns bool--

io_write(resource fd, string data [, int len ])

Writes data to fd with optional truncation at length –returns int--

irname(string path)

Returns directory name component of path –returns string--

isk_free_space(string directory)

Returns available space in directory –returns float--

isk_total_space(string directory)

Returns the total size of a directory –returns float--

iskfreespace

Alias of disk_free_space() –returns ?--

l(string library)

Loads a PHP extension at runtime –returns int--

ngettext(string domain, string msgid1, string msgid2, int n)

Plural version of dgettext –returns string--

ns_check_record

Alias of checkdnsrr() –returns ?--

ns_get_mx

Alias of getmxrr() –returns ?--

ns_get_record(string hostname [, int type ]) array dns_get_record(string hostname, int type, array &authns, array &addtl)

Fetch DNS Resource Records associated with a hostname –returns array--

om_import_simplexml(SimpleXMLElement node)

Gets a DOMElement object from a SimpleXMLElement object –returns DOMElement--

ame(void)

Returns the name of attribute –returns string--

et_value(string content)

Sets the value of an attribute –returns bool--

pecified(void)

Checks if attribute is specified –returns bool--

alue(void)

Returns value of attribute –returns string--

omDocument->add_root(string name)

Adds a root node [deprecated] –returns domelement--

omDocument->create_attribute(string name, string value)

Create new attribute –returns domattribute--

omDocument->create_cdata_section(string content)

Create new cdata node –returns domcdata--

omDocument->create_comment(string content)

Create new comment node –returns domcomment--

omDocument->create_element_ns(string uri, string name [, string prefix ])

Create new element node with an associated namespace –returns domelement--

omDocument->create_element(string name)

Create new element node –returns domelement--

omDocument->create_entity_reference(string content)

Create an entity reference –returns domentityreference--

omDocument->create_processing_instruction(string content)

Creates new PI node –returns domprocessinginstruction--

omDocument->create_text_node(string content)

Create new text node –returns domtext--

omDocument->doctype(void)

Returns the document type –returns domdocumenttype--

omDocument->document_element(void)

Returns root element node –returns domelement--

omDocument->dump_file(string filename [, bool compressionmode [, bool format ]])

Dumps the internal XML tree back into a file –returns string--

omDocument->dump_mem ([ bool format [, string encoding ]])

Dumps the internal XML tree back into a string –returns string--

omDocument->get_element_by_id(string id)

Searches for an element with a certain id –returns domelement--

omDocument->get_elements_by_tagname(string name)

Returns array with nodes with given tagname in document or empty array, if not found –returns array--

omDocument->html_dump_mem(void)

Dumps the internal XML tree back into a string as HTML –returns string--

omDocument->xinclude(void)

Substitutes XIncludes in a DomDocument Object –returns int--

ntities(void)

Returns list of entities –returns array--

nternal_subset(void)

Returns internal subset –returns bool--

ame(void)

Returns name of document type –returns string--

otations(void)

Returns list of notations –returns array--

ublic_id(void)

Returns public id of document type –returns string--

ystem_id(void)

Returns the system id of document type –returns string--

et_attribute_node(string name)

Returns the node of the given attribute –returns DomAttribute--

et_attribute(string name)

Returns the value of the given attribute –returns string--

et_elements_by_tagname(string name)

Gets elements by tagname –returns array--

as_attribute(string name)

Checks to see if an attribute exists in the current node –returns bool--

emove_attribute(string name)

Removes attribute –returns bool--

et_attribute_node(DomNode attr)

Adds new attribute –returns DomNode--

et_attribute(string name, string value)

Sets the value of an attribute –returns DomAttribute--

agname(void)

Returns the name of the current element –returns string--

dd_namespace(string uri, string prefix)

Adds a namespace declaration to a node –returns bool--

ppend_child(DOMNode newnode)

Adds a new child at the end of the children –returns DOMNode--

omNode->append_sibling(domelement newnode)

Adds new sibling to a node –returns domelement--

omNode->attributes(void)

Returns list of attributes –returns array--

omNode->child_nodes(void)

Returns children of node –returns array--

omNode->clone_node(void)

Clones a node –returns domelement--

omNode->dump_node(void)

Dumps a single node –returns string--

omNode->first_child(void)

Returns first child of node –returns domelement--

omNode->get_content(void)

Gets content of node –returns string--

omNode->has_attributes(void)

Checks if node has attributes –returns bool--

omNode->has_child_nodes(void)

Checks if node has children –returns bool--

omNode->insert_before(domelement newnode, domelement refnode)

Inserts new node as child –returns domelement--

omNode->is_blank_node(void)

Checks if node is blank –returns bool--

omNode->last_child(void)

Returns last child of node –returns domelement--

omNode->next_sibling(void)

Returns the next sibling of node –returns domelement--

omNode->node_name(void)

Returns name of node –returns string--

omNode->node_type(void)

Returns type of node –returns int--

omNode->node_value(void)

Returns value of a node –returns string--

omNode->owner_document(void)

Returns the document this node belongs to –returns domdocument--

omNode->parent_node(void)

Returns the parent of the node –returns domnode--

omNode->prefix(void)

Returns name space prefix of node –returns string--

omNode->previous_sibling(void)

Returns the previous sibling of node –returns domelement--

omNode->remove_child(domtext oldchild)

Removes child from list of children –returns domtext--

omNode->replace_child(domelement newnode, domelement oldnode)

Replaces a child –returns domelement--

omNode->replace_node(domelement newnode)

Replaces node –returns domelement--

omNode->set_content(string content)

Sets content of node –returns bool--

omNode->set_name(void)

Sets name of node –returns bool--

omNode->set_namespace(string uri [, string prefix ])

Sets namespace of a node –returns void--

omNode->unlink_node(void)

Deletes node –returns void--

ata(void)

Returns the data of ProcessingInstruction node –returns string--

arget(void)

Returns the target of a ProcessingInstruction node –returns string--

omxml_new_doc(string version)

Creates new empty XML document –returns DomDocument--

omxml_open_file(string filename [, int mode [, array &error ]])

Creates a DOM object from an XML file –returns DomDocument--

omxml_open_mem(string str [, int mode [, array &error ]])

Creates a DOM object of an XML document –returns DomDocument--

omxml_version(void)

Gets the XML library version –returns string--

omxml_xmltree(string str)

Creates a tree of PHP objects from an XML document –returns DomDocument--

omxml_xslt_stylesheet_doc(DomDocument xsl_doc)

Creates a DomXsltStylesheet Object from a DomDocument Object –returns DomXsltStylesheet--

omxml_xslt_stylesheet_file(string xsl_file)

Creates a DomXsltStylesheet Object from an XSL document in a file –returns DomXsltStylesheet--

omxml_xslt_stylesheet(string xsl_buf)

Creates a DomXsltStylesheet object from an XSL document in a string –returns DomXsltStylesheet--

omxml_xslt_version(void)

Gets the XSLT library version –returns int--

rocess(DomDocument xml_doc [, array xslt_params [, bool is_xpath_param [, string profile_filename ]]])

Applies the XSLT-Transformation on a DomDocument Object –returns DomDocument--

esult_dump_file(DomDocument xmldoc, string filename)

Dumps the result from a XSLT-Transformation into a file –returns string--

esult_dump_mem(DomDocument xmldoc)

Dumps the result from a XSLT-Transformation back into a string –returns string--

otnet_load(string assembly_name [, string datatype_name [, int codepage ]])

Loads a DOTNET module –returns int--

oubleval

Alias of floatval() –returns ?--

ach(array &array)

Return the current key and value pair from an array and advance the array cursor –returns array--

aster_date ([ int year ])

Get Unix timestamp for midnight on Easter of a given year –returns int--

aster_days ([ int year [, int method ]])

Get number of days after March 21 on which Easter falls for a given year –returns int--

bcdic2ascii(string ebcdic_str)

Translate string from EBCDIC to ASCII –returns int--

cho(string arg1 [, string ... ])

Output one or more strings –returns void--

mpty(mixed var)

Determine whether a variable is empty –returns bool--

nchant_broker_describe(resource broker)

Enumerates the Enchant providers –returns array--

nchant_broker_dict_exists(resource broker, string tag)

Whether a dictionary exists or not. Using non-empty tag –returns bool--

nchant_broker_free_dict(resource dict)

Free a dictionary resource –returns bool--

nchant_broker_free(resource broker)

Free the broker resource and its dictionnaries –returns bool--

nchant_broker_get_error(resource broker)

Returns the last error of the broker –returns string--

nchant_broker_init(void)

create a new broker object capable of requesting –returns resource--

nchant_broker_list_dicts(resource broker)

Returns a list of available dictionaries –returns mixed--

nchant_broker_request_dict(resource broker, string tag)

create a new dictionary using a tag –returns resource--

nchant_broker_request_pwl_dict(resource broker, string filename)

creates a dictionary using a PWL file. A PWL file is personal word file one word per line. –returns resource--

nchant_broker_set_ordering(resource broker, string tag, string ordering)

Declares a preference of dictionaries to use for the language –returns bool--

nchant_dict_add_to_personal(resource dict, string word)

add a word to personal word list –returns void--

nchant_dict_add_to_session(resource dict, string word)

add 'word' to this spell-checking session –returns void--

nchant_dict_check(resource dict, string word)

Check whether a word is correctly spelled or not. –returns bool--

nchant_dict_describe(resource dict)

Describes an individual dictionary –returns mixed--

nchant_dict_get_error(resource dict)

Returns the last error of the current spelling-session –returns string--

nchant_dict_is_in_session(resource dict, string word)

whether or not 'word' exists in this spelling-session –returns bool--

nchant_dict_quick_check(resource dict, string word [, array &suggestions ])

Check the word is correctly spelled and provide suggestions –returns bool--

nchant_dict_store_replacement(resource dict, string mis, string cor)

add a correction for a word. –returns void--

nchant_dict_suggest(resource dict, string word)

Will return a list of values if any of those pre-conditions are not met. –returns array--

nd(array &array)

Set the internal pointer of an array to its last element –returns mixed--

reg_replace(string pattern, string replacement, string string)

Replace regular expression –returns string--

reg(string pattern, string string [, array &regs ])

Regular expression match –returns int--

regi_replace(string pattern, string replacement, string string)

Replace regular expression case insensitive –returns string--

regi(string pattern, string string [, array &regs ])

Case insensitive regular expression match –returns int--

rror_get_last(void)

Get the last occurred error –returns array--

rror_log(string message [, int message_type [, string destination [, string extra_headers ]]])

Send an error message somewhere –returns bool--

rror_reporting ([ int level ])

Sets which PHP errors are reported –returns int--

scapeshellarg(string arg)

Escape a string to be used as a shell argument –returns string--

scapeshellcmd(string command)

Escape shell metacharacters –returns string--

val(string code_str)

Evaluate a string as PHP code –returns mixed--

xec(string command [, array &output [, int &return_var ]])

Execute an external program –returns string--

xif_imagetype(string filename)

Determine the type of an image –returns int--

xif_read_data(string filename [, string sections [, bool arrays [, bool thumbnail ]]])

Reads the EXIF headers from JPEG or TIFF –returns array--

xif_tagname(string index)

Get the header name for an index –returns string--

xif_thumbnail(string filename [, int &width [, int &height [, int &imagetype ]]])

Retrieve the embedded thumbnail of a TIFF or JPEG image –returns string--

xit ([ string status ]) void exit(int status)

Output a message and terminate the current script –returns void--

xp(float arg)

Calculates the exponent of e –returns float--

xpect_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 –returns int--

xpect_popen(string command)

Execute command via Bourne shell, and open the PTY stream to the process –returns resource--

xplode(string delimiter, string string [, int limit ])

Split a string by string –returns array--

xpm1(float arg)

Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero –returns float--

xtension_loaded(string name)

Find out whether an extension is loaded –returns bool--

xtract(array var_array [, int extract_type [, string prefix ]])

Import variables into the current symbol table from an array –returns int--

zmlm_hash(string addr)

Calculate the hash value needed by EZMLM –returns int--

am_cancel_monitor(resource fam, resource fam_monitor)

Terminate monitoring –returns bool--

am_close(resource fam)

Close FAM connection –returns void--

am_monitor_collection(resource fam, string dirname, int depth, string mask)

Monitor a collection of files in a directory for changes –returns resource--

am_monitor_directory(resource fam, string dirname)

Monitor a directory for changes –returns resource--

am_monitor_file(resource fam, string filename)

Monitor a regular file for changes –returns resource--

am_next_event(resource fam)

Get next pending FAM event –returns array--

am_open ([ string appname ])

Open connection to FAM daemon –returns resource--

am_pending(resource fam)

Check for pending FAM events –returns int--

am_resume_monitor(resource fam, resource fam_monitor)

Resume suspended monitoring –returns bool--

am_suspend_monitor(resource fam, resource fam_monitor)

Temporarily suspend monitoring –returns bool--

bsql_affected_rows ([ resource link_identifier ])

Get number of affected rows in previous FrontBase operation –returns int--

bsql_autocommit(resource link_identifier [, bool OnOff ])

Enable or disable autocommit –returns bool--

bsql_blob_size(string blob_handle [, resource link_identifier ])

Get the size of a BLOB –returns int--

bsql_change_user(string user, string password [, string database [, resource link_identifier ]])

Change logged in user of the active connection –returns bool--

bsql_clob_size(string clob_handle [, resource link_identifier ])

Get the size of a CLOB –returns int--

bsql_close ([ resource link_identifier ])

Close FrontBase connection –returns bool--

bsql_commit ([ resource link_identifier ])

Commits a transaction to the database –returns bool--

bsql_connect ([ string hostname [, string username [, string password ]]])

Open a connection to a FrontBase Server –returns resource--

bsql_create_blob(string blob_data [, resource link_identifier ])

Create a BLOB –returns string--

bsql_create_clob(string clob_data [, resource link_identifier ])

Create a CLOB –returns string--

bsql_create_db(string database_name [, resource link_identifier [, string database_options ]])

Create a FrontBase database –returns bool--

bsql_data_seek(resource result, int row_number)

Move internal result pointer –returns bool--

bsql_database_password(resource link_identifier [, string database_password ])

Sets or retrieves the password for a FrontBase database –returns string--

bsql_database(resource link_identifier [, string database ])

Get or set the database name used with a connection –returns string--

bsql_db_query(string database, string query [, resource link_identifier ])

Send a FrontBase query –returns resource--

bsql_db_status(string database_name [, resource link_identifier ])

Get the status for a given database –returns int--

bsql_drop_db(string database_name [, resource link_identifier ])

Drop (delete) a FrontBase database –returns bool--

bsql_errno ([ resource link_identifier ])

Returns the error number from previous operation –returns int--

bsql_error ([ resource link_identifier ])

Returns the error message from previous operation –returns string--

bsql_fetch_array(resource result [, int result_type ])

Fetch a result row as an associative array, a numeric array, or both –returns array--

bsql_fetch_assoc(resource result)

Fetch a result row as an associative array –returns array--

bsql_fetch_field(resource result [, int field_offset ])

Get column information from a result and return as an object –returns object--

bsql_fetch_lengths(resource result)

Get the length of each output in a result –returns array--

bsql_fetch_object(resource result)

Fetch a result row as an object –returns object--

bsql_fetch_row(resource result)

Get a result row as an enumerated array –returns array--

bsql_field_flags(resource result [, int field_offset ])

Get the flags associated with the specified field in a result –returns string--

bsql_field_len(resource result [, int field_offset ])

Returns the length of the specified field –returns int--

bsql_field_name(resource result [, int field_index ])

Get the name of the specified field in a result –returns string--

bsql_field_seek(resource result [, int field_offset ])

Set result pointer to a specified field offset –returns bool--

bsql_field_table(resource result [, int field_offset ])

Get name of the table the specified field is in –returns string--

bsql_field_type(resource result [, int field_offset ])

Get the type of the specified field in a result –returns string--

bsql_free_result(resource result)

Free result memory –returns bool--

bsql_get_autostart_info ([ resource link_identifier ])

Description array –returns array--

bsql_hostname(resource link_identifier [, string host_name ])

Get or set the host name used with a connection –returns string--

bsql_insert_id ([ resource link_identifier ])

Get the id generated from the previous INSERT operation –returns int--

bsql_list_dbs ([ resource link_identifier ])

List databases available on a FrontBase server –returns resource--

bsql_list_fields(string database_name, string table_name [, resource link_identifier ])

List FrontBase result fields –returns resource--

bsql_list_tables(string database [, resource link_identifier ])

List tables in a FrontBase database –returns resource--

bsql_next_result(resource result)

Move the internal result pointer to the next result –returns bool--

bsql_num_fields(resource result)

Get number of fields in result –returns int--

bsql_num_rows(resource result)

Get number of rows in result –returns int--

bsql_password(resource link_identifier [, string password ])

Get or set the user password used with a connection –returns string--

bsql_pconnect ([ string hostname [, string username [, string password ]]])

Open a persistent connection to a FrontBase Server –returns resource--

bsql_query(string query [, resource link_identifier [, int batch_size ]])

Send a FrontBase query –returns resource--

bsql_read_blob(string blob_handle [, resource link_identifier ])

Read a BLOB from the database –returns string--

bsql_read_clob(string clob_handle [, resource link_identifier ])

Read a CLOB from the database –returns string--

bsql_result(resource result [, int row [, mixed field ]])

Get result data –returns mixed--

bsql_rollback ([ resource link_identifier ])

Rollback a transaction to the database –returns bool--

bsql_rows_fetched(resource result)

Get the number of rows affected by the last statement –returns int--

bsql_select_db ([ string database_name [, resource link_identifier ]])

Select a FrontBase database –returns bool--

bsql_set_characterset(resource link_identifier, int characterset [, int in_out_both ])

Change input/output character set –returns void--

bsql_set_lob_mode(resource result, int lob_mode)

Set the LOB retrieve mode for a FrontBase result set –returns bool--

bsql_set_password(resource link_identifier, string user, string password, string old_password)

Change the password for a given user –returns bool--

bsql_set_transaction(resource link_identifier, int locking, int isolation)

Set the transaction locking and isolation –returns void--

bsql_start_db(string database_name [, resource link_identifier [, string database_options ]])

Start a database on local or remote server –returns bool--

bsql_stop_db(string database_name [, resource link_identifier ])

Stop a database on local or remote server –returns bool--

bsql_table_name(resource result, int index)

Get table name of field –returns string--

bsql_tablename

Alias of of fbsql_table_name() –returns ?--

bsql_username(resource link_identifier [, string username ])

Get or set the username for the connection –returns string--

bsql_warnings ([ bool OnOff ])

Enable or disable FrontBase warnings –returns bool--

close(resource handle)

Closes an open file pointer –returns bool--

df_add_doc_javascript(resource fdf_document, string script_name, string script_code)

Adds javascript code to the FDF document –returns bool--

df_add_template(resource fdf_document, int newpage, string filename, string template, int rename)

Adds a template into the FDF document –returns bool--

df_close(resource fdf_document)

Close an FDF document –returns void--

df_create(void)

Create a new FDF document –returns resource--

df_enum_values(resource fdf_document, callback function [, mixed userdata ])

Call a user defined function for each document value –returns bool--

df_errno(void)

Return error code for last fdf operation –returns int--

df_error ([ int error_code ])

Return error description for FDF error code –returns string--

df_get_ap(resource fdf_document, string field, int face, string filename)

Get the appearance of a field –returns bool--

df_get_attachment(resource fdf_document, string fieldname, string savepath)

Extracts uploaded file embedded in the FDF –returns array--

df_get_encoding(resource fdf_document)

Get the value of the /Encoding key –returns string--

df_get_file(resource fdf_document)

Get the value of the /F key –returns string--

df_get_flags(resource fdf_document, string fieldname, int whichflags)

Gets the flags of a field –returns int--

df_get_opt(resource fdf_document, string fieldname [, int element ])

Gets a value from the opt array of a field –returns mixed--

df_get_status(resource fdf_document)

Get the value of the /STATUS key –returns string--

df_get_value(resource fdf_document, string fieldname [, int which ])

Get the value of a field –returns mixed--

df_get_version ([ resource fdf_document ])

Gets version number for FDF API or file –returns string--

df_header(void)

Sets FDF-specific output headers –returns void--

df_next_field_name(resource fdf_document [, string fieldname ])

Get the next field name –returns string--

df_open_string(string fdf_data)

Read a FDF document from a string –returns resource--

df_open(string filename)

Open a FDF document –returns resource--

df_remove_item(resource fdf_document, string fieldname, int item)

Sets target frame for form –returns bool--

df_save_string(resource fdf_document)

Returns the FDF document as a string –returns string--

df_save(resource fdf_document [, string filename ])

Save a FDF document –returns bool--

df_set_ap(resource fdf_document, string field_name, int face, string filename, int page_number)

Set the appearance of a field –returns bool--

df_set_encoding(resource fdf_document, string encoding)

Sets FDF character encoding –returns bool--

df_set_file(resource fdf_document, string url [, string target_frame ])

Set PDF document to display FDF data in –returns bool--

df_set_flags(resource fdf_document, string fieldname, int whichFlags, int newFlags)

Sets a flag of a field –returns bool--

df_set_javascript_action(resource fdf_document, string fieldname, int trigger, string script)

Sets an javascript action of a field –returns bool--

df_set_on_import_javascript(resource fdf_document, string script, bool before_data_import)

Adds javascript code to be executed when Acrobat opens the FDF –returns bool--

df_set_opt(resource fdf_document, string fieldname, int element, string str1, string str2)

Sets an option of a field –returns bool--

df_set_status(resource fdf_document, string status)

Set the value of the /STATUS key –returns bool--

df_set_submit_form_action(resource fdf_document, string fieldname, int trigger, string script, int flags)

Sets a submit form action of a field –returns bool--

df_set_target_frame(resource fdf_document, string frame_name)

Set target frame for form display –returns bool--

df_set_value(resource fdf_document, string fieldname, mixed value [, int isName ])

Set the value of a field –returns bool--

df_set_version(resource fdf_document, string version)

Sets version number for a FDF file –returns bool--

eof(resource handle)

Tests for end-of-file on a file pointer –returns bool--

flush(resource handle)

Flushes the output to a file –returns bool--

getc(resource handle)

Gets character from file pointer –returns string--

getcsv(resource handle [, int length [, string delimiter [, string enclosure [, string escape ]]]])

Gets line from file pointer and parse for CSV fields –returns array--

gets(resource handle [, int length ])

Gets line from file pointer –returns string--

getss(resource handle [, int length [, string allowable_tags ]])

Gets line from file pointer and strip HTML tags –returns string--

ile_exists(string filename)

Checks whether a file or directory exists –returns bool--

ile_get_contents(string filename [, int flags [, resource context [, int offset [, int maxlen ]]]])

Reads entire file into a string –returns string--

ile_put_contents(string filename, mixed data [, int flags [, resource context ]])

Write a string to a file –returns int--

ile(string filename [, int flags [, resource context ]])

Reads entire file into an array –returns array--

ileatime(string filename)

Gets last access time of file –returns int--

ilectime(string filename)

Gets inode change time of file –returns int--

ilegroup(string filename)

Gets file group –returns int--

ileinode(string filename)

Gets file inode –returns int--

ilemtime(string filename)

Gets file modification time –returns int--

ileowner(string filename)

Gets file owner –returns int--

ileperms(string filename)

Gets file permissions –returns int--

ilepro_fieldcount(void)

Find out how many fields are in a filePro database –returns int--

ilepro_fieldname(int field_number)

Gets the name of a field –returns string--

ilepro_fieldtype(int field_number)

Gets the type of a field –returns string--

ilepro_fieldwidth(int field_number)

Gets the width of a field –returns int--

ilepro_retrieve(int row_number, int field_number)

Retrieves data from a filePro database –returns string--

ilepro_rowcount(void)

Find out how many rows are in a filePro database –returns int--

ilepro(string directory)

Read and verify the map file –returns bool--

ilesize(string filename)

Gets file size –returns int--

iletype(string filename)

Gets file type –returns string--

ilter_has_var(int type, string variable_name)

Checks if variable of specified type exists –returns bool--

ilter_id(string filtername)

Returns the filter ID belonging to a named filter –returns int--

ilter_input_array(int type [, mixed definition ])

Gets external variables and optionally filters them –returns mixed--

ilter_input(int type, string variable_name [, int filter [, mixed options ]])

Gets a specific external variable by name and optionally filters it –returns mixed--

ilter_list(void)

Returns a list of all supported filters –returns array--

ilter_var_array(array data [, mixed definition ])

Gets multiple variables and optionally filters them –returns mixed--

ilter_var(mixed variable [, int filter [, mixed options ]])

Filters a variable with a specified filter –returns mixed--

info_buffer(resource finfo, string string [, int options [, resource context ]]) string buffer(string string [, int options [, resource context ]])

Return information about a string buffer –returns string--

info_close(resource finfo)

Close fileinfo resource –returns bool--

info_file(resource finfo, string file_name [, int options [, resource context ]]) string file(string file_name [, int options [, resource context ]])

Return information about a file –returns string--

info_open ([ int options [, string arg ]])

Create a new fileinfo resource –returns resource--

info_set_flags(resource finfo, int options) bool set_flags(int options)

Set libmagic configuration options –returns bool--

loatval(mixed var)

Get float value of a variable –returns float--

lock(resource handle, int operation [, int &wouldblock ])

Portable advisory file locking –returns bool--

loor(float value)

Round fractions down –returns float--

lush(void)

Flush the output buffer –returns void--

mod(float x, float y)

Returns the floating point remainder (modulo) of the division of the arguments –returns float--

nmatch(string pattern, string string [, int flags ])

Match filename against a pattern –returns bool--

open(string filename, string mode [, bool use_include_path [, resource context ]])

Opens file or URL –returns resource--

passthru(resource handle)

Output all remaining data on a file pointer –returns int--

printf(resource handle, string format [, mixed args [, mixed ... ]])

Write a formatted string to a stream –returns int--

putcsv(resource handle, array fields [, string delimiter [, string enclosure ]])

Format line as CSV and write to file pointer –returns int--

puts

Alias of fwrite() –returns ?--

read(resource handle, int length)

Binary-safe file read –returns string--

renchtojd(int month, int day, int year)

Converts a date from the French Republican Calendar to a Julian Day Count –returns int--

ribidi_log2vis(string str, string direction, int charset)

Convert a logical string to a visual one –returns string--

scanf(resource handle, string format [, mixed &... ])

Parses input from a file according to a format –returns mixed--

seek(resource handle, int offset [, int whence ])

Seeks on a file pointer –returns int--

sockopen(string hostname [, int port [, int &errno [, string &errstr [, float timeout ]]]])

Open Internet or Unix domain socket connection –returns resource--

stat(resource handle)

Gets information about a file using an open file pointer –returns array--

tell(resource handle)

Returns the current position of the file read/write pointer –returns int--

tok(string pathname, string proj)

Convert a pathname and a project identifier to a System V IPC key –returns int--

tp_alloc(resource ftp_stream, int filesize [, string &result ])

Allocates space for a file to be uploaded –returns bool--

tp_cdup(resource ftp_stream)

Changes to the parent directory –returns bool--

tp_chdir(resource ftp_stream, string directory)

Changes the current directory on a FTP server –returns bool--

tp_chmod(resource ftp_stream, int mode, string filename)

Set permissions on a file via FTP –returns int--

tp_close(resource ftp_stream)

Closes an FTP connection –returns bool--

tp_connect(string host [, int port [, int timeout ]])

Opens an FTP connection –returns resource--

tp_delete(resource ftp_stream, string path)

Deletes a file on the FTP server –returns bool--

tp_exec(resource ftp_stream, string command)

Requests execution of a command on the FTP server –returns bool--

tp_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos ])

Downloads a file from the FTP server and saves to an open file –returns bool--

tp_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos ])

Uploads from an open file to the FTP server –returns bool--

tp_get_option(resource ftp_stream, int option)

Retrieves various runtime behaviours of the current FTP stream –returns mixed--

tp_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos ])

Downloads a file from the FTP server –returns bool--

tp_login(resource ftp_stream, string username, string password)

Logs in to an FTP connection –returns bool--

tp_mdtm(resource ftp_stream, string remote_file)

Returns the last modified time of the given file –returns int--

tp_mkdir(resource ftp_stream, string directory)

Creates a directory –returns string--

tp_nb_continue(resource ftp_stream)

Continues retrieving/sending a file (non-blocking) –returns int--

tp_nb_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos ])

Retrieves a file from the FTP server and writes it to an open file (non-blocking) –returns int--

tp_nb_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos ])

Stores a file from an open file to the FTP server (non-blocking) –returns int--

tp_nb_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos ])

Retrieves a file from the FTP server and writes it to a local file (non-blocking) –returns int--

tp_nb_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos ])

Stores a file on the FTP server (non-blocking) –returns int--

tp_nlist(resource ftp_stream, string directory)

Returns a list of files in the given directory –returns array--

tp_pasv(resource ftp_stream, bool pasv)

Turns passive mode on or off –returns bool--

tp_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos ])

Uploads a file to the FTP server –returns bool--

tp_pwd(resource ftp_stream)

Returns the current directory name –returns string--

tp_quit

Alias of ftp_close() –returns ?--

tp_raw(resource ftp_stream, string command)

Sends an arbitrary command to an FTP server –returns array--

tp_rawlist(resource ftp_stream, string directory [, bool recursive ])

Returns a detailed list of files in the given directory –returns array--

tp_rename(resource ftp_stream, string oldname, string newname)

Renames a file or a directory on the FTP server –returns bool--

tp_rmdir(resource ftp_stream, string directory)

Removes a directory –returns bool--

tp_set_option(resource ftp_stream, int option, mixed value)

Set miscellaneous runtime FTP options –returns bool--

tp_site(resource ftp_stream, string command)

Sends a SITE command to the server –returns bool--

tp_size(resource ftp_stream, string remote_file)

Returns the size of the given file –returns int--

tp_ssl_connect(string host [, int port [, int timeout ]])

Opens an Secure SSL-FTP connection –returns resource--

tp_systype(resource ftp_stream)

Returns the system type identifier of the remote FTP server –returns string--

truncate(resource handle, int size)

Truncates a file to a given length –returns bool--

unc_get_arg(int arg_num)

Return an item from the argument list –returns mixed--

unc_get_args(void)

Returns an array comprising a function's argument list –returns array--

unc_num_args(void)

Returns the number of arguments passed to the function –returns int--

unction_exists(string function_name)

Return TRUE if the given function has been defined –returns bool--

write(resource handle, string string [, int length ])

Binary-safe file write –returns int--

d_info(void)

Retrieve information about the currently installed GD library –returns array--

eoip_country_code_by_name(string hostname)

Get the two letter country code –returns string--

eoip_country_code3_by_name(string hostname)

Get the three letter country code –returns string--

eoip_country_name_by_name(string hostname)

Get the full country name –returns string--

eoip_database_info ([ int database ])

Get GeoIP Database information –returns string--

eoip_db_avail(int database)

Determine if GeoIP Database is available –returns bool--

eoip_db_filename(int database)

Returns the filename of the corresponding GeoIP Database –returns string--

eoip_db_get_all_info(void)

Returns detailed informations about all GeoIP database types –returns array--

eoip_id_by_name(string hostname)

Get the Internet connection speed –returns int--

eoip_isp_by_name(string hostname)

Get the Internet Service Provider (ISP) name –returns string--

eoip_org_by_name(string hostname)

Get the organization name –returns string--

eoip_record_by_name(string hostname)

Returns the detailed City information found in the GeoIP Database –returns array--

eoip_region_by_name(string hostname)

Get the country code and region –returns array--

et_browser ([ string user_agent [, bool return_array ]])

Tells what the user's browser is capable of –returns mixed--

et_cfg_var(string option)

Gets the value of a PHP configuration option –returns string--

et_class_methods(mixed class_name)

Gets the class methods' names –returns array--

et_class_vars(string class_name)

Get the default properties of the class –returns array--

et_class ([ object object ])

Returns the name of the class of an object –returns string--

et_current_user(void)

Gets the name of the owner of the current PHP script –returns string--

et_declared_classes(void)

Returns an array with the name of the defined classes –returns array--

et_declared_interfaces(void)

Returns an array of all declared interfaces –returns array--

et_defined_constants ([ mixed categorize ])

Returns an associative array with the names of all the constants and their values –returns array--

et_defined_functions(void)

Returns an array of all defined functions –returns array--

et_defined_vars(void)

Returns an array of all defined variables –returns array--

et_extension_funcs(string module_name)

Returns an array with the names of the functions of a module –returns array--

et_headers(string url [, int format ])

Fetches all the headers sent by the server in response to a HTTP request –returns array--

et_html_translation_table ([ int table [, int quote_style ]])

Returns the translation table used by htmlspecialchars() and htmlentities() –returns array--

et_include_path(void)

Gets the current include_path configuration option –returns string--

et_included_files(void)

Returns an array with the names of included or required files –returns array--

et_loaded_extensions ([ bool zend_extensions=FALSE ])

Returns an array with the names of all modules compiled and loaded –returns array--

et_magic_quotes_gpc(void)

Gets the current configuration setting of magic quotes gpc –returns int--

et_magic_quotes_runtime(void)

Gets the current active configuration setting of magic_quotes_runtime –returns int--

et_meta_tags(string filename [, bool use_include_path ])

Extracts all meta tag content attributes from a file and returns an array –returns array--

et_object_vars(object object)

Gets the public properties of the given object –returns array--

et_parent_class ([ mixed object ])

Retrieves the parent class name for object or class –returns string--

et_required_files

Alias of get_included_files() –returns ?--

et_resource_type(resource handle)

Returns the resource type –returns string--

etallheaders(void)

Fetch all HTTP request headers –returns array--

etcwd(void)

Gets the current working directory –returns string--

etdate ([ int timestamp ])

Get date/time information –returns array--

etenv(string varname)

Gets the value of an environment variable –returns string--

ethostbyaddr(string ip_address)

Get the Internet host name corresponding to a given IP address –returns string--

ethostbyname(string hostname)

Get the IP address corresponding to a given Internet host name –returns string--

ethostbynamel(string hostname)

Get a list of IP addresses corresponding to a given Internet host name –returns array--

etimagesize(string filename [, array &imageinfo ])

Get the size of an image –returns array--

etlastmod(void)

Gets time of last page modification –returns int--

etmxrr(string hostname, array &mxhosts [, array &weight ])

Get MX records corresponding to a given Internet host name –returns bool--

etmygid(void)

Get PHP script owner's GID –returns int--

etmyinode(void)

Gets the inode of the current script –returns int--

etmypid(void)

Gets PHP's process ID –returns int--

etmyuid(void)

Gets PHP script owner's UID –returns int--

etopt(string options [, array longopts ])

Gets options from the command line argument list –returns array--

etprotobyname(string name)

Get protocol number associated with protocol name –returns int--

etprotobynumber(int number)

Get protocol name associated with protocol number –returns string--

etrandmax(void)

Show largest possible random value –returns int--

etrusage ([ int who ])

Gets the current resource usages –returns array--

etservbyname(string service, string protocol)

Get port number associated with an Internet service and protocol –returns int--

etservbyport(int port, string protocol)

Get Internet service which corresponds to port and protocol –returns string--

ettext(string message)

Lookup a message in the current domain –returns string--

ettimeofday ([ bool return_float ])

Get current time –returns mixed--

ettype(mixed var)

Get the type of a variable –returns string--

lob(string pattern [, int flags ])

Find pathnames matching a pattern –returns array--

mdate(string format [, int timestamp ])

Format a GMT/UTC date/time –returns string--

mmktime ([ int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst ]]]]]]])

Get Unix timestamp for a GMT date –returns int--

mp_abs(resource a)

Absolute value –returns resource--

mp_add(resource a, resource b)

Add numbers –returns resource--

mp_and(resource a, resource b)

Bitwise AND –returns resource--

mp_clrbit(resource &a, int index)

Clear bit –returns void--

mp_cmp(resource a, resource b)

Compare numbers –returns int--

mp_com(resource a)

Calculates one's complement –returns resource--

mp_div_q(resource a, resource b [, int round ])

Divide numbers –returns resource--

mp_div_qr(resource n, resource d [, int round ])

Divide numbers and get quotient and remainder –returns array--

mp_div_r(resource n, resource d [, int round ])

Remainder of the division of numbers –returns resource--

mp_div

Alias of gmp_div_q() –returns ?--

mp_divexact(resource n, resource d)

Exact division of numbers –returns resource--

mp_fact(int a)

Factorial –returns resource--

mp_gcd(resource a, resource b)

Calculate GCD –returns resource--

mp_gcdext(resource a, resource b)

Calculate GCD and multipliers –returns array--

mp_hamdist(resource a, resource b)

Hamming distance –returns int--

mp_init(mixed number [, int base ])

Create GMP number –returns resource--

mp_intval(resource gmpnumber)

Convert GMP number to integer –returns int--

mp_invert(resource a, resource b)

Inverse by modulo –returns resource--

mp_jacobi(resource a, resource p)

Jacobi symbol –returns int--

mp_legendre(resource a, resource p)

Legendre symbol –returns int--

mp_mod(resource n, resource d)

Modulo operation –returns resource--

mp_mul(resource a, resource b)

Multiply numbers –returns resource--

mp_neg(resource a)

Negate number –returns resource--

mp_nextprime(int a)

Find next prime number –returns resource--

mp_or(resource a, resource b)

Bitwise OR –returns resource--

mp_perfect_square(resource a)

Perfect square check –returns bool--

mp_popcount(resource a)

Population count –returns int--

mp_pow(resource base, int exp)

Raise number into power –returns resource--

mp_powm(resource base, resource exp, resource mod)

Raise number into power with modulo –returns resource--

mp_prob_prime(resource a [, int reps ])

Check if number is "probably prime" –returns int--

mp_random(int limiter)

Random number –returns resource--

mp_scan0(resource a, int start)

Scan for 0 –returns int--

mp_scan1(resource a, int start)

Scan for 1 –returns int--

mp_setbit(resource &a, int index [, bool set_clear ])

Set bit –returns void--

mp_sign(resource a)

Sign of number –returns int--

mp_sqrt(resource a)

Calculate square root –returns resource--

mp_sqrtrem(resource a)

Square root with remainder –returns array--

mp_strval(resource gmpnumber [, int base ])

Convert GMP number to string –returns string--

mp_sub(resource a, resource b)

Subtract numbers –returns resource--

mp_testbit(resource a, int index)

Tests if a bit is set –returns bool--

mp_xor(resource a, resource b)

Bitwise XOR –returns resource--

mstrftime(string format [, int timestamp ])

Format a GMT/UTC time/date according to locale settings –returns string--

nupg_adddecryptkey(resource identifier, string fingerprint, string passphrase)

Add a key for decryption –returns bool--

nupg_addencryptkey(resource identifier, string fingerprint)

Add a key for encryption –returns bool--

nupg_addsignkey(resource identifier, string fingerprint [, string passphrase ])

Add a key for signing –returns bool--

nupg_cleardecryptkeys(resource identifier)

Removes all keys which were set for decryption before –returns bool--

nupg_clearencryptkeys(resource identifier)

Removes all keys which were set for encryption before –returns bool--

nupg_clearsignkeys(resource identifier)

Removes all keys which were set for signing before –returns bool--

nupg_decrypt(resource identifier, string text)

Decrypts a given text –returns string--

nupg_decryptverify(resource identifier, string text, string &plaintext)

Decrypts and verifies a given text –returns array--

nupg_encrypt(resource identifier, string plaintext)

Encrypts a given text –returns string--

nupg_encryptsign(resource identifier, string plaintext)

Encrypts and signs a given text –returns string--

nupg_export(resource identifier, string fingerprint)

Exports a key –returns string--

nupg_geterror(resource identifier)

Returns the errortext, if a function fails –returns string--

nupg_getprotocol(resource identifier)

Returns the currently active protocol for all operations –returns int--

nupg_import(resource identifier, string keydata)

Imports a key –returns array--

nupg_init(void)

Initialize a connection –returns resource--

nupg_keyinfo(resource identifier, string pattern)

Returns an array with information about all keys that matches the given pattern –returns array--

nupg_setarmor(resource identifier, int armor)

Toggle armored output –returns bool--

nupg_seterrormode(resource identifier, int errormode)

Sets the mode for error_reporting –returns void--

nupg_setsignmode(resource identifier, int signmode)

Sets the mode for signing –returns bool--

nupg_sign(resource identifier, string plaintext)

Signs a given text –returns string--

nupg_verify(resource identifier, string signed_text, string signature [, string &plaintext ])

Verifies a signed text –returns array--

opher_parsedir(string dirent)

Translate a gopher formatted directory entry into an associative array. –returns array--

rapheme_extract(string haystack, int size [, int extract_type [, int start [, int &next ]]])

Function to extract a sequence of default grapheme clusters from a text buffer, which must be encoded in UTF-8. –returns string--

rapheme_stripos(string haystack, string needle [, int offset ])

Find position (in grapheme units) of first occurrence of a case-insensitive string –returns int--

rapheme_stristr(string haystack, string needle [, boolean before_needle ])

Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack. –returns string--

rapheme_strlen(string input)

Get string length in grapheme units –returns int--

rapheme_strpos(string haystack, string needle [, int offset ])

Find position (in grapheme units) of first occurrence of a string –returns int--

rapheme_strripos(string haystack, string needle [, int offset ])

Find position (in grapheme units) of last occurrence of a case-insensitive string –returns int--

rapheme_strrpos(string haystack, string needle [, int offset ])

Find position (in grapheme units) of last occurrence of a string –returns int--

rapheme_strstr(string haystack, string needle [, boolean before_needle ])

Returns part of haystack string from the first occurrence of needle to the end of haystack. –returns string--

rapheme_substr(string string, int start [, int length ])

Return part of a string –returns int--

regoriantojd(int month, int day, int year)

Converts a Gregorian date to Julian Day Count –returns int--

zclose(resource zp)

Close an open gz-file pointer –returns bool--

zcompress(string data [, int level ])

Compress a string –returns string--

zdecode(string data [, int length ])

Decodes a gzip compressed string –returns string--

zdeflate(string data [, int level ])

Deflate a string –returns string--

zencode(string data [, int level [, int encoding_mode ]])

Create a gzip compressed string –returns string--

zeof(resource zp)

Test for end-of-file on a gz-file pointer –returns int--

zfile(string filename [, int use_include_path ])

Read entire gz-file into an array –returns array--

zgetc(resource zp)

Get character from gz-file pointer –returns string--

zgets(resource zp, int length)

Get line from file pointer –returns string--

zgetss(resource zp, int length [, string allowable_tags ])

Get line from gz-file pointer and strip HTML tags –returns string--

zinflate(string data [, int length ])

Inflate a deflated string –returns string--

zopen(string filename, string mode [, int use_include_path ])

Open gz-file –returns resource--

zpassthru(resource zp)

Output all remaining data on a gz-file pointer –returns int--

zputs

Alias of gzwrite() –returns ?--

zread(resource zp, int length)

Binary-safe gz-file read –returns string--

zrewind(resource zp)

Rewind the position of a gz-file pointer –returns bool--

zseek(resource zp, int offset)

Seek on a gz-file pointer –returns int--

ztell(resource zp)

Tell gz-file pointer read/write position –returns int--

zuncompress(string data [, int length ])

Uncompress a compressed string –returns string--

zwrite(resource zp, string string [, int length ])

Binary-safe gz-file write –returns int--

_halt_compiler(void)

Halts the compiler execution –returns void--

aruAnnotation::setBorderStyle(float width, int dash_on, int dash_off)

Set the border style of the annotation –returns bool--

aruAnnotation::setHighlightMode(int mode)

Set the highlighting mode of the annotation –returns bool--

aruAnnotation::setIcon(int icon)

Set the icon style of the annotation –returns bool--

aruAnnotation::setOpened(bool opened)

Set the initial state of the annotation –returns bool--

aruDestination::setFit(void)

Set the appearance of the page to fit the window –returns bool--

aruDestination::setFitB(void)

Set the appearance of the page to fit the bounding box of the page within the window –returns bool--

aruDestination::setFitBH(float top)

Set the appearance of the page to fit the width of the bounding box –returns bool--

aruDestination::setFitBV(float left)

Set the appearance of the page to fit the height of the boudning box –returns bool--

aruDestination::setFitH(float top)

Set the appearance of the page to fit the window width –returns bool--

aruDestination::setFitR(float left, float bottom, float right, float top)

Set the appearance of the page to fit the specified rectangle –returns bool--

aruDestination::setFitV(float left)

Set the appearance of the page to fit the window height –returns bool--

aruDestination::setXYZ(float left, float top, float zoom)

Set the appearance of the page –returns bool--

aruDoc::addPage(void)

Add new page to the document –returns object--

aruDoc::addPageLabel(int first_page, int style, int first_num [, string prefix ])

Set the numbering style for the specified range of pages –returns bool--

aruDoc::__construct(void)

Construct new HaruDoc instance –returns void--

aruDoc::createOutline(string title [, object parent_outline [, object encoder ]])

Create a HaruOutline instance –returns object--

aruDoc::getCurrentEncoder(void)

Get HaruEncoder currently used in the document –returns object--

aruDoc::getCurrentPage(void)

Return current page of the document –returns object--

aruDoc::getEncoder(string encoding)

Get HaruEncoder instance for the specified encoding –returns object--

aruDoc::getFont(string fontname [, string encoding ])

Get HaruFont instance –returns object--

aruDoc::getInfoAttr(int type)

Get current value of the specified document attribute –returns string--

aruDoc::getPageLayout(void)

Get current page layout –returns int--

aruDoc::getPageMode(void)

Get current page mode –returns int--

aruDoc::getStreamSize(void)

Get the size of the temporary stream –returns int--

aruDoc::insertPage(object page)

Insert new page just before the specified page –returns object--

aruDoc::loadJPEG(string filename)

Load a JPEG image. –returns object--

aruDoc::loadPNG(string filename [, bool deferred ])

Load PNG image and return HaruImage instance –returns object--

aruDoc::loadRaw(string filename, int width, int height, int color_space)

Load a RAW image –returns object--

aruDoc::loadTTC(string fontfile, int index [, bool embed ])

Load the font with the specified index from TTC file –returns string--

aruDoc::loadTTF(string fontfile [, bool embed ])

Load TTF font file –returns string--

aruDoc::loadType1(string afmfile [, string pfmfile ])

Load Type1 font –returns string--

aruDoc::output(void)

Write the document data to the output buffer –returns bool--

aruDoc::readFromStream(int bytes)

Read data from the temporary stream –returns string--

aruDoc::resetError(void)

Reset error state of the document handle –returns bool--

aruDoc::resetStream(void)

Rewind the temporary stream –returns bool--

aruDoc::save(string file)

Save the document into the specified file –returns bool--

aruDoc::saveToStream(void)

Save the document into a temporary stream –returns bool--

aruDoc::setCompressionMode(int mode)

Set compression mode for the document –returns bool--

aruDoc::setCurrentEncoder(string encoding)

Set the current encoder for the document –returns bool--

aruDoc::setEncryptionMode(int mode [, int key_len ])

Set encryption mode for the document –returns bool--

aruDoc::setInfoAttr(int type, string info)

Set the info attribute of the document –returns bool--

aruDoc::setInfoDateAttr(int type, int year, int month, int day, int hour, int min, int sec, string ind, int off_hour, int off_min)

Set the datetime info attributes of the document –returns bool--

aruDoc::setOpenAction(object destination)

Define which page is shown when the document is opened –returns bool--

aruDoc::setPageLayout(int layout)

Set how pages should be displayed –returns bool--

aruDoc::setPageMode(int mode)

Set how the document should be displayed –returns bool--

aruDoc::setPagesConfiguration(int page_per_pages)

Set the number of pages per set of pages –returns bool--

aruDoc::setPassword(string owner_password, string user_password)

Set owner and user passwords for the document –returns bool--

aruDoc::setPermission(int permission)

Set permissions for the document –returns bool--

aruDoc::useCNSEncodings(void)

Enable Chinese simplified encodings –returns bool--

aruDoc::useCNSFonts(void)

Enable builtin Chinese simplified fonts –returns bool--

aruDoc::useCNTEncodings(void)

Enable Chinese traditional encodings –returns bool--

aruDoc::useCNTFonts(void)

Enable builtin Chinese traditional fonts –returns bool--

aruDoc::useJPEncodings(void)

Enable Japanese encodings –returns bool--

aruDoc::useJPFonts(void)

Enable builtin Japanese fonts –returns bool--

aruDoc::useKREncodings(void)

Enable Korean encodings –returns bool--

aruDoc::useKRFonts(void)

Enable builtin Korean fonts –returns bool--

aruEncoder::getByteType(string text, int index)

Get the type of the byte in the text –returns int--

aruEncoder::getType(void)

Get the type of the encoder –returns int--

aruEncoder::getUnicode(int character)

Convert the specified character to unicode –returns int--

aruEncoder::getWritingMode(void)

Get the writing mode of the encoder –returns int--

aruFont::getAscent(void)

Get the vertical ascent of the font –returns int--

aruFont::getCapHeight(void)

Get the distance from the baseline of uppercase letters –returns int--

aruFont::getDescent(void)

Get the vertical descent of the font –returns int--

aruFont::getEncodingName(void)

Get the name of the encoding –returns string--

aruFont::getFontName(void)

Get the name of the font –returns string--

aruFont::getTextWidth(string text)

Get the total width of the text, number of characters, number of words and number of spaces –returns array--

aruFont::getUnicodeWidth(int character)

Get the width of the character in the font –returns int--

aruFont::getXHeight(void)

Get the distance from the baseline of lowercase letters –returns int--

aruFont::measureText(string text, float width, float font_size, float char_space, float word_space [, bool word_wrap ])

Calculate the number of characters which can be included within the specified width –returns int--

aruImage::getBitsPerComponent(void)

Get the number of bits used to describe each color component of the image –returns int--

aruImage::getColorSpace(void)

Get the name of the color space –returns string--

aruImage::getHeight(void)

Get the height of the image –returns int--

aruImage::getSize(void)

Get size of the image –returns array--

aruImage::getWidth(void)

Get the width of the image –returns int--

aruImage::setColorMask(int rmin, int rmax, int gmin, int gmax, int bmin, int bmax)

Set the color mask of the image –returns bool--

aruImage::setMaskImage(object mask_image)

Set the image mask –returns bool--

aruOutline::setDestination(object destination)

Set the destination for the outline –returns bool--

aruOutline::setOpened(bool opened)

Set the initial state of the outline –returns bool--

aruPage::arc(float x, float y, float ray, float ang1, float ang2)

Append an arc to the current path –returns bool--

aruPage::beginText(void)

Begin a text object and set the current text position to (0,0) –returns bool--

aruPage::circle(float x, float y, float ray)

Append a circle to the current path –returns bool--

aruPage::closePath(void)

Append a straight line from the current point to the start point of the path –returns bool--

aruPage::concat(float a, float b, float c, float d, float x, float y)

Concatenate current transformation matrix of the page and the specified matrix –returns bool--

aruPage::createDestination(void)

Create new HaruDestination instance –returns object--

aruPage::createLinkAnnotation(array rectangle, object destination)

Create new HaruAnnotation instance –returns object--

aruPage::createTextAnnotation(array rectangle, string text [, object encoder ])

Create new HaruAnnotation instance –returns object--

aruPage::createURLAnnotation(array rectangle, string url)

Create and return new HaruAnnotation instance –returns object--

aruPage::curveTo(float x1, float y1, float x2, float y2, float x3, float y3)

Append a Bezier curve to the current path –returns bool--

aruPage::curveTo2(float x2, float y2, float x3, float y3)

Append a Bezier curve to the current path –returns bool--

aruPage::curveTo3(float x1, float y1, float x3, float y3)

Append a Bezier curve to the current path –returns bool--

aruPage::drawImage(object image, float x, float y, float width, float height)

Show image at the page –returns bool--

aruPage::ellipse(float x, float y, float xray, float yray)

Append an ellipse to the current path –returns bool--

aruPage::endPath(void)

End current path object without filling and painting operations –returns bool--

aruPage::endText(void)

End current text object –returns bool--

aruPage::eofill(void)

Fill current path using even-odd rule –returns bool--

aruPage::eoFillStroke ([ bool close_path ])

Fill current path using even-odd rule, then paint the path –returns bool--

aruPage::fill(void)

Fill current path using nonzero winding number rule –returns bool--

aruPage::fillStroke ([ bool close_path ])

Fill current path using nonzero winding number rule, then paint the path –returns bool--

aruPage::getCharSpace(void)

Get the current value of character spacing –returns float--

aruPage::getCMYKFill(void)

Get the current filling color –returns array--

aruPage::getCMYKStroke(void)

Get the current stroking color –returns array--

aruPage::getCurrentFont(void)

Get the currently used font –returns object--

aruPage::getCurrentFontSize(void)

Get the current font size –returns float--

aruPage::getCurrentPos(void)

Get the current position for path painting –returns array--

aruPage::getCurrentTextPos(void)

Get the current position for text printing –returns array--

aruPage::getDash(void)

Get the current dash pattern –returns array--

aruPage::getFillingColorSpace(void)

Get the current filling color space –returns int--

aruPage::getFlatness(void)

Get the flatness of the page –returns float--

aruPage::getGMode(void)

Get the current graphics mode –returns int--

aruPage::getGrayFill(void)

Get the current filling color –returns float--

aruPage::getGrayStroke(void)

Get the current stroking color –returns float--

aruPage::getHeight(void)

Get the height of the page –returns float--

aruPage::getHorizontalScaling(void)

Get the current value of horizontal scaling –returns float--

aruPage::getLineCap(void)

Get the current line cap style –returns int--

aruPage::getLineJoin(void)

Get the current line join style –returns int--

aruPage::getLineWidth(void)

Get the current line width –returns float--

aruPage::getMiterLimit(void)

Get the value of miter limit –returns float--

aruPage::getRGBFill(void)

Get the current filling color –returns array--

aruPage::getRGBStroke(void)

Get the current stroking color –returns array--

aruPage::getStrokingColorSpace(void)

Get the current stroking color space –returns int--

aruPage::getTextLeading(void)

Get the current value of line spacing –returns float--

aruPage::getTextMatrix(void)

Get the current text transformation matrix of the page –returns array--

aruPage::getTextRenderingMode(void)

Get the current text rendering mode –returns int--

aruPage::getTextRise(void)

Get the current value of text rising –returns float--

aruPage::getTextWidth(string text)

Get the width of the text using current fontsize, character spacing and word spacing –returns float--

aruPage::getTransMatrix(void)

Get the current transformation matrix of the page –returns array--

aruPage::getWidth(void)

Get the width of the page –returns float--

aruPage::getWordSpace(void)

Get the current value of word spacing –returns float--

aruPage::lineTo(float x, float y)

Draw a line from the current point to the specified point –returns bool--

aruPage::measureText(string text, float width [, bool wordwrap ])

Calculate the number of characters which can be included within the specified width –returns int--

aruPage::moveTextPos(float x, float y [, bool set_leading ])

Move text position to the specified offset –returns bool--

aruPage::moveTo(float x, float y)

Set starting point for new drawing path –returns bool--

aruPage::moveToNextLine(void)

Move text position to the start of the next line –returns bool--

aruPage::rectangle(float x, float y, float width, float height)

Append a rectangle to the current path –returns bool--

aruPage::setCharSpace(float char_space)

Set character spacing for the page –returns bool--

aruPage::setCMYKFill(float c, float m, float y, float k)

Set filling color for the page –returns bool--

aruPage::setCMYKStroke(float c, float m, float y, float k)

Set stroking color for the page –returns bool--

aruPage::setDash(array pattern, int phase)

Set the dash pattern for the page –returns bool--

aruPage::setFlatness(float flatness)

Set flatness for the page –returns bool--

aruPage::setFontAndSize(object font, float size)

Set font and fontsize for the page –returns bool--

aruPage::setGrayFill(float value)

Set filling color for the page –returns bool--

aruPage::setGrayStroke(float value)

Sets stroking color for the page –returns bool--

aruPage::setHeight(float height)

Set height of the page –returns bool--

aruPage::setHorizontalScaling(float scaling)

Set horizontal scaling for the page –returns bool--

aruPage::setLineCap(int cap)

Set the shape to be used at the ends of lines –returns bool--

aruPage::setLineJoin(int join)

Set line join style for the page –returns bool--

aruPage::setLineWidth(float width)

Set line width for the page –returns bool--

aruPage::setMiterLimit(float limit)

Set the current value of the miter limit of the page –returns bool--

aruPage::setRGBFill(float r, float g, float b)

Set filling color for the page –returns bool--

aruPage::setRGBStroke(float r, float g, float b)

Set stroking color for the page –returns bool--

aruPage::setRotate(int angle)

Set rotation angle of the page –returns bool--

aruPage::setSize(int size, int direction)

Set size and direction of the page –returns bool--

aruPage::setSlideShow(int type, float disp_time, float trans_time)

Set transition style for the page –returns bool--

aruPage::setTextLeading(float text_leading)

Set text leading (line spacing) for the page –returns bool--

aruPage::setTextMatrix(float a, float b, float c, float d, float x, float y)

Set the current text transformation matrix of the page –returns bool--

aruPage::setTextRenderingMode(int mode)

Set text rendering mode for the page –returns bool--

aruPage::setTextRise(float rise)

Set the current value of text rising –returns bool--

aruPage::setWidth(float width)

Set width of the page –returns bool--

aruPage::setWordSpace(float word_space)

Set word spacing for the page –returns bool--

aruPage::showText(string text)

Print text at the current position of the page –returns bool--

aruPage::showTextNextLine(string text [, float word_space [, float char_space ]])

Move the current position to the start of the next line and print the text –returns bool--

aruPage::stroke ([ bool close_path ])

Paint current path –returns bool--

aruPage::textOut(float x, float y, string text)

Print the text on the specified position –returns bool--

aruPage::textRect(float left, float top, float right, float bottom, string text [, int align ])

Print the text inside the specified region –returns bool--

ash_algos(void)

Return a list of registered hashing algorithms –returns array--

ash_copy(resource context)

Copy hashing context –returns resource--

ash_file(string algo, string filename [, bool raw_output ])

Generate a hash value using the contents of a given file –returns string--

ash_final(resource context [, bool raw_output ])

Finalize an incremental hash and return resulting digest –returns string--

ash_hmac_file(string algo, string filename, string key [, bool raw_output ])

Generate a keyed hash value using the HMAC method and the contents of a given file –returns string--

ash_hmac(string algo, string data, string key [, bool raw_output ])

Generate a keyed hash value using the HMAC method –returns string--

ash_init(string algo [, int options [, string key ]])

Initialize an incremental hashing context –returns resource--

ash_update_file(resource context, string filename [, resource context ])

Pump data into an active hashing context from a file –returns bool--

ash_update_stream(resource context, resource handle [, int length ])

Pump data into an active hashing context from an open stream –returns int--

ash_update(resource context, string data)

Pump data into an active hashing context –returns bool--

ash(string algo, string data [, bool raw_output ])

Generate a hash value (message digest) –returns string--

eader(string string [, bool replace [, int http_response_code ]])

Send a raw HTTP header –returns void--

eaders_list(void)

Returns a list of response headers sent (or ready to send) –returns array--

eaders_sent ([ string &file [, int &line ]])

Checks if or where headers have been sent –returns bool--

ebrev(string hebrew_text [, int max_chars_per_line ])

Convert logical Hebrew text to visual text –returns string--

ebrevc(string hebrew_text [, int max_chars_per_line ])

Convert logical Hebrew text to visual text with newline conversion –returns string--

exdec(string hex_string)

Hexadecimal to decimal –returns number--

ighlight_file(string filename [, bool return ])

Syntax highlighting of a file –returns mixed--

ighlight_string(string str [, bool return ])

Syntax highlighting of a string –returns mixed--

tml_entity_decode(string string [, int quote_style [, string charset ]])

Convert all HTML entities to their applicable characters –returns string--

tmlentities(string string [, int quote_style [, string charset [, bool double_encode ]]])

Convert all applicable characters to HTML entities –returns string--

tmlspecialchars_decode(string string [, int quote_style ])

Convert special HTML entities back to characters –returns string--

tmlspecialchars(string string [, int quote_style [, string charset [, bool double_encode ]]])

Convert special characters to HTML entities –returns string--

ttp_build_cookie(array cookie)

Build cookie string –returns string--

ttp_build_query(array formdata [, string numeric_prefix [, string arg_separator ]])

Generate URL-encoded query string –returns string--

ttp_build_str(array query [, string prefix [, string arg_separator ]])

Build query string –returns string--

ttp_build_url ([ mixed url [, mixed parts [, int flags = HTTP_URL_REPLACE [, array &new_url ]]]])

Build an URL –returns string--

ttp_cache_etag ([ string etag ])

Caching by ETag –returns bool--

ttp_cache_last_modified ([ int timestamp_or_expires ])

Caching by last modification –returns bool--

ttp_chunked_decode(string encoded)

Decode chunked-encoded data –returns string--

ttp_date ([ int timestamp ])

Compose HTTP RFC compliant date –returns string--

ttp_deflate(string data [, int flags = 0 ])

Deflate data –returns string--

ttp_get_request_body_stream(void)

Get request body as stream –returns resource--

ttp_get_request_body(void)

Get request body as string –returns string--

ttp_get_request_headers(void)

Get request headers as array –returns array--

ttp_get(string url [, array options [, array &info ]])

Perform GET request –returns string--

ttp_head ([ string url [, array options [, array &info ]]])

Perform HEAD request –returns string--

ttp_inflate(string data)

Inflate data –returns string--

ttp_match_etag(string etag [, bool for_range = FALSE ])

Match ETag –returns bool--

ttp_match_modified ([ int timestamp [, bool for_range = FALSE ]])

Match last modification –returns bool--

ttp_match_request_header(string header, string value [, bool match_case = FALSE ])

Match any header –returns bool--

ttp_negotiate_charset(array supported [, array &result ])

Negotiate clients preferred character set –returns string--

ttp_negotiate_content_type(array supported [, array &result ])

Negotiate clients preferred content type –returns string--

ttp_negotiate_language(array supported [, array &result ])

Negotiate clients preferred language –returns string--

ttp_parse_cookie(string cookie [, int flags [, array allowed_extras ]])

Parse HTTP cookie –returns object--

ttp_parse_headers(string header)

Parse HTTP headers –returns array--

ttp_parse_message(string message)

Parse HTTP messages –returns object--

ttp_parse_params(string param [, int flags = HTTP_PARAMS_DEFAULT ])

Parse parameter list –returns object--

ttp_persistent_handles_clean ([ string ident ])

Clean up persistent handles –returns string--

ttp_persistent_handles_count(void)

Stat persistent handles –returns object--

ttp_persistent_handles_ident(string ident)

Get/set ident of persistent handles –returns string--

ttp_post_data(string url [, string data [, array options [, array &info ]]])

Perform POST request with pre-encoded data –returns string--

ttp_post_fields(string url [, array data [, array files [, array options [, array &info ]]]])

Perform POST request with data to be encoded –returns string--

ttp_put_data(string url [, string data [, array options [, array &info ]]])

Perform PUT request with data –returns string--

ttp_put_file(string url [, string file [, array options [, array &info ]]])

Perform PUT request with file –returns string--

ttp_put_stream(string url [, resource stream [, array options [, array &info ]]])

Perform PUT request with stream –returns string--

ttp_redirect ([ string url [, array params [, bool session = FALSE [, int status ]]]])

Issue HTTP redirect –returns void--

ttp_request_body_encode(array fields, array files)

Encode request body –returns string--

ttp_request_method_exists(mixed method)

Check whether request method exists –returns int--

ttp_request_method_name(int method)

Get request method name –returns string--

ttp_request_method_register(string method)

Register request method –returns int--

ttp_request_method_unregister(mixed method)

Unregister request method –returns bool--

ttp_request(int method [, string url [, string body [, array options [, array &info ]]]])

Perform custom request –returns string--

ttp_send_content_disposition(string filename [, bool inline = FALSE ])

Send Content-Disposition –returns bool--

ttp_send_content_type ([ string content_type = 'application/x-octetstream' ])

Send Content-Type –returns bool--

ttp_send_data(string data)

Send arbitrary data –returns bool--

ttp_send_file(string file)

Send file –returns bool--

ttp_send_last_modified ([ int timestamp ])

Send Last-Modified –returns bool--

ttp_send_status(int status)

Send HTTP response status –returns bool--

ttp_send_stream(resource stream)

Send stream –returns bool--

ttp_support ([ int feature = 0 ])

Check built-in HTTP support –returns int--

ttp_throttle ([ float sec [, int bytes = 40960 ]])

HTTP throttling –returns void--

oid HttpDeflateStream::__construct ([ int flags = 0 ])

HttpDeflateStream class constructor –returns public--

ttpDeflateStream HttpDeflateStream::factory ([ int flags = 0 [, string class_name = 'HttpDeflateStream' ]])

HttpDeflateStream class factory –returns public--

tring HttpDeflateStream::finish ([ string data ])

Finalize deflate stream –returns public--

tring HttpDeflateStream::flush ([ string data ])

Flush deflate stream –returns public--

tring HttpDeflateStream::update(string data)

Update deflate stream –returns public--

oid HttpInflateStream::__construct ([ int flags = 0 ])

HttpInflateStream class constructor –returns public--

ttpInflateStream HttpInflateStream::factory ([ int flags = 0 [, string class_name = 'HttpInflateStream' ]])

HttpInflateStream class factory –returns public--

tring HttpInflateStream::finish ([ string data ])

Finalize inflate stream –returns public--

tring HttpInflateStream::flush ([ string data ])

Flush inflate stream –returns public--

tring HttpInflateStream::update(string data)

Update inflate stream –returns public--

oid HttpMessage::addHeaders(array headers [, bool append = FALSE ])

Add headers –returns public--

oid HttpMessage::__construct ([ string message ])

HttpMessage constructor –returns public--

ttpMessage HttpMessage::detach(void)

Detach HttpMessage –returns public--

ublic HttpMessage HttpMessage::factory ([ string raw_message [, string class_name = 'HttpMessage' ]])

Create HttpMessage from string –returns static--

ublic HttpMessage HttpMessage::fromEnv(int message_type [, string class_name = 'HttpMessage' ])

Create HttpMessage from environment –returns static--

ublic HttpMessage HttpMessage::fromString ([ string raw_message [, string class_name = 'HttpMessage' ]])

Create HttpMessage from string –returns static--

tring HttpMessage::getBody(void)

Get message body –returns public--

tring HttpMessage::getHeader(string header)

Get header –returns public--

rray HttpMessage::getHeaders(void)

Get message headers –returns public--

tring HttpMessage::getHttpVersion(void)

Get HTTP version –returns public--

ttpMessage HttpMessage::getParentMessage(void)

Get parent message –returns public--

tring HttpMessage::getRequestMethod(void)

Get request method –returns public--

tring HttpMessage::getRequestUrl(void)

Get request URL –returns public--

nt HttpMessage::getResponseCode(void)

Get response code –returns public--

tring HttpMessage::getResponseStatus(void)

Get response status –returns public--

nt HttpMessage::getType(void)

Get message type –returns public--

tring HttpMessage::guessContentType(string magic_file [, int magic_mode = MAGIC_MIME ])

Guess content type –returns public--

oid HttpMessage::prepend(HttpMessage message [, bool top = TRUE ])

Prepend message(s) –returns public--

ttpMessage HttpMessage::reverse(void)

Reverse message chain –returns public--

ool HttpMessage::send(void)

Send message –returns public--

oid HttpMessage::setBody(string body)

Set message body –returns public--

oid HttpMessage::setHeaders(array headers)

Set headers –returns public--

ool HttpMessage::setHttpVersion(string version)

Set HTTP version –returns public--

ool HttpMessage::setRequestMethod(string method)

Set request method –returns public--

ool HttpMessage::setRequestUrl(string url)

Set request URL –returns public--

ool HttpMessage::setResponseCode(int code)

Set response code –returns public--

ool HttpMessage::setResponseStatus(string status)

Set response status –returns public--

oid HttpMessage::setType(int type)

Set message type –returns public--

ttpRequest|HttpResponse HttpMessage::toMessageTypeObject(void)

Create HTTP object regarding message type –returns public--

tring HttpMessage::toString ([ bool include_parent = FALSE ])

Get string representation –returns public--

ublic void HttpQueryString::__construct ([ bool global = TRUE [, mixed add ]])

HttpQueryString constructor –returns final--

ixed HttpQueryString::get ([ string key [, mixed type = 0 [, mixed defval = NULL [, bool delete = FALSE ]]]])

Get (part of) query string –returns public--

ttpQueryString HttpQueryString::mod(mixed params)

Modifiy query string copy –returns public--

tring HttpQueryString::set(mixed params)

Set query string params –returns public--

ublic HttpQueryString HttpQueryString::singleton ([ bool global = TRUE ])

HttpQueryString singleton –returns static--

rray HttpQueryString::toArray(void)

Get query string as array –returns public--

tring HttpQueryString::toString(void)

Get query string –returns public--

ool HttpQueryString::xlate(string ie, string oe)

Change query strings charset –returns public--

ool HttpRequest::addCookies(array cookies)

Add cookies –returns public--

ool HttpRequest::addHeaders(array headers)

Add headers –returns public--

ool HttpRequest::addPostFields(array post_data)

Add post fields –returns public--

ool HttpRequest::addPostFile(string name, string file [, string content_type = 'application/x-octetstream' ])

Add post file –returns public--

ool HttpRequest::addPutData(string put_data)

Add put data –returns public--

ool HttpRequest::addQueryData(array query_params)

Add query data –returns public--

ool HttpRequest::addRawPostData(string raw_post_data)

Add raw post data –returns public--

ool HttpRequest::addSslOptions(array options)

Add ssl options –returns public--

oid HttpRequest::clearHistory(void)

Clear history –returns public--

oid HttpRequest::__construct ([ string url [, int request_method = HTTP_METH_GET [, array options ]]])

HttpRequest constructor –returns public--

ool HttpRequest::enableCookies(void)

Enable cookies –returns public--

tring HttpRequest::getContentType(void)

Get content type –returns public--

rray HttpRequest::getCookies(void)

Get cookies –returns public--

rray HttpRequest::getHeaders(void)

Get headers –returns public--

ttpMessage HttpRequest::getHistory(void)

Get history –returns public--

nt HttpRequest::getMethod(void)

Get method –returns public--

rray HttpRequest::getOptions(void)

Get options –returns public--

rray HttpRequest::getPostFields(void)

Get post fields –returns public--

rray HttpRequest::getPostFiles(void)

Get post files –returns public--

tring HttpRequest::getPutData(void)

Get put data –returns public--

tring HttpRequest::getPutFile(void)

Get put file –returns public--

tring HttpRequest::getQueryData(void)

Get query data –returns public--

tring HttpRequest::getRawPostData(void)

Get raw post data –returns public--

tring HttpRequest::getRawRequestMessage(void)

Get raw request message –returns public--

tring HttpRequest::getRawResponseMessage(void)

Get raw response message –returns public--

ttpMessage HttpRequest::getRequestMessage(void)

Get request message –returns public--

tring HttpRequest::getResponseBody(void)

Get response body –returns public--

nt HttpRequest::getResponseCode(void)

Get response code –returns public--

rray HttpRequest::getResponseCookies ([ int flags [, array allowed_extras ]])

Get response cookie(s) –returns public--

rray HttpRequest::getResponseData(void)

Get response data –returns public--

ixed HttpRequest::getResponseHeader ([ string name ])

Get response header(s) –returns public--

ixed HttpRequest::getResponseInfo ([ string name ])

Get response info –returns public--

ttpMessage HttpRequest::getResponseMessage(void)

Get response message –returns public--

tring HttpRequest::getResponseStatus(void)

Get response status –returns public--

rray HttpRequest::getSslOptions(void)

Get ssl options –returns public--

tring HttpRequest::getUrl(void)

Get url –returns public--

ool HttpRequest::resetCookies ([ bool session_only = FALSE ])

Reset cookies –returns public--

ttpMessage HttpRequest::send(void)

Send request –returns public--

ool HttpRequest::setContentType(string content_type)

Set content type –returns public--

ool HttpRequest::setCookies ([ array cookies ])

Set cookies –returns public--

ool HttpRequest::setHeaders ([ array headers ])

Set headers –returns public--

ool HttpRequest::setMethod(int request_method)

Set method –returns public--

ool HttpRequest::setOptions ([ array options ])

Set options –returns public--

ool HttpRequest::setPostFields(array post_data)

Set post fields –returns public--

ool HttpRequest::setPostFiles(array post_files)

Set post files –returns public--

ool HttpRequest::setPutData ([ string put_data ])

Set put data –returns public--

ool HttpRequest::setPutFile ([ string file ])

Set put file –returns public--

ool HttpRequest::setQueryData(mixed query_data)

Set query data –returns public--

ool HttpRequest::setRawPostData ([ string raw_post_data ])

Set raw post data –returns public--

ool HttpRequest::setSslOptions ([ array options ])

Set ssl options –returns public--

ool HttpRequest::setUrl(string url)

Set URL –returns public--

ool HttpRequestPool::attach(HttpRequest request)

Attach HttpRequest –returns public--

ttpRequestPool::__construct ([ HttpRequest request ])

HttpRequestPool constructor –returns void--

ttpRequestPool::__destruct(void)

HttpRequestPool destructor –returns void--

ttpRequestPool::detach(HttpRequest request)

Detach HttpRequest –returns bool--

ttpRequestPool::getAttachedRequests(void)

Get attached requests –returns array--

ttpRequestPool::getFinishedRequests(void)

Get finished requests –returns array--

ttpRequestPool::reset(void)

Reset request pool –returns void--

ttpRequestPool::send(void)

Send all requests –returns bool--

ool HttpRequestPool::socketPerform(void)

Perform socket actions –returns protected--

ool HttpRequestPool::socketSelect(void)

Perform socket select –returns protected--

oid HttpResponse::capture(void)

Capture script output –returns static--

nt HttpResponse::getBufferSize(void)

Get buffer size –returns static--

ool HttpResponse::getCache(void)

Get cache –returns static--

tring HttpResponse::getCacheControl(void)

Get cache control –returns static--

tring HttpResponse::getContentDisposition(void)

Get content disposition –returns static--

tring HttpResponse::getContentType(void)

Get content type –returns static--

tring HttpResponse::getData(void)

Get data –returns static--

tring HttpResponse::getETag(void)

Get ETag –returns static--

tring HttpResponse::getFile(void)

Get file –returns static--

ool HttpResponse::getGzip(void)

Get gzip –returns static--

ixed HttpResponse::getHeader ([ string name ])

Get header –returns static--

nt HttpResponse::getLastModified(void)

Get last modified –returns static--

tring HttpResponse::getRequestBody(void)

Get request body –returns static--

esource HttpResponse::getRequestBodyStream(void)

Get request body stream –returns static--

rray HttpResponse::getRequestHeaders(void)

Get request headers –returns static--

esource HttpResponse::getStream(void)

Get Stream –returns static--

ouble HttpResponse::getThrottleDelay(void)

Get throttle delay –returns static--

tring HttpResponse::guessContentType(string magic_file [, int magic_mode=MAGIC_MIME ])

Guess content type –returns static--

oid HttpResponse::redirect ([ string url [, array params [, bool session = FALSE [, int status ]]]])

Redirect –returns static--

ool HttpResponse::send ([ bool clean_ob = TRUE ])

Send response –returns static--

ool HttpResponse::setBufferSize(int bytes)

Set buffer size –returns static--

ool HttpResponse::setCache(bool cache)

Set cache –returns static--

ool HttpResponse::setCacheControl(string control [, int max_age = 0 [, bool must_revalidate = TRUE ]])

Set cache control –returns static--

ool HttpResponse::setContentDisposition(string filename [, bool inline = FALSE ])

Set content disposition –returns static--

ool HttpResponse::setContentType(string content_type)

Set content type –returns static--

ool HttpResponse::setData(mixed data)

Set data –returns static--

ool HttpResponse::setETag(string etag)

Set ETag –returns static--

ool HttpResponse::setFile(string file)

Set file –returns static--

ool HttpResponse::setGzip(bool gzip)

Set gzip –returns static--

ool HttpResponse::setHeader(string name [, mixed value [, bool replace = TRUE ]])

Set header –returns static--

ool HttpResponse::setLastModified(int timestamp)

Set last modified –returns static--

ool HttpResponse::setStream(resource stream)

Set stream –returns static--

ool HttpResponse::setThrottleDelay(float seconds)

Set throttle delay –returns static--

ool HttpResponse::status(int status)

Send HTTP response status –returns static--

w_array2objrec(array object_array)

Convert attributes from object array to object record –returns string--

w_changeobject(int link, int objid, array attributes)

Changes attributes of an object (obsolete) –returns bool--

w_children(int connection, int objectID)

Object ids of children –returns array--

w_childrenobj(int connection, int objectID)

Object records of children –returns array--

w_close(int connection)

Closes the Hyperwave connection –returns bool--

w_connect(string host, int port [, string username ], string password)

Opens a connection –returns int--

w_connection_info(int link)

Prints information about the connection to Hyperwave server –returns void--

w_cp(int connection, array object_id_array, int destination_id)

Copies objects –returns int--

w_deleteobject(int connection, int object_to_delete)

Deletes object –returns bool--

w_docbyanchor(int connection, int anchorID)

Object id object belonging to anchor –returns int--

w_docbyanchorobj(int connection, int anchorID)

Object record object belonging to anchor –returns string--

w_document_attributes(int hw_document)

Object record of hw_document –returns string--

w_document_bodytag(int hw_document [, string prefix ])

Body tag of hw_document –returns string--

w_document_content(int hw_document)

Returns content of hw_document –returns string--

w_document_setcontent(int hw_document, string content)

Sets/replaces content of hw_document –returns bool--

w_document_size(int hw_document)

Size of hw_document –returns int--

w_dummy(int link, int id, int msgid)

Hyperwave dummy function –returns string--

w_edittext(int connection, int hw_document)

Retrieve text document –returns bool--

w_error(int connection)

Error number –returns int--

w_errormsg(int connection)

Returns error message –returns string--

w_free_document(int hw_document)

Frees hw_document –returns bool--

w_getanchors(int connection, int objectID)

Object ids of anchors of document –returns array--

w_getanchorsobj(int connection, int objectID)

Object records of anchors of document –returns array--

w_getandlock(int connection, int objectID)

Return object record and lock object –returns string--

w_getchildcoll(int connection, int objectID)

Object ids of child collections –returns array--

w_getchildcollobj(int connection, int objectID)

Object records of child collections –returns array--

w_getchilddoccoll(int connection, int objectID)

Object ids of child documents of collection –returns array--

w_getchilddoccollobj(int connection, int objectID)

Object records of child documents of collection –returns array--

w_getobject(int connection, mixed objectID [, string query ])

Object record –returns mixed--

w_getobjectbyquery(int connection, string query, int max_hits)

Search object –returns array--

w_getobjectbyquerycoll(int connection, int objectID, string query, int max_hits)

Search object in collection –returns array--

w_getobjectbyquerycollobj(int connection, int objectID, string query, int max_hits)

Search object in collection –returns array--

w_getobjectbyqueryobj(int connection, string query, int max_hits)

Search object –returns array--

w_getparents(int connection, int objectID)

Object ids of parents –returns array--

w_getparentsobj(int connection, int objectID)

Object records of parents –returns array--

w_getrellink(int link, int rootid, int sourceid, int destid)

Get link from source to dest relative to rootid –returns string--

w_getremote(int connection, int objectID)

Gets a remote document –returns int--

w_getremotechildren(int connection, string object_record)

Gets children of remote document –returns mixed--

w_getsrcbydestobj(int connection, int objectID)

Returns anchors pointing at object –returns array--

w_gettext(int connection, int objectID [, mixed rootID/prefix ])

Retrieve text document –returns int--

w_getusername(int connection)

Name of currently logged in user –returns string--

w_identify(int link, string username, string password)

Identifies as user –returns string--

w_incollections(int connection, array object_id_array, array collection_id_array, int return_collections)

Check if object ids in collections –returns array--

w_info(int connection)

Info about connection –returns string--

w_inscoll(int connection, int objectID, array object_array)

Insert collection –returns int--

w_insdoc(resource connection, int parentID, string object_record [, string text ])

Insert document –returns int--

w_insertanchors(int hwdoc, array anchorecs, array dest [, array urlprefixes ])

Inserts only anchors into text –returns bool--

w_insertdocument(int connection, int parent_id, int hw_document)

Upload any document –returns int--

w_insertobject(int connection, string object_rec, string parameter)

Inserts an object record –returns int--

w_mapid(int connection, int server_id, int object_id)

Maps global id on virtual local id –returns int--

w_modifyobject(int connection, int object_to_change, array remove, array add [, int mode ])

Modifies object record –returns bool--

w_mv(int connection, array object_id_array, int source_id, int destination_id)

Moves objects –returns int--

w_new_document(string object_record, string document_data, int document_size)

Create new document –returns int--

w_objrec2array(string object_record [, array format ])

Convert attributes from object record to object array –returns array--

w_output_document(int hw_document)

Prints hw_document –returns bool--

w_pconnect(string host, int port [, string username ], string password)

Make a persistent database connection –returns int--

w_pipedocument(int connection, int objectID [, array url_prefixes ])

Retrieve any document –returns int--

w_root(void)

Root object id –returns int--

w_setlinkroot(int link, int rootid)

Set the id to which links are calculated –returns int--

w_stat(int link)

Returns status string –returns string--

w_unlock(int connection, int objectID)

Unlock object –returns bool--

w_who(int connection)

List of currently logged in users –returns array--

ey(void)

Returns key of the attribute –returns string--

angdepvalue(string language)

Returns value for a given language –returns string--

alue(void)

Returns value of the attribute –returns string--

alues(void)

Returns all values of the attribute –returns array--

w_api_attribute ([ string name [, string value ]])

Creates instance of class hw_api_attribute –returns HW_API_Attribute--

heckin(array parameter)

Checks in an object –returns bool--

heckout(array parameter)

Checks out an object –returns bool--

hildren(array parameter)

Returns children of an object –returns array--

imetype(void)

Returns mimetype –returns string--

ead(string buffer, int len)

Read content –returns string--

ontent(array parameter)

Returns content of an object –returns HW_API_Content--

opy(array parameter)

Copies physically –returns hw_api_content--

bstat(array parameter)

Returns statistics about database server –returns hw_api_object--

cstat(array parameter)

Returns statistics about document cache server –returns hw_api_object--

stanchors(array parameter)

Returns a list of all destination anchors –returns array--

stofsrcanchor(array parameter)

Returns destination of a source anchor –returns hw_api_object--

ount(void)

Returns number of reasons –returns int--

eason(void)

Returns reason of error –returns HW_API_Reason--

ind(array parameter)

Search for objects –returns array--

tstat(array parameter)

Returns statistics about fulltext server –returns hw_api_object--

wapi_hgcsp(string hostname [, int port ])

Returns object of class hw_api –returns HW_API--

wstat(array parameter)

Returns statistics about Hyperwave server –returns hw_api_object--

dentify(array parameter)

Log into Hyperwave Server –returns bool--

nfo(array parameter)

Returns information about server configuration –returns array--

nsert(array parameter)

Inserts a new object –returns hw_api_object--

nsertanchor(array parameter)

Inserts a new object of type anchor –returns hw_api_object--

nsertcollection(array parameter)

Inserts a new object of type collection –returns hw_api_object--

nsertdocument(array parameter)

Inserts a new object of type document –returns hw_api_object--

ink(array parameter)

Creates a link to an object –returns bool--

ock(array parameter)

Locks an object –returns bool--

ove(array parameter)

Moves object between collections –returns bool--

w_api_content(string content, string mimetype)

Create new instance of class hw_api_content –returns HW_API_Content--

ssign(array parameter)

Clones object –returns bool--

ttreditable(array parameter)

Checks whether an attribute is editable –returns bool--

ount(array parameter)

Returns number of attributes –returns int--

nsert(HW_API_Attribute attribute)

Inserts new attribute –returns bool--

w_api_object(array parameter)

Creates a new instance of class hw_api_object –returns hw_api_object--

emove(string name)

Removes attribute –returns bool--

itle(array parameter)

Returns the title attribute –returns string--

alue(string name)

Returns value of attribute –returns string--

bject(array parameter)

Retrieve attribute information –returns hw_api_object--

bjectbyanchor(array parameter)

Returns the object an anchor belongs to –returns hw_api_object--

arents(array parameter)

Returns parents of an object –returns array--

escription(void)

Returns description of reason –returns string--

ype(void)

Returns type of reason –returns HW_API_Reason--

emove(array parameter)

Delete an object –returns bool--

eplace(array parameter)

Replaces an object –returns hw_api_object--

etcommittedversion(array parameter)

Commits version other than last version –returns hw_api_object--

rcanchors(array parameter)

Returns a list of all source anchors –returns array--

rcsofdst(array parameter)

Returns source of a destination object –returns array--

nlock(array parameter)

Unlocks a locked object –returns bool--

ser(array parameter)

Returns the own user object –returns hw_api_object--

serlist(array parameter)

Returns a list of all logged in users –returns array--

ypot(float x, float y)

Calculate the length of the hypotenuse of a right-angle triangle –returns float--

base_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 (only for IB6 or later) –returns bool--

base_affected_rows ([ resource link_identifier ])

Return the number of rows that were affected by the previous query –returns int--

base_backup(resource service_handle, string source_db, string dest_file [, int options [, bool verbose ]])

Initiates a backup task in the service manager and returns immediately –returns mixed--

base_blob_add(resource blob_handle, string data)

Add data into a newly created blob –returns void--

base_blob_cancel(resource blob_handle)

Cancel creating blob –returns bool--

base_blob_close(resource blob_handle)

Close blob –returns mixed--

base_blob_create ([ resource link_identifier ])

Create a new blob for adding data –returns resource--

base_blob_echo ([ resource link_identifier ], string blob_id)

Output blob contents to browser –returns bool--

base_blob_get(resource blob_handle, int len)

Get len bytes data from open blob –returns string--

base_blob_import(resource link_identifier, resource file_handle) string ibase_blob_import(resource file_handle)

Create blob, copy file in it, and close it –returns string--

base_blob_info(resource link_identifier, string blob_id) array ibase_blob_info(string blob_id)

Return blob length and other useful info –returns array--

base_blob_open(resource link_identifier, string blob_id) resource ibase_blob_open(string blob_id)

Open blob for retrieving data parts –returns resource--

base_close ([ resource connection_id ])

Close a connection to an InterBase database –returns bool--

base_commit_ret ([ resource link_or_trans_identifier ])

Commit a transaction without closing it –returns bool--

base_commit ([ resource link_or_trans_identifier ])

Commit a transaction –returns bool--

base_connect ([ string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync ]]]]]]]])

Open a connection to an InterBase database –returns resource--

base_db_info(resource service_handle, string db, int action [, int argument ])

Request statistics about a database –returns string--

base_delete_user(resource service_handle, string user_name)

Delete a user from a security database (only for IB6 or later) –returns bool--

base_drop_db ([ resource connection ])

Drops a database –returns bool--

base_errcode(void)

Return an error code –returns int--

base_errmsg(void)

Return error messages –returns string--

base_execute(resource query [, mixed bind_arg [, mixed ... ]])

Execute a previously prepared query –returns resource--

base_fetch_assoc(resource result [, int fetch_flag ])

Fetch a result row from a query as an associative array –returns array--

base_fetch_object(resource result_id [, int fetch_flag ])

Get an object from a InterBase database –returns object--

base_fetch_row(resource result_identifier [, int fetch_flag ])

Fetch a row from an InterBase database –returns array--

base_field_info(resource result, int field_number)

Get information about a field –returns array--

base_free_event_handler(resource event)

Cancels a registered event handler –returns bool--

base_free_query(resource query)

Free memory allocated by a prepared query –returns bool--

base_free_result(resource result_identifier)

Free a result set –returns bool--

base_gen_id(string generator [, int increment [, resource link_identifier ]])

Increments the named generator and returns its new value –returns mixed--

base_maintain_db(resource service_handle, string db, int action [, int argument ])

Execute a maintenance command on the database server –returns bool--

base_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 (only for IB6 or later) –returns bool--

base_name_result(resource result, string name)

Assigns a name to a result set –returns bool--

base_num_fields(resource result_id)

Get the number of fields in a result set –returns int--

base_num_params(resource query)

Return the number of parameters in a prepared query –returns int--

base_param_info(resource query, int param_number)

Return information about a parameter in a prepared query –returns array--

base_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 –returns resource--

base_prepare(string query) resource ibase_prepare(resource link_identifier, string query) resource ibase_prepare(resource link_identifier, string trans, string query)

Prepare a query for later binding of parameter placeholders and execution –returns resource--

base_query ([ resource link_identifier ], string query [, int bind_args ])

Execute a query on an InterBase database –returns resource--

base_restore(resource service_handle, string source_file, string dest_db [, int options [, bool verbose ]])

Initiates a restore task in the service manager and returns immediately –returns mixed--

base_rollback_ret ([ resource link_or_trans_identifier ])

Roll back a transaction without closing it –returns bool--

base_rollback ([ resource link_or_trans_identifier ])

Roll back a transaction –returns bool--

base_server_info(resource service_handle, int action)

Request information about a database server –returns string--

base_service_attach(string host, string dba_username, string dba_password)

Connect to the service manager –returns resource--

base_service_detach(resource service_handle)

Disconnect from the service manager –returns bool--

base_set_event_handler(callback event_handler, string event_name1 [, string event_name2 [, string ... ]]) resource ibase_set_event_handler(resource connection, callback event_handler, string event_name1 [, string event_name2 [, string ... ]])

Register a callback function to be called when events are posted –returns resource--

base_timefmt(string format [, int columntype ])

Sets the format of timestamp, date and time type columns returned from queries –returns bool--

base_trans ([ int trans_args [, resource link_identifier ]])

Begin a transaction –returns resource--

base_wait_event(string event_name1 [, string event_name2 [, string ... ]]) string ibase_wait_event(resource connection, string event_name1 [, string event_name2 [, string ... ]])

Wait for an event to be posted by the database –returns string--

conv_get_encoding ([ string type ])

Retrieve internal configuration variables of iconv extension –returns mixed--

conv_mime_decode_headers(string encoded_headers [, int mode [, string charset ]])

Decodes multiple MIME header fields at once –returns array--

conv_mime_decode(string encoded_header [, int mode [, string charset ]])

Decodes a MIME header field –returns string--

conv_mime_encode(string field_name, string field_value [, array preferences ])

Composes a MIME header field –returns string--

conv_set_encoding(string type, string charset)

Set current setting for character encoding conversion –returns bool--

conv_strlen(string str [, string charset ])

Returns the character count of string –returns int--

conv_strpos(string haystack, string needle [, int offset [, string charset ]])

Finds position of first occurrence of a needle within a haystack –returns int--

conv_strrpos(string haystack, string needle [, string charset ])

Finds the last occurrence of a needle within a haystack –returns int--

conv_substr(string str, int offset) string iconv_substr(string str, int offset, int length, string charset)

Cut out part of a string –returns string--

conv(string in_charset, string out_charset, string str)

Convert string to requested character encoding –returns string--

d3_get_frame_long_name(string frameId)

Get the long name of an ID3v2 frame –returns string--

d3_get_frame_short_name(string frameId)

Get the short name of an ID3v2 frame –returns string--

d3_get_genre_id(string genre)

Get the id for a genre –returns int--

d3_get_genre_list(void)

Get all possible genre values –returns array--

d3_get_genre_name(int genre_id)

Get the name for a genre id –returns string--

d3_get_tag(string filename [, int version ])

Get all information stored in an ID3 tag –returns array--

d3_get_version(string filename)

Get version of an ID3 tag –returns int--

d3_remove_tag(string filename [, int version ])

Remove an existing ID3 tag –returns bool--

d3_set_tag(string filename, array tag [, int version ])

Update information stored in an ID3 tag –returns bool--

date(string format [, int timestamp ])

Format a local time/date as integer –returns int--

fx_affected_rows(resource result_id)

Get number of rows affected by a query –returns int--

fx_blobinfile_mode(int mode)

Set the default blob mode for all select queries –returns bool--

fx_byteasvarchar(int mode)

Set the default byte mode –returns bool--

fx_close ([ resource link_identifier ])

Close Informix connection –returns bool--

fx_connect ([ string database [, string userid [, string password ]]])

Open Informix server connection –returns resource--

fx_copy_blob(int bid)

Duplicates the given blob object –returns int--

fx_create_blob(int type, int mode, string param)

Creates an blob object –returns int--

fx_create_char(string param)

Creates an char object –returns int--

fx_do(resource result_id)

Execute a previously prepared SQL-statement –returns bool--

fx_error ([ resource link_identifier ])

Returns error code of last Informix call –returns string--

fx_errormsg ([ int errorcode ])

Returns error message of last Informix call –returns string--

fx_fetch_row(resource result_id [, mixed position ])

Get row as an associative array –returns array--

fx_fieldproperties(resource result_id)

List of SQL fieldproperties –returns array--

fx_fieldtypes(resource result_id)

List of Informix SQL fields –returns array--

fx_free_blob(int bid)

Deletes the blob object –returns bool--

fx_free_char(int bid)

Deletes the char object –returns bool--

fx_free_result(resource result_id)

Releases resources for the query –returns bool--

fx_get_blob(int bid)

Return the content of a blob object –returns string--

fx_get_char(int bid)

Return the content of the char object –returns string--

fx_getsqlca(resource result_id)

Get the contents of sqlca.sqlerrd[0..5] after a query –returns array--

fx_htmltbl_result(resource result_id [, string html_table_options ])

Formats all rows of a query into a HTML table –returns int--

fx_nullformat(int mode)

Sets the default return value on a fetch row –returns bool--

fx_num_fields(resource result_id)

Returns the number of columns in the query –returns int--

fx_num_rows(resource result_id)

Count the rows already fetched from a query –returns int--

fx_pconnect ([ string database [, string userid [, string password ]]])

Open persistent Informix connection –returns resource--

fx_prepare(string query, resource link_identifier [, int cursor_def ], mixed blobidarray)

Prepare an SQL-statement for execution –returns resource--

fx_query(string query, resource link_identifier [, int cursor_type [, mixed blobidarray ]])

Send Informix query –returns resource--

fx_textasvarchar(int mode)

Set the default text mode –returns bool--

fx_update_blob(int bid, string content)

Updates the content of the blob object –returns bool--

fx_update_char(int bid, string content)

Updates the content of the char object –returns bool--

fxus_close_slob(int bid)

Deletes the slob object –returns bool--

fxus_create_slob(int mode)

Creates an slob object and opens it –returns int--

fxus_free_slob(int bid)

Deletes the slob object –returns bool--

fxus_open_slob(int bid, int mode)

Opens an slob object –returns int--

fxus_read_slob(int bid, int nbytes)

Reads nbytes of the slob object –returns string--

fxus_seek_slob(int bid, int mode, int offset)

Sets the current file or seek position –returns int--

fxus_tell_slob(int bid)

Returns the current file or seek position –returns int--

fxus_write_slob(int bid, string content)

Writes a string into the slob object –returns int--

gnore_user_abort ([ bool setting ])

Set whether a client disconnect should abort script execution –returns int--

is_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 –returns int--

is_get_dir_security(int server_instance, string virtual_path)

Gets Directory Security –returns int--

is_get_script_map(int server_instance, string virtual_path, string script_extension)

Gets script mapping on a virtual directory for a specific extension –returns string--

is_get_server_by_comment(string comment)

Return the instance number associated with the Comment –returns int--

is_get_server_by_path(string path)

Return the instance number associated with the Path –returns int--

is_get_server_rights(int server_instance, string virtual_path)

Gets server rights –returns int--

is_get_service_state(string service_id)

Returns the state for the service defined by ServiceId –returns int--

is_remove_server(int server_instance)

Removes the virtual web server indicated by ServerInstance –returns int--

is_set_app_settings(int server_instance, string virtual_path, string application_scope)

Creates application scope for a virtual directory –returns int--

is_set_dir_security(int server_instance, string virtual_path, int directory_flags)

Sets Directory Security –returns int--

is_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 –returns int--

is_set_server_rights(int server_instance, string virtual_path, int directory_flags)

Sets server rights –returns int--

is_start_server(int server_instance)

Starts the virtual web server –returns int--

is_start_service(string service_id)

Starts the service defined by ServiceId –returns int--

is_stop_server(int server_instance)

Stops the virtual web server –returns int--

is_stop_service(string service_id)

Stops the service defined by ServiceId –returns int--

mage_type_to_extension(int imagetype [, bool include_dot ])

Get file extension for image type –returns string--

mage_type_to_mime_type(int imagetype)

Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype –returns string--

mage2wbmp(resource image [, string filename [, int threshold ]])

Output image to browser or file –returns bool--

magealphablending(resource image, bool blendmode)

Set the blending mode for an image –returns bool--

mageantialias(resource image, bool enabled)

Should antialias functions be used or not –returns bool--

magearc(resource image, int cx, int cy, int width, int height, int start, int end, int color)

Draws an arc –returns bool--

magechar(resource image, int font, int x, int y, string c, int color)

Draw a character horizontally –returns bool--

magecharup(resource image, int font, int x, int y, string c, int color)

Draw a character vertically –returns bool--

magecolorallocate(resource image, int red, int green, int blue)

Allocate a color for an image –returns int--

magecolorallocatealpha(resource image, int red, int green, int blue, int alpha)

Allocate a color for an image –returns int--

magecolorat(resource image, int x, int y)

Get the index of the color of a pixel –returns int--

magecolorclosest(resource image, int red, int green, int blue)

Get the index of the closest color to the specified color –returns int--

magecolorclosestalpha(resource image, int red, int green, int blue, int alpha)

Get the index of the closest color to the specified color + alpha –returns int--

magecolorclosesthwb(resource image, int red, int green, int blue)

Get the index of the color which has the hue, white and blackness –returns int--

magecolordeallocate(resource image, int color)

De-allocate a color for an image –returns bool--

magecolorexact(resource image, int red, int green, int blue)

Get the index of the specified color –returns int--

magecolorexactalpha(resource image, int red, int green, int blue, int alpha)

Get the index of the specified color + alpha –returns int--

magecolormatch(resource image1, resource image2)

Makes the colors of the palette version of an image more closely match the true color version –returns bool--

magecolorresolve(resource image, int red, int green, int blue)

Get the index of the specified color or its closest possible alternative –returns int--

magecolorresolvealpha(resource image, int red, int green, int blue, int alpha)

Get the index of the specified color + alpha or its closest possible alternative –returns int--

magecolorset(resource image, int index, int red, int green, int blue)

Set the color for the specified palette index –returns void--

magecolorsforindex(resource image, int index)

Get the colors for an index –returns array--

magecolorstotal(resource image)

Find out the number of colors in an image's palette –returns int--

magecolortransparent(resource image [, int color ])

Define a color as transparent –returns int--

mageconvolution(resource image, array matrix, float div, float offset)

Apply a 3x3 convolution matrix, using coefficient and offset –returns bool--

magecopy(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 –returns bool--

magecopymerge(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 –returns bool--

magecopymergegray(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 –returns bool--

magecopyresampled(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 –returns bool--

magecopyresized(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 –returns bool--

magecreate(int width, int height)

Create a new palette based image –returns resource--

magecreatefromgd(string filename)

Create a new image from GD file or URL –returns resource--

magecreatefromgd2(string filename)

Create a new image from GD2 file or URL –returns resource--

magecreatefromgd2part(string filename, int srcX, int srcY, int width, int height)

Create a new image from a given part of GD2 file or URL –returns resource--

magecreatefromgif(string filename)

Create a new image from file or URL –returns resource--

magecreatefromjpeg(string filename)

Create a new image from file or URL –returns resource--

magecreatefrompng(string filename)

Create a new image from file or URL –returns resource--

magecreatefromstring(string data)

Create a new image from the image stream in the string –returns resource--

magecreatefromwbmp(string filename)

Create a new image from file or URL –returns resource--

magecreatefromxbm(string filename)

Create a new image from file or URL –returns resource--

magecreatefromxpm(string filename)

Create a new image from file or URL –returns resource--

magecreatetruecolor(int width, int height)

Create a new true color image –returns resource--

magedashedline(resource image, int x1, int y1, int x2, int y2, int color)

Draw a dashed line –returns bool--

magedestroy(resource image)

Destroy an image –returns bool--

mageellipse(resource image, int cx, int cy, int width, int height, int color)

Draw an ellipse –returns bool--

magefill(resource image, int x, int y, int color)

Flood fill –returns bool--

magefilledarc(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 –returns bool--

magefilledellipse(resource image, int cx, int cy, int width, int height, int color)

Draw a filled ellipse –returns bool--

magefilledpolygon(resource image, array points, int num_points, int color)

Draw a filled polygon –returns bool--

magefilledrectangle(resource image, int x1, int y1, int x2, int y2, int color)

Draw a filled rectangle –returns bool--

magefilltoborder(resource image, int x, int y, int border, int color)

Flood fill to specific color –returns bool--

magefilter(resource image, int filtertype [, int arg1 [, int arg2 [, int arg3 [, int arg4 ]]]])

Applies a filter to an image –returns bool--

magefontheight(int font)

Get font height –returns int--

magefontwidth(int font)

Get font width –returns int--

mageftbbox(float size, float angle, string fontfile, string text [, array extrainfo ])

Give the bounding box of a text using fonts via freetype2 –returns array--

magefttext(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 –returns array--

magegammacorrect(resource image, float inputgamma, float outputgamma)

Apply a gamma correction to a GD image –returns bool--

magegd(resource image [, string filename ])

Output GD image to browser or file –returns bool--

magegd2(resource image [, string filename [, int chunk_size [, int type ]]])

Output GD2 image to browser or file –returns bool--

magegif(resource image [, string filename ])

Output image to browser or file –returns bool--

magegrabscreen(void)

Captures the whole screen –returns resource--

magegrabwindow(int window [, int client_area ])

Captures a window –returns resource--

mageinterlace(resource image [, int interlace ])

Enable or disable interlace –returns int--

mageistruecolor(resource image)

Finds whether an image is a truecolor image –returns bool--

magejpeg(resource image [, string filename [, int quality ]])

Output image to browser or file –returns bool--

magelayereffect(resource image, int effect)

Set the alpha blending flag to use the bundled libgd layering effects –returns bool--

mageline(resource image, int x1, int y1, int x2, int y2, int color)

Draw a line –returns bool--

mageloadfont(string file)

Load a new font –returns int--

magepalettecopy(resource destination, resource source)

Copy the palette from one image to another –returns void--

magepng(resource image [, string filename [, int quality [, int filters ]]])

Output a PNG image to either the browser or a file –returns bool--

magepolygon(resource image, array points, int num_points, int color)

Draws a polygon –returns bool--

magepsbbox(string text, resource font, int size) array imagepsbbox(string text, resource font, int size, int space, int tightness, float angle)

Give the bounding box of a text rectangle using PostScript Type1 fonts –returns array--

magepsencodefont(resource font_index, string encodingfile)

Change the character encoding vector of a font –returns bool--

magepsextendfont(int font_index, float extend)

Extend or condense a font –returns bool--

magepsfreefont(resource font_index)

Free memory used by a PostScript Type 1 font –returns bool--

magepsloadfont(string filename)

Load a PostScript Type 1 font from file –returns resource--

magepsslantfont(resource font_index, float slant)

Slant a font –returns bool--

magepstext(resource image, string text, resource font_index, int size, int foreground, int background, int x, int y [, int space [, int tightness [, float angle [, int antialias_steps ]]]])

Draws a text over an image using PostScript Type1 fonts –returns array--

magerectangle(resource image, int x1, int y1, int x2, int y2, int color)

Draw a rectangle –returns bool--

magerotate(resource image, float angle, int bgd_color [, int ignore_transparent ])

Rotate an image with a given angle –returns resource--

magesavealpha(resource image, bool saveflag)

Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images –returns bool--

magesetbrush(resource image, resource brush)

Set the brush image for line drawing –returns bool--

magesetpixel(resource image, int x, int y, int color)

Set a single pixel –returns bool--

magesetstyle(resource image, array style)

Set the style for line drawing –returns bool--

magesetthickness(resource image, int thickness)

Set the thickness for line drawing –returns bool--

magesettile(resource image, resource tile)

Set the tile image for filling –returns bool--

magestring(resource image, int font, int x, int y, string string, int color)

Draw a string horizontally –returns bool--

magestringup(resource image, int font, int x, int y, string string, int color)

Draw a string vertically –returns bool--

magesx(resource image)

Get image width –returns int--

magesy(resource image)

Get image height –returns int--

magetruecolortopalette(resource image, bool dither, int ncolors)

Convert a true color image to a palette image –returns bool--

magettfbbox(float size, float angle, string fontfile, string text)

Give the bounding box of a text using TrueType fonts –returns array--

magettftext(resource image, float size, float angle, int x, int y, int color, string fontfile, string text)

Write text to the image using TrueType fonts –returns array--

magetypes(void)

Return the image types supported by this PHP build –returns int--

magewbmp(resource image [, string filename [, int foreground ]])

Output image to browser or file –returns bool--

magexbm(resource image, string filename [, int foreground ])

Output XBM image to browser or file –returns bool--

magick::adaptiveBlurImage(float radius, float sigma [, int channel ])

Adds adaptive blur filter to image –returns bool--

magick::adaptiveResizeImage(int columns, int rows [, bool fit ])

Adaptively resize image with data dependent triangulation –returns bool--

magick::adaptiveSharpenImage(float radius, float sigma [, int channel ])

Adaptively sharpen the image –returns bool--

magick::adaptiveThresholdImage(int width, int height, int offset)

Selects a threshold for each pixel based on a range of intensity –returns bool--

magick::addImage(Imagick source)

Adds new image to Imagick object image list –returns bool--

magick::addNoiseImage(int noise_type [, int channel ])

Adds random noise to the image –returns bool--

magick::affineTransformImage(ImagickDraw matrix)

Transforms an image –returns bool--

magick::annotateImage(ImagickDraw draw_settings, float x, float y, float angle, string text)

Annotates an image with text –returns bool--

magick::appendImages(bool stack)

Append a set of images –returns Imagick--

magick::averageImages(void)

Average a set of images –returns Imagick--

magick::blackThresholdImage(mixed threshold)

Forces all pixels below the threshold into black –returns bool--

magick::blurImage(float radius, float sigma [, int channel ])

Adds blur filter to image –returns bool--

magick::borderImage(mixed bordercolor, int width, int height)

Surrounds the image with a border –returns bool--

magick::charcoalImage(float radius, float sigma)

Simulates a charcoal drawing –returns bool--

magick::chopImage(int width, int height, int x, int y)

Removes a region of an image and trims –returns bool--

magick::clear(void)

Clears all resources associated to Imagick object –returns bool--

magick::clipImage(void)

Clips along the first path from the 8BIM profile –returns bool--

magick::clipPathImage(string pathname, bool inside)

Clips along the named paths from the 8BIM profile –returns bool--

magick::clone(void)

Makes an exact copy of the Imagick object –returns Imagick--

magick::clutImage(Imagick lookup_table [, int channel ])

Replaces colors in the image from a color lookup table –returns bool--

magick::coalesceImages(void)

Composites a set of images –returns Imagick--

magick::colorFloodfillImage(mixed fill, float fuzz, mixed bordercolor, int x, int y)

Changes the color value of any pixel that matches target –returns bool--

magick::colorizeImage(mixed colorize, mixed opacity)

Blends the fill color with the image –returns bool--

magick::combineImages(int channelType)

Combines one or more images into a single image –returns Imagick--

magick::commentImage(string comment)

Adds a comment to your image –returns bool--

magick::compareImageChannels(Imagick image, int channelType, int metricType)

Returns the difference in one or more images –returns Imagick--

magick::compareImageLayers(int method)

Returns the maximum bounding region between images –returns Imagick--

magick::compareImages(Imagick compare, int metric)

Compares an image to a reconstructed image –returns array--

magick::compositeImage(Imagick composite_object, int composite, int x, int y [, int channel ])

Composite one image onto another –returns bool--

magick::__construct ([ mixed files ])

The Imagick constructor –returns Imagick--

magick::contrastImage(bool sharpen)

Change the contrast of the image –returns bool--

magick::contrastStretchImage(float black_point, float white_point [, int channel ])

Enhances the contrast of a color image –returns bool--

magick::convolveImage(array kernel [, int channel ])

Applies a custom convolution kernel to the image –returns bool--

magick::cropImage(int width, int height, int x, int y)

Extracts a region of the image –returns bool--

magick::cropThumbnailImage(int width, int height)

Creates a crop thumbnail –returns bool--

magick::current(void)

Returns a reference to the current Imagick object –returns Imagick--

magick::cycleColormapImage(int displace)

Displaces an image's colormap –returns bool--

magick::deconstructImages(void)

Returns certain pixel differences between images –returns bool--

magick::despeckleImage(void)

Reduces the speckle noise in an image –returns bool--

magick::destroy(void)

Destroys the Imagick object –returns bool--

magick::displayImage(string servername)

Displays an image –returns bool--

magick::displayImages(string servername)

Displays an image or image sequence –returns bool--

magick::distortImage(int method, array arguments, bool bestfit)

Distorts an image using various distortion methods –returns bool--

magick::drawImage(ImagickDraw draw)

Renders the ImagickDraw object on the current image –returns bool--

magick::edgeImage(float radius)

Enhance edges within the image –returns bool--

magick::embossImage(float radius, float sigma)

Returns a grayscale image with a three-dimensional effect –returns bool--

magick::enhanceImage(void)

Improves the quality of a noisy image –returns bool--

magick::equalizeImage(void)

Equalizes the image histogram –returns bool--

magick::evaluateImage(int op, float constant [, int channel ])

Applies an expression to an image –returns bool--

magick::flattenImages(void)

Merges a sequence of images –returns Imagick--

magick::flipImage(void)

Creates a vertical mirror image –returns bool--

magick::flopImage(void)

Creates a horizontal mirror image –returns bool--

magick::frameImage(mixed matte_color, int width, int height, int inner_bevel, int outer_bevel)

Adds a simulated three-dimensional border –returns bool--

magick::fxImage(string expression [, int channel ])

Evaluate expression for each pixel in the image –returns Imagick--

magick::gammaImage(float gamma [, int channel ])

Gamma-corrects an image –returns bool--

magick::gaussianBlurImage(float radius, float sigma [, int channel ])

Blurs an image –returns bool--

magick::getCompression(void)

Gets the object compression type –returns int--

magick::getCompressionQuality(void)

Gets the object compression quality –returns int--

magick::getCopyright(void)

Returns the ImageMagick API copyright as a string –returns string--

magick::getFilename(void)

The filename associated with an image sequence –returns string--

magick::getFormat(void)

Returns the format of the Imagick object –returns string--

magick::getHomeURL(void)

Returns the ImageMagick home URL –returns string--

magick::getImage(void)

Returns a new Imagick object –returns Imagick--

magick::getImageBackgroundColor(void)

Returns the image background color –returns ImagickPixel--

magick::getImageBlob(void)

Returns the image sequence as a blob –returns string--

magick::getImageBluePrimary(float x, float y)

Returns the chromaticy blue primary point –returns ImagickPixel--

magick::getImageBorderColor(void)

Returns the image border color –returns ImagickPixel--

magick::getImageChannelDepth(int channelType)

Gets the depth for a particular image channel –returns int--

magick::getImageChannelDistortion(Imagick reference, int channel, int metric)

Compares image channels of an image to a reconstructed image –returns float--

magick::getImageChannelExtrema(int channel)

Gets the extrema for one or more image channels –returns array--

magick::getImageChannelMean(int channel)

Gets the mean and standard deviation –returns array--

magick::getImageChannelStatistics(void)

Returns statistics for each channel in the image –returns array--

magick::getImageColormapColor(int index)

Returns the color of the specified colormap index –returns ImagickPixel--

magick::getImageColors(void)

Gets the number of unique colors in the image –returns int--

magick::getImageColorspace(void)

Gets the image colorspace –returns int--

magick::getImageCompose(void)

Returns the composite operator associated with the image –returns int--

magick::getImageDelay(void)

Gets the image delay –returns int--

magick::getImageDepth(void)

Gets the image depth –returns int--

magick::getImageDispose(void)

Gets the image disposal method –returns int--

magick::getImageDistortion(MagickWand reference, int metric)

Compares an image to a reconstructed image –returns float--

magick::getImageExtrema(void)

Gets the extrema for the image –returns array--

magick::getImageFilename(void)

Returns the filename of a particular image in a sequence –returns string--

magick::getImageFormat(void)

Returns the format of a particular image in a sequence –returns string--

magick::getImageGamma(void)

Gets the image gamma –returns float--

magick::getImageGeometry(void)

Gets the width and height as an associative array –returns array--

magick::getImageGreenPrimary(void)

Returns the chromaticy green primary point –returns array--

magick::getImageHeight(void)

Returns the image height –returns int--

magick::getImageHistogram(void)

Gets the image histogram –returns array--

magick::getImageIndex(void)

Gets the index of the current active image –returns int--

magick::getImageInterlaceScheme(void)

Gets the image interlace scheme –returns int--

magick::getImageInterpolateMethod(void)

Returns the interpolation method –returns int--

magick::getImageIterations(void)

Gets the image iterations –returns int--

magick::getImageLength(void)

Returns the image length in bytes –returns int--

magick::getImageMagickLicense(void)

Returns a string containing the ImageMagick license –returns string--

magick::getImageMatte(void)

Return if the image has a matte channel –returns int--

magick::getImageMatteColor(void)

Returns the image matte color –returns ImagickPixel--

magick::getImageOrientation(void)

Gets the image orientation. –returns int--

magick::getImagePage(void)

Returns the page geometry –returns array--

magick::getImagePixelColor(int x, int y)

Returns the color of the specified pixel –returns ImagickPixel--

magick::getImageProfile(string name)

Returns the named image profile –returns string--

magick::getImageProfiles ([ string pattern [, bool only_names ]])

Returns the image profiles –returns array--

magick::getImageProperties ([ string pattern [, bool only_names ]])

Returns the image properties –returns array--

magick::getImageProperty(string name)

Returns the named image property –returns string--

magick::getImageRedPrimary(void)

Returns the chromaticy red primary point –returns array--

magick::getImageRegion(int width, int height, int x, int y)

Extracts a region of the image –returns Imagick--

magick::getImageRenderingIntent(void)

Gets the image rendering intent –returns int--

magick::getImageResolution(void)

Gets the image X and Y resolution –returns array--

magick::getImageScene(void)

Gets the image scene –returns int--

magick::getImageSignature(void)

Generates an SHA-256 message digest –returns string--

magick::getImageSize(void)

Returns the image length in bytes –returns int--

magick::getImageTicksPerSecond(void)

Gets the image ticks-per-second –returns int--

magick::getImageTotalInkDensity(void)

Gets the image total ink density –returns float--

magick::getImageType(void)

Gets the potential image type –returns int--

magick::getImageUnits(void)

Gets the image units of resolution –returns int--

magick::getImageVirtualPixelMethod(void)

Returns the virtual pixel method –returns int--

magick::getImageWhitePoint(void)

Returns the chromaticy white point –returns array--

magick::getImageWidth(void)

Returns the image width –returns int--

magick::getInterlaceScheme(void)

Gets the object interlace scheme –returns int--

magick::getIteratorIndex(void)

Gets the index of the current active image –returns int--

magick::getNumberImages(void)

Returns the number of images in the object –returns int--

magick::getOption(string key)

Returns a value associated with the specified key –returns string--

magick::getPackageName(void)

Returns the ImageMagick package name –returns string--

magick::getPage(void)

Returns the page geometry –returns array--

magick::getPixelIterator(void)

Returns a MagickPixelIterator –returns ImagickPixelIterator--

magick::getPixelRegionIterator(int x, int y, int columns, int rows)

Get an ImagickPixelIterator for an image section –returns ImagickPixelIterator--

magick::getQuantumDepth(void)

Gets the quantum depth –returns array--

magick::getQuantumRange(void)

Returns the Imagick quantum range –returns array--

magick::getReleaseDate(void)

Returns the ImageMagick release date –returns string--

magick::getResource(int type)

Returns the specified resource's memory usage –returns int--

magick::getResourceLimit(int type)

Returns the specified resource limit –returns int--

magick::getSamplingFactors(void)

Gets the horizontal and vertical sampling factor –returns array--

magick::getSize(void)

Returns the size associated with the Imagick object –returns array--

magick::getSizeOffset(void)

Returns the size offset –returns int--

magick::getVersion(void)

Returns the ImageMagick API version –returns array--

magick::hasNextImage(void)

Checks if the object has more images –returns bool--

magick::hasPreviousImage(void)

Checks if the object has a previous image –returns bool--

magick::identifyImage ([ bool appendRawOutput ])

Identifies an image and fetches attributes –returns array--

magick::implodeImage(float radius)

Creates a new image as a copy –returns bool--

magick::labelImage(string label)

Adds a label to an image –returns bool--

magick::levelImage(float blackPoint, float gamma, float whitePoint [, int channel ])

Adjusts the levels of an image –returns bool--

magick::linearStretchImage(float blackPoint, float whitePoint)

Stretches with saturation the image intensity –returns bool--

magick::magnifyImage(void)

Scales an image proportionally 2x –returns bool--

magick::mapImage(Imagick map, bool dither)

Replaces the colors of an image with the closest color from a reference image. –returns bool--

magick::matteFloodfillImage(float alpha, float fuzz, mixed bordercolor, int x, int y)

Changes the transparency value of a color –returns bool--

magick::medianFilterImage(float radius)

Applies a digital filter –returns bool--

magick::minifyImage(void)

Scales an image proportionally to half its size –returns bool--

magick::modulateImage(float brightness, float saturation, float hue)

Control the brightness, saturation, and hue –returns bool--

magick::montageImage(ImagickDraw draw, string tile_geometry, string thumbnail_geometry, int mode, string frame)

Creates a composite image –returns Imagick--

magick::morphImages(int number_frames)

Method morphs a set of images –returns Imagick--

magick::mosaicImages(void)

Forms a mosaic from images –returns Imagick--

magick::motionBlurImage(float radius, float sigma, float angle)

Simulates motion blur –returns bool--

magick::negateImage(bool gray [, int channel ])

Negates the colors in the reference image –returns bool--

magick::newImage(int cols, int rows, mixed background [, string format ])

Creates a new image –returns bool--

magick::newPseudoImage(int columns, int rows, string pseudoString)

Creates a new image –returns bool--

magick::nextImage(void)

Moves to the next image –returns bool--

magick::normalizeImage ([ int channel ])

Enhances the contrast of a color image –returns bool--

magick::oilPaintImage(float radius)

Simulates an oil painting –returns bool--

magick::optimizeImageLayers(void)

Removes repeated portions of images to optimize –returns bool--

magick::paintFloodfillImage(mixed fill, float fuzz, mixed bordercolor, int x, int y)

Changes the color value of any pixel that matches target –returns bool--

magick::paintOpaqueImage(mixed target, mixed fill, float fuzz [, int channel ])

Change any pixel that matches color –returns bool--

magick::paintTransparentImage(mixed target, float alpha, float fuzz)

Changes any pixel that matches color with the color defined by fill –returns bool--

magick::pingImage(string filename)

Fetch basic attributes about the image –returns bool--

magick::pingImageBlob(string image)

Quickly fetch attributes –returns bool--

magick::pingImageFile(resource filehandle [, string fileName ])

Get basic image attributes in a lightweight manner –returns bool--

magick::polaroidImage(ImagickDraw properties, float angle)

Simulates a Polaroid picture –returns bool--

magick::posterizeImage(int levels, bool dither)

Reduces the image to a limited number of color level –returns bool--

magick::previewImages(int preview)

Quickly pin-point appropriate parameters for image processing –returns bool--

magick::previousImage(void)

Move to the previous image in the object –returns bool--

magick::profileImage(string name, string profile)

Adds or removes a profile from an image –returns bool--

magick::quantizeImage(int numberColors, int colorspace, int treedepth, bool dither, bool measureError)

Analyzes the colors within a reference image –returns bool--

magick::quantizeImages(int numberColors, int colorspace, int treedepth, bool dither, bool measureError)

Analyzes the colors within a sequence of images –returns bool--

magick::queryFontMetrics(ImagickDraw properties, string text [, bool multiline ])

Returns an array representing the font metrics –returns array--

magick::queryFonts ([ string pattern ])

Returns the configured fonts –returns array--

magick::queryFormats ([ string pattern ])

Returns formats supported by Imagick –returns array--

magick::radialBlurImage(float angle [, int channel ])

Radial blurs an image –returns bool--

magick::raiseImage(int width, int height, int x, int y, bool raise)

Creates a simulated 3d button-like effect –returns bool--

magick::randomThresholdImage(float low, float high [, int channel ])

Creates a high-contrast, two-color image –returns bool--

magick::readImage(string filename)

Reads image from filename –returns bool--

magick::readImageBlob(string image [, string filename ])

Reads image from a binary string –returns bool--

magick::readImageFile(resource filehandle [, string fileName ])

Reads image from open filehandle –returns bool--

magick::reduceNoiseImage(float radius)

Smooths the contours of an image –returns bool--

magick::removeImage(void)

Removes an image from the image list –returns bool--

magick::removeImageProfile(string name)

Removes the named image profile and returns it –returns string--

magick::render(void)

Renders all preceding drawing commands –returns bool--

magick::resampleImage(float x_resolution, float y_resolution, int filter, float blur)

Resample image to desired resolution –returns bool--

magick::resizeImage(int columns, int rows, int filter, float blur [, bool fit ])

Scales an image –returns bool--

magick::rollImage(int x, int y)

Offsets an image –returns bool--

magick::rotateImage(mixed background, float degrees)

Rotates an image –returns bool--

magick::roundCorners(float x_rounding, float y_rounding [, float stroke_width [, float displace [, float size_correction ]]])

Rounds image corners –returns bool--

magick::sampleImage(int columns, int rows)

Scales an image with pixel sampling –returns bool--

magick::scaleImage(int cols, int rows [, bool fit ])

Scales the size of an image –returns bool--

magick::separateImageChannel(int channel)

Separates a channel from the image –returns bool--

magick::sepiaToneImage(float threshold)

Sepia tones an image –returns bool--

magick::setBackgroundColor(mixed background)

Sets the object's default background color –returns bool--

magick::setCompression(int compression)

Sets the object's default compression type –returns bool--

magick::setCompressionQuality(int quality)

Sets the object's default compression quality –returns bool--

magick::setFilename(string filename)

Sets the filename before you read or write the image –returns bool--

magick::setFirstIterator(void)

Sets the Imagick iterator to the first image –returns bool--

magick::setFont(string font)

Sets the image bias for any method that convolves an image –returns bool--

magick::setFormat(string format)

Sets the format of the Imagick object –returns bool--

magick::setImage(Imagick replace)

Replaces image in the object –returns bool--

magick::setImageBackgroundColor(mixed background)

Sets the image background color –returns bool--

magick::setImageBias(float bias)

Sets the image bias for any method that convolves an image –returns bool--

magick::setImageBluePrimary(float x, float y)

Sets the image chromaticity blue primary point –returns bool--

magick::setImageBorderColor(mixed border)

Sets the image border color –returns bool--

magick::setImageChannelDepth(int channel, int depth)

Sets the depth of a particular image channel –returns bool--

magick::setImageColormapColor(int index, ImagickPixel color)

Sets the color of the specified colormap index –returns bool--

magick::setImageColorspace(int colorspace)

Sets the image colorspace –returns bool--

magick::setImageCompose(int compose)

Sets the image composite operator –returns bool--

magick::setImageCompression(int compression)

Sets the image compression –returns bool--

magick::setImageDelay(int delay)

Sets the image delay –returns bool--

magick::setImageDepth(int depth)

Sets the image depth –returns bool--

magick::setImageDispose(int dispose)

Sets the image disposal method –returns bool--

magick::setImageExtent(int columns, int rows)

Sets the image size –returns bool--

magick::setImageFilename(string filename)

Sets the filename of a particular image –returns bool--

magick::setImageFormat(string format)

Sets the format of a particular image –returns bool--

magick::setImageGamma(float gamma)

Sets the image gamma –returns bool--

magick::setImageGreenPrimary(float x, float y)

Sets the image chromaticity green primary point –returns bool--

magick::setImageIndex(int index)

Set the iterator position –returns bool--

magick::setImageInterlaceScheme(int interlace_scheme)

Sets the image compression –returns bool--

magick::setImageInterpolateMethod(int method)

Sets the image interpolate pixel method –returns bool--

magick::setImageIterations(int iterations)

Sets the image iterations –returns bool--

magick::setImageMatte(bool matte)

Sets the image matte channel –returns bool--

magick::setImageMatteColor(mixed matte)

Sets the image matte color –returns bool--

magick::setImageOpacity(float opacity)

Sets the image opacity level –returns bool--

magick::setImageOrientation(int orientation)

Sets the image orientation. –returns bool--

magick::setImagePage(int width, int height, int x, int y)

Sets the page geometry of the image –returns bool--

magick::setImageProfile(string name, string profile)

Adds a named profile to the Imagick object –returns bool--

magick::setImageProperty(string name, string value)

Sets an image property –returns bool--

magick::setImageRedPrimary(float x, float y)

Sets the image chromaticity red primary point –returns bool--

magick::setImageRenderingIntent(int rendering_intent)

Sets the image rendering intent –returns bool--

magick::setImageResolution(float x_resolution, float y_resolution)

Sets the image resolution –returns bool--

magick::setImageScene(int scene)

Sets the image scene –returns bool--

magick::setImageTicksPerSecond(int ticks_per-second)

Sets the image ticks-per-second –returns bool--

magick::setImageType(int image_type)

Sets the image type –returns bool--

magick::setImageUnits(int units)

Sets the image units of resolution –returns bool--

magick::setImageVirtualPixelMethod(int method)

Sets the image virtual pixel method –returns bool--

magick::setImageWhitePoint(float x, float y)

Sets the image chromaticity white point –returns bool--

magick::setInterlaceScheme(int interlace_scheme)

Sets the image compression –returns bool--

magick::setIteratorIndex(int index)

Set the iterator position –returns bool--

magick::setLastIterator(void)

Sets the Imagick iterator to the last image –returns bool--

magick::setOption(string key, string value)

Set an option –returns bool--

magick::setPage(int width, int height, int x, int y)

Sets the page geometry of the Imagick object –returns bool--

magick::setResolution(float x_resolution, float y_resolution)

Sets the image resolution –returns bool--

magick::setResourceLimit(int type, int limit)

Sets the limit for a particular resource in megabytes –returns bool--

magick::setSamplingFactors(array factors)

Sets the image sampling factors –returns bool--

magick::setSize(int columns, int rows)

Sets the size of the Imagick object –returns bool--

magick::setSizeOffset(int columns, int rows, int offset)

Sets the size and offset of the Imagick object –returns bool--

magick::setType(int image_type)

Sets the image type attribute –returns bool--

magick::shadeImage(bool gray, float azimuth, float elevation)

Creates a 3D effect –returns bool--

magick::shadowImage(float opacity, float sigma, int x, int y)

Simulates an image shadow –returns bool--

magick::sharpenImage(float radius, float sigma [, int channel ])

Sharpens an image –returns bool--

magick::shaveImage(int columns, int rows)

Shaves pixels from the image edges –returns bool--

magick::shearImage(mixed background, float x_shear, float y_shear)

Creating a parallelogram –returns bool--

magick::sigmoidalContrastImage(bool sharpen, float alpha, float beta [, int channel ])

Adjusts the contrast of an image –returns bool--

magick::sketchImage(float radius, float sigma, float angle)

Simulates a pencil sketch –returns bool--

magick::solarizeImage(int threshold)

Applies a solarizing effect to the image –returns bool--

magick::spliceImage(int width, int height, int x, int y)

Splices a solid color into the image –returns bool--

magick::spreadImage(float radius)

Randomly displaces each pixel in a block –returns bool--

magick::steganoImage(Imagick watermark_wand, int offset)

Hides a digital watermark within the image –returns Imagick--

magick::stereoImage(Imagick offset_wand)

Composites two images –returns bool--

magick::stripImage(void)

Strips an image of all profiles and comments –returns bool--

magick::swirlImage(float degrees)

Swirls the pixels about the center of the image –returns bool--

magick::textureImage(Imagick texture_wand)

Repeatedly tiles the texture image –returns bool--

magick::thresholdImage(float threshold [, int channel ])

Changes the value of individual pixels based on a threshold –returns bool--

magick::thumbnailImage(int columns, int rows [, bool fit ])

Changes the size of an image –returns bool--

magick::tintImage(mixed tint, mixed opacity)

Applies a color vector to each pixel in the image –returns bool--

magick::transformImage(string crop, string geometry)

Convenience method for setting crop size and the image geometry –returns Imagick--

magick::transverseImage(void)

Creates a horizontal mirror image –returns bool--

magick::trimImage(float fuzz)

Remove edges from the image –returns bool--

magick::uniqueImageColors(void)

Discards all but one of any pixel color –returns bool--

magick::unsharpMaskImage(float radius, float sigma, float amount, float threshold [, int channel ])

Sharpens an image –returns bool--

magick::valid(void)

Checks if the current item is valid –returns bool--

magick::vignetteImage(float blackPoint, float whitePoint, int x, int y)

Adds vignette filter to the image –returns bool--

magick::waveImage(float amplitude, float length)

Adds wave filter to the image –returns bool--

magick::whiteThresholdImage(mixed threshold)

Force all pixels above the threshold into white –returns bool--

magick::writeImage ([ string filename ])

Writes an image to the specified filename –returns bool--

magick::writeImages(string filename, bool adjoin)

Writes an image or image sequence –returns bool--

magickDraw::affine(array affine)

Adjusts the current affine transformation matrix –returns bool--

magickDraw::annotation(float x, float y, string text)

Draws text on the image –returns bool--

magickDraw::arc(float sx, float sy, float ex, float ey, float sd, float ed)

Draws an arc –returns bool--

magickDraw::bezier(array coordinates)

Draws a bezier curve –returns bool--

magickDraw::circle(float ox, float oy, float px, float py)

Draws a circle –returns bool--

magickDraw::clear(void)

Clears the ImagickDraw –returns bool--

magickDraw::clone(void)

Makes an exact copy of the specified ImagickDraw object –returns ImagickDraw--

magickDraw::color(float x, float y, int paintMethod)

Draws color on image –returns bool--

magickDraw::comment(string comment)

Adds a comment –returns bool--

magickDraw::composite(int compose, float x, float y, float width, float height, Imagick compositeWand)

Composites an image onto the current image –returns bool--

magickDraw::__construct(void)

The ImagickDraw constructor –returns ImagickDraw--

magickDraw::destroy(void)

Frees all associated resources –returns bool--

magickDraw::ellipse(float ox, float oy, float rx, float ry, float start, float end)

Draws an ellipse on the image –returns bool--

magickDraw::getClipPath(void)

Obtains the current clipping path ID –returns string--

magickDraw::getClipRule(void)

Returns the current polygon fill rule –returns int--

magickDraw::getClipUnits(void)

Returns the interpretation of clip path units –returns int--

magickDraw::getFillColor(void)

Returns the fill color –returns ImagickPixel--

magickDraw::getFillOpacity(void)

Returns the opacity used when drawing –returns float--

magickDraw::getFillRule(void)

Returns the fill rule –returns int--

magickDraw::getFont(void)

Returns the font –returns string--

magickDraw::getFontFamily(void)

Returns the font family –returns string--

magickDraw::getFontSize(void)

Returns the font pointsize –returns float--

magickDraw::getFontStyle(void)

Returns the font style –returns int--

magickDraw::getFontWeight(void)

Returns the font weight –returns int--

magickDraw::getGravity(void)

Returns the text placement gravity –returns int--

magickDraw::getStrokeAntialias(void)

Returns the current stroke antialias setting –returns bool--

magickDraw::getStrokeColor(ImagickPixel stroke_color)

Returns the color used for stroking object outlines –returns ImagickPixel--

magickDraw::getStrokeDashArray(void)

Returns an array representing the pattern of dashes and gaps used to stroke paths –returns array--

magickDraw::getStrokeDashOffset(void)

Returns the offset into the dash pattern to start the dash –returns float--

magickDraw::getStrokeLineCap(void)

Returns the shape to be used at the end of open subpaths when they are stroked –returns int--

magickDraw::getStrokeLineJoin(void)

Returns the shape to be used at the corners of paths when they are stroked –returns int--

magickDraw::getStrokeMiterLimit(void)

Returns the stroke miter limit –returns int--

magickDraw::getStrokeOpacity(void)

Returns the opacity of stroked object outlines –returns float--

magickDraw::getStrokeWidth(void)

Returns the width of the stroke used to draw object outlines –returns float--

magickDraw::getTextAlignment(void)

Returns the text alignment –returns int--

magickDraw::getTextAntialias(void)

Returns the current text antialias setting –returns bool--

magickDraw::getTextDecoration(void)

Returns the text decoration –returns int--

magickDraw::getTextEncoding(void)

Returns the code set used for text annotations –returns string--

magickDraw::getTextUnderColor(void)

Returns the text under color –returns ImagickPixel--

magickDraw::getVectorGraphics(void)

Returns a string containing vector graphics –returns string--

magickDraw::line(float sx, float sy, float ex, float ey)

Draws a line –returns bool--

magickDraw::matte(float x, float y, int paintMethod)

Paints on the image's opacity channel –returns bool--

magickDraw::pathClose(void)

Adds a path element to the current path –returns bool--

magickDraw::pathCurveToAbsolute(float x1, float y1, float x2, float y2, float x, float y)

Draws a cubic Bezier curve –returns bool--

magickDraw::pathCurveToQuadraticBezierAbsolute(float x1, float y1, float x, float y)

Draws a quadratic Bezier curve –returns bool--

magickDraw::pathCurveToQuadraticBezierRelative(float x1, float y1, float x, float y)

Draws a quadratic Bezier curve –returns bool--

magickDraw::pathCurveToQuadraticBezierSmoothAbsolute(float x, float y)

Draws a quadratic Bezier curve –returns bool--

magickDraw::pathCurveToQuadraticBezierSmoothRelative(float x, float y)

Draws a quadratic Bezier curve –returns bool--

magickDraw::pathCurveToRelative(float x1, float y1, float x2, float y2, float x, float y)

Draws a cubic Bezier curve –returns bool--

magickDraw::pathCurveToSmoothAbsolute(float x2, float y2, float x, float y)

Draws a cubic Bezier curve –returns bool--

magickDraw::pathCurveToSmoothRelative(float x2, float y2, float x, float y)

Draws a cubic Bezier curve –returns bool--

magickDraw::pathEllipticArcAbsolute(float rx, float ry, float x_axis_rotation, bool large_arc_flag, bool sweep_flag, float x, float y)

Draws an elliptical arc –returns bool--

magickDraw::pathEllipticArcRelative(float rx, float ry, float x_axis_rotation, bool large_arc_flag, bool sweep_flag, float x, float y)

Draws an elliptical arc –returns bool--

magickDraw::pathFinish(void)

Terminates the current path –returns bool--

magickDraw::pathLineToAbsolute(float x, float y)

Draws a line path –returns bool--

magickDraw::pathLineToHorizontalAbsolute(float x)

Draws a horizontal line path –returns bool--

magickDraw::pathLineToHorizontalRelative(float x)

Draws a horizontal line –returns bool--

magickDraw::pathLineToRelative(float x, float y)

Draws a line path –returns bool--

magickDraw::pathLineToVerticalAbsolute(float y)

Draws a vertical line –returns bool--

magickDraw::pathLineToVerticalRelative(float y)

Draws a vertical line path –returns bool--

magickDraw::pathMoveToAbsolute(float x, float y)

Starts a new sub-path –returns bool--

magickDraw::pathMoveToRelative(float x, float y)

Starts a new sub-path –returns bool--

magickDraw::pathStart(void)

Declares the start of a path drawing list –returns bool--

magickDraw::point(float x, float y)

Draws a point –returns bool--

magickDraw::polygon(array coordinates)

Draws a polygon –returns bool--

magickDraw::polyline(array coordinates)

Draws a polyline –returns bool--

magickDraw::pop(void)

Destroys the current ImagickDraw in the stack, and returns to the previously pushed ImagickDraw –returns bool--

magickDraw::popClipPath(void)

Terminates a clip path definition –returns bool--

magickDraw::popDefs(void)

Terminates a definition list –returns bool--

magickDraw::popPattern(void)

Terminates a pattern definition –returns bool--

magickDraw::push(void)

Clones the current ImagickDraw and pushes it to the stack –returns bool--

magickDraw::pushClipPath(string clip_mask_id)

Starts a clip path definition –returns bool--

magickDraw::pushDefs(void)

Indicates that following commands create named elements for early processing –returns bool--

magickDraw::pushPattern(string pattern_id, float x, float y, float width, float height)

Indicates that subsequent commands up to a ImagickDraw::opPattern() command comprise the definition of a named pattern –returns bool--

magickDraw::rectangle(float x1, float y1, float x2, float y2)

Draws a rectangle –returns bool--

magickDraw::render(void)

Renders all preceding drawing commands onto the image –returns bool--

magickDraw::rotate(float degrees)

Applies the specified rotation to the current coordinate space –returns bool--

magickDraw::roundRectangle(float x1, float y1, float x2, float y2, float rx, float ry)

Draws a rounted rectangle –returns bool--

magickDraw::scale(float x, float y)

Adjusts the scaling factor –returns bool--

magickDraw::setClipPath(string clip_mask)

Associates a named clipping path with the image –returns bool--

magickDraw::setClipRule(int fill_rule)

Set the polygon fill rule to be used by the clipping path –returns bool--

magickDraw::setClipUnits(int clip_units)

Sets the interpretation of clip path units –returns bool--

magickDraw::setFillAlpha(float opacity)

Sets the opacity to use when drawing using the fill color or fill texture –returns bool--

magickDraw::setFillColor(ImagickPixel fill_pixel)

Sets the fill color to be used for drawing filled objects –returns bool--

magickDraw::setFillOpacity(float fillOpacity)

Sets the opacity to use when drawing using the fill color or fill texture –returns bool--

magickDraw::setFillPatternURL(string fill_url)

Sets the URL to use as a fill pattern for filling objects –returns bool--

magickDraw::setFillRule(int fill_rule)

Sets the fill rule to use while drawing polygons –returns bool--

magickDraw::setFont(string font_name)

Sets the fully-specified font to use when annotating with text –returns bool--

magickDraw::setFontFamily(string font_family)

Sets the font family to use when annotating with text –returns bool--

magickDraw::setFontSize(float pointsize)

Sets the font pointsize to use when annotating with text –returns bool--

magickDraw::setFontStretch(int fontStretch)

Sets the font stretch to use when annotating with text –returns bool--

magickDraw::setFontStyle(int style)

Sets the font style to use when annotating with text –returns bool--

magickDraw::setFontWeight(int font_weight)

Sets the font weight –returns bool--

magickDraw::setGravity(int gravity)

Sets the text placement gravity –returns bool--

magickDraw::setStrokeAlpha(float opacity)

Specifies the opacity of stroked object outlines –returns bool--

magickDraw::setStrokeAntialias(bool stroke_antialias)

Controls whether stroked outlines are antialiased –returns bool--

magickDraw::setStrokeColor(ImagickPixel stroke_pixel)

Sets the color used for stroking object outlines –returns bool--

magickDraw::setStrokeDashArray(array dashArray)

Specifies the pattern of dashes and gaps used to stroke paths –returns bool--

magickDraw::setStrokeDashOffset(float dash_offset)

Specifies the offset into the dash pattern to start the dash –returns bool--

magickDraw::setStrokeLineCap(int linecap)

Specifies the shape to be used at the end of open subpaths when they are stroked –returns bool--

magickDraw::setStrokeLineJoin(int linejoin)

Specifies the shape to be used at the corners of paths when they are stroked –returns bool--

magickDraw::setStrokeMiterLimit(int miterlimit)

Specifies the miter limit –returns bool--

magickDraw::setStrokeOpacity(float stroke_opacity)

Specifies the opacity of stroked object outlines –returns bool--

magickDraw::setStrokePatternURL(string stroke_url)

Sets the pattern used for stroking object outlines –returns bool--

magickDraw::setStrokeWidth(float stroke_width)

Sets the width of the stroke used to draw object outlines –returns bool--

magickDraw::setTextAlignment(int alignment)

Specifies a text alignment –returns bool--

magickDraw::setTextAntialias(bool antiAlias)

Controls whether text is antialiased –returns bool--

magickDraw::setTextDecoration(int decoration)

Specifies a decoration –returns bool--

magickDraw::setTextEncoding(string encoding)

Specifies specifies the text code set –returns bool--

magickDraw::setTextUnderColor(ImagickPixel under_color)

Specifies the color of a background rectangle –returns bool--

magickDraw::setVectorGraphics(string xml)

Sets the vector graphics –returns bool--

magickDraw::setViewbox(int x1, int y1, int x2, int y2)

Sets the overall canvas size –returns bool--

magickDraw::skewX(float degrees)

Skews the current coordinate system in the horizontal direction –returns bool--

magickDraw::skewY(float degrees)

Skews the current coordinate system in the vertical direction –returns bool--

magickDraw::translate(float x, float y)

Applies a translation to the current coordinate system –returns bool--

magickPixel::clear(void)

Clears resources associated with this object –returns bool--

magickPixel::__construct ([ string color ])

The ImagickPixel constructor –returns ImagickPixel--

magickPixel::destroy(void)

Deallocates resources associated with this object –returns bool--

magickPixel::getColor ([ bool normalized ])

Returns the color –returns array--

magickPixel::getColorAsString(void)

Returns the color as a string –returns string--

magickPixel::getColorCount(void)

Returns the color count associated with this color –returns int--

magickPixel::getColorValue(int color)

Gets the normalized value of the provided color channel –returns float--

magickPixel::getHSL(void)

Returns the normalized HSL color of the ImagickPixel object –returns array--

magickPixel::isSimilar(ImagickPixel color, float fuzz)

Check the distance between this color and another –returns bool--

magickPixel::setColor(string color)

Sets the color –returns bool--

magickPixel::setColorValue(int color, float value)

Sets the normalized value of one of the channels –returns bool--

magickPixel::setHSL(float hue, float saturation, float luminosity)

Sets the normalized HSL color –returns bool--

magickPixelIterator::clear(void)

Clear resources associated with a PixelIterator –returns bool--

magickPixelIterator::__construct(Imagick wand)

The ImagickPixelIterator constructor –returns ImagickPixelIterator--

magickPixelIterator::destroy(void)

Deallocates resources associated with a PixelIterator –returns bool--

magickPixelIterator::getCurrentIteratorRow(void)

Returns the current row of ImagickPixel objects –returns array--

magickPixelIterator::getIteratorRow(void)

Returns the current pixel iterator row –returns int--

magickPixelIterator::getNextIteratorRow(void)

Returns the next row of the pixel iterator –returns array--

magickPixelIterator::getPreviousIteratorRow(void)

Returns the previous row –returns array--

magickPixelIterator::newPixelIterator(Imagick wand)

Returns a new pixel iterator –returns bool--

magickPixelIterator::newPixelRegionIterator(Imagick wand, int x, int y, int columns, int rows)

Returns a new pixel iterator –returns bool--

magickPixelIterator::resetIterator(void)

Resets the pixel iterator –returns bool--

magickPixelIterator::setIteratorFirstRow(void)

Sets the pixel iterator to the first pixel row –returns bool--

magickPixelIterator::setIteratorLastRow(void)

Sets the pixel iterator to the last pixel row –returns bool--

magickPixelIterator::setIteratorRow(int row)

Set the pixel iterator row –returns bool--

magickPixelIterator::syncIterator(void)

Syncs the pixel iterator –returns bool--

map_8bit(string string)

Convert an 8bit string to a quoted-printable string –returns string--

map_alerts(void)

Returns all IMAP alert messages that have occurred –returns array--

map_append(resource imap_stream, string mailbox, string message [, string options ])

Append a string message to a specified mailbox –returns bool--

map_base64(string text)

Decode BASE64 encoded text –returns string--

map_binary(string string)

Convert an 8bit string to a base64 string –returns string--

map_body(resource imap_stream, int msg_number [, int options ])

Read the message body –returns string--

map_bodystruct(resource imap_stream, int msg_number, string section)

Read the structure of a specified body section of a specific message –returns object--

map_check(resource imap_stream)

Check current mailbox –returns object--

map_clearflag_full(resource imap_stream, string sequence, string flag [, string options ])

Clears flags on messages –returns bool--

map_close(resource imap_stream [, int flag ])

Close an IMAP stream –returns bool--

map_createmailbox(resource imap_stream, string mailbox)

Create a new mailbox –returns bool--

map_delete(resource imap_stream, int msg_number [, int options ])

Mark a message for deletion from current mailbox –returns bool--

map_deletemailbox(resource imap_stream, string mailbox)

Delete a mailbox –returns bool--

map_errors(void)

Returns all of the IMAP errors that have occured –returns array--

map_expunge(resource imap_stream)

Delete all messages marked for deletion –returns bool--

map_fetch_overview(resource imap_stream, string sequence [, int options ])

Read an overview of the information in the headers of the given message –returns array--

map_fetchbody(resource imap_stream, int msg_number, string part_number [, int options ])

Fetch a particular section of the body of the message –returns string--

map_fetchheader(resource imap_stream, int msg_number [, int options ])

Returns header for a message –returns string--

map_fetchstructure(resource imap_stream, int msg_number [, int options ])

Read the structure of a particular message –returns object--

map_get_quota(resource imap_stream, string quota_root)

Retrieve the quota level settings, and usage statics per mailbox –returns array--

map_get_quotaroot(resource imap_stream, string quota_root)

Retrieve the quota settings per user –returns array--

map_getacl(resource imap_stream, string mailbox)

Gets the ACL for a given mailbox –returns array--

map_getmailboxes(resource imap_stream, string ref, string pattern)

Read the list of mailboxes, returning detailed information on each one –returns array--

map_getsubscribed(resource imap_stream, string ref, string pattern)

List all the subscribed mailboxes –returns array--

map_header

Alias of imap_headerinfo() –returns ?--

map_headerinfo(resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost ]]])

Read the header of the message –returns object--

map_headers(resource imap_stream)

Returns headers for all messages in a mailbox –returns array--

map_last_error(void)

Gets the last IMAP error that occurred during this page request –returns string--

map_list(resource imap_stream, string ref, string pattern)

Read the list of mailboxes –returns array--

map_listmailbox

Alias of imap_list() –returns ?--

map_listscan(resource imap_stream, string ref, string pattern, string content)

Returns the list of mailboxes that matches the given text –returns array--

map_listsubscribed

Alias of imap_lsub() –returns ?--

map_lsub(resource imap_stream, string ref, string pattern)

List all the subscribed mailboxes –returns array--

map_mail_compose(array envelope, array body)

Create a MIME message based on given envelope and body sections –returns string--

map_mail_copy(resource imap_stream, string msglist, string mailbox [, int options ])

Copy specified messages to a mailbox –returns bool--

map_mail_move(resource imap_stream, string msglist, string mailbox [, int options ])

Move specified messages to a mailbox –returns bool--

map_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath ]]]])

Send an email message –returns bool--

map_mailboxmsginfo(resource imap_stream)

Get information about the current mailbox –returns object--

map_mime_header_decode(string text)

Decode MIME header elements –returns array--

map_msgno(resource imap_stream, int uid)

Gets the message sequence number for the given UID –returns int--

map_num_msg(resource imap_stream)

Gets the number of messages in the current mailbox –returns int--

map_num_recent(resource imap_stream)

Gets the number of recent messages in current mailbox –returns int--

map_open(string mailbox, string username, string password [, int options [, int n_retries ]])

Open an IMAP stream to a mailbox –returns resource--

map_ping(resource imap_stream)

Check if the IMAP stream is still active –returns bool--

map_qprint(string string)

Convert a quoted-printable string to an 8 bit string –returns string--

map_renamemailbox(resource imap_stream, string old_mbox, string new_mbox)

Rename an old mailbox to new mailbox –returns bool--

map_reopen(resource imap_stream, string mailbox [, int options [, int n_retries ]])

Reopen IMAP stream to new mailbox –returns bool--

map_rfc822_parse_adrlist(string address, string default_host)

Parses an address string –returns array--

map_rfc822_parse_headers(string headers [, string defaulthost ])

Parse mail headers from a string –returns object--

map_rfc822_write_address(string mailbox, string host, string personal)

Returns a properly formatted email address given the mailbox, host, and personal info –returns string--

map_savebody(resource imap_stream, mixed file, int msg_number [, string part_number [, int options ]])

Save a specific body section to a file –returns bool--

map_scanmailbox

Alias of imap_listscan() –returns ?--

map_search(resource imap_stream, string criteria [, int options [, string charset ]])

This function returns an array of messages matching the given search criteria –returns array--

map_set_quota(resource imap_stream, string quota_root, int quota_limit)

Sets a quota for a given mailbox –returns bool--

map_setacl(resource imap_stream, string mailbox, string id, string rights)

Sets the ACL for a giving mailbox –returns bool--

map_setflag_full(resource imap_stream, string sequence, string flag [, int options ])

Sets flags on messages –returns bool--

map_sort(resource imap_stream, int criteria, int reverse [, int options [, string search_criteria [, string charset ]]])

Gets and sort messages –returns array--

map_status(resource imap_stream, string mailbox, int options)

Returns status information on a mailbox –returns object--

map_subscribe(resource imap_stream, string mailbox)

Subscribe to a mailbox –returns bool--

map_thread(resource imap_stream [, int options ])

Returns a tree of threaded message –returns array--

map_timeout(int timeout_type [, int timeout ])

Set or fetch imap timeout –returns mixed--

map_uid(resource imap_stream, int msg_number)

This function returns the UID for the given message sequence number –returns int--

map_undelete(resource imap_stream, int msg_number [, int flags ])

Unmark the message which is marked deleted –returns bool--

map_unsubscribe(string imap_stream, string mailbox)

Unsubscribe from a mailbox –returns bool--

map_utf7_decode(string text)

Decodes a modified UTF-7 encoded string –returns string--

map_utf7_encode(string data)

Converts ISO-8859-1 string to modified UTF-7 text –returns string--

map_utf8(string mime_encoded_text)

Converts MIME-encoded text to UTF-8 –returns string--

mplode(string glue, array pieces)

Join array elements with a string –returns string--

mport_request_variables(string types [, string prefix ])

Import GET/POST/Cookie variables into the global scope –returns bool--

n_array(mixed needle, array haystack [, bool strict ])

Checks if a value exists in an array –returns bool--

--returns ?--
--returns ?--
nclued_get_data(void)

Get the inclued data –returns array--

net_ntop(string in_addr)

Converts a packed internet address to a human readable representation –returns string--

net_pton(string address)

Converts a human readable IP address to its packed in_addr representation –returns string--

ngres_autocommit ([ resource link ])

Switch autocommit on or off –returns bool--

ngres_close ([ resource link ])

Close an Ingres II database connection –returns bool--

ngres_commit ([ resource link ])

Commit a transaction –returns bool--

ngres_connect ([ string database [, string username [, string password [, array options ]]]])

Open a connection to an Ingres database –returns resource--

ngres_cursor ([ resource link ])

Gets a cursor name for a given link resource –returns string--

ngres_errno ([ resource link ])

Gets the last ingres error number generated –returns int--

ngres_error ([ resource link ])

Gets a meaningful error message for the last error generated –returns string--

ngres_errsqlstate ([ resource link ])

Gets the last SQLSTATE error code generated –returns string--

ngres_fetch_array ([ int result_type [, resource link ]])

Fetch a row of result into an array –returns array--

ngres_fetch_object ([ int result_type [, resource link ]])

Fetch a row of result into an object –returns object--

ngres_fetch_row ([ resource link ])

Fetch a row of result into an enumerated array –returns array--

ngres_field_length(int index [, resource link ])

Get the length of a field –returns int--

ngres_field_name(int index [, resource link ])

Get the name of a field in a query result –returns string--

ngres_field_nullable(int index [, resource link ])

Test if a field is nullable –returns bool--

ngres_field_precision(int index [, resource link ])

Get the precision of a field –returns int--

ngres_field_scale(int index [, resource link ])

Get the scale of a field –returns int--

ngres_field_type(int index [, resource link ])

Get the type of a field in a query result –returns string--

ngres_num_fields ([ resource link ])

Get the number of fields returned by the last query –returns int--

ngres_num_rows ([ resource link ])

Get the number of rows affected or returned by the last query –returns int--

ngres_pconnect ([ string database [, string username [, string password ]]])

Open a persistent connection to an Ingres II database –returns resource--

ngres_query(string query [, resource link ])

Send a SQL query to Ingres II –returns bool--

ngres_rollback ([ resource link ])

Roll back a transaction –returns bool--

ni_alter

Alias of ini_set() –returns ?--

ni_get_all ([ string extension [, bool details ]])

Gets all configuration options –returns array--

ni_get(string varname)

Gets the value of a configuration option –returns string--

ni_restore(string varname)

Restores the value of a configuration option –returns void--

ni_set(string varname, string newvalue)

Sets the value of a configuration option –returns string--

notify_add_watch(resource inotify_instance, string pathname, integer mask)

Add a watch to an initialized inotify instance –returns integer--

notify_init(void)

Initialize an inotify instance –returns resource--

notify_queue_len(resource inotify_instance)

Return a number upper than zero if there are pending events –returns bool--

notify_read(resource inotify_instance)

Read events from an inotify instance –returns array--

notify_rm_watch(resource inotify_instance, integer watch_descriptor)

Remove an existing watch from an inotify instance –returns bool--

nterface_exists(string interface_name [, bool autoload ])

Checks if the interface has been defined –returns bool--

ntl_error_name(integer error_code)

Get symbolic name for a given error code –returns string--

ntl_get_error_code(void)

Get the last error code –returns integer--

ntl_get_error_message(void)

Get description of the last error –returns string--

ntl_is_failure(integer error_code)

Check whether the given error code indicates failure –returns bool--

ntval(mixed var [, int base ])

Get the integer value of a variable –returns int--

p2long(string ip_address)

Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address –returns int--

ptcembed(string iptcdata, string jpeg_file_name [, int spool ])

Embed binary IPTC data into a JPEG image –returns mixed--

ptcparse(string iptcblock)

Parse a binary IPTC block into single tags. –returns array--

s_a(object object, string class_name)

Checks if the object is of this class or has this class as one of its parents –returns bool--

s_array(mixed var)

Finds whether a variable is an array –returns bool--

s_binary(mixed var)

Finds whether a variable is a native binary string –returns bool--

s_bool(mixed var)

Finds out whether a variable is a boolean –returns bool--

s_buffer(mixed var)

Finds whether a variable is a native unicode or binary string –returns bool--

s_callable(mixed var [, bool syntax_only [, string &callable_name ]])

Verify that the contents of a variable can be called as a function –returns bool--

s_dir(string filename)

Tells whether the filename is a directory –returns bool--

s_double

Alias of is_float() –returns ?--

s_executable(string filename)

Tells whether the filename is executable –returns bool--

s_file(string filename)

Tells whether the filename is a regular file –returns bool--

s_finite(float val)

Finds whether a value is a legal finite number –returns bool--

s_float(mixed var)

Finds whether the type of a variable is float –returns bool--

s_infinite(float val)

Finds whether a value is infinite –returns bool--

s_int(mixed var)

Find whether the type of a variable is integer –returns bool--

s_integer

Alias of is_int() –returns ?--

s_link(string filename)

Tells whether the filename is a symbolic link –returns bool--

s_long

Alias of is_int() –returns ?--

s_nan(float val)

Finds whether a value is not a number –returns bool--

s_null(mixed var)

Finds whether a variable is NULL –returns bool--

s_numeric(mixed var)

Finds whether a variable is a number or a numeric string –returns bool--

s_object(mixed var)

Finds whether a variable is an object –returns bool--

s_readable(string filename)

Tells whether the filename is readable –returns bool--

s_real

Alias of is_float() –returns ?--

s_resource(mixed var)

Finds whether a variable is a resource –returns bool--

s_scalar(mixed var)

Finds whether a variable is a scalar –returns bool--

s_soap_fault(mixed obj)

Checks if SOAP call was failed –returns bool--

s_string(mixed var)

Find whether the type of a variable is string –returns bool--

s_subclass_of(mixed object, string class_name)

Checks if the object has this class as one of its parents –returns bool--

s_unicode(mixed var)

Finds whether a variable is a unicode string –returns bool--

s_uploaded_file(string filename)

Tells whether the file was uploaded via HTTP POST –returns bool--

s_writable(string filename)

Tells whether the filename is writable –returns bool--

s_writeable

Alias of is_writable() –returns ?--

sset(mixed var [, mixed var [, ... ]])

Determine whether a variable is set –returns bool--

terator_count(IteratorAggregate iterator)

Count the elements in an iterator –returns int--

terator_to_array(IteratorAggregate iterator [, bool use_keys ])

Copy the iterator into an array –returns array--

ava_last_exception_clear(void)

Clear last Java exception –returns void--

ava_last_exception_get(void)

Get last Java exception –returns object--

ddayofweek(int julianday [, int mode ])

Returns the day of the week –returns mixed--

dmonthname(int julianday, int mode)

Returns a month name –returns string--

dtofrench(int juliandaycount)

Converts a Julian Day Count to the French Republican Calendar –returns string--

dtogregorian(int julianday)

Converts Julian Day Count to Gregorian date –returns string--

dtojewish(int juliandaycount [, bool hebrew [, int fl ]])

Converts a Julian day count to a Jewish calendar date –returns string--

dtojulian(int julianday)

Converts a Julian Day Count to a Julian Calendar Date –returns string--

dtounix(int jday)

Convert Julian Day to Unix timestamp –returns int--

ewishtojd(int month, int day, int year)

Converts a date in the Jewish Calendar to Julian Day Count –returns int--

oin

Alias of implode() –returns ?--

peg2wbmp(string jpegname, string wbmpname, int dest_height, int dest_width, int threshold)

Convert JPEG image file to WBMP image file –returns bool--

son_decode(string json [, bool assoc ])

Decodes a JSON string –returns mixed--

son_encode(mixed value)

Returns the JSON representation of a value –returns string--

uliantojd(int month, int day, int year)

Converts a Julian Calendar date to Julian Day Count –returns int--

adm5_chpass_principal(resource handle, string principal, string password)

Changes the principal's password –returns bool--

adm5_create_principal(resource handle, string principal [, string password [, array options ]])

Creates a kerberos principal with the given parameters –returns bool--

adm5_delete_principal(resource handle, string principal)

Deletes a kerberos principal –returns bool--

adm5_destroy(resource handle)

Closes the connection to the admin server and releases all related resources –returns bool--

adm5_flush(resource handle)

Flush all changes to the Kerberos database –returns bool--

adm5_get_policies(resource handle)

Gets all policies from the Kerberos database –returns array--

adm5_get_principal(resource handle, string principal)

Gets the principal's entries from the Kerberos database –returns array--

adm5_get_principals(resource handle)

Gets all principals from the Kerberos database –returns array--

adm5_init_with_password(string admin_server, string realm, string principal, string password)

Opens a connection to the KADM5 library –returns resource--

adm5_modify_principal(resource handle, string principal, array options)

Modifies a kerberos principal with the given parameters –returns bool--

ey(array &array)

Fetch a key from an array –returns mixed--

rsort(array &array [, int sort_flags ])

Sort an array by key in reverse order –returns bool--

sort(array &array [, int sort_flags ])

Sort an array by key –returns bool--

cfirst(string str)

Make a string's first character lowercase –returns string--

cg_value(void)

Combined linear congruential generator –returns float--

chgrp(string filename, mixed group)

Changes group ownership of symlink –returns bool--

chown(string filename, mixed user)

Changes user ownership of symlink –returns bool--

dap_8859_to_t61(string value)

Translate 8859 characters to t61 characters –returns string--

dap_add(resource link_identifier, string dn, array entry)

Add entries to LDAP directory –returns bool--

dap_bind(resource link_identifier [, string bind_rdn [, string bind_password ]])

Bind to LDAP directory –returns bool--

dap_close

Alias of ldap_unbind() –returns ?--

dap_compare(resource link_identifier, string dn, string attribute, string value)

Compare value of attribute found in entry specified with DN –returns mixed--

dap_connect ([ string hostname [, int port ]])

Connect to an LDAP server –returns resource--

dap_count_entries(resource link_identifier, resource result_identifier)

Count the number of entries in a search –returns int--

dap_delete(resource link_identifier, string dn)

Delete an entry from a directory –returns bool--

dap_dn2ufn(string dn)

Convert DN to User Friendly Naming format –returns string--

dap_err2str(int errno)

Convert LDAP error number into string error message –returns string--

dap_errno(resource link_identifier)

Return the LDAP error number of the last LDAP command –returns int--

dap_error(resource link_identifier)

Return the LDAP error message of the last LDAP command –returns string--

dap_explode_dn(string dn, int with_attrib)

Splits DN into its component parts –returns array--

dap_first_attribute(resource link_identifier, resource result_entry_identifier)

Return first attribute –returns string--

dap_first_entry(resource link_identifier, resource result_identifier)

Return first result id –returns resource--

dap_first_reference(resource link, resource result)

Return first reference –returns resource--

dap_free_result(resource result_identifier)

Free result memory –returns bool--

dap_get_attributes(resource link_identifier, resource result_entry_identifier)

Get attributes from a search result entry –returns array--

dap_get_dn(resource link_identifier, resource result_entry_identifier)

Get the DN of a result entry –returns string--

dap_get_entries(resource link_identifier, resource result_identifier)

Get all result entries –returns array--

dap_get_option(resource link_identifier, int option, mixed &retval)

Get the current value for given option –returns bool--

dap_get_values_len(resource link_identifier, resource result_entry_identifier, string attribute)

Get all binary values from a result entry –returns array--

dap_get_values(resource link_identifier, resource result_entry_identifier, string attribute)

Get all values from a result entry –returns array--

dap_list(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref ]]]]])

Single-level search –returns resource--

dap_mod_add(resource link_identifier, string dn, array entry)

Add attribute values to current attributes –returns bool--

dap_mod_del(resource link_identifier, string dn, array entry)

Delete attribute values from current attributes –returns bool--

dap_mod_replace(resource link_identifier, string dn, array entry)

Replace attribute values with new ones –returns bool--

dap_modify(resource link_identifier, string dn, array entry)

Modify an LDAP entry –returns bool--

dap_next_attribute(resource link_identifier, resource result_entry_identifier)

Get the next attribute in result –returns string--

dap_next_entry(resource link_identifier, resource result_entry_identifier)

Get next result entry –returns resource--

dap_next_reference(resource link, resource entry)

Get next reference –returns resource--

dap_parse_reference(resource link, resource entry, array &referrals)

Extract information from reference entry –returns bool--

dap_parse_result(resource link, resource result, int &errcode [, string &matcheddn [, string &errmsg [, array &referrals ]]])

Extract information from result –returns bool--

dap_read(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref ]]]]])

Read an entry –returns resource--

dap_rename(resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn)

Modify the name of an entry –returns bool--

dap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authz_id [, string props ]]]]]])

Bind to LDAP directory using SASL –returns bool--

dap_search(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref ]]]]])

Search LDAP tree –returns resource--

dap_set_option(resource link_identifier, int option, mixed newval)

Set the value of the given option –returns bool--

dap_set_rebind_proc(resource link, callback callback)

Set a callback function to do re-binds on referral chasing –returns bool--

dap_sort(resource link, resource result, string sortfilter)

Sort LDAP result entries –returns bool--

dap_start_tls(resource link)

Start TLS –returns bool--

dap_t61_to_8859(string value)

Translate t61 characters to 8859 characters –returns string--

dap_unbind(resource link_identifier)

Unbind from LDAP directory –returns bool--

evenshtein(string str1, string str2) int levenshtein(string str1, string str2, int cost_ins, int cost_rep, int cost_del)

Calculate Levenshtein distance between two strings –returns int--

ibxml_clear_errors(void)

Clear libxml error buffer –returns void--

ibxml_get_errors(void)

Retrieve array of errors –returns array--

ibxml_get_last_error(void)

Retrieve last error from libxml –returns LibXMLError--

ibxml_set_streams_context(resource streams_context)

Set the streams context for the next libxml document load or write –returns void--

ibxml_use_internal_errors ([ bool use_errors ])

Disable libxml errors and allow user to fetch error information as needed –returns bool--

ink(string target, string link)

Create a hard link –returns bool--

inkinfo(string path)

Gets information about a link –returns int--

ist(mixed varname [, mixed ... ])

Assign variables as if they were an array –returns void--

ocale_get_default(void)

Get the default Locale –returns string--

ocale_set_default(string name)

Set the default Locale –returns bool--

ocaleconv(void)

Get numeric formatting information –returns array--

ocaltime ([ int timestamp [, bool is_associative ]])

Get the local time –returns array--

og(float arg [, float base ])

Natural logarithm –returns float--

og10(float arg)

Base-10 logarithm –returns float--

og1p(float number)

Returns log(1 + number), computed in a way that is accurate even when the value of number is close to zero –returns float--

ong2ip(int proper_address)

Converts an (IPv4) Internet network address into a string in Internet standard dotted format –returns string--

stat(string filename)

Gives information about a file or symbolic link –returns array--

trim(string str [, string charlist ])

Strip whitespace (or other characters) from the beginning of a string –returns string--

zf_compress(string data)

LZF compression –returns string--

zf_decompress(string data)

LZF decompression –returns string--

zf_optimized_for(void)

Determines what LZF extension was optimized for –returns int--

_checkstatus(resource conn, int identifier)

Check to see if a transaction has completed –returns int--

_completeauthorizations(resource conn, int &array)

Number of complete authorizations in queue, returning an array of their identifiers –returns int--

_connect(resource conn)

Establish the connection to MCVE –returns int--

_connectionerror(resource conn)

Get a textual representation of why a connection failed –returns string--

_deletetrans(resource conn, int identifier)

Delete specified transaction from MCVE_CONN structure –returns bool--

_destroyconn(resource conn)

Destroy the connection and MCVE_CONN structure –returns bool--

_destroyengine(void)

Free memory associated with IP/SSL connectivity –returns void--

_getcell(resource conn, int identifier, string column, int row)

Get a specific cell from a comma delimited response by column name –returns string--

_getcellbynum(resource conn, int identifier, int column, int row)

Get a specific cell from a comma delimited response by column number –returns string--

_getcommadelimited(resource conn, int identifier)

Get the RAW comma delimited data returned from MCVE –returns string--

_getheader(resource conn, int identifier, int column_num)

Get the name of the column in a comma-delimited response –returns string--

_initconn(void)

Create and initialize an MCVE_CONN structure –returns resource--

_initengine(string location)

Ready the client for IP/SSL Communication –returns int--

_iscommadelimited(resource conn, int identifier)

Checks to see if response is comma delimited –returns int--

_maxconntimeout(resource conn, int secs)

The maximum amount of time the API will attempt a connection to MCVE –returns bool--

_monitor(resource conn)

Perform communication with MCVE (send/receive data) Non-blocking –returns int--

_numcolumns(resource conn, int identifier)

Number of columns returned in a comma delimited response –returns int--

_numrows(resource conn, int identifier)

Number of rows returned in a comma delimited response –returns int--

_parsecommadelimited(resource conn, int identifier)

Parse the comma delimited response so m_getcell, etc will work –returns int--

_responsekeys(resource conn, int identifier)

Returns array of strings which represents the keys that can be used for response parameters on this transaction –returns array--

_responseparam(resource conn, int identifier, string key)

Get a custom response parameter –returns string--

_returnstatus(resource conn, int identifier)

Check to see if the transaction was successful –returns int--

_setblocking(resource conn, int tf)

Set blocking/non-blocking mode for connection –returns int--

_setdropfile(resource conn, string directory)

Set the connection method to Drop-File –returns int--

_setip(resource conn, string host, int port)

Set the connection method to IP –returns int--

_setssl_cafile(resource conn, string cafile)

Set SSL CA (Certificate Authority) file for verification of server certificate –returns int--

_setssl_files(resource conn, string sslkeyfile, string sslcertfile)

Set certificate key files and certificates if server requires client certificate verification –returns int--

_setssl(resource conn, string host, int port)

Set the connection method to SSL –returns int--

_settimeout(resource conn, int seconds)

Set maximum transaction time (per trans) –returns int--

_sslcert_gen_hash(string filename)

Generate hash for SSL client certificate verification –returns string--

_transactionssent(resource conn)

Check to see if outgoing buffer is clear –returns int--

_transinqueue(resource conn)

Number of transactions in client-queue –returns int--

_transkeyval(resource conn, int identifier, string key, string value)

Add key/value pair to a transaction. Replaces deprecated transparam() –returns int--

_transnew(resource conn)

Start a new transaction –returns int--

_transsend(resource conn, int identifier)

Finalize and send the transaction –returns int--

_uwait(int microsecs)

Wait x microsecs –returns int--

_validateidentifier(resource conn, int tf)

Whether or not to validate the passed identifier on any transaction it is passed to –returns int--

_verifyconnection(resource conn, int tf)

Set whether or not to PING upon connect to verify connection –returns bool--

_verifysslcert(resource conn, int tf)

Set whether or not to verify the server ssl certificate –returns bool--

ail(string to, string subject, string message [, string additional_headers [, string additional_parameters ]])

Send mail –returns bool--

ailparse_determine_best_xfer_encoding(resource fp)

Gets the best way of encoding –returns string--

ailparse_msg_create(void)

Create a mime mail resource –returns resource--

ailparse_msg_extract_part_file(resource mimemail, mixed filename [, callback callbackfunc ])

Extracts/decodes a message section –returns string--

ailparse_msg_extract_part(resource mimemail, string msgbody [, callback callbackfunc ])

Extracts/decodes a message section –returns void--

ailparse_msg_extract_whole_part_file(resource mimemail, string filename [, callback callbackfunc ])

Extracts a message section including headers without decoding the transfer encoding –returns string--

ailparse_msg_free(resource mimemail)

Frees a MIME resource –returns bool--

ailparse_msg_get_part_data(resource mimemail)

Returns an associative array of info about the message –returns array--

ailparse_msg_get_part(resource mimemail, string mimesection)

Returns a handle on a given section in a mimemessage –returns resource--

ailparse_msg_get_structure(resource mimemail)

Returns an array of mime section names in the supplied message –returns array--

ailparse_msg_parse_file(string filename)

Parses a file –returns resource--

ailparse_msg_parse(resource mimemail, string data)

Incrementally parse data into buffer –returns bool--

ailparse_rfc822_parse_addresses(string addresses)

Parse RFC 822 compliant addresses –returns array--

ailparse_stream_encode(resource sourcefp, resource destfp, string encoding)

Streams data from source file pointer, apply encoding and write to destfp –returns bool--

ailparse_uudecode_all(resource fp)

Scans the data from fp and extract each embedded uuencoded file –returns array--

ain

Dummy for main() –returns ?--

ax(array values) mixed max(mixed value1, mixed value2 [, mixed value3... ])

Find highest value –returns mixed--

axdb_affected_rows(resource link)

Gets the number of affected rows in a previous MaxDB operation –returns int--

axdb_autocommit(resource link, bool mode) bool auto_commit(bool mode)

Turns on or off auto-commiting database modifications –returns bool--

axdb_bind_param

Alias of maxdb_stmt_bind_param() –returns ?--

axdb_bind_result

Alias of maxdb_stmt_bind_result() –returns ?--

axdb_change_user(resource link, string user, string password, string database) bool change_user(string user, string password, string database)

Changes the user of the specified database connection –returns bool--

axdb_character_set_name(resource link) string character_set_name(void)

Returns the default character set for the database connection –returns string--

axdb_client_encoding

Alias of maxdb_character_set_name() –returns ?--

axdb_close_long_data

Alias of maxdb_stmt_close_long_data() –returns ?--

axdb_close(resource link) bool close(void)

Closes a previously opened database connection –returns bool--

axdb_commit(resource link) bool commit(void)

Commits the current transaction –returns bool--

axdb_connect_errno(void)

Returns the error code from last connect call –returns int--

axdb_connect_error(void)

Returns a string description of the last connect error –returns string--

axdb_connect ([ string host [, string username [, string passwd [, string dbname [, int port [, string socket ]]]]]])

Open a new connection to the MaxDB server –returns resource--

axdb_data_seek(resource result, int offset) bool data_seek(int offset)

Adjusts the result pointer to an arbitary row in the result –returns bool--

axdb_debug(string debug)

Performs debugging operations –returns void--

axdb_disable_reads_from_master(resource link) void disable_reads_from_master(void)

Disable reads from master –returns bool--

axdb_disable_rpl_parse(resource link)

Disable RPL parse –returns bool--

axdb_dump_debug_info(resource link)

Dump debugging information into the log –returns bool--

axdb_embedded_connect ([ string dbname ])

Open a connection to an embedded MaxDB server –returns resource--

axdb_enable_reads_from_master(resource link)

Enable reads from master –returns bool--

axdb_enable_rpl_parse(resource link)

Enable RPL parse –returns bool--

axdb_errno(resource link)

Returns the error code for the most recent function call –returns int--

axdb_error(resource link)

Returns a string description of the last error –returns string--

axdb_escape_string

Alias of maxdb_real_escape_string() –returns ?--

axdb_execute

Alias of maxdb_stmt_execute() –returns ?--

axdb_fetch_array(resource result [, int resulttype ]) mixed fetch_array ([ int resulttype ])

Fetch a result row as an associative, a numeric array, or both –returns mixed--

axdb_fetch_assoc(resource result) array fetch_assoc(void)

Fetch a result row as an associative array –returns array--

axdb_fetch_field_direct(resource result, int fieldnr) mixed fetch_field_direct(int fieldnr)

Fetch meta-data for a single field –returns mixed--

axdb_fetch_field(resource result) mixed fetch_field(void)

Returns the next field in the result set –returns mixed--

axdb_fetch_fields(resource result) mixed fetch_fields(void)

Returns an array of resources representing the fields in a result set –returns mixed--

axdb_fetch_lengths(resource result)

Returns the lengths of the columns of the current row in the result set –returns array--

axdb_fetch_object(object result) object fetch_object(void)

Returns the current row of a result set as an object –returns object--

axdb_fetch_row(resource result) mixed fetch_row(void)

Get a result row as an enumerated array –returns mixed--

axdb_fetch

Alias of maxdb_stmt_fetch() –returns ?--

axdb_field_count(resource link) int field_count(void)

Returns the number of columns for the most recent query –returns int--

axdb_field_seek(resource result, int fieldnr) bool field_seek(int fieldnr)

Set result pointer to a specified field offset –returns bool--

axdb_field_tell(resource result)

Get current field offset of a result pointer –returns int--

axdb_free_result(resource result) void free(void)

Frees the memory associated with a result –returns void--

axdb_get_client_info(void)

Returns the MaxDB client version as a string –returns string--

axdb_get_client_version(void)

Get MaxDB client info –returns int--

axdb_get_host_info(resource link)

Returns a string representing the type of connection used –returns string--

axdb_get_metadata

Alias of maxdb_stmt_result_metadata() –returns ?--

axdb_get_proto_info(resource link)

Returns the version of the MaxDB protocol used –returns int--

axdb_get_server_info(resource link)

Returns the version of the MaxDB server –returns string--

axdb_get_server_version(resource link)

Returns the version of the MaxDB server as an integer –returns int--

axdb_info(resource link)

Retrieves information about the most recently executed query –returns string--

axdb_init(void)

Initializes MaxDB and returns an resource for use with maxdb_real_connect –returns resource--

axdb_insert_id(resource link)

Returns the auto generated id used in the last query –returns mixed--

axdb_kill(resource link, int processid) bool kill(int processid)

Disconnects from a MaxDB server –returns bool--

axdb_master_query(resource link, string query)

Enforce execution of a query on the master in a master/slave setup –returns bool--

axdb_more_results(resource link)

Check if there any more query results from a multi query –returns bool--

axdb_multi_query(resource link, string query) bool multi_query(string query)

Performs a query on the database –returns bool--

axdb_next_result(resource link)

Prepare next result from multi_query –returns bool--

axdb_num_fields(resource result)

Get the number of fields in a result –returns int--

axdb_num_rows(resource result)

Gets the number of rows in a result –returns int--

axdb_options(resource link, int option, mixed value) bool options(int option, mixed value)

Set options –returns bool--

axdb_param_count

Alias of maxdb_stmt_param_count() –returns ?--

axdb_ping(resource link) bool ping(void)

Pings a server connection, or tries to reconnect if the connection has gone down –returns bool--

axdb_prepare(resource link, string query) resource prepare(string query)

Prepare a SQL statement for execution –returns resource--

axdb_query(resource link, string query [, int resultmode ]) mixed query(string query)

Performs a query on the database –returns mixed--

axdb_real_connect(resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket ]]]]]]) bool real_connect ([ string hostname [, string username [, string passwd [, string dbname [, int port [, string socket ]]]]]])

Opens a connection to a MaxDB server –returns bool--

axdb_real_escape_string(resource link, string escapestr) string real_escape_sring(string escapestr)

Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection –returns string--

axdb_real_query(resource link, string query) bool real_query(string query)

Execute an SQL query –returns bool--

axdb_report(int flags)

Enables or disables internal report functions –returns bool--

axdb_rollback(resource link) bool rollback(void)

Rolls back current transaction –returns bool--

axdb_rpl_parse_enabled(resource link)

Check if RPL parse is enabled –returns int--

axdb_rpl_probe(resource link)

RPL probe –returns bool--

axdb_rpl_query_type(resource link) int rpl_query_type(void)

Returns RPL query type –returns int--

axdb_select_db(resource link, string dbname)

Selects the default database for database queries –returns bool--

axdb_send_long_data

Alias of maxdb_stmt_send_long_data() –returns ?--

axdb_send_query(resource link, string query) bool send_query(string query)

Send the query and return –returns bool--

axdb_server_end(void)

Shut down the embedded server –returns void--

axdb_server_init ([ array server [, array groups ]])

Initialize embedded server –returns bool--

axdb_set_opt

Alias of maxdb_options() –returns ?--

axdb_sqlstate(resource link)

Returns the SQLSTATE error from previous MaxDB operation –returns string--

axdb_ssl_set(resource link, string key, string cert, string ca, string capath, string cipher) bool ssl_set(string key, string cert, string ca, string capath, string cipher)

Used for establishing secure connections using SSL –returns bool--

axdb_stat(resource link) string maxdb->stat(void)

Gets the current system status –returns string--

axdb_stmt_affected_rows(resource stmt)

Returns the total number of rows changed, deleted, or inserted by the last executed statement –returns int--

axdb_stmt_bind_param(resource stmt, string types, mixed &var1 [, mixed &... ]) bool bind_param(string types, mixed &var1 [, mixed &... ]) bool maxdb_stmt_bind_param(resource stmt, string types, array &var) bool bind_param(string types, array &var)

Binds variables to a prepared statement as parameters –returns bool--

axdb_stmt_bind_result(resource stmt, mixed &var1 [, mixed &... ]) bool bind_result(mixed &var1 [, mixed &... ])

Binds variables to a prepared statement for result storage –returns bool--

axdb_stmt_close_long_data(resource stmt, int param_nr) bool maxdb_stmt->close_long_data(void)

Ends a sequence of maxdb_stmt_send_long_data() –returns bool--

axdb_stmt_close(resource stmt) bool maxdb_stmt->close(void)

Closes a prepared statement –returns bool--

axdb_stmt_data_seek(resource statement, int offset) bool data_seek(int offset)

Seeks to an arbitray row in statement result set –returns bool--

axdb_stmt_errno(resource stmt)

Returns the error code for the most recent statement call –returns int--

axdb_stmt_error(resource stmt)

Returns a string description for last statement error –returns string--

axdb_stmt_execute(resource stmt) bool execute(void)

Executes a prepared Query –returns bool--

axdb_stmt_fetch(resource stmt) bool fetch(void)

Fetch results from a prepared statement into the bound variables –returns bool--

axdb_stmt_free_result(resource stmt) void free_result(void)

Frees stored result memory for the given statement handle –returns void--

axdb_stmt_init(resource link) object stmt_init(void)

Initializes a statement and returns an resource for use with maxdb_stmt_prepare –returns resource--

axdb_stmt_num_rows(resource stmt)

Return the number of rows in statements result set –returns int--

axdb_stmt_param_count(resource stmt)

Returns the number of parameter for the given statement –returns int--

axdb_stmt_prepare(resource stmt, string query) mixed prepare(string query)

Prepare a SQL statement for execution –returns bool--

axdb_stmt_reset(resource stmt) bool reset(void)

Resets a prepared statement –returns bool--

axdb_stmt_result_metadata(resource stmt) resource result_metadata(void)

Returns result set metadata from a prepared statement –returns resource--

axdb_stmt_send_long_data(resource stmt, int param_nr, string data) bool stmt_send_long_data(int param_nr, string data)

Send data in blocks –returns bool--

axdb_stmt_sqlstate(resource stmt)

Returns SQLSTATE error from previous statement operation –returns string--

axdb_stmt_store_result(resource stmt) object store_result(void)

Transfers a result set from a prepared statement –returns bool--

axdb_store_result(resource link) object store_result(void)

Transfers a result set from the last query –returns resource--

axdb_thread_id(resource link)

Returns the thread ID for the current connection –returns int--

axdb_thread_safe(void)

Returns whether thread safety is given or not –returns bool--

axdb_use_result(resource link) resource use_result(void)

Initiate a result set retrieval –returns resource--

axdb_warning_count(resource link)

Returns the number of warnings from the last query for the given link –returns int--

b_check_encoding ([ string var [, string encoding ]])

Check if the string is valid for the specified encoding –returns bool--

b_convert_case(string str, int mode [, string encoding ])

Perform case folding on a string –returns string--

b_convert_encoding(string str, string to_encoding [, mixed from_encoding ])

Convert character encoding –returns string--

b_convert_kana(string str [, string option [, string encoding ]])

Convert "kana" one from another ("zen-kaku", "han-kaku" and more) –returns string--

b_convert_variables(string to_encoding, mixed from_encoding, mixed &vars [, mixed &... ])

Convert character code in variable(s) –returns string--

b_decode_mimeheader(string str)

Decode string in MIME header field –returns string--

b_decode_numericentity(string str, array convmap [, string encoding ])

Decode HTML numeric string reference to character –returns string--

b_detect_encoding(string str [, mixed encoding_list [, bool strict ]])

Detect character encoding –returns string--

b_detect_order ([ mixed encoding_list ])

Set/Get character encoding detection order –returns mixed--

b_encode_mimeheader(string str [, string charset [, string transfer_encoding [, string linefeed [, int indent ]]]])

Encode string for MIME header –returns string--

b_encode_numericentity(string str, array convmap [, string encoding ])

Encode character to HTML numeric string reference –returns string--

b_ereg_match(string pattern, string string [, string option ])

Regular expression match for multibyte string –returns bool--

b_ereg_replace(string pattern, string replacement, string string [, string option ])

Replace regular expression with multibyte support –returns string--

b_ereg_search_getpos(void)

Returns start point for next regular expression match –returns int--

b_ereg_search_getregs(void)

Retrieve the result from the last multibyte regular expression match –returns array--

b_ereg_search_init(string string [, string pattern [, string option ]])

Setup string and regular expression for a multibyte regular expression match –returns bool--

b_ereg_search_pos ([ string pattern [, string option ]])

Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string –returns array--

b_ereg_search_regs ([ string pattern [, string option ]])

Returns the matched part of a multibyte regular expression –returns array--

b_ereg_search_setpos(int position)

Set start point of next regular expression match –returns bool--

b_ereg_search ([ string pattern [, string option ]])

Multibyte regular expression match for predefined multibyte string –returns bool--

b_ereg(string pattern, string string [, array regs ])

Regular expression match with multibyte support –returns int--

b_eregi_replace(string pattern, string replace, string string [, string option ])

Replace regular expression with multibyte support ignoring case –returns string--

b_eregi(string pattern, string string [, array regs ])

Regular expression match ignoring case with multibyte support –returns int--

b_get_info ([ string type ])

Get internal settings of mbstring –returns mixed--

b_http_input ([ string type ])

Detect HTTP input character encoding –returns mixed--

b_http_output ([ string encoding ])

Set/Get HTTP output character encoding –returns mixed--

b_internal_encoding ([ string encoding ])

Set/Get internal character encoding –returns mixed--

b_language ([ string language ])

Set/Get current language –returns mixed--

b_list_encodings(void)

Returns an array of all supported encodings –returns array--

b_output_handler(string contents, int status)

Callback function converts character encoding in output buffer –returns string--

b_parse_str(string encoded_string [, array &result ])

Parse GET/POST/COOKIE data and set global variable –returns bool--

b_preferred_mime_name(string encoding)

Get MIME charset string –returns string--

b_regex_encoding ([ string encoding ])

Returns current encoding for multibyte regex as string –returns mixed--

b_regex_set_options ([ string options ])

Set/Get the default options for mbregex functions –returns string--

b_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameter ]])

Send encoded mail –returns bool--

b_split(string pattern, string string [, int limit ])

Split multibyte string using regular expression –returns array--

b_strcut(string str, int start [, int length [, string encoding ]])

Get part of string –returns string--

b_strimwidth(string str, int start, int width [, string trimmarker [, string encoding ]])

Get truncated string with specified width –returns string--

b_stripos(string haystack, string needle [, int offset [, string encoding ]])

Finds position of first occurrence of a string within another, case insensitive –returns int--

b_stristr(string haystack, string needle [, bool part [, string encoding ]])

Finds first occurrence of a string within another, case insensitive –returns string--

b_strlen(string str [, string encoding ])

Get string length –returns int--

b_strpos(string haystack, string needle [, int offset [, string encoding ]])

Find position of first occurrence of string in a string –returns int--

b_strrchr(string haystack, string needle [, bool part [, string encoding ]])

Finds the last occurrence of a character in a string within another –returns string--

b_strrichr(string haystack, string needle [, bool part [, string encoding ]])

Finds the last occurrence of a character in a string within another, case insensitive –returns string--

b_strripos(string haystack, string needle [, int offset [, string encoding ]])

Finds position of last occurrence of a string within another, case insensitive –returns int--

b_strrpos(string haystack, string needle [, int offset [, string encoding ]])

Find position of last occurrence of a string in a string –returns int--

b_strstr(string haystack, string needle [, bool part [, string encoding ]])

Finds first occurrence of a string within another –returns string--

b_strtolower(string str [, string encoding ])

Make a string lowercase –returns string--

b_strtoupper(string str [, string encoding ])

Make a string uppercase –returns string--

b_strwidth(string str [, string encoding ])

Return width of string –returns int--

b_substitute_character ([ mixed substrchar ])

Set/Get substitution character –returns mixed--

b_substr_count(string haystack, string needle [, string encoding ])

Count the number of substring occurrences –returns int--

b_substr(string str, int start [, int length [, string encoding ]])

Get part of string –returns string--

crypt_cbc(int cipher, string key, string data, int mode [, string iv ]) string mcrypt_cbc(string cipher, string key, string data, int mode [, string iv ])

Encrypt/decrypt data in CBC mode –returns string--

crypt_cfb(int cipher, string key, string data, int mode, string iv) string mcrypt_cfb(string cipher, string key, string data, int mode [, string iv ])

Encrypt/decrypt data in CFB mode –returns string--

crypt_create_iv(int size [, int source ])

Create an initialization vector (IV) from a random source –returns string--

crypt_decrypt(string cipher, string key, string data, string mode [, string iv ])

Decrypts crypttext with given parameters –returns string--

crypt_ecb(int cipher, string key, string data, int mode) string mcrypt_ecb(string cipher, string key, string data, int mode [, string iv ])

Deprecated: Encrypt/decrypt data in ECB mode –returns string--

crypt_enc_get_algorithms_name(resource td)

Returns the name of the opened algorithm –returns string--

crypt_enc_get_block_size(resource td)

Returns the blocksize of the opened algorithm –returns int--

crypt_enc_get_iv_size(resource td)

Returns the size of the IV of the opened algorithm –returns int--

crypt_enc_get_key_size(resource td)

Returns the maximum supported keysize of the opened mode –returns int--

crypt_enc_get_modes_name(resource td)

Returns the name of the opened mode –returns string--

crypt_enc_get_supported_key_sizes(resource td)

Returns an array with the supported keysizes of the opened algorithm –returns array--

crypt_enc_is_block_algorithm_mode(resource td)

Checks whether the encryption of the opened mode works on blocks –returns bool--

crypt_enc_is_block_algorithm(resource td)

Checks whether the algorithm of the opened mode is a block algorithm –returns bool--

crypt_enc_is_block_mode(resource td)

Checks whether the opened mode outputs blocks –returns bool--

crypt_enc_self_test(resource td)

Runs a self test on the opened module –returns int--

crypt_encrypt(string cipher, string key, string data, string mode [, string iv ])

Encrypts plaintext with given parameters –returns string--

crypt_generic_deinit(resource td)

This function deinitializes an encryption module –returns bool--

crypt_generic_end(resource td)

This function terminates encryption –returns bool--

crypt_generic_init(resource td, string key, string iv)

This function initializes all buffers needed for encryption –returns int--

crypt_generic(resource td, string data)

This function encrypts data –returns string--

crypt_get_block_size(int cipher) int mcrypt_get_block_size(string cipher, string module)

Get the block size of the specified cipher –returns int--

crypt_get_cipher_name(int cipher) string mcrypt_get_cipher_name(string cipher)

Get the name of the specified cipher –returns string--

crypt_get_iv_size(string cipher, string mode)

Returns the size of the IV belonging to a specific cipher/mode combination –returns int--

crypt_get_key_size(int cipher) int mcrypt_get_key_size(string cipher, string module)

Get the key size of the specified cipher –returns int--

crypt_list_algorithms ([ string lib_dir ])

Get an array of all supported ciphers –returns array--

crypt_list_modes ([ string lib_dir ])

Get an array of all supported modes –returns array--

crypt_module_close(resource td)

Close the mcrypt module –returns bool--

crypt_module_get_algo_block_size(string algorithm [, string lib_dir ])

Returns the blocksize of the specified algorithm –returns int--

crypt_module_get_algo_key_size(string algorithm [, string lib_dir ])

Returns the maximum supported keysize of the opened mode –returns int--

crypt_module_get_supported_key_sizes(string algorithm [, string lib_dir ])

Returns an array with the supported keysizes of the opened algorithm –returns array--

crypt_module_is_block_algorithm_mode(string mode [, string lib_dir ])

Returns if the specified module is a block algorithm or not –returns bool--

crypt_module_is_block_algorithm(string algorithm [, string lib_dir ])

This function checks whether the specified algorithm is a block algorithm –returns bool--

crypt_module_is_block_mode(string mode [, string lib_dir ])

Returns if the specified mode outputs blocks or not –returns bool--

crypt_module_open(string algorithm, string algorithm_directory, string mode, string mode_directory)

Opens the module of the algorithm and the mode to be used –returns resource--

crypt_module_self_test(string algorithm [, string lib_dir ])

This function runs a self test on the specified module –returns bool--

crypt_ofb(int cipher, string key, string data, int mode, string iv) string mcrypt_ofb(string cipher, string key, string data, int mode [, string iv ])

Encrypt/decrypt data in OFB mode –returns string--

d5_file(string filename [, bool raw_output ])

Calculates the md5 hash of a given file –returns string--

d5(string str [, bool raw_output ])

Calculate the md5 hash of a string –returns string--

decrypt_generic(resource td, string data)

Decrypt data –returns string--

emcache::add(string key, mixed var [, int flag [, int expire ]])

Add an item to the server –returns bool--

emcache::addServer(string host [, int port [, bool persistent [, int weight [, int timeout [, int retry_interval [, bool status [, callback failure_callback ]]]]]]])

Add a memcached server to connection pool –returns bool--

emcache::close(void)

Close memcached server connection –returns bool--

emcache::connect(string host [, int port [, int timeout ]])

Open memcached server connection –returns bool--

emcache_debug(bool on_off)

Turn debug output on/off –returns bool--

emcache::decrement(string key [, int value ])

Decrement item's value –returns int--

emcache::delete(string key [, int timeout ])

Delete item from the server –returns bool--

emcache::flush(void)

Flush all existing items at the server –returns bool--

emcache::get(string key [, int &flags ]) array Memcache::get(array keys [, array &flags ])

Retrieve item from the server –returns string--

emcache::getExtendedStats ([ string type [, int slabid [, int limit ]]])

Get statistics from all servers in pool –returns array--

emcache::getServerStatus(string host [, int port ])

Returns server status –returns int--

emcache::getStats ([ string type [, int slabid [, int limit ]]])

Get statistics of the server –returns array--

emcache::getVersion(void)

Return version of the server –returns string--

emcache::increment(string key [, int value ])

Increment item's value –returns int--

emcache::pconnect(string host [, int port [, int timeout ]])

Open memcached server persistent connection –returns bool--

emcache::replace(string key, mixed var [, int flag [, int expire ]])

Replace value of the existing item –returns bool--

emcache::set(string key, mixed var [, int flag [, int expire ]])

Store data at the server –returns bool--

emcache::setCompressThreshold(int threshold [, float min_savings ])

Enable automatic compression of large values –returns bool--

emcache::setServerParams(string host [, int port [, int timeout [, int retry_interval [, bool status [, callback failure_callback ]]]]])

Changes server parameters and status at runtime –returns bool--

emory_get_peak_usage ([ bool real_usage ])

Returns the peak of memory allocated by PHP –returns int--

emory_get_usage ([ bool real_usage ])

Returns the amount of memory allocated to PHP –returns int--

etaphone(string str [, int phones ])

Calculate the metaphone key of a string –returns string--

ethod_exists(mixed object, string method_name)

Checks if the class method exists –returns bool--

hash_count(void)

Get the highest available hash id –returns int--

hash_get_block_size(int hash)

Get the block size of the specified hash –returns int--

hash_get_hash_name(int hash)

Get the name of the specified hash –returns string--

hash_keygen_s2k(int hash, string password, string salt, int bytes)

Generates a key –returns string--

hash(int hash, string data [, string key ])

Compute hash –returns string--

icrotime ([ bool get_as_float ])

Return current Unix timestamp with microseconds –returns mixed--

ime_content_type(string filename)

Detect MIME Content-type for a file (deprecated) –returns string--

in(array values) mixed min(mixed value1, mixed value2 [, mixed value3... ])

Find lowest value –returns mixed--

ing_keypress(string char)

Returns the action flag for keyPress(char) –returns int--

ing_setcubicthreshold(int threshold)

Set cubic threshold –returns void--

ing_setscale(int scale)

Set the global scaling factor. –returns void--

ing_setswfcompression(int level)

Sets the SWF output compression –returns void--

ing_useconstants(int use)

Use constant pool –returns void--

ing_useswfversion(int version)

Sets the SWF version –returns void--

kdir(string pathname [, int mode [, bool recursive [, resource context ]]])

Makes directory –returns bool--

ktime ([ int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst ]]]]]]])

Get Unix timestamp for a date –returns int--

oney_format(string format, float number)

Formats a number as a currency string –returns string--

ove_uploaded_file(string filename, string destination)

Moves an uploaded file to a new location –returns bool--

resource hconn, resource compCode, resource reason)

MQSeries MQBACK –returns mqseries_back--

resource hconn, array beginOptions, resource compCode, resource reason)

MQseries MQBEGIN –returns mqseries_begin--

resource hconn, resource hobj, resource compCode, resource reason)

MQSeries MQCLOSE –returns mqseries_close--

resource hconn, resource compCode, resource reason)

MQSeries MQCMIT –returns mqseries_cmit--

string qManagerName, resource hconn, resource compCode, resource reason)

MQSeries MQCONN –returns mqseries_conn--

string qManagerName, array connOptions, resource hconn, resource compCode, resource reason)

MQSeries MQCONNX –returns mqseries_connx--

resource hconn, resource compCode, resource reason)

MQSeries MQDISC –returns mqseries_disc--

resource hConn, resource hObj, array md, array gmo, int bufferLength, string &msg, int &data_length, resource &compCode, resource reason)

MQSeries MQGET –returns mqseries_get--

resource hconn, resource hobj, int selectorCount, array selectors, int intAttrCount, resource intAttr, int charAttrLength, resource charAttr, resource compCode, resource reason)

MQSeries MQINQ –returns mqseries_inq--

resource hconn, array objDesc, int option, resource hobj, resource compCode, resource reason)

MQSeries MQOPEN –returns mqseries_open--

resource hConn, resource hObj, array md, array pmo, string message, resource compCode, resource reason)

MQSeries MQPUT –returns mqseries_put--

resource hconn, resource objDesc, resource msgDesc, resource pmo, string buffer, resource compCode, resource reason)

MQSeries MQPUT1 –returns mqseries_put1--

resource hconn, resource compCode, resource reason)

MQSeries MQSET –returns mqseries_set--

qseries_strerror(int reason)

Returns the error message corresponding to a result code (MQRC). –returns string--

session_connect(string host, string port)

Connect to msession server –returns bool--

session_count(void)

Get session count –returns int--

session_create(string session, string classname, string data)

Create a session –returns bool--

session_destroy(string name)

Destroy a session –returns bool--

session_disconnect(void)

Close connection to msession server –returns void--

session_find(string name, string value)

Find all sessions with name and value –returns array--

session_get_array(string session)

Get array of msession variables –returns array--

session_get_data(string session)

Get data session unstructured data –returns string--

session_get(string session, string name, string value)

Get value from session –returns string--

session_inc(string session, string name)

Increment value in session –returns string--

session_list(void)

List all sessions –returns array--

session_listvar(string name)

List sessions with variable –returns array--

session_lock(string name)

Lock a session –returns int--

session_plugin(string session, string val [, string param ])

Call an escape function within the msession personality plugin –returns string--

session_randstr(int param)

Get random string –returns string--

session_set_array(string session, array tuples)

Set msession variables from an array –returns void--

session_set_data(string session, string value)

Set data session unstructured data –returns bool--

session_set(string session, string name, string value)

Set value in session –returns bool--

session_timeout(string session [, int param ])

Set/get session timeout –returns int--

session_uniq(int param, string classname, string data)

Get unique id –returns string--

session_unlock(string session, int key)

Unlock a session –returns int--

sg_get_queue(int key [, int perms ])

Create or attach to a message queue –returns resource--

sg_queue_exists(int key)

Check wether a message queue exists –returns bool--

sg_receive(resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed &message [, bool unserialize [, int flags [, int &errorcode ]]])

Receive a message from a message queue –returns bool--

sg_remove_queue(resource queue)

Destroy a message queue –returns bool--

sg_send(resource queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int &errorcode ]]])

Send a message to a message queue –returns bool--

sg_set_queue(resource queue, array data)

Set information in the message queue data structure –returns bool--

sg_stat_queue(resource queue)

Returns information from the message queue data structure –returns array--

sql_affected_rows(resource result)

Returns number of affected rows –returns int--

sql_close ([ resource link_identifier ])

Close mSQL connection –returns bool--

sql_connect ([ string hostname ])

Open mSQL connection –returns resource--

sql_create_db(string database_name [, resource link_identifier ])

Create mSQL database –returns bool--

sql_createdb

Alias of msql_create_db() –returns ?--

sql_data_seek(resource result, int row_number)

Move internal row pointer –returns bool--

sql_db_query(string database, string query [, resource link_identifier ])

Send mSQL query –returns resource--

sql_dbname

Alias of msql_result() –returns ?--

sql_drop_db(string database_name [, resource link_identifier ])

Drop (delete) mSQL database –returns bool--

sql_error(void)

Returns error message of last msql call –returns string--

sql_fetch_array(resource result [, int result_type ])

Fetch row as array –returns array--

sql_fetch_field(resource result [, int field_offset ])

Get field information –returns object--

sql_fetch_object(resource result)

Fetch row as object –returns object--

sql_fetch_row(resource result)

Get row as enumerated array –returns array--

sql_field_flags(resource result, int field_offset)

Get field flags –returns string--

sql_field_len(resource result, int field_offset)

Get field length –returns int--

sql_field_name(resource result, int field_offset)

Get the name of the specified field in a result –returns string--

sql_field_seek(resource result, int field_offset)

Set field offset –returns bool--

sql_field_table(resource result, int field_offset)

Get table name for field –returns int--

sql_field_type(resource result, int field_offset)

Get field type –returns string--

sql_fieldflags

Alias of msql_field_flags() –returns ?--

sql_fieldlen

Alias of msql_field_len() –returns ?--

sql_fieldname

Alias of msql_field_name() –returns ?--

sql_fieldtable

Alias of msql_field_table() –returns ?--

sql_fieldtype

Alias of msql_field_type() –returns ?--

sql_free_result(resource result)

Free result memory –returns bool--

sql_list_dbs ([ resource link_identifier ])

List mSQL databases on server –returns resource--

sql_list_fields(string database, string tablename [, resource link_identifier ])

List result fields –returns resource--

sql_list_tables(string database [, resource link_identifier ])

List tables in an mSQL database –returns resource--

sql_num_fields(resource result)

Get number of fields in result –returns int--

sql_num_rows(resource query_identifier)

Get number of rows in result –returns int--

sql_numfields

Alias of msql_num_fields() –returns ?--

sql_numrows

Alias of msql_num_rows() –returns ?--

sql_pconnect ([ string hostname ])

Open persistent mSQL connection –returns resource--

sql_query(string query [, resource link_identifier ])

Send mSQL query –returns resource--

sql_regcase

Alias of sql_regcase() –returns ?--

sql_result(resource result, int row [, mixed field ])

Get result data –returns string--

sql_select_db(string database_name [, resource link_identifier ])

Select mSQL database –returns bool--

sql_tablename

Alias of msql_result() –returns ?--

sql

Alias of msql_db_query() –returns ?--

ssql_bind(resource stmt, string param_name, mixed &var, int type [, bool is_output [, bool is_null [, int maxlen ]]])

Adds a parameter to a stored procedure or a remote stored procedure –returns bool--

ssql_close ([ resource link_identifier ])

Close MS SQL Server connection –returns bool--

ssql_connect ([ string servername [, string username [, string password [, bool new_link ]]]])

Open MS SQL server connection –returns resource--

ssql_data_seek(resource result_identifier, int row_number)

Moves internal row pointer –returns bool--

ssql_execute(resource stmt [, bool skip_results ])

Executes a stored procedure on a MS SQL server database –returns mixed--

ssql_fetch_array(resource result [, int result_type ])

Fetch a result row as an associative array, a numeric array, or both –returns array--

ssql_fetch_assoc(resource result_id)

Returns an associative array of the current row in the result –returns array--

ssql_fetch_batch(resource result)

Returns the next batch of records –returns int--

ssql_fetch_field(resource result [, int field_offset ])

Get field information –returns object--

ssql_fetch_object(resource result)

Fetch row as object –returns object--

ssql_fetch_row(resource result)

Get row as enumerated array –returns array--

ssql_field_length(resource result [, int offset ])

Get the length of a field –returns int--

ssql_field_name(resource result [, int offset ])

Get the name of a field –returns string--

ssql_field_seek(resource result, int field_offset)

Seeks to the specified field offset –returns bool--

ssql_field_type(resource result [, int offset ])

Gets the type of a field –returns string--

ssql_free_result(resource result)

Free result memory –returns bool--

ssql_free_statement(resource stmt)

Free statement memory –returns bool--

ssql_get_last_message(void)

Returns the last message from the server –returns string--

ssql_guid_string(string binary [, bool short_format ])

Converts a 16 byte binary GUID to a string –returns string--

ssql_init(string sp_name [, resource link_identifier ])

Initializes a stored procedure or a remote stored procedure –returns resource--

ssql_min_error_severity(int severity)

Sets the minimum error severity –returns void--

ssql_min_message_severity(int severity)

Sets the minimum message severity –returns void--

ssql_next_result(resource result_id)

Move the internal result pointer to the next result –returns bool--

ssql_num_fields(resource result)

Gets the number of fields in result –returns int--

ssql_num_rows(resource result)

Gets the number of rows in result –returns int--

ssql_pconnect ([ string servername [, string username [, string password [, bool new_link ]]]])

Open persistent MS SQL connection –returns resource--

ssql_query(string query [, resource link_identifier [, int batch_size ]])

Send MS SQL query –returns mixed--

ssql_result(resource result, int row, mixed field)

Get result data –returns string--

ssql_rows_affected(resource link_identifier)

Returns the number of records affected by the query –returns int--

ssql_select_db(string database_name [, resource link_identifier ])

Select MS SQL database –returns bool--

t_getrandmax(void)

Show largest possible random value –returns int--

t_rand(void) int mt_rand(int min, int max)

Generate a better random value –returns int--

t_srand ([ int seed ])

Seed the better random number generator –returns void--

ysql_affected_rows ([ resource link_identifier ])

Get number of affected rows in previous MySQL operation –returns int--

ysql_change_user(string user, string password [, string database [, resource link_identifier ]])

Change logged in user of the active connection –returns int--

ysql_client_encoding ([ resource link_identifier ])

Returns the name of the character set –returns string--

ysql_close ([ resource link_identifier ])

Close MySQL connection –returns bool--

ysql_connect ([ string server [, string username [, string password [, bool new_link [, int client_flags ]]]]])

Open a connection to a MySQL Server –returns resource--

ysql_create_db(string database_name [, resource link_identifier ])

Create a MySQL database –returns bool--

ysql_data_seek(resource result, int row_number)

Move internal result pointer –returns bool--

ysql_db_name(resource result, int row [, mixed field ])

Get result data –returns string--

ysql_db_query(string database, string query [, resource link_identifier ])

Send a MySQL query –returns resource--

ysql_drop_db(string database_name [, resource link_identifier ])

Drop (delete) a MySQL database –returns bool--

ysql_errno ([ resource link_identifier ])

Returns the numerical value of the error message from previous MySQL operation –returns int--

ysql_error ([ resource link_identifier ])

Returns the text of the error message from previous MySQL operation –returns string--

ysql_escape_string(string unescaped_string)

Escapes a string for use in a mysql_query –returns string--

ysql_fetch_array(resource result [, int result_type ])

Fetch a result row as an associative array, a numeric array, or both –returns array--

ysql_fetch_assoc(resource result)

Fetch a result row as an associative array –returns array--

ysql_fetch_field(resource result [, int field_offset ])

Get column information from a result and return as an object –returns object--

ysql_fetch_lengths(resource result)

Get the length of each output in a result –returns array--

ysql_fetch_object(resource result [, string class_name [, array params ]])

Fetch a result row as an object –returns object--

ysql_fetch_row(resource result)

Get a result row as an enumerated array –returns array--

ysql_field_flags(resource result, int field_offset)

Get the flags associated with the specified field in a result –returns string--

ysql_field_len(resource result, int field_offset)

Returns the length of the specified field –returns int--

ysql_field_name(resource result, int field_offset)

Get the name of the specified field in a result –returns string--

ysql_field_seek(resource result, int field_offset)

Set result pointer to a specified field offset –returns bool--

ysql_field_table(resource result, int field_offset)

Get name of the table the specified field is in –returns string--

ysql_field_type(resource result, int field_offset)

Get the type of the specified field in a result –returns string--

ysql_free_result(resource result)

Free result memory –returns bool--

ysql_get_client_info(void)

Get MySQL client info –returns string--

ysql_get_host_info ([ resource link_identifier ])

Get MySQL host info –returns string--

ysql_get_proto_info ([ resource link_identifier ])

Get MySQL protocol info –returns int--

ysql_get_server_info ([ resource link_identifier ])

Get MySQL server info –returns string--

ysql_info ([ resource link_identifier ])

Get information about the most recent query –returns string--

ysql_insert_id ([ resource link_identifier ])

Get the ID generated from the previous INSERT operation –returns int--

ysql_list_dbs ([ resource link_identifier ])

List databases available on a MySQL server –returns resource--

ysql_list_fields(string database_name, string table_name [, resource link_identifier ])

List MySQL table fields –returns resource--

ysql_list_processes ([ resource link_identifier ])

List MySQL processes –returns resource--

ysql_list_tables(string database [, resource link_identifier ])

List tables in a MySQL database –returns resource--

ysql_num_fields(resource result)

Get number of fields in result –returns int--

ysql_num_rows(resource result)

Get number of rows in result –returns int--

ysql_pconnect ([ string server [, string username [, string password [, int client_flags ]]]])

Open a persistent connection to a MySQL server –returns resource--

ysql_ping ([ resource link_identifier ])

Ping a server connection or reconnect if there is no connection –returns bool--

ysql_query(string query [, resource link_identifier ])

Send a MySQL query –returns resource--

ysql_real_escape_string(string unescaped_string [, resource link_identifier ])

Escapes special characters in a string for use in a SQL statement –returns string--

ysql_result(resource result, int row [, mixed field ])

Get result data –returns string--

ysql_select_db(string database_name [, resource link_identifier ])

Select a MySQL database –returns bool--

ysql_set_charset(string charset [, resource link_identifier ])

Sets the client character set –returns bool--

ysql_stat ([ resource link_identifier ])

Get current system status –returns string--

ysql_tablename(resource result, int i)

Get table name of field –returns string--

ysql_thread_id ([ resource link_identifier ])

Return the current thread ID –returns int--

ysql_unbuffered_query(string query [, resource link_identifier ])

Send an SQL query to MySQL, without fetching and buffering the result rows –returns resource--

ysqli_bind_param

Alias for mysqli_stmt_bind_param() –returns ?--

ysqli_bind_result

Alias for mysqli_stmt_bind_result() –returns ?--

ysqli_client_encoding

Alias of mysqli_character_set_name() –returns ?--

ysqli_disable_reads_from_master(mysqli link) void disable_reads_from_master(void)

Disable reads from master –returns bool--

ysqli_disable_rpl_parse(mysqli link)

Disable RPL parse –returns bool--

ysqli_enable_reads_from_master(mysqli link)

Enable reads from master –returns bool--

ysqli_enable_rpl_parse(mysqli link)

Enable RPL parse –returns bool--

ysqli_escape_string

Alias of mysqli_real_escape_string() –returns ?--

ysqli_execute

Alias for mysqli_stmt_execute() –returns ?--

ysqli_fetch

Alias for mysqli_stmt_fetch() –returns ?--

ysqli_get_metadata

Alias for mysqli_stmt_result_metadata() –returns ?--

ysqli_master_query(mysqli link, string query)

Enforce execution of a query on the master in a master/slave setup –returns bool--

ysqli_param_count

Alias for mysqli_stmt_param_count() –returns ?--

ysqli_report(int flags)

Enables or disables internal report functions –returns bool--

ysqli_rpl_parse_enabled(mysqli link)

Check if RPL parse is enabled –returns int--

ysqli_rpl_probe(mysqli link)

RPL probe –returns bool--

ysqli_rpl_query_type(mysqli link, string query) int rpl_query_type(string query)

Returns RPL query type –returns int--

ysqli_send_long_data

Alias for mysqli_stmt_send_long_data() –returns ?--

ysqli_send_query(mysqli link, string query) bool send_query(string query)

Send the query and return –returns bool--

ysqli_set_opt

Alias of mysqli_options() –returns ?--

ysqli_slave_query(mysqli link, string query)

Force execution of a query on a slave in a master/slave setup –returns bool--

atcasesort(array &array)

Sort an array using a case insensitive "natural order" algorithm –returns bool--

atsort(array &array)

Sort an array using a "natural order" algorithm –returns bool--

curses_addch(int ch)

Add character at current position and advance cursor –returns int--

curses_addchnstr(string s, int n)

Add attributed string with specified length at current position –returns int--

curses_addchstr(string s)

Add attributed string at current position –returns int--

curses_addnstr(string s, int n)

Add string with specified length at current position –returns int--

curses_addstr(string text)

Output text at current position –returns int--

curses_assume_default_colors(int fg, int bg)

Define default colors for color 0 –returns int--

curses_attroff(int attributes)

Turn off the given attributes –returns int--

curses_attron(int attributes)

Turn on the given attributes –returns int--

curses_attrset(int attributes)

Set given attributes –returns int--

curses_baudrate(void)

Returns baudrate of terminal –returns int--

curses_beep(void)

Let the terminal beep –returns int--

curses_bkgd(int attrchar)

Set background property for terminal screen –returns int--

curses_bkgdset(int attrchar)

Control screen background –returns void--

curses_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 –returns int--

curses_bottom_panel(resource panel)

Moves a visible panel to the bottom of the stack –returns int--

curses_can_change_color(void)

Check if we can change terminals colors –returns bool--

curses_cbreak(void)

Switch of input buffering –returns bool--

curses_clear(void)

Clear screen –returns bool--

curses_clrtobot(void)

Clear screen from current position to bottom –returns bool--

curses_clrtoeol(void)

Clear screen from current position to end of line –returns bool--

curses_color_content(int color, int &r, int &g, int &b)

Gets the RGB value for color –returns int--

curses_color_set(int pair)

Set fore- and background color –returns int--

curses_curs_set(int visibility)

Set cursor state –returns int--

curses_def_prog_mode(void)

Saves terminals (program) mode –returns bool--

curses_def_shell_mode(void)

Saves terminals (shell) mode –returns bool--

curses_define_key(string definition, int keycode)

Define a keycode –returns int--

curses_del_panel(resource panel)

Remove panel from the stack and delete it (but not the associated window) –returns bool--

curses_delay_output(int milliseconds)

Delay output on terminal using padding characters –returns int--

curses_delch(void)

Delete character at current position, move rest of line left –returns bool--

curses_deleteln(void)

Delete line at current position, move rest of screen up –returns bool--

curses_delwin(resource window)

Delete a ncurses window –returns bool--

curses_doupdate(void)

Write all prepared refreshes to terminal –returns bool--

curses_echo(void)

Activate keyboard input echo –returns bool--

curses_echochar(int character)

Single character output including refresh –returns int--

curses_end(void)

Stop using ncurses, clean up the screen –returns int--

curses_erase(void)

Erase terminal screen –returns bool--

curses_erasechar(void)

Returns current erase character –returns string--

curses_filter(void)

Set LINES for iniscr() and newterm() to 1 –returns void--

curses_flash(void)

Flash terminal screen (visual bell) –returns bool--

curses_flushinp(void)

Flush keyboard input buffer –returns bool--

curses_getch(void)

Read a character from keyboard –returns int--

curses_getmaxyx(resource window, int &y, int &x)

Returns the size of a window –returns void--

curses_getmouse(array &mevent)

Reads mouse event –returns bool--

curses_getyx(resource window, int &y, int &x)

Returns the current cursor position for a window –returns void--

curses_halfdelay(int tenth)

Put terminal into halfdelay mode –returns int--

curses_has_colors(void)

Check if terminal has colors –returns bool--

curses_has_ic(void)

Check for insert- and delete-capabilities –returns bool--

curses_has_il(void)

Check for line insert- and delete-capabilities –returns bool--

curses_has_key(int keycode)

Check for presence of a function key on terminal keyboard –returns int--

curses_hide_panel(resource panel)

Remove panel from the stack, making it invisible –returns int--

curses_hline(int charattr, int n)

Draw a horizontal line at current position using an attributed character and max. n characters long –returns int--

curses_inch(void)

Get character and attribute at current position –returns string--

curses_init_color(int color, int r, int g, int b)

Set new RGB value for color –returns int--

curses_init_pair(int pair, int fg, int bg)

Allocate a color pair –returns int--

curses_init(void)

Initialize ncurses –returns void--

curses_insch(int character)

Insert character moving rest of line including character at current position –returns int--

curses_insdelln(int count)

Insert lines before current line scrolling down (negative numbers delete and scroll up) –returns int--

curses_insertln(void)

Insert a line, move rest of screen down –returns int--

curses_insstr(string text)

Insert string at current position, moving rest of line right –returns int--

curses_instr(string &buffer)

Reads string from terminal screen –returns int--

curses_isendwin(void)

Ncurses is in endwin mode, normal screen output may be performed –returns bool--

curses_keyok(int keycode, bool enable)

Enable or disable a keycode –returns int--

curses_keypad(resource window, bool bf)

Turns keypad on or off –returns int--

curses_killchar(void)

Returns current line kill character –returns string--

curses_longname(void)

Returns terminals description –returns string--

curses_meta(resource window, bool 8bit)

Enables/Disable 8-bit meta key information –returns int--

curses_mouse_trafo(int &y, int &x, bool toscreen)

Transforms coordinates –returns bool--

curses_mouseinterval(int milliseconds)

Set timeout for mouse button clicks –returns int--

curses_mousemask(int newmask, int &oldmask)

Sets mouse options –returns int--

curses_move_panel(resource panel, int startx, int starty)

Moves a panel so that its upper-left corner is at [startx, starty] –returns int--

curses_move(int y, int x)

Move output position –returns int--

curses_mvaddch(int y, int x, int c)

Move current position and add character –returns int--

curses_mvaddchnstr(int y, int x, string s, int n)

Move position and add attributed string with specified length –returns int--

curses_mvaddchstr(int y, int x, string s)

Move position and add attributed string –returns int--

curses_mvaddnstr(int y, int x, string s, int n)

Move position and add string with specified length –returns int--

curses_mvaddstr(int y, int x, string s)

Move position and add string –returns int--

curses_mvcur(int old_y, int old_x, int new_y, int new_x)

Move cursor immediately –returns int--

curses_mvdelch(int y, int x)

Move position and delete character, shift rest of line left –returns int--

curses_mvgetch(int y, int x)

Move position and get character at new position –returns int--

curses_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 –returns int--

curses_mvinch(int y, int x)

Move position and get attributed character at new position –returns int--

curses_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 –returns int--

curses_mvwaddstr(resource window, int y, int x, string text)

Add string at new position in window –returns int--

curses_napms(int milliseconds)

Sleep –returns int--

curses_new_panel(resource window)

Create a new panel and associate it with window –returns resource--

curses_newpad(int rows, int cols)

Creates a new pad (window) –returns resource--

curses_newwin(int rows, int cols, int y, int x)

Create a new window –returns resource--

curses_nl(void)

Translate newline and carriage return / line feed –returns bool--

curses_nocbreak(void)

Switch terminal to cooked mode –returns bool--

curses_noecho(void)

Switch off keyboard input echo –returns bool--

curses_nonl(void)

Do not translate newline and carriage return / line feed –returns bool--

curses_noqiflush(void)

Do not flush on signal characters –returns void--

curses_noraw(void)

Switch terminal out of raw mode –returns bool--

curses_pair_content(int pair, int &f, int &b)

Gets the RGB value for color –returns int--

curses_panel_above(resource panel)

Returns the panel above panel –returns resource--

curses_panel_below(resource panel)

Returns the panel below panel –returns resource--

curses_panel_window(resource panel)

Returns the window associated with panel –returns resource--

curses_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 –returns int--

curses_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 –returns int--

curses_putp(string text)

Apply padding information to the string and output it –returns int--

curses_qiflush(void)

Flush on signal characters –returns void--

curses_raw(void)

Switch terminal into raw mode –returns bool--

curses_refresh(int ch)

Refresh screen –returns int--

curses_replace_panel(resource panel, resource window)

Replaces the window associated with panel –returns int--

curses_reset_prog_mode(void)

Resets the prog mode saved by def_prog_mode –returns int--

curses_reset_shell_mode(void)

Resets the shell mode saved by def_shell_mode –returns int--

curses_resetty(void)

Restores saved terminal state –returns bool--

curses_savetty(void)

Saves terminal state –returns bool--

curses_scr_dump(string filename)

Dump screen content to file –returns int--

curses_scr_init(string filename)

Initialize screen from file dump –returns int--

curses_scr_restore(string filename)

Restore screen from file dump –returns int--

curses_scr_set(string filename)

Inherit screen from file dump –returns int--

curses_scrl(int count)

Scroll window content up or down without changing current position –returns int--

curses_show_panel(resource panel)

Places an invisible panel on top of the stack, making it visible –returns int--

curses_slk_attr(void)

Returns current soft label key attribute –returns int--

curses_slk_attroff(int intarg)

Turn off the given attributes for soft function-key labels –returns int--

curses_slk_attron(int intarg)

Turn on the given attributes for soft function-key labels –returns int--

curses_slk_attrset(int intarg)

Set given attributes for soft function-key labels –returns int--

curses_slk_clear(void)

Clears soft labels from screen –returns bool--

curses_slk_color(int intarg)

Sets color for soft label keys –returns int--

curses_slk_init(int format)

Initializes soft label key functions –returns bool--

curses_slk_noutrefresh(void)

Copies soft label keys to virtual screen –returns bool--

curses_slk_refresh(void)

Copies soft label keys to screen –returns int--

curses_slk_restore(void)

Restores soft label keys –returns int--

curses_slk_set(int labelnr, string label, int format)

Sets function key labels –returns bool--

curses_slk_touch(void)

Forces output when ncurses_slk_noutrefresh is performed –returns int--

curses_standend(void)

Stop using 'standout' attribute –returns int--

curses_standout(void)

Start using 'standout' attribute –returns int--

curses_start_color(void)

Start using colors –returns int--

curses_termattrs(void)

Returns a logical OR of all attribute flags supported by terminal –returns bool--

curses_termname(void)

Returns terminals (short)-name –returns string--

curses_timeout(int millisec)

Set timeout for special key sequences –returns void--

curses_top_panel(resource panel)

Moves a visible panel to the top of the stack –returns int--

curses_typeahead(int fd)

Specify different filedescriptor for typeahead checking –returns int--

curses_ungetch(int keycode)

Put a character back into the input stream –returns int--

curses_ungetmouse(array mevent)

Pushes mouse event to queue –returns bool--

curses_update_panels(void)

Refreshes the virtual screen to reflect the relations between panels in the stack –returns void--

curses_use_default_colors(void)

Assign terminal default colors to color id -1 –returns bool--

curses_use_env(bool flag)

Control use of environment information about terminal size –returns void--

curses_use_extended_names(bool flag)

Control use of extended names in terminfo descriptions –returns int--

curses_vidattr(int intarg)

Display the string on the terminal in the video attribute mode –returns int--

curses_vline(int charattr, int n)

Draw a vertical line at current position using an attributed character and max. n characters long –returns int--

curses_waddch(resource window, int ch)

Adds character at current position in a window and advance cursor –returns int--

curses_waddstr(resource window, string str [, int n ])

Outputs text at current postion in window –returns int--

curses_wattroff(resource window, int attrs)

Turns off attributes for a window –returns int--

curses_wattron(resource window, int attrs)

Turns on attributes for a window –returns int--

curses_wattrset(resource window, int attrs)

Set the attributes for a window –returns int--

curses_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 –returns int--

curses_wclear(resource window)

Clears window –returns int--

curses_wcolor_set(resource window, int color_pair)

Sets windows color pairings –returns int--

curses_werase(resource window)

Erase window contents –returns int--

curses_wgetch(resource window)

Reads a character from keyboard (window) –returns int--

curses_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 –returns int--

curses_wmouse_trafo(resource window, int &y, int &x, bool toscreen)

Transforms window/stdscr coordinates –returns bool--

curses_wmove(resource window, int y, int x)

Moves windows output position –returns int--

curses_wnoutrefresh(resource window)

Copies window to virtual screen –returns int--

curses_wrefresh(resource window)

Refresh window on terminal screen –returns int--

curses_wstandend(resource window)

End standout mode for a window –returns int--

curses_wstandout(resource window)

Enter standout mode for a window –returns int--

curses_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 –returns int--

ewt_bell(void)

Send a beep to the terminal –returns void--

ewt_button_bar(array &buttons)

This function returns a grid containing the buttons created. –returns resource--

ewt_button(int left, int top, string text)

Create a new button –returns resource--

ewt_centered_window(int width, int height [, string title ])

Open a centered window of the specified size –returns int--

ewt_checkbox_get_value(resource checkbox)

Retreives value of checkox resource –returns string--

ewt_checkbox_set_flags(resource checkbox, int flags, int sense)

Configures checkbox resource –returns void--

ewt_checkbox_set_value(resource checkbox, string value)

Sets the value of the checkbox –returns void--

ewt_checkbox_tree_add_item(resource checkboxtree, string text, mixed data, int flags, int index [, int ... ])

Adds new item to the checkbox tree –returns void--

ewt_checkbox_tree_find_item(resource checkboxtree, mixed data)

Finds an item in the checkbox tree –returns array--

ewt_checkbox_tree_get_current(resource checkboxtree)

Returns checkbox tree selected item –returns mixed--

ewt_checkbox_tree_get_entry_value(resource checkboxtree, mixed data)

Description string –returns string--

ewt_checkbox_tree_get_multi_selection(resource checkboxtree, string seqnum)

Description array –returns array--

ewt_checkbox_tree_get_selection(resource checkboxtree)

Description array –returns array--

ewt_checkbox_tree_multi(int left, int top, int height, string seq [, int flags ])

Description resource –returns resource--

ewt_checkbox_tree_set_current(resource checkboxtree, mixed data)

Description void –returns void--

ewt_checkbox_tree_set_entry_value(resource checkboxtree, mixed data, string value)

Description void –returns void--

ewt_checkbox_tree_set_entry(resource checkboxtree, mixed data, string text)

Description void –returns void--

ewt_checkbox_tree_set_width(resource checkbox_tree, int width)

Description void –returns void--

ewt_checkbox_tree(int left, int top, int height [, int flags ])

Description resource –returns resource--

ewt_checkbox(int left, int top, string text, string def_value [, string seq ])

Description resource –returns resource--

ewt_clear_key_buffer(void)

Discards the contents of the terminal's input buffer without waiting for additional input –returns void--

ewt_cls(void)

Description void –returns void--

ewt_compact_button(int left, int top, string text)

Description resource –returns resource--

ewt_component_add_callback(resource component, mixed func_name, mixed data)

Description void –returns void--

ewt_component_takes_focus(resource component, bool takes_focus)

Description void –returns void--

ewt_create_grid(int cols, int rows)

Description resource –returns resource--

ewt_cursor_off(void)

Description void –returns void--

ewt_cursor_on(void)

Description void –returns void--

ewt_delay(int microseconds)

Description void –returns void--

ewt_draw_form(resource form)

Description void –returns void--

ewt_draw_root_text(int left, int top, string text)

Displays the string text at the position indicated –returns void--

ewt_entry_get_value(resource entry)

Description string –returns string--

ewt_entry_set_filter(resource entry, callback filter, mixed data)

Description void –returns void--

ewt_entry_set_flags(resource entry, int flags, int sense)

Description void –returns void--

ewt_entry_set(resource entry, string value [, bool cursor_at_end ])

Description void –returns void--

ewt_entry(int left, int top, int width [, string init_value [, int flags ]])

Description resource –returns resource--

ewt_finished(void)

Uninitializes newt interface –returns int--

ewt_form_add_component(resource form, resource component)

Adds a single component to the form –returns void--

ewt_form_add_components(resource form, array components)

Add several components to the form –returns void--

ewt_form_add_hot_key(resource form, int key)

Description void –returns void--

ewt_form_destroy(resource form)

Destroys a form –returns void--

ewt_form_get_current(resource form)

Description resource –returns resource--

ewt_form_run(resource form, array &exit_struct)

Runs a form –returns void--

ewt_form_set_background(resource from, int background)

Description void –returns void--

ewt_form_set_height(resource form, int height)

Description void –returns void--

ewt_form_set_size(resource form)

Description void –returns void--

ewt_form_set_timer(resource form, int milliseconds)

Description void –returns void--

ewt_form_set_width(resource form, int width)

Description void –returns void--

ewt_form_watch_fd(resource form, resource stream [, int flags ])

Description void –returns void--

ewt_form ([ resource vert_bar [, string help [, int flags ]]])

Create a form –returns resource--

ewt_get_screen_size(int &cols, int &rows)

Fills in the passed references with the current size of the terminal –returns void--

ewt_grid_add_components_to_form(resource grid, resource form, bool recurse)

Description void –returns void--

ewt_grid_basic_window(resource text, resource middle, resource buttons)

Description resource –returns resource--

ewt_grid_free(resource grid, bool recurse)

Description void –returns void--

ewt_grid_get_size(resouce grid, int &width, int &height)

Description void –returns void--

ewt_grid_h_close_stacked(int element1_type, resource element1 [, int ... [, resource ... ]])

Description resource –returns resource--

ewt_grid_h_stacked(int element1_type, resource element1 [, int ... [, resource ... ]])

Description resource –returns resource--

ewt_grid_place(resource grid, int left, int top)

Description void –returns void--

ewt_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 –returns void--

ewt_grid_simple_window(resource text, resource middle, resource buttons)

Description resource –returns resource--

ewt_grid_v_close_stacked(int element1_type, resource element1 [, int ... [, resource ... ]])

Description resource –returns resource--

ewt_grid_v_stacked(int element1_type, resource element1 [, int ... [, resource ... ]])

Description resource –returns resource--

ewt_grid_wrapped_window_at(resource grid, string title, int left, int top)

Description void –returns void--

ewt_grid_wrapped_window(resource grid, string title)

Description void –returns void--

ewt_init(void)

Initialize newt –returns int--

ewt_label_set_text(resource label, string text)

Description void –returns void--

ewt_label(int left, int top, string text)

Description resource –returns resource--

ewt_listbox_append_entry(resource listbox, string text, mixed data)

Description void –returns void--

ewt_listbox_clear_selection(resource listbox)

Description void –returns void--

ewt_listbox_clear(resource listobx)

Description void –returns void--

ewt_listbox_delete_entry(resource listbox, mixed key)

Description void –returns void--

ewt_listbox_get_current(resource listbox)

Description string –returns string--

ewt_listbox_get_selection(resource listbox)

Description array –returns array--

ewt_listbox_insert_entry(resource listbox, string text, mixed data, mixed key)

Description void –returns void--

ewt_listbox_item_count(resource listbox)

Description int –returns int--

ewt_listbox_select_item(resource listbox, mixed key, int sense)

Description void –returns void--

ewt_listbox_set_current_by_key(resource listbox, mixed key)

Description void –returns void--

ewt_listbox_set_current(resource listbox, int num)

Description void –returns void--

ewt_listbox_set_data(resource listbox, int num, mixed data)

Description void –returns void--

ewt_listbox_set_entry(resource listbox, int num, string text)

Description void –returns void--

ewt_listbox_set_width(resource listbox, int width)

Description void –returns void--

ewt_listbox(int left, int top, int height [, int flags ])

Description resource –returns resource--

ewt_listitem_get_data(resource item)

Description mixed –returns mixed--

ewt_listitem_set(resource item, string text)

Description void –returns void--

ewt_listitem(int left, int top, string text, bool is_default, resouce prev_item, mixed data [, int flags ])

Description resource –returns resource--

ewt_open_window(int left, int top, int width, int height [, string title ])

Open a window of the specified size and position –returns int--

ewt_pop_help_line(void)

Replaces the current help line with the one from the stack –returns void--

ewt_pop_window(void)

Removes the top window from the display –returns void--

ewt_push_help_line ([ string text ])

Saves the current help line on a stack, and displays the new line –returns void--

ewt_radio_get_current(resource set_member)

Description resource –returns resource--

ewt_radiobutton(int left, int top, string text, bool is_default [, resource prev_button ])

Description resource –returns resource--

ewt_redraw_help_line(void)

Description void –returns void--

ewt_reflow_text(string text, int width, int flex_down, int flex_up, int &actual_width, int &actual_height)

Description string –returns string--

ewt_refresh(void)

Updates modified portions of the screen –returns void--

ewt_resize_screen ([ bool redraw ])

Description void –returns void--

ewt_resume(void)

Resume using the newt interface after calling newt_suspend() –returns void--

ewt_run_form(resource form)

Runs a form –returns resource--

ewt_scale_set(resource scale, int amount)

Description void –returns void--

ewt_scale(int left, int top, int width, int full_value)

Description resource –returns resource--

ewt_scrollbar_set(resource scrollbar, int where, int total)

Description void –returns void--

ewt_set_help_callback(mixed function)

Description void –returns void--

ewt_set_suspend_callback(callback function, mixed data)

Set a callback function which gets invoked when user presses the suspend key –returns void--

ewt_suspend(void)

Tells newt to return the terminal to its initial state –returns void--

ewt_textbox_get_num_lines(resource textbox)

Description int –returns int--

ewt_textbox_reflowed(int left, int top, char *text, int width, int flex_down, int flex_up [, int flags ])

Description resource –returns resource--

ewt_textbox_set_height(resource textbox, int height)

Description void –returns void--

ewt_textbox_set_text(resource textbox, string text)

Description void –returns void--

ewt_textbox(int left, int top, int width, int height [, int flags ])

Description resource –returns resource--

ewt_vertical_scrollbar(int left, int top, int height [, int normal_colorset [, int thumb_colorset ]])

Description resource –returns resource--

ewt_wait_for_key(void)

Doesn't return until a key has been pressed –returns void--

ewt_win_choice(string title, string button1_text, string button2_text, string format [, mixed args [, mixed ... ]])

Description int –returns int--

ewt_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 –returns int--

ewt_win_menu(string title, string text, int suggestedWidth, int flexDown, int flexUp, int maxListHeight, array items, int &listItem [, string button1 [, string ... ]])

Description int –returns int--

ewt_win_message(string title, string button_text, string format [, mixed args [, mixed ... ]])

Description void –returns void--

ewt_win_messagev(string title, string button_text, string format, array args)

Description void –returns void--

ewt_win_ternary(string title, string button1_text, string button2_text, string button3_text, string format [, mixed args [, mixed ... ]])

Description int –returns int--

ext(array &array)

Advance the internal array pointer of an array –returns mixed--

gettext(string msgid1, string msgid2, int n)

Plural version of gettext –returns string--

l_langinfo(int item)

Query language and locale information –returns string--

l2br(string string [, bool is_xhtml ])

Inserts HTML line breaks before all newlines in a string –returns string--

otes_body(string server, string mailbox, int msg_number)

Open the message msg_number in the specified mailbox on the specified server (leave serv –returns array--

otes_copy_db(string from_database_name, string to_database_name)

Copy a Lotus Notes database –returns bool--

otes_create_db(string database_name)

Create a Lotus Notes database –returns bool--

otes_create_note(string database_name, string form_name)

Create a note using form form_name –returns bool--

otes_drop_db(string database_name)

Drop a Lotus Notes database –returns bool--

otes_find_note(string database_name, string name [, string type ])

Returns a note id found in database_name –returns int--

otes_header_info(string server, string mailbox, int msg_number)

Open the message msg_number in the specified mailbox on the specified server (leave serv –returns object--

otes_list_msgs(string db)

Returns the notes from a selected database_name –returns bool--

otes_mark_read(string database_name, string user_name, string note_id)

Mark a note_id as read for the User user_name –returns bool--

otes_mark_unread(string database_name, string user_name, string note_id)

Mark a note_id as unread for the User user_name –returns bool--

otes_nav_create(string database_name, string name)

Create a navigator name, in database_name –returns bool--

otes_search(string database_name, string keywords)

Find notes that match keywords in database_name –returns array--

otes_unread(string database_name, string user_name)

Returns the unread note id's for the current User user_name –returns array--

otes_version(string database_name)

Get the version Lotus Notes –returns float--

sapi_request_headers(void)

Fetch all HTTP request headers –returns array--

sapi_response_headers(void)

Fetch all HTTP response headers –returns array--

sapi_virtual(string uri)

Perform an NSAPI sub-request –returns bool--

thmac(string clent, string data)

Obtain a nthmac key (needs 2 arguments) –returns string--

umber_format(float number [, int decimals ]) string number_format(float number, int decimals, string dec_point, string thousands_sep)

Format a number with grouped thousands –returns string--

b_clean(void)

Clean (erase) the output buffer –returns void--

b_deflatehandler(string data, int mode)

Deflate output handler –returns string--

b_end_clean(void)

Clean (erase) the output buffer and turn off output buffering –returns bool--

b_end_flush(void)

Flush (send) the output buffer and turn off output buffering –returns bool--

b_etaghandler(string data, int mode)

ETag output handler –returns string--

b_flush(void)

Flush (send) the output buffer –returns void--

b_get_clean(void)

Get current buffer contents and delete current output buffer –returns string--

b_get_contents(void)

Return the contents of the output buffer –returns string--

b_get_flush(void)

Flush the output buffer, return it as a string and turn off output buffering –returns string--

b_get_length(void)

Return the length of the output buffer –returns int--

b_get_level(void)

Return the nesting level of the output buffering mechanism –returns int--

b_get_status ([ bool full_status =FALSE ])

Get status of output buffers –returns array--

b_gzhandler(string buffer, int mode)

ob_start callback function to gzip output buffer –returns string--

b_iconv_handler(string contents, int status)

Convert character encoding as output buffer handler –returns string--

b_implicit_flush ([ int flag ])

Turn implicit flush on/off –returns void--

b_inflatehandler(string data, int mode)

Inflate output handler –returns string--

b_list_handlers(void)

List all output handlers in use –returns array--

b_start ([ callback output_callback [, int chunk_size [, bool erase ]]])

Turn on output buffering –returns bool--

b_tidyhandler(string input [, int mode ])

ob_start callback function to repair the buffer –returns string--

ci_bind_array_by_name(resource statement, string name, array &var_array, int max_table_length [, int max_item_length [, int type ]])

Binds PHP array to Oracle PL/SQL array by name –returns bool--

ci_bind_by_name(resource statement, string ph_name, mixed &variable [, int maxlength [, int type ]])

Binds the PHP variable to the Oracle placeholder –returns bool--

ci_cancel(resource statement)

Cancels reading from cursor –returns bool--

ci_close(resource connection)

Closes Oracle connection –returns bool--

ppend(mixed value)

Appends element to the collection –returns bool--

ssign(OCI-Collection from)

Assigns a value to the collection from another existing collection –returns bool--

ssignElem(int index, mixed value)

Assigns a value to the element of the collection –returns bool--

etElem(int index)

Returns value of the element –returns mixed--

ree(void)

Frees the resources associated with the collection object –returns bool--

ax(void)

Returns the maximum number of elements in the collection –returns int--

ize(void)

Returns size of the collection –returns int--

rim(int num)

Trims elements from the end of the collection –returns bool--

ci_commit(resource connection)

Commits outstanding statements –returns bool--

ci_connect(string username, string password [, string db [, string charset [, int session_mode ]]])

Establishes a connection to the Oracle server –returns resource--

ci_define_by_name(resource statement, string column_name, mixed &variable [, int type ])

Uses a PHP variable for the define-step during a SELECT –returns bool--

ci_error ([ resource source ])

Returns the last error found –returns array--

ci_execute(resource statement [, int mode ])

Executes a statement –returns bool--

ci_fetch_all(resource statement, array &output [, int skip [, int maxrows [, int flags ]]])

Fetches all rows of result data into an array –returns int--

ci_fetch_array(resource statement [, int mode ])

Returns the next row from the result data as an associative or numeric array, or both –returns array--

ci_fetch_assoc(resource statement)

Returns the next row from the result data as an associative array –returns array--

ci_fetch_object(resource statement)

Returns the next row from the result data as an object –returns object--

ci_fetch_row(resource statement)

Returns the next row from the result data as a numeric array –returns array--

ci_fetch(resource statement)

Fetches the next row into result-buffer –returns bool--

ci_field_is_null(resource statement, mixed field)

Checks if the field is NULL –returns bool--

ci_field_name(resource statement, int field)

Returns the name of a field from the statement –returns string--

ci_field_precision(resource statement, int field)

Tell the precision of a field –returns int--

ci_field_scale(resource statement, int field)

Tell the scale of the field –returns int--

ci_field_size(resource statement, mixed field)

Returns field's size –returns int--

ci_field_type_raw(resource statement, int field)

Tell the raw Oracle data type of the field –returns int--

ci_field_type(resource statement, int field)

Returns field's data type –returns mixed--

ci_free_statement(resource statement)

Frees all resources associated with statement or cursor –returns bool--

ci_internal_debug(bool onoff)

Enables or disables internal debug output –returns void--

ppend(OCI-Lob lob_from)

Appends data from the large object to another large object –returns bool--

lose(void)

Closes LOB descriptor –returns bool--

ci_lob_copy(OCI-Lob lob_to, OCI-Lob lob_from [, int length ])

Copies large object –returns bool--

of(void)

Tests for end-of-file on a large object's descriptor –returns bool--

rase ([ int offset [, int length ]])

Erases a specified portion of the internal LOB data –returns int--

xport(string filename [, int start [, int length ]])

Exports LOB's contents to a file –returns bool--

lush ([ int flag ])

Flushes/writes buffer of the LOB to the server –returns bool--

ree(void)

Frees resources associated with the LOB descriptor –returns bool--

etBuffering(void)

Returns current state of buffering for the large object –returns bool--

mport(string filename)

Imports file data to the LOB –returns bool--

ci_lob_is_equal(OCI-Lob lob1, OCI-Lob lob2)

Compares two LOB/FILE locators for equality –returns bool--

oad(void)

Returns large object's contents –returns string--

ead(int length)

Reads part of the large object –returns string--

ewind(void)

Moves the internal pointer to the beginning of the large object –returns bool--

ave(string data [, int offset ])

Saves data to the large object –returns bool--

CI-Lob->saveFile

Alias of oci_lob_import() –returns ?--

eek(int offset [, int whence ])

Sets the internal pointer of the large object –returns bool--

etBuffering(bool on_off)

Changes current state of buffering for the large object –returns bool--

ize(void)

Returns size of large object –returns int--

ell(void)

Returns current position of internal pointer of large object –returns int--

runcate ([ int length ])

Truncates large object –returns bool--

rite(string data [, int length ])

Writes data to the large object –returns int--

riteTemporary(string data [, int lob_type ])

Writes temporary large object –returns bool--

CI-Lob->writeToFile

Alias of oci_lob_export() –returns ?--

ci_new_collection(resource connection, string tdo [, string schema ])

Allocates new collection object –returns OCI-Collection--

ci_new_connect(string username, string password [, string db [, string charset [, int session_mode ]]])

Establishes a new connection to the Oracle server –returns resource--

ci_new_cursor(resource connection)

Allocates and returns a new cursor (statement handle) –returns resource--

ci_new_descriptor(resource connection [, int type ])

Initializes a new empty LOB or FILE descriptor –returns OCI-Lob--

ci_num_fields(resource statement)

Returns the number of result columns in a statement –returns int--

ci_num_rows(resource statement)

Returns number of rows affected during statement execution –returns int--

ci_parse(resource connection, string query)

Prepares Oracle statement for execution –returns resource--

ci_password_change(resource connection, string username, string old_password, string new_password) resource oci_password_change(string dbname, string username, string old_password, string new_password)

Changes password of Oracle's user –returns bool--

ci_pconnect(string username, string password [, string db [, string charset [, int session_mode ]]])

Connect to an Oracle database using a persistent connection –returns resource--

ci_result(resource statement, mixed field)

Returns field's value from the fetched row –returns mixed--

ci_rollback(resource connection)

Rolls back outstanding transaction –returns bool--

ci_server_version(resource connection)

Returns server version –returns string--

ci_set_prefetch(resource statement, int rows)

Sets number of rows to be prefetched –returns bool--

ci_statement_type(resource statement)

Returns the type of an OCI statement –returns string--

cibindbyname

Alias of oci_bind_by_name() –returns ?--

cicancel

Alias of oci_cancel() –returns ?--

cicloselob

Alias of OCI-Lob->close –returns ?--

cicollappend

Alias of OCI-Collection->append –returns ?--

cicollassign

Alias of OCI-Collection->assign –returns ?--

cicollassignelem

Alias of OCI-Collection->assignElem –returns ?--

cicollgetelem

Alias of OCI-Collection->getElem –returns ?--

cicollmax

Alias of OCI-Collection->max –returns ?--

cicollsize

Alias of OCI-Collection->size –returns ?--

cicolltrim

Alias of OCI-Collection->trim –returns ?--

cicolumnisnull

Alias of oci_field_is_null() –returns ?--

cicolumnname

Alias of oci_field_name() –returns ?--

cicolumnprecision

Alias of oci_field_precision() –returns ?--

cicolumnscale

Alias of oci_field_scale() –returns ?--

cicolumnsize

Alias of oci_field_size() –returns ?--

cicolumntype

Alias of oci_field_type() –returns ?--

cicolumntyperaw

Alias of oci_field_type_raw() –returns ?--

cicommit

Alias of oci_commit() –returns ?--

cidefinebyname

Alias of oci_define_by_name() –returns ?--

cierror

Alias of oci_error() –returns ?--

ciexecute

Alias of oci_execute() –returns ?--

cifetch

Alias of oci_fetch() –returns ?--

cifetchinto(resource statement, array &result [, int mode ])

Fetches the next row into an array (deprecated) –returns int--

cifetchstatement

Alias of oci_fetch_all() –returns ?--

cifreecollection

Alias of OCI-Collection->free –returns ?--

cifreecursor

Alias of oci_free_statement() –returns ?--

cifreedesc

Alias of OCI-Lob->free –returns ?--

cifreestatement

Alias of oci_free_statement() –returns ?--

ciinternaldebug

Alias of oci_internal_debug() –returns ?--

ciloadlob

Alias of OCI-Lob->load –returns ?--

cilogoff

Alias of oci_close() –returns ?--

cilogon

Alias of oci_connect() –returns ?--

cinewcollection

Alias of oci_new_collection() –returns ?--

cinewcursor

Alias of oci_new_cursor() –returns ?--

cinewdescriptor

Alias of oci_new_descriptor() –returns ?--

cinlogon

Alias of oci_new_connect() –returns ?--

cinumcols

Alias of oci_num_fields() –returns ?--

ciparse

Alias of oci_parse() –returns ?--

ciplogon

Alias of oci_pconnect() –returns ?--

ciresult

Alias of oci_result() –returns ?--

cirollback

Alias of oci_rollback() –returns ?--

cirowcount

Alias of oci_num_rows() –returns ?--

cisavelob

Alias of OCI-Lob->save –returns ?--

cisavelobfile

Alias of OCI-Lob->import –returns ?--

ciserverversion

Alias of oci_server_version() –returns ?--

cisetprefetch

Alias of oci_set_prefetch() –returns ?--

cistatementtype

Alias of oci_statement_type() –returns ?--

ciwritelobtofile

Alias of OCI-Lob->export –returns ?--

ciwritetemporarylob

Alias of OCI-Lob->writeTemporary –returns ?--

ctdec(string octal_string)

Octal to decimal –returns number--

dbc_autocommit(resource connection_id [, bool OnOff ])

Toggle autocommit behaviour –returns mixed--

dbc_binmode(resource result_id, int mode)

Handling of binary column data –returns bool--

dbc_close_all(void)

Close all ODBC connections –returns void--

dbc_close(resource connection_id)

Close an ODBC connection –returns void--

dbc_columnprivileges(resource connection_id, string qualifier, string owner, string table_name, string column_name)

Lists columns and associated privileges for the given table –returns resource--

dbc_columns(resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name ]]]])

Lists the column names in specified tables –returns resource--

dbc_commit(resource connection_id)

Commit an ODBC transaction –returns bool--

dbc_connect(string dsn, string user, string password [, int cursor_type ])

Connect to a datasource –returns resource--

dbc_cursor(resource result_id)

Get cursorname –returns string--

dbc_data_source(resource connection_id, int fetch_type)

Returns information about a current connection –returns array--

dbc_do

Alias of odbc_exec() –returns ?--

dbc_error ([ resource connection_id ])

Get the last error code –returns string--

dbc_errormsg ([ resource connection_id ])

Get the last error message –returns string--

dbc_exec(resource connection_id, string query_string [, int flags ])

Prepare and execute a SQL statement –returns resource--

dbc_execute(resource result_id [, array parameters_array ])

Execute a prepared statement –returns bool--

dbc_fetch_array(resource result [, int rownumber ])

Fetch a result row as an associative array –returns array--

dbc_fetch_into(resource result_id, array result_array [, int rownumber ])

Fetch one result row into array –returns int--

dbc_fetch_object(resource result [, int rownumber ])

Fetch a result row as an object –returns object--

dbc_fetch_row(resource result_id [, int row_number ])

Fetch a row –returns bool--

dbc_field_len(resource result_id, int field_number)

Get the length (precision) of a field –returns int--

dbc_field_name(resource result_id, int field_number)

Get the columnname –returns string--

dbc_field_num(resource result_id, string field_name)

Return column number –returns int--

dbc_field_precision

Alias of odbc_field_len() –returns ?--

dbc_field_scale(resource result_id, int field_number)

Get the scale of a field –returns int--

dbc_field_type(resource result_id, int field_number)

Datatype of a field –returns string--

dbc_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 –returns resource--

dbc_free_result(resource result_id)

Free resources associated with a result –returns bool--

dbc_gettypeinfo(resource connection_id [, int data_type ])

Retrieves information about data types supported by the data source –returns resource--

dbc_longreadlen(resource result_id, int length)

Handling of LONG columns –returns bool--

dbc_next_result(resource result_id)

Checks if multiple results are available –returns bool--

dbc_num_fields(resource result_id)

Number of columns in a result –returns int--

dbc_num_rows(resource result_id)

Number of rows in a result –returns int--

dbc_pconnect(string dsn, string user, string password [, int cursor_type ])

Open a persistent database connection –returns resource--

dbc_prepare(resource connection_id, string query_string)

Prepares a statement for execution –returns resource--

dbc_primarykeys(resource connection_id, string qualifier, string owner, string table)

Gets the primary keys for a table –returns resource--

dbc_procedurecolumns(resource connection_id) resource odbc_procedurecolumns(resource connection_id, string qualifier, string owner, string proc, string column)

Retrieve information about parameters to procedures –returns resource--

dbc_procedures(resource connection_id) resource odbc_procedures(resource connection_id, string qualifier, string owner, string name)

Get the list of procedures stored in a specific data source –returns resource--

dbc_result_all(resource result_id [, string format ])

Print result as HTML table –returns int--

dbc_result(resource result_id, mixed field)

Get result data –returns mixed--

dbc_rollback(resource connection_id)

Rollback a transaction –returns bool--

dbc_setoption(resource id, int function, int option, int param)

Adjust ODBC settings –returns bool--

dbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)

Retrieves special columns –returns resource--

dbc_statistics(resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy)

Retrieve statistics about a table –returns resource--

dbc_tableprivileges(resource connection_id, string qualifier, string owner, string name)

Lists tables and the privileges associated with each table –returns resource--

dbc_tables(resource connection_id [, string qualifier [, string owner [, string name [, string types ]]]])

Get the list of table names stored in a specific data source –returns resource--

penal_buffer_create(void)

Generate OpenAL buffer –returns resource--

penal_buffer_data(resource buffer, int format, string data, int freq)

Load a buffer with data –returns bool--

penal_buffer_destroy(resource buffer)

Destroys an OpenAL buffer –returns bool--

penal_buffer_get(resource buffer, int property)

Retrieve an OpenAL buffer property –returns int--

penal_buffer_loadwav(resource buffer, string wavfile)

Load a .wav file into a buffer –returns bool--

penal_context_create(resource device)

Create an audio processing context –returns resource--

penal_context_current(resource context)

Make the specified context current –returns bool--

penal_context_destroy(resource context)

Destroys a context –returns bool--

penal_context_process(resource context)

Process the specified context –returns bool--

penal_context_suspend(resource context)

Suspend the specified context –returns bool--

penal_device_close(resource device)

Close an OpenAL device –returns bool--

penal_device_open ([ string device_desc ])

Initialize the OpenAL audio layer –returns resource--

penal_listener_get(int property)

Retrieve a listener property –returns mixed--

penal_listener_set(int property, mixed setting)

Set a listener property –returns bool--

penal_source_create(void)

Generate a source resource –returns resource--

penal_source_destroy(resource source)

Destroy a source resource –returns bool--

penal_source_get(resource source, int property)

Retrieve an OpenAL source property –returns mixed--

penal_source_pause(resource source)

Pause the source –returns bool--

penal_source_play(resource source)

Start playing the source –returns bool--

penal_source_rewind(resource source)

Rewind the source –returns bool--

penal_source_set(resource source, int property, mixed setting)

Set source property –returns bool--

penal_source_stop(resource source)

Stop playing the source –returns bool--

penal_stream(resource source, int format, int rate)

Begin streaming on a source –returns resource--

pendir(string path [, resource context ])

Open directory handle –returns resource--

penlog(string ident, int option, int facility)

Open connection to system logger –returns bool--

penssl_csr_export_to_file(resource csr, string outfilename [, bool notext ])

Exports a CSR to a file –returns bool--

penssl_csr_export(resource csr, string &out [, bool notext ])

Exports a CSR as a string –returns bool--

penssl_csr_get_public_key(mixed csr [, bool use_shortnames ])

Returns the public key of a CERT –returns resource--

penssl_csr_get_subject(mixed csr [, bool use_shortnames ])

Returns the subject of a CERT –returns array--

penssl_csr_new(array dn, resource &privkey [, array configargs [, array extraattribs ]])

Generates a CSR –returns mixed--

penssl_csr_sign(mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial ]])

Sign a CSR with another certificate (or itself) and generate a certificate –returns resource--

penssl_error_string(void)

Return openSSL error message –returns string--

penssl_free_key(resource key_identifier)

Free key resource –returns void--

penssl_get_privatekey

Alias of openssl_pkey_get_private() –returns ?--

penssl_get_publickey

Alias of openssl_pkey_get_public() –returns ?--

penssl_open(string sealed_data, string &open_data, string env_key, mixed priv_key_id)

Open sealed data –returns bool--

penssl_pkcs12_export_to_file(mixed x509, string filename, mixed priv_key, string pass [, array args ])

Exports a PKCS#12 Compatible Certificate Store File –returns bool--

penssl_pkcs12_export(mixed x509, string &out, mixed priv_key, string pass [, array args ])

Exports a PKCS#12 Compatible Certificate Store File to variable. –returns bool--

penssl_pkcs12_read(mixed PKCS12, array &certs, string pass)

Parse a PKCS#12 Certificate Store into an array –returns bool--

penssl_pkcs7_decrypt(string infilename, string outfilename, mixed recipcert [, mixed recipkey ])

Decrypts an S/MIME encrypted message –returns bool--

penssl_pkcs7_encrypt(string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid ]])

Encrypt an S/MIME message –returns bool--

penssl_pkcs7_sign(string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts ]])

Sign an S/MIME message –returns bool--

penssl_pkcs7_verify(string filename, int flags [, string outfilename [, array cainfo [, string extracerts [, string content ]]]])

Verifies the signature of an S/MIME signed message –returns mixed--

penssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase [, array configargs ]])

Gets an exportable representation of a key into a file –returns bool--

penssl_pkey_export(mixed key, string &out [, string passphrase [, array configargs ]])

Gets an exportable representation of a key into a string –returns bool--

penssl_pkey_free(resource key)

Frees a private key –returns void--

penssl_pkey_get_details(resource key)

Returns an array with the key details –returns array--

penssl_pkey_get_private(mixed key [, string passphrase ])

Get a private key –returns resource--

penssl_pkey_get_public(mixed certificate)

Extract public key from certificate and prepare it for use –returns resource--

penssl_pkey_new ([ array configargs ])

Generates a new private key –returns resource--

penssl_private_decrypt(string data, string &decrypted, mixed key [, int padding ])

Decrypts data with private key –returns bool--

penssl_private_encrypt(string data, string &crypted, mixed key [, int padding ])

Encrypts data with private key –returns bool--

penssl_public_decrypt(string data, string &decrypted, mixed key [, int padding ])

Decrypts data with public key –returns bool--

penssl_public_encrypt(string data, string &crypted, mixed key [, int padding ])

Encrypts data with public key –returns bool--

penssl_seal(string data, string &sealed_data, array &env_keys, array pub_key_ids)

Seal (encrypt) data –returns int--

penssl_sign(string data, string &signature, mixed priv_key_id [, int signature_alg ])

Generate signature –returns bool--

penssl_verify(string data, string signature, mixed pub_key_id [, int signature_alg ])

Verify signature –returns int--

penssl_x509_check_private_key(mixed cert, mixed key)

Checks if a private key corresponds to a certificate –returns bool--

penssl_x509_checkpurpose(mixed x509cert, int purpose [, array cainfo [, string untrustedfile ]])

Verifies if a certificate can be used for a particular purpose –returns int--

penssl_x509_export_to_file(mixed x509, string outfilename [, bool notext ])

Exports a certificate to file –returns bool--

penssl_x509_export(mixed x509, string &output [, bool notext ])

Exports a certificate as a string –returns bool--

penssl_x509_free(resource x509cert)

Free certificate resource –returns void--

penssl_x509_parse(mixed x509cert [, bool shortnames ])

Parse an X509 certificate and return the information as an array –returns array--

penssl_x509_read(mixed x509certdata)

Parse an X.509 certificate and return a resource identifier for it –returns resource--

rd(string string)

Return ASCII value of character –returns int--

utput_add_rewrite_var(string name, string value)

Add URL rewriter values –returns bool--

utput_reset_rewrite_vars(void)

Reset URL rewriter values –returns bool--

verload(string class_name)

Enable property and method call overloading for a class –returns void--

verride_function(string function_name, string function_args, string function_code)

Overrides built-in functions –returns bool--

vrimos_close(int connection)

Closes the connection to ovrimos –returns void--

vrimos_commit(int connection_id)

Commits the transaction –returns bool--

vrimos_connect(string host, string dborport, string user, string password)

Connect to the specified database –returns int--

vrimos_cursor(int result_id)

Returns the name of the cursor –returns string--

vrimos_exec(int connection_id, string query)

Executes an SQL statement –returns int--

vrimos_execute(int result_id [, array parameters_array ])

Executes a prepared SQL statement –returns bool--

vrimos_fetch_into(int result_id, array &result_array [, string how [, int rownumber ]])

Fetches a row from the result set –returns bool--

vrimos_fetch_row(int result_id [, int how [, int row_number ]])

Fetches a row from the result set –returns bool--

vrimos_field_len(int result_id, int field_number)

Returns the length of the output column –returns int--

vrimos_field_name(int result_id, int field_number)

Returns the output column name –returns string--

vrimos_field_num(int result_id, string field_name)

Returns the (1-based) index of the output column –returns int--

vrimos_field_type(int result_id, int field_number)

Returns the type of the output column –returns int--

vrimos_free_result(int result_id)

Frees the specified result_id –returns bool--

vrimos_longreadlen(int result_id, int length)

Specifies how many bytes are to be retrieved from long datatypes –returns bool--

vrimos_num_fields(int result_id)

Returns the number of columns –returns int--

vrimos_num_rows(int result_id)

Returns the number of rows affected by update operations –returns int--

vrimos_prepare(int connection_id, string query)

Prepares an SQL statement –returns int--

vrimos_result_all(int result_id [, string format ])

Prints the whole result set as an HTML table –returns int--

vrimos_result(int result_id, mixed field)

Retrieves the output column –returns string--

vrimos_rollback(int connection_id)

Rolls back the transaction –returns bool--

ack(string format [, mixed args [, mixed ... ]])

Pack data into binary string –returns string--

arse_ini_file(string filename [, bool process_sections ])

Parse a configuration file –returns array--

arse_str(string str [, array &arr ])

Parses the string into variables –returns void--

arse_url(string url [, int component ])

Parse a URL and return its components –returns mixed--

arsekit_compile_file(string filename [, array &errors [, int options ]])

Compile a string of PHP code and return the resulting op array –returns array--

arsekit_compile_string(string phpcode [, array &errors [, int options ]])

Compile a string of PHP code and return the resulting op array –returns array--

arsekit_func_arginfo(mixed function)

Return information regarding function argument(s) –returns array--

assthru(string command [, int &return_var ])

Execute an external program and display raw output –returns void--

athinfo(string path [, int options ])

Returns information about a file path –returns mixed--

close(resource handle)

Closes process file pointer –returns int--

cntl_alarm(int seconds)

Set an alarm clock for delivery of a signal –returns int--

cntl_exec(string path [, array args [, array envs ]])

Executes specified program in current process space –returns void--

cntl_fork(void)

Forks the currently running process –returns int--

cntl_getpriority ([ int pid [, int process_identifier ]])

Get the priority of any process –returns int--

cntl_setpriority(int priority [, int pid [, int process_identifier ]])

Change the priority of any process –returns bool--

cntl_signal(int signo, callback handler [, bool restart_syscalls ])

Installs a signal handler –returns bool--

cntl_wait(int &status [, int options ])

Waits on or returns the status of a forked child –returns int--

cntl_waitpid(int pid, int &status [, int options ])

Waits on or returns the status of a forked child –returns int--

cntl_wexitstatus(int status)

Returns the return code of a terminated child –returns int--

cntl_wifexited(int status)

Checks if status code represents a normal exit –returns bool--

cntl_wifsignaled(int status)

Checks whether the status code represents a termination due to a signal –returns bool--

cntl_wifstopped(int status)

Checks whether the child process is currently stopped –returns bool--

cntl_wstopsig(int status)

Returns the signal which caused the child to stop –returns int--

cntl_wtermsig(int status)

Returns the signal which caused the child to terminate –returns int--

DF_activate_item(resource pdfdoc, int id)

Activate structure element or other content item –returns bool--

DF_add_annotation

Add annotation [deprecated] –returns ?--

DF_add_bookmark

Add bookmark for current page [deprecated] –returns ?--

DF_add_launchlink(resource pdfdoc, float llx, float lly, float urx, float ury, string filename)

Add launch annotation for current page [deprecated] –returns bool--

DF_add_locallink(resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest)

Add link annotation for current page [deprecated] –returns bool--

DF_add_nameddest(resource pdfdoc, string name, string optlist)

Create named destination –returns bool--

DF_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] –returns bool--

DF_add_outline

Add bookmark for current page [deprecated] –returns ?--

DF_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] –returns bool--

DF_add_table_cell(resource pdfdoc, int table, int column, int row, string text, string optlist)

Add a cell to a new or existing table –returns int--

DF_add_textflow(resource pdfdoc, int textflow, string text, string optlist)

Create Textflow or add text to existing Textflow –returns int--

DF_add_thumbnail(resource pdfdoc, int image)

Add thumbnail for current page –returns bool--

DF_add_weblink(resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url)

Add weblink for current page [deprecated] –returns bool--

DF_arc(resource p, float x, float y, float r, float alpha, float beta)

Draw a counterclockwise circular arc segment –returns bool--

DF_arcn(resource p, float x, float y, float r, float alpha, float beta)

Draw a clockwise circular arc segment –returns bool--

DF_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] –returns bool--

DF_begin_document(resource pdfdoc, string filename, string optlist)

Create new PDF file –returns int--

DF_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 –returns bool--

DF_begin_glyph(resource pdfdoc, string glyphname, float wx, float llx, float lly, float urx, float ury)

Start glyph definition for Type 3 font –returns bool--

DF_begin_item(resource pdfdoc, string tag, string optlist)

Open structure element or other content item –returns int--

DF_begin_layer(resource pdfdoc, int layer)

Start layer –returns bool--

DF_begin_page_ext(resource pdfdoc, float width, float height, string optlist)

Start new page –returns bool--

DF_begin_page(resource pdfdoc, float width, float height)

Start new page [deprecated] –returns bool--

DF_begin_pattern(resource pdfdoc, float width, float height, float xstep, float ystep, int painttype)

Start pattern definition –returns int--

DF_begin_template_ext(resource pdfdoc, float width, float height, string optlist)

Start template definition –returns int--

DF_begin_template(resource pdfdoc, float width, float height)

Start template definition [deprecated] –returns int--

DF_circle(resource pdfdoc, float x, float y, float r)

Draw a circle –returns bool--

DF_clip(resource p)

Clip to current path –returns bool--

DF_close_image(resource p, int image)

Close image –returns bool--

DF_close_pdi_page(resource p, int page)

Close the page handle –returns bool--

DF_close_pdi(resource p, int doc)

Close the input PDF document [deprecated] –returns bool--

DF_close(resource p)

Close pdf resource [deprecated] –returns bool--

DF_closepath_fill_stroke(resource p)

Close, fill and stroke current path –returns bool--

DF_closepath_stroke(resource p)

Close and stroke path –returns bool--

DF_closepath(resource p)

Close current path –returns bool--

DF_concat(resource p, float a, float b, float c, float d, float e, float f)

Concatenate a matrix to the CTM –returns bool--

DF_continue_text(resource p, string text)

Output text in next line –returns bool--

DF_create_3dview(resource pdfdoc, string username, string optlist)

Create 3D view –returns int--

DF_create_action(resource pdfdoc, string type, string optlist)

Create action for objects or events –returns int--

DF_create_annotation(resource pdfdoc, float llx, float lly, float urx, float ury, string type, string optlist)

Create rectangular annotation –returns bool--

DF_create_bookmark(resource pdfdoc, string text, string optlist)

Create bookmark –returns int--

DF_create_field(resource pdfdoc, float llx, float lly, float urx, float ury, string name, string type, string optlist)

Create form field –returns bool--

DF_create_fieldgroup(resource pdfdoc, string name, string optlist)

Create form field group –returns bool--

DF_create_gstate(resource pdfdoc, string optlist)

Create graphics state object –returns int--

DF_create_pvf(resource pdfdoc, string filename, string data, string optlist)

Create PDFlib virtual file –returns bool--

DF_create_textflow(resource pdfdoc, string text, string optlist)

Create textflow object –returns int--

DF_curveto(resource p, float x1, float y1, float x2, float y2, float x3, float y3)

Draw Bezier curve –returns bool--

DF_define_layer(resource pdfdoc, string name, string optlist)

Create layer definition –returns int--

DF_delete_pvf(resource pdfdoc, string filename)

Delete PDFlib virtual file –returns int--

DF_delete_table(resource pdfdoc, int table, string optlist)

Delete table object –returns bool--

DF_delete_textflow(resource pdfdoc, int textflow)

Delete textflow object –returns bool--

DF_delete(resource pdfdoc)

Delete PDFlib object –returns bool--

DF_encoding_set_char(resource pdfdoc, string encoding, int slot, string glyphname, int uv)

Add glyph name and/or Unicode value –returns bool--

DF_end_document(resource pdfdoc, string optlist)

Close PDF file –returns bool--

DF_end_font(resource pdfdoc)

Terminate Type 3 font definition –returns bool--

DF_end_glyph(resource pdfdoc)

Terminate glyph definition for Type 3 font –returns bool--

DF_end_item(resource pdfdoc, int id)

Close structure element or other content item –returns bool--

DF_end_layer(resource pdfdoc)

Deactivate all active layers –returns bool--

DF_end_page_ext(resource pdfdoc, string optlist)

Finish page –returns bool--

DF_end_page(resource p)

Finish page –returns bool--

DF_end_pattern(resource p)

Finish pattern –returns bool--

DF_end_template(resource p)

Finish template –returns bool--

DF_endpath(resource p)

End current path –returns bool--

DF_fill_imageblock(resource pdfdoc, int page, string blockname, int image, string optlist)

Fill image block with variable data –returns int--

DF_fill_pdfblock(resource pdfdoc, int page, string blockname, int contents, string optlist)

Fill PDF block with variable data –returns int--

DF_fill_stroke(resource p)

Fill and stroke path –returns bool--

DF_fill_textblock(resource pdfdoc, int page, string blockname, string text, string optlist)

Fill text block with variable data –returns int--

DF_fill(resource p)

Fill current path –returns bool--

DF_findfont(resource p, string fontname, string encoding, int embed)

Prepare font for later use [deprecated] –returns int--

DF_fit_image(resource pdfdoc, int image, float x, float y, string optlist)

Place image or template –returns bool--

DF_fit_pdi_page(resource pdfdoc, int page, float x, float y, string optlist)

Place imported PDF page –returns bool--

DF_fit_table(resource pdfdoc, int table, float llx, float lly, float urx, float ury, string optlist)

Place table on page –returns string--

DF_fit_textflow(resource pdfdoc, int textflow, float llx, float lly, float urx, float ury, string optlist)

Format textflow in rectangular area –returns string--

DF_fit_textline(resource pdfdoc, string text, float x, float y, string optlist)

Place single line of text –returns bool--

DF_get_apiname(resource pdfdoc)

Get name of unsuccessfull API function –returns string--

DF_get_buffer(resource p)

Get PDF output buffer –returns string--

DF_get_errmsg(resource pdfdoc)

Get error text –returns string--

DF_get_errnum(resource pdfdoc)

Get error number –returns int--

DF_get_font

Get font [deprecated] –returns ?--

DF_get_fontname

Get font name [deprecated] –returns ?--

DF_get_fontsize

Font handling [deprecated] –returns ?--

DF_get_image_height

Get image height [deprecated] –returns ?--

DF_get_image_width

Get image width [deprecated] –returns ?--

DF_get_majorversion(void)

Get major version number [deprecated] –returns int--

DF_get_minorversion(void)

Get minor version number [deprecated] –returns int--

DF_get_parameter(resource p, string key, float modifier)

Get string parameter –returns string--

DF_get_pdi_parameter(resource p, string key, int doc, int page, int reserved)

Get PDI string parameter [deprecated] –returns string--

DF_get_pdi_value(resource p, string key, int doc, int page, int reserved)

Get PDI numerical parameter [deprecated] –returns float--

DF_get_value(resource p, string key, float modifier)

Get numerical parameter –returns float--

DF_info-font(resource pdfdoc, int font, string keyword, string optlist)

Query detailed information about a loaded font –returns float--

DF_info_matchbox(resource pdfdoc, string boxname, int num, string keyword)

Query matchbox information –returns float--

DF_info_table(resource pdfdoc, int table, string keyword)

Retrieve table information –returns float--

DF_info_textflow(resource pdfdoc, int textflow, string keyword)

Query textflow state –returns float--

DF_info_textline(resource pdfdoc, string text, string keyword, string optlist)

Perform textline formatting and query metrics –returns float--

DF_initgraphics(resource p)

Reset graphic state –returns bool--

DF_lineto(resource p, float x, float y)

Draw a line –returns bool--

DF_load_3ddata(resource pdfdoc, string filename, string optlist)

Load 3D model –returns int--

DF_load_font(resource pdfdoc, string fontname, string encoding, string optlist)

Search and prepare font –returns int--

DF_load_iccprofile(resource pdfdoc, string profilename, string optlist)

Search and prepare ICC profile –returns int--

DF_load_image(resource pdfdoc, string imagetype, string filename, string optlist)

Open image file –returns int--

DF_makespotcolor(resource p, string spotname)

Make spot color –returns int--

DF_moveto(resource p, float x, float y)

Set current point –returns bool--

DF_new()

Create PDFlib object –returns resource--

DF_open_ccitt(resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1)

Open raw CCITT image [deprecated] –returns int--

DF_open_file(resource p, string filename)

Create PDF file [deprecated] –returns bool--

DF_open_gif

Open GIF image [deprecated] –returns ?--

DF_open_image_file(resource p, string imagetype, string filename, string stringparam, int intparam)

Read image from file [deprecated] –returns int--

DF_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] –returns int--

DF_open_jpeg

Open JPEG image [deprecated] –returns ?--

DF_open_memory_image(resource p, resource image)

Open image created with PHP's image functions [not supported] –returns int--

DF_open_pdi_page(resource p, int doc, int pagenumber, string optlist)

Prepare a page –returns int--

DF_open_pdi(resource pdfdoc, string filename, string optlist, int len)

Open PDF file [deprecated] –returns int--

DF_open_tiff

Open TIFF image [deprecated] –returns ?--

DF_pcos_get_number(resource p, int doc, string path)

Get value of pCOS path with type number or boolean –returns float--

DF_pcos_get_stream(resource p, int doc, string optlist, string path)

Get contents of pCOS path with type stream, fstream, or string –returns string--

DF_pcos_get_string(resource p, int doc, string path)

Get value of pCOS path with type name, string, or boolean –returns string--

DF_place_image(resource pdfdoc, int image, float x, float y, float scale)

Place image on the page [deprecated] –returns bool--

DF_place_pdi_page(resource pdfdoc, int page, float x, float y, float sx, float sy)

Place PDF page [deprecated] –returns bool--

DF_process_pdi(resource pdfdoc, int doc, int page, string optlist)

Process imported PDF document –returns int--

DF_rect(resource p, float x, float y, float width, float height)

Draw rectangle –returns bool--

DF_restore(resource p)

Restore graphics state –returns bool--

DF_resume_page(resource pdfdoc, string optlist)

Resume page –returns bool--

DF_rotate(resource p, float phi)

Rotate coordinate system –returns bool--

DF_save(resource p)

Save graphics state –returns bool--

DF_scale(resource p, float sx, float sy)

Scale coordinate system –returns bool--

DF_set_border_color(resource p, float red, float green, float blue)

Set border color of annotations [deprecated] –returns bool--

DF_set_border_dash(resource pdfdoc, float black, float white)

Set border dash style of annotations [deprecated] –returns bool--

DF_set_border_style(resource pdfdoc, string style, float width)

Set border style of annotations [deprecated] –returns bool--

DF_set_char_spacing

Set character spacing [deprecated] –returns ?--

DF_set_duration

Set duration between pages [deprecated] –returns ?--

DF_set_gstate(resource pdfdoc, int gstate)

Activate graphics state object –returns bool--

DF_set_horiz_scaling

Set horizontal text scaling [deprecated] –returns ?--

DF_set_info_author

Fill the author document info field [deprecated] –returns ?--

DF_set_info_creator

Fill the creator document info field [deprecated] –returns ?--

DF_set_info_keywords

Fill the keywords document info field [deprecated] –returns ?--

DF_set_info_subject

Fill the subject document info field [deprecated] –returns ?--

DF_set_info_title

Fill the title document info field [deprecated] –returns ?--

DF_set_info(resource p, string key, string value)

Fill document info field –returns bool--

DF_set_layer_dependency(resource pdfdoc, string type, string optlist)

Define relationships among layers –returns bool--

DF_set_leading

Set distance between text lines [deprecated] –returns ?--

DF_set_parameter(resource p, string key, string value)

Set string parameter –returns bool--

DF_set_text_matrix

Set text matrix [deprecated] –returns ?--

DF_set_text_pos(resource p, float x, float y)

Set text position –returns bool--

DF_set_text_rendering

Determine text rendering [deprecated] –returns ?--

DF_set_text_rise

Set text rise [deprecated] –returns ?--

DF_set_value(resource p, string key, float value)

Set numerical parameter –returns bool--

DF_set_word_spacing

Set spacing between words [deprecated] –returns ?--

DF_setcolor(resource p, string fstype, string colorspace, float c1, float c2, float c3, float c4)

Set fill and stroke color –returns bool--

DF_setdash(resource pdfdoc, float b, float w)

Set simple dash pattern –returns bool--

DF_setdashpattern(resource pdfdoc, string optlist)

Set dash pattern –returns bool--

DF_setflat(resource pdfdoc, float flatness)

Set flatness –returns bool--

DF_setfont(resource pdfdoc, int font, float fontsize)

Set font –returns bool--

DF_setgray_fill(resource p, float g)

Set fill color to gray [deprecated] –returns bool--

DF_setgray_stroke(resource p, float g)

Set stroke color to gray [deprecated] –returns bool--

DF_setgray(resource p, float g)

Set color to gray [deprecated] –returns bool--

DF_setlinecap(resource p, int linecap)

Set linecap parameter –returns bool--

DF_setlinejoin(resource p, int value)

Set linejoin parameter –returns bool--

DF_setlinewidth(resource p, float width)

Set line width –returns bool--

DF_setmatrix(resource p, float a, float b, float c, float d, float e, float f)

Set current transformation matrix –returns bool--

DF_setmiterlimit(resource pdfdoc, float miter)

Set miter limit –returns bool--

DF_setpolydash

Set complicated dash pattern [deprecated] –returns ?--

DF_setrgbcolor_fill(resource p, float red, float green, float blue)

Set fill rgb color values [deprecated] –returns bool--

DF_setrgbcolor_stroke(resource p, float red, float green, float blue)

Set stroke rgb color values [deprecated] –returns bool--

DF_setrgbcolor(resource p, float red, float green, float blue)

Set fill and stroke rgb color values [deprecated] –returns bool--

DF_shading_pattern(resource pdfdoc, int shading, string optlist)

Define shading pattern –returns int--

DF_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 –returns int--

DF_shfill(resource pdfdoc, int shading)

Fill area with shading –returns bool--

DF_show_boxed(resource p, string text, float left, float top, float width, float height, string mode, string feature)

Output text in a box [deprecated] –returns int--

DF_show_xy(resource p, string text, float x, float y)

Output text at given position –returns bool--

DF_show(resource pdfdoc, string text)

Output text at current position –returns bool--

DF_skew(resource p, float alpha, float beta)

Skew the coordinate system –returns bool--

DF_stringwidth(resource p, string text, int font, float fontsize)

Return width of text –returns float--

DF_stroke(resource p)

Stroke path –returns bool--

DF_suspend_page(resource pdfdoc, string optlist)

Suspend page –returns bool--

DF_translate(resource p, float tx, float ty)

Set origin of coordinate system –returns bool--

DF_utf16_to_utf8(resource pdfdoc, string utf16string)

Convert string from UTF-16 to UTF-8 –returns string--

DF_utf32_to_utf16(resource pdfdoc, string utf32string, string ordering)

Convert string from UTF-32 to UTF-16 –returns string--

DF_utf8_to_utf16(resource pdfdoc, string utf8string, string ordering)

Convert string from UTF-8 to UTF-16 –returns string--

DO::pgsqlLOBCreate(void)

Creates a new large object –returns string--

DO::pgsqlLOBOpen(string oid [, string mode ])

Opens an existing large object stream –returns resource--

DO::pgsqlLOBUnlink(string oid)

Deletes the large object –returns bool--

qliteCreateAggregate(string function_name, callback step_func, callback finalize_func [, int num_args ]) step(mixed context, int rownumber, mixed value1 [, mixed value2 [, mixed .. ]]) fini(mixed context, int rownumber)

Registers an aggregating User Defined Function for use in SQL statements –returns bool--

qliteCreateFunction(string function_name, callback callback [, int num_args ])

Registers a User Defined Function for use in SQL statements –returns bool--

fsockopen(string hostname [, int port [, int &errno [, string &errstr [, float timeout ]]]])

Open persistent Internet or Unix domain socket connection –returns resource--

g_affected_rows(resource result)

Returns number of affected records (tuples) –returns int--

g_cancel_query(resource connection)

Cancel an asynchronous query –returns bool--

g_client_encoding ([ resource connection ])

Gets the client encoding –returns string--

g_close ([ resource connection ])

Closes a PostgreSQL connection –returns bool--

g_connect(string connection_string [, int connect_type ])

Open a PostgreSQL connection –returns resource--

g_connection_busy(resource connection)

Get connection is busy or not –returns bool--

g_connection_reset(resource connection)

Reset connection (reconnect) –returns bool--

g_connection_status(resource connection)

Get connection status –returns int--

g_convert(resource connection, string table_name, array assoc_array [, int options ])

Convert associative array values into suitable for SQL statement –returns array--

g_copy_from(resource connection, string table_name, array rows [, string delimiter [, string null_as ]])

Insert records into a table from an array –returns bool--

g_copy_to(resource connection, string table_name [, string delimiter [, string null_as ]])

Copy a table to an array –returns array--

g_dbname ([ resource connection ])

Get the database name –returns string--

g_delete(resource connection, string table_name, array assoc_array [, int options ])

Deletes records –returns mixed--

g_end_copy ([ resource connection ])

Sync with PostgreSQL backend –returns bool--

g_escape_bytea ([ resource connection ], string data)

Escape a string for insertion into a bytea field –returns string--

g_escape_string ([ resource connection ], string data)

Escape a string for insertion into a text field –returns string--

g_execute(resource connection, string stmtname, array params) resource pg_execute(string stmtname, array params)

Sends a request to execute a prepared statement with given parameters, and waits for the result. –returns resource--

g_fetch_all_columns(resource result [, int column ])

Fetches all rows in a particular result column as an array –returns array--

g_fetch_all(resource result)

Fetches all rows from a result as an array –returns array--

g_fetch_array(resource result [, int row [, int result_type ]])

Fetch a row as an array –returns array--

g_fetch_assoc(resource result [, int row ])

Fetch a row as an associative array –returns array--

g_fetch_object(resource result [, int row [, int result_type ]]) object pg_fetch_object(resource result [, int row [, string class_name [, array params ]]])

Fetch a row as an object –returns object--

g_fetch_result(resource result, int row, mixed field) string pg_fetch_result(resource result, mixed field)

Returns values from a result resource –returns string--

g_fetch_row(resource result [, int row ])

Get a row as an enumerated array –returns array--

g_field_is_null(resource result, int row, mixed field) int pg_field_is_null(resource result, mixed field)

Test if a field is SQL NULL –returns int--

g_field_name(resource result, int field_number)

Returns the name of a field –returns string--

g_field_num(resource result, string field_name)

Returns the field number of the named field –returns int--

g_field_prtlen(resource result, int row_number, mixed field_name_or_number) int pg_field_prtlen(resource result, mixed field_name_or_number)

Returns the printed length –returns int--

g_field_size(resource result, int field_number)

Returns the internal storage size of the named field –returns int--

g_field_table(resource result, int field_number [, bool oid_only ])

Returns the name or oid of the tables field –returns mixed--

g_field_type_oid(resource result, int field_number)

Returns the type ID (OID) for the corresponding field number –returns int--

g_field_type(resource result, int field_number)

Returns the type name for the corresponding field number –returns string--

g_free_result(resource result)

Free result memory –returns bool--

g_get_notify(resource connection [, int result_type ])

Gets SQL NOTIFY message –returns array--

g_get_pid(resource connection)

Gets the backend's process ID –returns int--

g_get_result ([ resource connection ])

Get asynchronous query result –returns resource--

g_host ([ resource connection ])

Returns the host name associated with the connection –returns string--

g_insert(resource connection, string table_name, array assoc_array [, int options ])

Insert array into table –returns mixed--

g_last_error ([ resource connection ])

Get the last error message string of a connection –returns string--

g_last_notice(resource connection)

Returns the last notice message from PostgreSQL server –returns string--

g_last_oid(resource result)

Returns the last row's OID –returns string--

g_lo_close(resource large_object)

Close a large object –returns bool--

g_lo_create ([ resource connection [, mixed object_id ]]) int pg_lo_create(mixed object_id)

Create a large object –returns int--

g_lo_export(resource connection, int oid, string pathname) bool pg_lo_export(int oid, string pathname)

Export a large object to file –returns bool--

g_lo_import(resource connection, string pathname, mixed object_id) int pg_lo_import(string pathname, mixed object_id) int pg_lo_import(string pathname [, resource connection ])

Import a large object from file –returns int--

g_lo_open(resource connection, int oid, string mode)

Open a large object –returns resource--

g_lo_read_all(resource large_object)

Reads an entire large object and send straight to browser –returns int--

g_lo_read(resource large_object [, int len ])

Read a large object –returns string--

g_lo_seek(resource large_object, int offset [, int whence ])

Seeks position within a large object –returns bool--

g_lo_tell(resource large_object)

Returns current seek position a of large object –returns int--

g_lo_unlink(resource connection, int oid)

Delete a large object –returns bool--

g_lo_write(resource large_object, string data [, int len ])

Write to a large object –returns int--

g_meta_data(resource connection, string table_name)

Get meta data for table –returns array--

g_num_fields(resource result)

Returns the number of fields in a result –returns int--

g_num_rows(resource result)

Returns the number of rows in a result –returns int--

g_options ([ resource connection ])

Get the options associated with the connection –returns string--

g_parameter_status(resource connection, string param_name) string pg_parameter_status(string param_name)

Looks up a current parameter setting of the server. –returns string--

g_pconnect(string connection_string [, int connect_type ])

Open a persistent PostgreSQL connection –returns resource--

g_ping ([ resource connection ])

Ping database connection –returns bool--

g_port ([ resource connection ])

Return the port number associated with the connection –returns int--

g_prepare(resource connection, string stmtname, string query) resource pg_prepare(string stmtname, string query)

Submits a request to create a prepared statement with the given parameters, and waits for completion. –returns resource--

g_put_line(string data) bool pg_put_line(resource connection, string data)

Send a NULL-terminated string to PostgreSQL backend –returns bool--

g_query_params(resource connection, string query, array params) resource pg_query_params(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. –returns resource--

g_query(string query) resource pg_query(resource connection, string query)

Execute a query –returns resource--

g_result_error_field(resource result, int fieldcode)

Returns an individual field of an error report. –returns string--

g_result_error(resource result)

Get error message associated with result –returns string--

g_result_seek(resource result, int offset)

Set internal row offset in result resource –returns bool--

g_result_status(resource result [, int type ])

Get status of query result –returns mixed--

g_select(resource connection, string table_name, array assoc_array [, int options ])

Select records –returns mixed--

g_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). –returns bool--

g_send_prepare(resource connection, string stmtname, string query)

Sends a request to create a prepared statement with the given parameters, without waiting for completion. –returns bool--

g_send_query_params(resource connection, string query, array params)

Submits a command and separate parameters to the server without waiting for the result(s). –returns bool--

g_send_query(resource connection, string query)

Sends asynchronous query –returns bool--

g_set_client_encoding(string encoding) int pg_set_client_encoding(resource connection, string encoding)

Set the client encoding –returns int--

g_set_error_verbosity(resource connection, int verbosity) int pg_set_error_verbosity(int verbosity)

Determines the verbosity of messages returned by pg_last_error() and pg_result_error(). –returns int--

g_trace(string pathname [, string mode [, resource connection ]])

Enable tracing a PostgreSQL connection –returns bool--

g_transaction_status(resource connection)

Returns the current in-transaction status of the server. –returns int--

g_tty ([ resource connection ])

Return the TTY name associated with the connection –returns string--

g_unescape_bytea(string data)

Unescape binary for bytea type –returns string--

g_untrace ([ resource connection ])

Disable tracing of a PostgreSQL connection –returns bool--

g_update(resource connection, string table_name, array data, array condition [, int options ])

Update table –returns mixed--

g_version ([ resource connection ])

Returns an array with client, protocol and server version (when available) –returns array--

hp_check_syntax(string filename [, string &error_message ])

Check the PHP syntax of (and execute) the specified file –returns bool--

hp_ini_loaded_file(void)

Retrieve a path to the loaded php.ini file –returns string--

hp_ini_scanned_files(void)

Return a list of .ini files parsed from the additional ini dir –returns string--

hp_logo_guid(void)

Gets the logo guid –returns string--

hp_sapi_name(void)

Returns the type of interface between web server and PHP –returns string--

hp_strip_whitespace(string filename)

Return source with stripped comments and whitespace –returns string--

hp_uname ([ string mode ])

Returns information about the operating system PHP is running on –returns string--

hpcredits ([ int flag ])

Prints out the credits for PHP –returns bool--

hpinfo ([ int what ])

Outputs lots of PHP information –returns bool--

hpversion ([ string extension ])

Gets the current PHP version –returns string--

i(void)

Get value of pi –returns float--

ng2wbmp(string pngname, string wbmpname, int dest_height, int dest_width, int threshold)

Convert PNG image file to WBMP image file –returns bool--

open(string command, string mode)

Opens process file pointer –returns resource--

os

Alias of current() –returns ?--

osix_access(string file [, int mode ])

Determine accessibility of a file –returns bool--

osix_ctermid(void)

Get path name of controlling terminal –returns string--

osix_get_last_error(void)

Retrieve the error number set by the last posix function that failed –returns int--

osix_getcwd(void)

Pathname of current directory –returns string--

osix_getegid(void)

Return the effective group ID of the current process –returns int--

osix_geteuid(void)

Return the effective user ID of the current process –returns int--

osix_getgid(void)

Return the real group ID of the current process –returns int--

osix_getgrgid(int gid)

Return info about a group by group id –returns array--

osix_getgrnam(string name)

Return info about a group by name –returns array--

osix_getgroups(void)

Return the group set of the current process –returns array--

osix_getlogin(void)

Return login name –returns string--

osix_getpgid(int pid)

Get process group id for job control –returns int--

osix_getpgrp(void)

Return the current process group identifier –returns int--

osix_getpid(void)

Return the current process identifier –returns int--

osix_getppid(void)

Return the parent process identifier –returns int--

osix_getpwnam(string username)

Return info about a user by username –returns array--

osix_getpwuid(int uid)

Return info about a user by user id –returns array--

osix_getrlimit(void)

Return info about system resource limits –returns array--

osix_getsid(int pid)

Get the current sid of the process –returns int--

osix_getuid(void)

Return the real user ID of the current process –returns int--

osix_initgroups(string name, int base_group_id)

Calculate the group access list –returns bool--

osix_isatty(int fd)

Determine if a file descriptor is an interactive terminal –returns bool--

osix_kill(int pid, int sig)

Send a signal to a process –returns bool--

osix_mkfifo(string pathname, int mode)

Create a fifo special file (a named pipe) –returns bool--

osix_mknod(string pathname, int mode [, int major [, int minor ]])

Create a special or ordinary file (POSIX.1) –returns bool--

osix_setegid(int gid)

Set the effective GID of the current process –returns bool--

osix_seteuid(int uid)

Set the effective UID of the current process –returns bool--

osix_setgid(int gid)

Set the GID of the current process –returns bool--

osix_setpgid(int pid, int pgid)

Set process group id for job control –returns bool--

osix_setsid(void)

Make the current process a session leader –returns int--

osix_setuid(int uid)

Set the UID of the current process –returns bool--

osix_strerror(int errno)

Retrieve the system error message associated with the given errno –returns string--

osix_times(void)

Get process times –returns array--

osix_ttyname(int fd)

Determine terminal device name –returns string--

osix_uname(void)

Get system name –returns array--

ow(number base, number exp)

Exponential expression –returns number--

reg_grep(string pattern, array input [, int flags ])

Return array entries that match the pattern –returns array--

reg_last_error(void)

Returns the error code of the last PCRE regex execution –returns int--

reg_match_all(string pattern, string subject, array &matches [, int flags [, int offset ]])

Perform a global regular expression match –returns int--

reg_match(string pattern, string subject [, array &matches [, int flags [, int offset ]]])

Perform a regular expression match –returns int--

reg_quote(string str [, string delimiter ])

Quote regular expression characters –returns string--

reg_replace_callback(mixed pattern, callback callback, mixed subject [, int limit [, int &count ]])

Perform a regular expression search and replace using a callback –returns mixed--

reg_replace(mixed pattern, mixed replacement, mixed subject [, int limit [, int &count ]])

Perform a regular expression search and replace –returns mixed--

reg_split(string pattern, string subject [, int limit [, int flags ]])

Split string by a regular expression –returns array--

rev(array &array)

Rewind the internal array pointer –returns mixed--

rint_r(mixed expression [, bool return ])

Prints human-readable information about a variable –returns mixed--

rint(string arg)

Output a string –returns int--

rinter_abort(resource printer_handle)

Deletes the printer's spool file –returns void--

rinter_close(resource printer_handle)

Close an open printer connection –returns void--

rinter_create_brush(int style, string color)

Create a new brush –returns resource--

rinter_create_dc(resource printer_handle)

Create a new device context –returns void--

rinter_create_font(string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation)

Create a new font –returns resource--

rinter_create_pen(int style, int width, string color)

Create a new pen –returns resource--

rinter_delete_brush(resource brush_handle)

Delete a brush –returns void--

rinter_delete_dc(resource printer_handle)

Delete a device context –returns bool--

rinter_delete_font(resource font_handle)

Delete a font –returns void--

rinter_delete_pen(resource pen_handle)

Delete a pen –returns void--

rinter_draw_bmp(resource printer_handle, string filename, int x, int y [, int width ], int height)

Draw a bmp –returns bool--

rinter_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 –returns void--

rinter_draw_elipse(resource printer_handle, int ul_x, int ul_y, int lr_x, int lr_y)

Draw an ellipse –returns void--

rinter_draw_line(resource printer_handle, int from_x, int from_y, int to_x, int to_y)

Draw a line –returns void--

rinter_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 –returns void--

rinter_draw_rectangle(resource printer_handle, int ul_x, int ul_y, int lr_x, int lr_y)

Draw a rectangle –returns void--

rinter_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 –returns void--

rinter_draw_text(resource printer_handle, string text, int x, int y)

Draw text –returns void--

rinter_end_doc(resource printer_handle)

Close document –returns bool--

rinter_end_page(resource printer_handle)

Close active page –returns bool--

rinter_get_option(resource printer_handle, string option)

Retrieve printer configuration data –returns mixed--

rinter_list(int enumtype [, string name [, int level ]])

Return an array of printers attached to the server –returns array--

rinter_logical_fontheight(resource printer_handle, int height)

Get logical font height –returns int--

rinter_open ([ string printername ])

Opens a connection to a printer –returns resource--

rinter_select_brush(resource printer_handle, resource brush_handle)

Select a brush –returns void--

rinter_select_font(resource printer_handle, resource font_handle)

Select a font –returns void--

rinter_select_pen(resource printer_handle, resource pen_handle)

Select a pen –returns void--

rinter_set_option(resource printer_handle, int option, mixed value)

Configure the printer connection –returns bool--

rinter_start_doc(resource printer_handle [, string document ])

Start a new document –returns bool--

rinter_start_page(resource printer_handle)

Start a new page –returns bool--

rinter_write(resource printer_handle, string content)

Write data to the printer –returns bool--

rintf(string format [, mixed args [, mixed ... ]])

Output a formatted string –returns int--

roc_close(resource process)

Close a process opened by proc_open() and return the exit code of that process. –returns int--

roc_get_status(resource process)

Get information about a process opened by proc_open() –returns array--

roc_nice(int increment)

Change the priority of the current process –returns bool--

roc_open(string cmd, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options ]]])

Execute a command and open file pointers for input/output –returns resource--

roc_terminate(resource process [, int signal ])

Kills a process opened by proc_open –returns bool--

roperty_exists(mixed class, string property)

Checks if the object or class has a property –returns bool--

s_add_bookmark(resource psdoc, string text [, int parent [, int open ]])

Add bookmark to current page –returns int--

s_add_launchlink(resource psdoc, float llx, float lly, float urx, float ury, string filename)

Adds link which launches file –returns bool--

s_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 –returns bool--

s_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 –returns bool--

s_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 –returns bool--

s_add_weblink(resource psdoc, float llx, float lly, float urx, float ury, string url)

Adds link to a web location –returns bool--

s_arc(resource psdoc, float x, float y, float radius, float alpha, float beta)

Draws an arc counterclockwise –returns bool--

s_arcn(resource psdoc, float x, float y, float radius, float alpha, float beta)

Draws an arc clockwise –returns bool--

s_begin_page(resource psdoc, float width, float height)

Start a new page –returns bool--

s_begin_pattern(resource psdoc, float width, float height, float xstep, float ystep, int painttype)

Start a new pattern –returns int--

s_begin_template(resource psdoc, float width, float height)

Start a new template –returns int--

s_circle(resource psdoc, float x, float y, float radius)

Draws a circle –returns bool--

s_clip(resource psdoc)

Clips drawing to current path –returns bool--

s_close_image(resource psdoc, int imageid)

Closes image and frees memory –returns void--

s_close(resource psdoc)

Closes a PostScript document –returns bool--

s_closepath_stroke(resource psdoc)

Closes and strokes path –returns bool--

s_closepath(resource psdoc)

Closes path –returns bool--

s_continue_text(resource psdoc, string text)

Continue text in next line –returns bool--

s_curveto(resource psdoc, float x1, float y1, float x2, float y2, float x3, float y3)

Draws a curve –returns bool--

s_delete(resource psdoc)

Deletes all resources of a PostScript document –returns bool--

s_end_page(resource psdoc)

End a page –returns bool--

s_end_pattern(resource psdoc)

End a pattern –returns bool--

s_end_template(resource psdoc)

End a template –returns bool--

s_fill_stroke(resource psdoc)

Fills and strokes the current path –returns bool--

s_fill(resource psdoc)

Fills the current path –returns bool--

s_findfont(resource psdoc, string fontname, string encoding [, bool embed ])

Loads a font –returns int--

s_get_buffer(resource psdoc)

Fetches the full buffer containig the generated PS data –returns string--

s_get_parameter(resource psdoc, string name [, float modifier ])

Gets certain parameters –returns string--

s_get_value(resource psdoc, string name [, float modifier ])

Gets certain values –returns float--

s_hyphenate(resource psdoc, string text)

Hyphenates a word –returns array--

s_include_file(resource psdoc, string file)

Reads an external file with raw PostScript code –returns bool--

s_lineto(resource psdoc, float x, float y)

Draws a line –returns bool--

s_makespotcolor(resource psdoc, string name [, float reserved ])

Create spot color –returns int--

s_moveto(resource psdoc, float x, float y)

Sets current point –returns bool--

s_new(void)

Creates a new PostScript document object –returns resource--

s_open_file(resource psdoc [, string filename ])

Opens a file for output –returns bool--

s_open_image_file(resource psdoc, string type, string filename [, string stringparam [, int intparam ]])

Opens image from file –returns int--

s_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 –returns int--

s_open_memory_image(resource psdoc, int gd)

Takes an GD image and returns an image for placement in a PS document –returns int--

s_place_image(resource psdoc, int imageid, float x, float y, float scale)

Places image on the page –returns bool--

s_rect(resource psdoc, float x, float y, float width, float height)

Draws a rectangle –returns bool--

s_restore(resource psdoc)

Restore previously save context –returns bool--

s_rotate(resource psdoc, float rot)

Sets rotation factor –returns bool--

s_save(resource psdoc)

Save current context –returns bool--

s_scale(resource psdoc, float x, float y)

Sets scaling factor –returns bool--

s_set_border_color(resource psdoc, float red, float green, float blue)

Sets color of border for annotations –returns bool--

s_set_border_dash(resource psdoc, float black, float white)

Sets length of dashes for border of annotations –returns bool--

s_set_border_style(resource psdoc, string style, float width)

Sets border style of annotations –returns bool--

s_set_info(resource p, string key, string val)

Sets information fields of document –returns bool--

s_set_parameter(resource psdoc, string name, string value)

Sets certain parameters –returns bool--

s_set_text_pos(resource psdoc, float x, float y)

Sets position for text output –returns bool--

s_set_value(resource psdoc, string name, float value)

Sets certain values –returns bool--

s_setcolor(resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4)

Sets current color –returns bool--

s_setdash(resource psdoc, float on, float off)

Sets appearance of a dashed line –returns bool--

s_setflat(resource psdoc, float value)

Sets flatness –returns bool--

s_setfont(resource psdoc, int fontid, float size)

Sets font to use for following output –returns bool--

s_setgray(resource psdoc, float gray)

Sets gray value –returns bool--

s_setlinecap(resource psdoc, int type)

Sets appearance of line ends –returns bool--

s_setlinejoin(resource psdoc, int type)

Sets how contected lines are joined –returns bool--

s_setlinewidth(resource psdoc, float width)

Sets width of a line –returns bool--

s_setmiterlimit(resource psdoc, float value)

Sets the miter limit –returns bool--

s_setoverprintmode(resource psdoc, int mode)

Sets overprint mode –returns bool--

s_setpolydash(resource psdoc, float arr)

Sets appearance of a dashed line –returns bool--

s_shading_pattern(resource psdoc, int shadingid, string optlist)

Creates a pattern based on a shading –returns int--

s_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 –returns int--

s_shfill(resource psdoc, int shadingid)

Fills an area with a shading –returns bool--

s_show_boxed(resource psdoc, string text, float left, float bottom, float width, float height, string hmode [, string feature ])

Output text in a box –returns int--

s_show_xy(resource psdoc, string text, float x, float y)

Output text at given position –returns bool--

s_show_xy2(resource psdoc, string text, int len, float xcoor, float ycoor)

Output text at position –returns bool--

s_show(resource psdoc, string text)

Output text –returns bool--

s_show2(resource psdoc, string text, int len)

Output a text at current position –returns bool--

s_string_geometry(resource psdoc, string text [, int fontid [, float size ]])

Gets geometry of a string –returns array--

s_stringwidth(resource psdoc, string text [, int fontid [, float size ]])

Gets width of a string –returns float--

s_stroke(resource psdoc)

Draws the current path –returns bool--

s_symbol_name(resource psdoc, int ord [, int fontid ])

Gets name of a glyph –returns string--

s_symbol_width(resource psdoc, int ord [, int fontid [, float size ]])

Gets width of a glyph –returns float--

s_symbol(resource psdoc, int ord)

Output a glyph –returns bool--

s_translate(resource psdoc, float x, float y)

Sets translation –returns bool--

spell_add_to_personal(int dictionary_link, string word)

Add the word to a personal wordlist –returns bool--

spell_add_to_session(int dictionary_link, string word)

Add the word to the wordlist in the current session –returns bool--

spell_check(int dictionary_link, string word)

Check a word –returns bool--

spell_clear_session(int dictionary_link)

Clear the current session –returns bool--

spell_config_create(string language [, string spelling [, string jargon [, string encoding ]]])

Create a config used to open a dictionary –returns int--

spell_config_data_dir(int conf, string directory)

location of language data files –returns bool--

spell_config_dict_dir(int conf, string directory)

Location of the main word list –returns bool--

spell_config_ignore(int dictionary_link, int n)

Ignore words less than N characters long –returns bool--

spell_config_mode(int dictionary_link, int mode)

Change the mode number of suggestions returned –returns bool--

spell_config_personal(int dictionary_link, string file)

Set a file that contains personal wordlist –returns bool--

spell_config_repl(int dictionary_link, string file)

Set a file that contains replacement pairs –returns bool--

spell_config_runtogether(int dictionary_link, bool flag)

Consider run-together words as valid compounds –returns bool--

spell_config_save_repl(int dictionary_link, bool flag)

Determine whether to save a replacement pairs list along with the wordlist –returns bool--

spell_new_config(int config)

Load a new dictionary with settings based on a given config –returns int--

spell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode ]]]])

Load a new dictionary with personal wordlist –returns int--

spell_new(string language [, string spelling [, string jargon [, string encoding [, int mode ]]]])

Load a new dictionary –returns int--

spell_save_wordlist(int dictionary_link)

Save the personal wordlist to a file –returns bool--

spell_store_replacement(int dictionary_link, string misspelled, string correct)

Store a replacement pair for a word –returns bool--

spell_suggest(int dictionary_link, string word)

Suggest spellings of a word –returns array--

utenv(string setting)

Sets the value of an environment variable –returns bool--

x_close(resource pxdoc)

Closes a paradox database –returns bool--

x_create_fp(resource pxdoc, resource file, array fielddesc)

Create a new paradox database –returns bool--

x_date2string(resource pxdoc, int value, string format)

Converts a date into a string. –returns string--

x_delete_record(resource pxdoc, int num)

Deletes record from paradox database –returns bool--

x_delete(resource pxdoc)

Deletes resource of paradox database –returns bool--

x_get_field(resource pxdoc, int fieldno)

Returns the specification of a single field –returns array--

x_get_info(resource pxdoc)

Return lots of information about a paradox file –returns array--

x_get_parameter(resource pxdoc, string name)

Gets a parameter –returns string--

x_get_record(resource pxdoc, int num [, int mode ])

Returns record of paradox database –returns array--

x_get_schema(resource pxdoc [, int mode ])

Returns the database schema –returns array--

x_get_value(resource pxdoc, string name)

Gets a value –returns float--

x_insert_record(resource pxdoc, array data)

Inserts record into paradox database –returns int--

x_new(void)

Create a new paradox object –returns resource--

x_numfields(resource pxdoc)

Returns number of fields in a database –returns int--

x_numrecords(resource pxdoc)

Returns number of records in a database –returns int--

x_open_fp(resource pxdoc, resource file)

Open paradox database –returns bool--

x_put_record(resource pxdoc, array record [, int recpos ])

Stores record into paradox database –returns bool--

x_retrieve_record(resource pxdoc, int num [, int mode ])

Returns record of paradox database –returns array--

x_set_blob_file(resource pxdoc, string filename)

Sets the file where blobs are read from –returns bool--

x_set_parameter(resource pxdoc, string name, string value)

Sets a parameter –returns bool--

x_set_tablename(resource pxdoc, string name)

Sets the name of a table (deprecated) –returns void--

x_set_targetencoding(resource pxdoc, string encoding)

Sets the encoding for character fields (deprecated) –returns bool--

x_set_value(resource pxdoc, string name, float value)

Sets a value –returns bool--

x_timestamp2string(resource pxdoc, float value, string format)

Converts the timestamp into a string. –returns string--

x_update_record(resource pxdoc, array data, int num)

Updates record in paradox database –returns bool--

dom_error(void)

Returns the error string from the last QDOM operation or FALSE if no errors occurred –returns string--

dom_tree(string doc)

Creates a tree of an XML string –returns QDomDocument--

uoted_printable_decode(string str)

Convert a quoted-printable string to an 8 bit string –returns string--

uoted_printable_encode(string str)

Convert a 8 bit string to a quoted-printable string –returns string--

uotemeta(string str)

Quote meta characters –returns string--

ad2deg(float number)

Converts the radian number to the equivalent number in degrees –returns float--

adius_acct_open(void)

Creates a Radius handle for accounting –returns resource--

adius_add_server(resource radius_handle, string hostname, int port, string secret, int timeout, int max_tries)

Adds a server –returns bool--

adius_auth_open(void)

Creates a Radius handle for authentication –returns resource--

adius_close(resource radius_handle)

Frees all ressources –returns bool--

adius_config(resource radius_handle, string file)

Causes the library to read the given configuration file –returns bool--

adius_create_request(resource radius_handle, int type)

Create accounting or authentication request –returns bool--

adius_cvt_addr(string data)

Converts raw data to IP-Address –returns string--

adius_cvt_int(string data)

Converts raw data to integer –returns int--

adius_cvt_string(string data)

Converts raw data to string –returns string--

adius_demangle_mppe_key(resource radius_handle, string mangled)

Derives mppe-keys from mangled data –returns string--

adius_demangle(resource radius_handle, string mangled)

Demangles data –returns string--

adius_get_attr(resource radius_handle)

Extracts an attribute –returns mixed--

adius_get_vendor_attr(string data)

Extracts a vendor specific attribute –returns array--

adius_put_addr(resource radius_handle, int type, string addr)

Attaches an IP-Address attribute –returns bool--

adius_put_attr(resource radius_handle, int type, string value)

Attaches a binary attribute –returns bool--

adius_put_int(resource radius_handle, int type, int value)

Attaches an integer attribute –returns bool--

adius_put_string(resource radius_handle, int type, string value)

Attaches a string attribute –returns bool--

adius_put_vendor_addr(resource radius_handle, int vendor, int type, string addr)

Attaches a vendor specific IP-Address attribute –returns bool--

adius_put_vendor_attr(resource radius_handle, int vendor, int type, string value)

Attaches a vendor specific binary attribute –returns bool--

adius_put_vendor_int(resource radius_handle, int vendor, int type, int value)

Attaches a vendor specific integer attribute –returns bool--

adius_put_vendor_string(resource radius_handle, int vendor, int type, string value)

Attaches a vendor specific string attribute –returns bool--

adius_request_authenticator(resource radius_handle)

Returns the request authenticator –returns string--

adius_send_request(resource radius_handle)

Sends the request and waites for a reply –returns int--

adius_server_secret(resource radius_handle)

Returns the shared secret –returns string--

adius_strerror(resource radius_handle)

Returns an error message –returns string--

and(void) int rand(int min, int max)

Generate a random integer –returns int--

ange(mixed low, mixed high [, number step ])

Create an array containing a range of elements –returns array--

ar_close(resource rar_file)

Close Rar archive and free all resources –returns bool--

ar_entry_get(resource rar_file, string entry_name)

Get entry object from the Rar archive –returns RarEntry--

xtract(string dir [, string filepath ])

Extract entry from the archive –returns bool--

etAttr(void)

Get attributes of the entry –returns int--

etCrc(void)

Get CRC of the entry –returns int--

etFileTime(void)

Get entry last modification time –returns string--

etHostOs(void)

Get entry host OS –returns int--

etMethod(void)

Get pack method of the entry –returns int--

etName(void)

Get name of the entry –returns string--

etPackedSize(void)

Get packed size of the entry –returns int--

etUnpackedSize(void)

Get unpacked size of the entry –returns int--

etVersion(void)

Get version of the archiver used to add the entry –returns int--

ar_list(resource rar_file)

Get entries list from the Rar archive –returns array--

ar_open(string filename [, string password ])

Open Rar archive –returns resource--

awurldecode(string str)

Decode URL-encoded strings –returns string--

awurlencode(string str)

URL-encode according to RFC 1738 –returns string--

ead_exif_data

Alias of exif_read_data() –returns ?--

eaddir ([ resource dir_handle ])

Read entry from directory handle –returns string--

eadfile(string filename [, bool use_include_path [, resource context ]])

Outputs a file –returns int--

eadgzfile(string filename [, int use_include_path ])

Output a gz-file –returns int--

eadline_add_history(string line)

Adds a line to the history –returns bool--

eadline_callback_handler_install(string prompt, callback callback)

Initializes the readline callback interface and terminal, prints the prompt and returns immediately –returns bool--

eadline_callback_handler_remove(void)

Removes a previously installed callback handler and restores terminal settings –returns bool--

eadline_callback_read_char(void)

Reads a character and informs the readline callback interface when a line is received –returns void--

eadline_clear_history(void)

Clears the history –returns bool--

eadline_completion_function(callback function)

Registers a completion function –returns bool--

eadline_info ([ string varname [, string newvalue ]])

Gets/sets various internal readline variables –returns mixed--

eadline_list_history(void)

Lists the history –returns array--

eadline_on_new_line(void)

Inform readline that the cursor has moved to a new line –returns void--

eadline_read_history ([ string filename ])

Reads the history –returns bool--

eadline_redisplay(void)

Redraws the display –returns void--

eadline_write_history ([ string filename ])

Writes the history –returns bool--

eadline ([ string prompt ])

Reads a line –returns string--

eadlink(string path)

Returns the target of a symbolic link –returns string--

ealpath(string path)

Returns canonicalized absolute pathname –returns string--

ecode_file(string request, resource input, resource output)

Recode from file to file according to recode request –returns bool--

ecode_string(string request, string string)

Recode a string according to a recode request –returns string--

ecode

Alias of recode_string() –returns ?--

egister_shutdown_function(callback function [, mixed parameter [, mixed ... ]])

Register a function for execution on shutdown –returns void--

egister_tick_function(callback function [, mixed arg [, mixed ... ]])

Register a function for execution on each tick –returns bool--

ename_function(string original_name, string new_name)

Renames orig_name to new_name in the global function table –returns bool--

ename(string oldname, string newname [, resource context ])

Renames a file or directory –returns bool--

--returns ?--
--returns ?--
eset(array &array)

Set the internal pointer of an array to its first element –returns mixed--

estore_error_handler(void)

Restores the previous error handler function –returns bool--

estore_exception_handler(void)

Restores the previously defined exception handler function –returns bool--

estore_include_path(void)

Restores the value of the include_path configuration option –returns void--

--returns ?--
ewind(resource handle)

Rewind the position of a file pointer –returns bool--

ewinddir ([ resource dir_handle ])

Rewind directory handle –returns void--

mdir(string dirname [, resource context ])

Removes directory –returns bool--

ound(float val [, int precision ])

Rounds a float –returns float--

pm_close(resource rpmr)

Closes an RPM file –returns bool--

pm_get_tag(resource rpmr, int tagnum)

Retrieves a header tag from an RPM file –returns mixed--

pm_is_valid(string filename)

Tests a filename for validity as an RPM file –returns bool--

pm_open(string filename)

Opens an RPM file –returns resource--

pm_version(void)

Returns a string representing the current version of the rpmreader extension –returns string--

sort(array &array [, int sort_flags ])

Sort an array in reverse order –returns bool--

trim(string str [, string charlist ])

Strip whitespace (or other characters) from the end of a string –returns string--

unkit_class_adopt(string classname, string parentname)

Convert a base class to an inherited class, add ancestral methods when appropriate –returns bool--

unkit_class_emancipate(string classname)

Convert an inherited class to a base class, removes any method whose scope is ancestral –returns bool--

unkit_constant_add(string constname, mixed value)

Similar to define(), but allows defining in class definitions as well –returns bool--

unkit_constant_redefine(string constname, mixed newvalue)

Redefine an already defined constant –returns bool--

unkit_constant_remove(string constname)

Remove/Delete an already defined constant –returns bool--

unkit_function_add(string funcname, string arglist, string code)

Add a new function, similar to create_function() –returns bool--

unkit_function_copy(string funcname, string targetname)

Copy a function to a new function name –returns bool--

unkit_function_redefine(string funcname, string arglist, string code)

Replace a function definition with a new implementation –returns bool--

unkit_function_remove(string funcname)

Remove a function definition –returns bool--

unkit_function_rename(string funcname, string newname)

Change a function's name –returns bool--

unkit_import(string filename [, int flags ])

Process a PHP file importing function and class definitions, overwriting where appropriate –returns bool--

unkit_lint_file(string filename)

Check the PHP syntax of the specified file –returns bool--

unkit_lint(string code)

Check the PHP syntax of the specified php code –returns bool--

unkit_method_add(string classname, string methodname, string args, string code [, int flags ])

Dynamically adds a new method to a given class –returns bool--

unkit_method_copy(string dClass, string dMethod, string sClass [, string sMethod ])

Copies a method from class to another –returns bool--

unkit_method_redefine(string classname, string methodname, string args, string code [, int flags ])

Dynamically changes the code of the given method –returns bool--

unkit_method_remove(string classname, string methodname)

Dynamically removes the given method –returns bool--

unkit_method_rename(string classname, string methodname, string newname)

Dynamically changes the name of the given method –returns bool--

unkit_return_value_used(void)

Determines if the current functions return value will be used –returns bool--

unkit_sandbox_output_handler(object sandbox [, mixed callback ])

Specify a function to capture and/or process output from a runkit sandbox –returns mixed--

unkit_superglobals(void)

Return numerically indexed array of registered superglobals –returns array--

ommit(void)

Commits (completes) the current unit of work. –returns bool--

onnect(string protocol [, array properties ])

Establishes a connection to a Messaging Server –returns bool--

AMConnection->__construct

Creates a new connection to a Messaging Server –returns ?--

isconnect(void)

Disconnects from a Messaging Server –returns bool--

AMConnection->errno

Contains the unique numeric error code of the last executed SAM operation. –returns ?--

AMConnection->error

Contains the text description of the last failed SAM operation. –returns ?--

sConnected(void)

Queries whether a connection is established to a Messaging Server –returns bool--

eek(string target [, array properties ])

Read a message from a queue without removing it from the queue. –returns SAMMessage--

eekAll(string target [, array properties ])

Read one or more messages from a queue without removing it from the queue. –returns array--

eceive(string target [, array properties ])

Receive a message from a queue or subscription. –returns SAMMessage--

emove(string target [, array properties ])

Remove a message from a queue. –returns SAMMessage--

ollback(void)

Cancels (rolls back) an in-flight unit of work. –returns bool--

end(string target, SAMMessage msg [, array properties ])

Send a message to a queue or publish an item to a topic. –returns string--

end(bool switch)

Turn on or off additional debugging output. –returns void--

ubscribe(string targetTopic)

Create a subscription to a specified topic. –returns string--

nsubscribe(string subscriptionId [, string targetTopic ])

Cancel a subscription to a specified topic. –returns bool--

AMMessage->body

The body of the message. –returns ?--

AMMessage->__construct

Creates a new Message object –returns ?--

AMMessage->header

The header properties of the message. –returns ?--

CA::createDataObject(string type_namespace_uri, string type_name)

create an SDO –returns SDO_DataObject--

CA::getService(string target [, string binding [, array config ]])

Obtain a proxy for a service –returns mixed--

CA_LocalProxy::createDataObject(string type_namespace_uri, string type_name)

create an SDO –returns SDO_DataObject--

CA_SoapProxy::createDataObject(string type_namespace_uri, string type_name)

create an SDO –returns SDO_DataObject--

candir(string directory [, int sorting_order [, resource context ]])

List files and directories inside the specified path –returns array--

DO_DAS_ChangeSummary::beginLogging(void)

Begin change logging –returns void--

DO_DAS_ChangeSummary::endLogging(void)

End change logging –returns void--

DO_DAS_ChangeSummary::getChangedDataObjects(void)

Get the changed data objects from a change summary –returns SDO_List--

DO_DAS_ChangeSummary::getChangeType(SDO_DataObject dataObject)

Get the type of change made to an SDO_DataObject –returns int--

DO_DAS_ChangeSummary::getOldContainer(SDO_DataObject data_object)

Get the old container for a deleted SDO_DataObject –returns SDO_DataObject--

DO_DAS_ChangeSummary::getOldValues(SDO_DataObject data_object)

Get the old values for a given changed SDO_DataObject –returns SDO_List--

DO_DAS_ChangeSummary::isLogging(void)

Test to see whether change logging is switched on –returns bool--

DO_DAS_DataFactory::addPropertyToType(string parent_type_namespace_uri, string parent_type_name, string property_name, string type_namespace_uri, string type_name [, array options ])

Adds a property to a type –returns void--

DO_DAS_DataFactory::addType(string type_namespace_uri, string type_name [, array options ])

Add a new type to a model –returns void--

DO_DAS_DataFactory::getDataFactory(void)

Get a data factory instance –returns SDO_DAS_DataFactory--

DO_DAS_DataObject::getChangeSummary(void)

Get a data object's change summary –returns SDO_DAS_ChangeSummary--

DO_DAS_Relational::applyChanges(PDO database_handle, SDODataObject root_data_object)

Applies the changes made to a data graph back to the database. –returns void--

DO_DAS_Relational::__construct(array database_metadata [, string application_root_type [, array SDO_containment_references_metadata ]])

Creates an instance of a Relational Data Access Service –returns SDO_DAS_Relational--

DO_DAS_Relational::createRootDataObject(void)

Returns the special root object in an otherwise empty data graph. Used when creating a data graph from scratch. –returns SDODataObject--

DO_DAS_Relational::executePreparedQuery(PDO database_handle, PDOStatement prepared_statement, array value_list [, array column_specifier ])

Executes an SQL query passed as a prepared statement, with a list of values to substitute for placeholders, and return the results as a normalised data graph. –returns SDODataObject--

DO_DAS_Relational::executeQuery(PDO database_handle, string SQL_statement [, array column_specifier ])

Executes a given SQL query against a relational database and returns the results as a normalised data graph. –returns SDODataObject--

DO_DAS_Setting::getListIndex(void)

Get the list index for a changed many-valued property –returns int--

DO_DAS_Setting::getPropertyIndex(void)

Get the property index for a changed property –returns int--

DO_DAS_Setting::getPropertyName(void)

Get the property name for a changed property –returns string--

DO_DAS_Setting::getValue(void)

Get the old value for the changed property –returns mixed--

DO_DAS_Setting::isSet(void)

Test whether a property was set prior to being modified –returns bool--

DO_DAS_XML::addTypes(string xsd_file)

To load a second or subsequent schema file to a SDO_DAS_XML object –returns void--

DO_DAS_XML::create ([ mixed xsd_file [, string key ]])

To create SDO_DAS_XML object for a given schema file –returns SDO_DAS_XML--

DO_DAS_XML::createDataObject(string namespace_uri, string type_name)

Creates SDO_DataObject for a given namespace URI and type name –returns SDO_DataObject--

DO_DAS_XML::createDocument ([ string document_element_name ]) SDO_DAS_XML_Document SDO_DAS_XML::createDocument(string document_element_namespace_URI, string document_element_name [, SDO_DataObject dataobject ])

Creates an XML Document object from scratch, without the need to load a document from a file or string. –returns SDO_DAS_XML_Document--

DO_DAS_XML_Document::getRootDataObject(void)

Returns the root SDO_DataObject –returns SDO_DataObject--

DO_DAS_XML_Document::getRootElementName(void)

Returns root element's name –returns string--

DO_DAS_XML_Document::getRootElementURI(void)

Returns root element's URI string –returns string--

DO_DAS_XML_Document::setEncoding(string encoding)

Sets the given string as encoding –returns void--

DO_DAS_XML_Document::setXMLDeclaration(bool xmlDeclatation)

Sets the xml declaration –returns void--

DO_DAS_XML_Document::setXMLVersion(string xmlVersion)

Sets the given string as xml version –returns void--

DO_DAS_XML::loadFile(string xml_file)

Returns SDO_DAS_XML_Document object for a given path to xml instance document –returns SDO_XMLDocument--

DO_DAS_XML::loadString(string xml_string)

Returns SDO_DAS_XML_Document for a given xml instance string –returns SDO_DAS_XML_Document--

DO_DAS_XML::saveFile(SDO_XMLDocument xdoc, string xml_file [, int indent ])

Saves the SDO_DAS_XML_Document object to a file –returns void--

DO_DAS_XML::saveString(SDO_XMLDocument xdoc [, int indent ])

Saves the SDO_DAS_XML_Document object to a string –returns string--

DO_DataFactory::create(string type_namespace_uri, string type_name)

Create an SDO_DataObject –returns void--

DO_DataObject::clear(void)

Clear an SDO_DataObject's properties –returns void--

DO_DataObject::createDataObject(mixed identifier)

Create a child SDO_DataObject –returns SDO_DataObject--

DO_DataObject::getContainer(void)

Get a data object's container –returns SDO_DataObject--

DO_DataObject::getSequence(void)

Get the sequence for a data object –returns SDO_Sequence--

DO_DataObject::getTypeName(void)

Return the name of the type for a data object. –returns string--

DO_DataObject::getTypeNamespaceURI(void)

Return the namespace URI of the type for a data object. –returns string--

DO_Exception::getCause(void)

Get the cause of the exception. –returns mixed--

DO_List::insert(mixed value [, int index ])

Insert into a list –returns void--

DO_Model_Property::getContainingType(void)

Get the SDO_Model_Type which contains this property –returns SDO_Model_Type--

DO_Model_Property::getDefault(void)

Get the default value for the property –returns mixed--

DO_Model_Property::getName(void)

Get the name of the SDO_Model_Property –returns string--

DO_Model_Property::getType(void)

Get the SDO_Model_Type of the property –returns SDO_Model_Type--

DO_Model_Property::isContainment(void)

Test to see if the property defines a containment relationship –returns bool--

DO_Model_Property::isMany(void)

Test to see if the property is many-valued –returns bool--

DO_Model_ReflectionDataObject::__construct(SDO_DataObject data_object)

Construct an SDO_Model_ReflectionDataObject –returns SDO_Model_ReflectionDataObject--

DO_Model_ReflectionDataObject::export(SDO_Model_ReflectionDataObject rdo [, bool return ])

Get a string describing the SDO_DataObject. –returns mixed--

DO_Model_ReflectionDataObject::getContainmentProperty(void)

Get the property which defines the containment relationship to the data object –returns SDO_Model_Property--

DO_Model_ReflectionDataObject::getInstanceProperties(void)

Get the instance properties of the SDO_DataObject –returns array--

DO_Model_ReflectionDataObject::getType(void)

Get the SDO_Model_Type for the SDO_DataObject –returns SDO_Model_Type--

DO_Model_Type::getBaseType(void)

Get the base type for this type –returns SDO_Model_Type--

DO_Model_Type::getName(void)

Get the name of the type –returns string--

DO_Model_Type::getNamespaceURI(void)

Get the namespace URI of the type –returns string--

DO_Model_Type::getProperties(void)

Get the SDO_Model_Property objects defined for the type –returns array--

DO_Model_Type::getProperty(mixed identifier)

Get an SDO_Model_Property of the type –returns SDO_Model_Property--

DO_Model_Type::isAbstractType(void)

Test to see if this SDO_Model_Type is an abstract data type –returns bool--

DO_Model_Type::isDataType(void)

Test to see if this SDO_Model_Type is a primitive data type –returns bool--

DO_Model_Type::isInstance(SDO_DataObject data_object)

Test for an SDO_DataObject being an instance of this SDO_Model_Type –returns bool--

DO_Model_Type::isOpenType(void)

Test to see if this type is an open type –returns bool--

DO_Model_Type::isSequencedType(void)

Test to see if this is a sequenced type –returns bool--

DO_Sequence::getProperty(int sequence_index)

Return the property for the specified sequence index. –returns SDO_Model_Property--

DO_Sequence::insert(mixed value [, int sequenceIndex [, mixed propertyIdentifier ]])

Insert into a sequence –returns void--

DO_Sequence::move(int toIndex, int fromIndex)

Move an item to another sequence position –returns void--

em_acquire(resource sem_identifier)

Acquire a semaphore –returns bool--

em_get(int key [, int max_acquire [, int perm [, int auto_release ]]])

Get a semaphore id –returns resource--

em_release(resource sem_identifier)

Release a semaphore –returns bool--

em_remove(resource sem_identifier)

Remove a semaphore –returns bool--

erialize(mixed value)

Generates a storable representation of a value –returns string--

ession_cache_expire ([ int new_cache_expire ])

Return current cache expire –returns int--

ession_cache_limiter ([ string cache_limiter ])

Get and/or set the current cache limiter –returns string--

ession_commit

Alias of session_write_close() –returns ?--

ession_decode(string data)

Decodes session data from a string –returns bool--

ession_destroy(void)

Destroys all data registered to a session –returns bool--

ession_encode(void)

Encodes the current session data as a string –returns string--

ession_get_cookie_params(void)

Get the session cookie parameters –returns array--

ession_id ([ string id ])

Get and/or set the current session id –returns string--

ession_is_registered(string name)

Find out whether a global variable is registered in a session –returns bool--

ession_module_name ([ string module ])

Get and/or set the current session module –returns string--

ession_name ([ string name ])

Get and/or set the current session name –returns string--

ession_pgsql_add_error(int error_level [, string error_message ])

Increments error counts and sets last error message –returns bool--

ession_pgsql_get_error ([ bool with_error_message ])

Returns number of errors and last error message –returns array--

ession_pgsql_get_field(void)

Get custom field value –returns string--

ession_pgsql_reset(void)

Reset connection to session database servers –returns bool--

ession_pgsql_set_field(string value)

Set custom field value –returns bool--

ession_pgsql_status(void)

Get current save handler status –returns array--

ession_regenerate_id ([ bool delete_old_session ])

Update the current session id with a newly generated one –returns bool--

ession_register(mixed name [, mixed ... ])

Register one or more global variables with the current session –returns bool--

ession_save_path ([ string path ])

Get and/or set the current session save path –returns string--

ession_set_cookie_params(int lifetime [, string path [, string domain [, bool secure [, bool httponly ]]]])

Set the session cookie parameters –returns void--

ession_set_save_handler(callback open, callback close, callback read, callback write, callback destroy, callback gc)

Sets user-level session storage functions –returns bool--

ession_start(void)

Initialize session data –returns bool--

ession_unregister(string name)

Unregister a global variable from the current session –returns bool--

ession_unset(void)

Free all session variables –returns void--

ession_write_close(void)

Write session data and end session –returns void--

et_error_handler(callback error_handler [, int error_types ]) handler(int errno, string errstr [, string errfile [, int errline [, array errcontext ]]])

Sets a user-defined error handler function –returns mixed--

et_exception_handler(callback exception_handler)

Sets a user-defined exception handler function –returns string--

et_file_buffer

Alias of stream_set_write_buffer() –returns ?--

et_include_path(string new_include_path)

Sets the include_path configuration option –returns string--

et_magic_quotes_runtime(int new_setting)

Sets the current active configuration setting of magic_quotes_runtime –returns bool--

et_time_limit(int seconds)

Limits the maximum execution time –returns void--

etcookie(string name [, string value [, int expire [, string path [, string domain [, bool secure [, bool httponly ]]]]]])

Send a cookie –returns bool--

etlocale(int category, string locale [, string ... ]) string setlocale(int category, array locale)

Set locale information –returns string--

etrawcookie(string name [, string value [, int expire [, string path [, string domain [, bool secure [, bool httponly ]]]]]])

Send a cookie without urlencoding the cookie value –returns bool--

ettype(mixed &var, string type)

Set the type of a variable –returns bool--

ha1_file(string filename [, bool raw_output ])

Calculate the sha1 hash of a file –returns string--

ha1(string str [, bool raw_output ])

Calculate the sha1 hash of a string –returns string--

hell_exec(string cmd)

Execute command via shell and return the complete output as a string –returns string--

hm_attach(int key [, int memsize [, int perm ]])

Creates or open a shared memory segment –returns int--

hm_detach(int shm_identifier)

Disconnects from shared memory segment –returns bool--

hm_get_var(int shm_identifier, int variable_key)

Returns a variable from shared memory –returns mixed--

hm_put_var(int shm_identifier, int variable_key, mixed variable)

Inserts or updates a variable in shared memory –returns bool--

hm_remove_var(int shm_identifier, int variable_key)

Removes a variable from shared memory –returns bool--

hm_remove(int shm_identifier)

Removes shared memory from Unix systems –returns bool--

hmop_close(int shmid)

Close shared memory block –returns void--

hmop_delete(int shmid)

Delete shared memory block –returns bool--

hmop_open(int key, string flags, int mode, int size)

Create or open shared memory block –returns int--

hmop_read(int shmid, int start, int count)

Read data from shared memory block –returns string--

hmop_size(int shmid)

Get size of shared memory block –returns int--

hmop_write(int shmid, string data, int offset)

Write data into shared memory block –returns int--

how_source

Alias of highlight_file() –returns ?--

huffle(array &array)

Shuffle an array –returns bool--

thmac(string clent, string data)

Obtain the payment url (needs 2 arguments) –returns string--

imilar_text(string first, string second [, float &percent ])

Calculate the similarity between two strings –returns int--

ddAttribute(string name, string value [, string namespace ])

Adds an attribute to the SimpleXML element –returns void--

ddChild(string name [, string value [, string namespace ]])

Adds a child element to the XML node –returns SimpleXMLElement--

sXML ([ string filename ])

Return a well-formed XML string based on SimpleXML element –returns mixed--

ttributes ([ string ns [, bool is_prefix ]])

Identifies an element's attributes –returns SimpleXMLElement--

hildren ([ string ns [, bool is_prefix ]])

Finds children of given node –returns SimpleXMLElement--

impleXMLElement->__construct

Creates a new SimpleXMLElement object –returns ?--

etDocNamespaces ([ bool recursive ])

Returns namespaces declared in document –returns array--

etName(void)

Gets the name of the XML element –returns string--

etNamespaces ([ bool recursive ])

Returns namespaces used in document –returns array--

egisterXPathNamespace(string prefix, string ns)

Creates a prefix/ns context for the next XPath query –returns bool--

path(string path)

Runs XPath query on XML data –returns array--

implexml_import_dom(DOMNode node [, string class_name ])

Get a SimpleXMLElement object from a DOM node. –returns SimpleXMLElement--

implexml_load_file(string filename [, string class_name [, int options [, string ns [, bool is_prefix ]]]])

Interprets an XML file into an object –returns object--

implexml_load_string(string data [, string class_name [, int options [, string ns [, bool is_prefix ]]]])

Interprets a string of XML into an object –returns object--

in(float arg)

Sine –returns float--

inh(float arg)

Hyperbolic sine –returns float--

izeof

Alias of count() –returns ?--

leep(int seconds)

Delay execution –returns int--

nmp_get_quick_print(void)

Fetches the current value of the UCD library's quick_print setting –returns bool--

nmp_get_valueretrieval(void)

Return the method how the SNMP values will be returned –returns int--

nmp_read_mib(string filename)

Reads and parses a MIB file into the active MIB tree –returns bool--

nmp_set_enum_print(int enum_print)

Return all values that are enums with their enum value instead of the raw integer –returns void--

nmp_set_oid_numeric_print(int oid_numeric_print)

Return all objects including their respective object id within the specified one –returns void--

nmp_set_oid_output_format(int oid_format)

Set the OID output format –returns void--

nmp_set_quick_print(bool quick_print)

Set the value of quick_print within the UCD SNMP library –returns void--

nmp_set_valueretrieval(int method)

Specify the method how the SNMP values will be returned –returns void--

nmpget(string hostname, string community, string object_id [, int timeout [, int retries ]])

Fetch an SNMP object –returns string--

nmpgetnext(string host, string community, string object_id [, int timeout [, int retries ]])

Fetch a SNMP object –returns string--

nmprealwalk(string host, string community, string object_id [, int timeout [, int retries ]])

Return all objects including their respective object ID within the specified one –returns array--

nmpset(string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries ]])

Set an SNMP object –returns bool--

nmpwalk(string hostname, string community, string object_id [, int timeout [, int retries ]])

Fetch all the SNMP objects from an agent –returns array--

nmpwalkoid(string hostname, string community, string object_id [, int timeout [, int retries ]])

Query for a tree of information about a network entity –returns array--

_call(string function_name, array arguments [, array options [, array input_headers [, array output_headers ]]])

Calls a SOAP function (deprecated) –returns mixed--

oapClient->__construct

SoapClient constructor –returns ?--

_doRequest(string request, string location, string action, int version [, int one_way ])

Performs a SOAP request –returns string--

_getFunctions(void)

Returns list of SOAP functions –returns array--

_getLastRequest(void)

Returns last SOAP request –returns string--

_getLastRequestHeaders(void)

Returns last SOAP request headers –returns string--

_getLastResponse(void)

Returns last SOAP response. –returns string--

_getLastResponseHeaders(void)

Returns last SOAP response headers. –returns string--

_getTypes(void)

Returns list of SOAP types –returns array--

_setCookie(string name [, string value ])

Sets the cookie that will be sent with the SOAP request –returns void--

_soapCall(string function_name, array arguments [, array options [, mixed input_headers [, array &output_headers ]]])

Calls a SOAP function –returns mixed--

oapFault->__construct

SoapFault constructor –returns ?--

oapHeader->__construct

SoapHeader constructor –returns ?--

oapParam->__construct

SoapParam constructor –returns ?--

ddFunction(mixed functions)

Adds one or several functions those will handle SOAP requests –returns void--

oapServer->__construct

SoapServer constructor –returns ?--

ault(string code, string string [, string actor [, mixed details [, string name ]]])

Issue SoapServer fault indicating an error –returns void--

etFunctions(void)

Returns list of defined functions –returns array--

andle ([ string soap_request ])

Handles a SOAP request –returns void--

etClass(string class_name [, mixed args [, mixed ... ]])

Sets class which will handle SOAP requests –returns void--

etPersistence(int mode)

Sets persistence mode of SoapServer –returns void--

oapVar->__construct

SoapVar constructor –returns ?--

ocket_accept(resource socket)

Accepts a connection on a socket –returns resource--

ocket_bind(resource socket, string address [, int port ])

Binds a name to a socket –returns bool--

ocket_clear_error ([ resource socket ])

Clears the error on the socket or the last error code –returns void--

ocket_close(resource socket)

Closes a socket resource –returns void--

ocket_connect(resource socket, string address [, int port ])

Initiates a connection on a socket –returns bool--

ocket_create_listen(int port [, int backlog ])

Opens a socket on port to accept connections –returns resource--

ocket_create_pair(int domain, int type, int protocol, array &fd)

Creates a pair of indistinguishable sockets and stores them in an array –returns bool--

ocket_create(int domain, int type, int protocol)

Create a socket (endpoint for communication) –returns resource--

ocket_get_option(resource socket, int level, int optname)

Gets socket options for the socket –returns mixed--

ocket_get_status

Alias of stream_get_meta_data() –returns ?--

ocket_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 –returns bool--

ocket_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 –returns bool--

ocket_last_error ([ resource socket ])

Returns the last error on the socket –returns int--

ocket_listen(resource socket [, int backlog ])

Listens for a connection on a socket –returns bool--

ocket_read(resource socket, int length [, int type ])

Reads a maximum of length bytes from a socket –returns string--

ocket_recv(resource socket, string &buf, int len, int flags)

Receives data from a connected socket –returns int--

ocket_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 –returns int--

ocket_select(array &read, array &write, array &except, int tv_sec [, int tv_usec ])

Runs the select() system call on the given arrays of sockets with a specified timeout –returns int--

ocket_send(resource socket, string buf, int len, int flags)

Sends data to a connected socket –returns int--

ocket_sendto(resource socket, string buf, int len, int flags, string addr [, int port ])

Sends a message to a socket, whether it is connected or not –returns int--

ocket_set_block(resource socket)

Sets blocking mode on a socket resource –returns bool--

ocket_set_blocking

Alias of stream_set_blocking() –returns ?--

ocket_set_nonblock(resource socket)

Sets nonblocking mode for file descriptor fd –returns bool--

ocket_set_option(resource socket, int level, int optname, mixed optval)

Sets socket options for the socket –returns bool--

ocket_set_timeout

Alias of stream_set_timeout() –returns ?--

ocket_shutdown(resource socket [, int how ])

Shuts down a socket for receiving, sending, or both –returns bool--

ocket_strerror(int errno)

Return a string describing a socket error –returns string--

ocket_write(resource socket, string buffer [, int length ])

Write to a socket –returns int--

ort(array &array [, int sort_flags ])

Sort an array –returns bool--

oundex(string str)

Calculate the soundex key of a string –returns string--

pl_autoload_call(string class_name)

Try all registered __autoload() function to load the requested class –returns void--

pl_autoload_extensions ([ string file_extensions ])

Register and return default file extensions for spl_autoload –returns string--

pl_autoload_functions(void)

Return all registered __autoload() functions –returns array--

pl_autoload_register ([ callback autoload_function ])

Register given function as __autoload() implementation –returns bool--

pl_autoload_unregister(mixed autoload_function)

Unregister given function as __autoload() implementation –returns bool--

pl_autoload(string class_name [, string file_extensions ])

Default implementation for __autoload() –returns void--

pl_classes(void)

Return available SPL classes –returns array--

pl_object_hash(object obj)

Return hash id for given object –returns string--

plit(string pattern, string string [, int limit ])

Split string into array by regular expression –returns array--

pliti(string pattern, string string [, int limit ])

Split string into array by regular expression case insensitive –returns array--

printf(string format [, mixed args [, mixed ... ]])

Return a formatted string –returns string--

ql_regcase(string string)

Make regular expression for case insensitive match –returns string--

qlite_array_query(resource dbhandle, string query [, int result_type [, bool decode_binary ]]) array sqlite_array_query(string query, resource dbhandle [, int result_type [, bool decode_binary ]]) array arrayQuery(string query [, int result_type [, bool decode_binary ]])

Execute a query against a given database and returns an array –returns array--

qlite_busy_timeout(resource dbhandle, int milliseconds) void busyTimeout(int milliseconds)

Set busy timeout duration, or disable busy handlers –returns void--

qlite_changes(resource dbhandle) int changes(void)

Returns the number of rows that were changed by the most recent SQL statement –returns int--

qlite_close(resource dbhandle)

Closes an open SQLite database –returns void--

qlite_column(resource result, mixed index_or_name [, bool decode_binary ]) mixed column(mixed index_or_name [, bool decode_binary ]) mixed column(mixed index_or_name [, bool decode_binary ])

Fetches a column from the current row of a result set –returns mixed--

qlite_create_aggregate(resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args ]) void createAggregate(string function_name, callback step_func, callback finalize_func [, int num_args ])

Register an aggregating UDF for use in SQL statements –returns void--

qlite_create_function(resource dbhandle, string function_name, callback callback [, int num_args ]) void createFunction(string function_name, callback callback [, int num_args ])

Registers a "regular" User Defined Function for use in SQL statements –returns void--

qlite_current(resource result [, int result_type [, bool decode_binary ]]) array current ([ int result_type [, bool decode_binary ]]) array current ([ int result_type [, bool decode_binary ]])

Fetches the current row from a result set as an array –returns array--

qlite_error_string(int error_code)

Returns the textual description of an error code –returns string--

qlite_escape_string(string item)

Escapes a string for use as a query parameter –returns string--

qlite_exec(resource dbhandle, string query [, string &error_msg ]) bool sqlite_exec(string query, resource dbhandle) bool queryExec(string query [, string &error_msg ])

Executes a result-less query against a given database –returns bool--

qlite_factory(string filename [, int mode [, string &error_message ]])

Opens a SQLite database and returns a SQLiteDatabase object –returns SQLiteDatabase--

qlite_fetch_all(resource result [, int result_type [, bool decode_binary ]]) array fetchAll ([ int result_type [, bool decode_binary ]]) array fetchAll ([ int result_type [, bool decode_binary ]])

Fetches all rows from a result set as an array of arrays –returns array--

qlite_fetch_array(resource result [, int result_type [, bool decode_binary ]]) array fetch ([ int result_type [, bool decode_binary ]]) array fetch ([ int result_type [, bool decode_binary ]])

Fetches the next row from a result set as an array –returns array--

qlite_fetch_column_types(string table_name, resource dbhandle [, int result_type ]) array fetchColumnTypes(string table_name [, int result_type ])

Return an array of column types from a particular table –returns array--

qlite_fetch_object(resource result [, string class_name [, array ctor_params [, bool decode_binary ]]]) object fetchObject ([ string class_name [, array ctor_params [, bool decode_binary ]]]) object fetchObject ([ string class_name [, array ctor_params [, bool decode_binary ]]])

Fetches the next row from a result set as an object –returns object--

qlite_fetch_single(resource result [, bool decode_binary ]) string fetchSingle ([ bool decode_binary ]) string fetchSingle ([ bool decode_binary ])

Fetches the first column of a result set as a string –returns string--

qlite_fetch_string

Alias of sqlite_fetch_single() –returns ?--

qlite_field_name(resource result, int field_index) string fieldName(int field_index) string fieldName(int field_index)

Returns the name of a particular field –returns string--

qlite_has_more(resource result)

Finds whether or not more rows are available –returns bool--

qlite_has_prev(resource result) bool hasPrev(void)

Returns whether or not a previous row is available –returns bool--

qlite_key(resource result) int key(void)

Returns the current row index –returns int--

qlite_last_error(resource dbhandle) int lastError(void)

Returns the error code of the last error for a database –returns int--

qlite_last_insert_rowid(resource dbhandle) int lastInsertRowid(void)

Returns the rowid of the most recently inserted row –returns int--

qlite_libencoding(void)

Returns the encoding of the linked SQLite library –returns string--

qlite_libversion(void)

Returns the version of the linked SQLite library –returns string--

qlite_next(resource result) bool next(void) bool next(void)

Seek to the next row number –returns bool--

qlite_num_fields(resource result) int numFields(void) int numFields(void)

Returns the number of fields in a result set –returns int--

qlite_num_rows(resource result) int numRows(void)

Returns the number of rows in a buffered result set –returns int--

qlite_open(string filename [, int mode [, string &error_message ]])

Opens a SQLite database and create the database if it does not exist –returns resource--

qlite_popen(string filename [, int mode [, string &error_message ]])

Opens a persistent handle to an SQLite database and create the database if it does not exist –returns resource--

qlite_prev(resource result) bool prev(void)

Seek to the previous row number of a result set –returns bool--

qlite_query(resource dbhandle, string query [, int result_type [, string &error_msg ]]) resource sqlite_query(string query, resource dbhandle [, int result_type [, string &error_msg ]]) SQLiteResult query(string query [, int result_type [, string &error_msg ]])

Executes a query against a given database and returns a result handle –returns resource--

qlite_rewind(resource result) bool rewind(void)

Seek to the first row number –returns bool--

qlite_seek(resource result, int rownum) bool seek(int rownum)

Seek to a particular row number of a buffered result set –returns bool--

qlite_single_query(resource db, string query [, bool first_row_only [, bool decode_binary ]]) array singleQuery(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 –returns array--

qlite_udf_decode_binary(string data)

Decode binary data passed as parameters to an UDF –returns string--

qlite_udf_encode_binary(string data)

Encode binary data before returning it from an UDF –returns string--

qlite_unbuffered_query(resource dbhandle, string query [, int result_type [, string &error_msg ]]) resource sqlite_unbuffered_query(string query, resource dbhandle [, int result_type [, string &error_msg ]]) SQLiteUnbuffered unbufferedQuery(string query [, int result_type [, string &error_msg ]])

Execute a query that does not prefetch and buffer all data –returns resource--

qlite_valid(resource result) bool valid(void) bool valid(void)

Returns whether more rows are available –returns bool--

qrt(float arg)

Square root –returns float--

rand ([ int seed ])

Seed the random number generator –returns void--

scanf(string str, string format [, mixed &... ])

Parses input from a string according to a format –returns mixed--

sh2_auth_hostbased_file(resource session, string username, string hostname, string pubkeyfile, string privkeyfile [, string passphrase [, string local_username ]])

Authenticate using a public hostkey –returns bool--

sh2_auth_none(resource session, string username)

Authenticate as "none" –returns mixed--

sh2_auth_password(resource session, string username, string password)

Authenticate over SSH using a plain password –returns bool--

sh2_auth_pubkey_file(resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase ])

Authenticate using a public key –returns bool--

sh2_connect(string host [, int port [, array methods [, array callbacks ]]])

Connect to an SSH server –returns resource--

sh2_exec(resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type ]]]]])

Execute a command on a remote server –returns resource--

sh2_fetch_stream(resource channel, int streamid)

Fetch an extended data stream –returns resource--

sh2_fingerprint(resource session [, int flags ])

Retrieve fingerprint of remote server –returns string--

sh2_methods_negotiated(resource session)

Return list of negotiated methods –returns array--

sh2_publickey_add(resource pkey, string algoname, string blob [, bool overwrite [, array attributes ]])

Add an authorized publickey –returns bool--

sh2_publickey_init(resource session)

Initialize Publickey subsystem –returns resource--

sh2_publickey_list(resource pkey)

List currently authorized publickeys –returns array--

sh2_publickey_remove(resource pkey, string algoname, string blob)

Remove an authorized publickey –returns bool--

sh2_scp_recv(resource session, string remote_file, string local_file)

Request a file via SCP –returns bool--

sh2_scp_send(resource session, string local_file, string remote_file [, int create_mode ])

Send a file via SCP –returns bool--

sh2_sftp_lstat(resource sftp, string path)

Stat a symbolic link –returns array--

sh2_sftp_mkdir(resource sftp, string dirname [, int mode [, bool recursive ]])

Create a directory –returns bool--

sh2_sftp_readlink(resource sftp, string link)

Return the target of a symbolic link –returns string--

sh2_sftp_realpath(resource sftp, string filename)

Resolve the realpath of a provided path string –returns string--

sh2_sftp_rename(resource sftp, string from, string to)

Rename a remote file –returns bool--

sh2_sftp_rmdir(resource sftp, string dirname)

Remove a directory –returns bool--

sh2_sftp_stat(resource sftp, string path)

Stat a file on a remote filesystem –returns array--

sh2_sftp_symlink(resource sftp, string target, string link)

Create a symlink –returns bool--

sh2_sftp_unlink(resource sftp, string filename)

Delete a file –returns bool--

sh2_sftp(resource session)

Initialize SFTP subsystem –returns resource--

sh2_shell(resource session [, string term_type [, array env [, int width [, int height [, int width_height_type ]]]]])

Request an interactive shell –returns resource--

sh2_tunnel(resource session, string host, int port)

Open a tunnel through a remote server –returns resource--

tat(string filename)

Gives information about a file –returns array--

tats_absolute_deviation(array a)

Returns the absolute deviation of an array of values –returns float--

tats_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. –returns float--

tats_cdf_binomial(float par1, float par2, float par3, int which)

Calculates any one parameter of the binomial distribution given values for the others. –returns float--

tats_cdf_cauchy(float par1, float par2, float par3, int which)

Not documented –returns float--

tats_cdf_chisquare(float par1, float par2, int which)

Calculates any one parameter of the chi-square distribution given values for the others. –returns float--

tats_cdf_exponential(float par1, float par2, int which)

Not documented –returns float--

tats_cdf_f(float par1, float par2, float par3, int which)

Calculates any one parameter of the F distribution given values for the others. –returns float--

tats_cdf_gamma(float par1, float par2, float par3, int which)

Calculates any one parameter of the gamma distribution given values for the others. –returns float--

tats_cdf_laplace(float par1, float par2, float par3, int which)

Not documented –returns float--

tats_cdf_logistic(float par1, float par2, float par3, int which)

Not documented –returns float--

tats_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. –returns float--

tats_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. –returns float--

tats_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. –returns float--

tats_cdf_poisson(float par1, float par2, int which)

Calculates any one parameter of the Poisson distribution given values for the others. –returns float--

tats_cdf_t(float par1, float par2, int which)

Calculates any one parameter of the T distribution given values for the others. –returns float--

tats_cdf_uniform(float par1, float par2, float par3, int which)

Not documented –returns float--

tats_cdf_weibull(float par1, float par2, float par3, int which)

Not documented –returns float--

tats_covariance(array a, array b)

Computes the covariance of two data sets –returns float--

tats_den_uniform(float x, float a, float b)

Not documented –returns float--

tats_dens_beta(float x, float a, float b)

Not documented –returns float--

tats_dens_cauchy(float x, float ave, float stdev)

Not documented –returns float--

tats_dens_chisquare(float x, float dfr)

Not documented –returns float--

tats_dens_exponential(float x, float scale)

Not documented –returns float--

tats_dens_f(float x, float dfr1, float dfr2)

Description float –returns float--

tats_dens_gamma(float x, float shape, float scale)

Not documented –returns float--

tats_dens_laplace(float x, float ave, float stdev)

Not documented –returns float--

tats_dens_logistic(float x, float ave, float stdev)

Not documented –returns float--

tats_dens_negative_binomial(float x, float n, float pi)

Not documented –returns float--

tats_dens_normal(float x, float ave, float stdev)

Not documented –returns float--

tats_dens_pmf_binomial(float x, float n, float pi)

Not documented –returns float--

tats_dens_pmf_hypergeometric(float n1, float n2, float N1, float N2)

Description float –returns float--

tats_dens_pmf_poisson(float x, float lb)

Not documented –returns float--

tats_dens_t(float x, float dfr)

Not documented –returns float--

tats_dens_weibull(float x, float a, float b)

Not documented –returns float--

tats_harmonic_mean(array a)

Returns the harmonic mean of an array of values –returns number--

tats_kurtosis(array a)

Computes the kurtosis of the data in the array –returns float--

tats_rand_gen_beta(float a, float b)

Generates beta random deviate –returns float--

tats_rand_gen_chisquare(float df)

Generates random deviate from the distribution of a chisquare with "df" degrees of freedom random variable. –returns float--

tats_rand_gen_exponential(float av)

Generates a single random deviate from an exponential distribution with mean "av" –returns float--

tats_rand_gen_f(float dfn, float dfd)

Generates a random deviate –returns float--

tats_rand_gen_funiform(float low, float high)

Generates uniform float between low (exclusive) and high (exclusive) –returns float--

tats_rand_gen_gamma(float a, float r)

Generates random deviates from a gamma distribution –returns float--

tats_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)). –returns int--

tats_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 –returns int--

tats_rand_gen_int(void)

Generates random integer between 1 and 2147483562 –returns int--

tats_rand_gen_ipoisson(float mu)

Generates a single random deviate from a Poisson distribution with mean "mu" (mu >= 0.0). –returns int--

tats_rand_gen_iuniform(int low, int high)

Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive) –returns int--

tats_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 –returns float--

tats_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. –returns float--

tats_rand_gen_noncentral_t(float df, float xnonc)

Generates a single random deviate from a noncentral T distribution –returns float--

tats_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. –returns float--

tats_rand_gen_t(float df)

Generates a single random deviate from a T distribution –returns float--

tats_rand_get_seeds(void)

Not documented –returns array--

tats_rand_phrase_to_seeds(string phrase)

generate two seeds for the RGN random number generator –returns array--

tats_rand_ranf(void)

Returns a random floating point number from a uniform distribution over 0 - 1 (endpoints of this interval are not returned) using the current generator –returns float--

tats_rand_setall(int iseed1, int iseed2)

Not documented –returns void--

tats_skew(array a)

Computes the skewness of the data in the array –returns float--

tats_standard_deviation(array a [, bool sample ])

Returns the standard deviation –returns float--

tats_stat_binomial_coef(int x, int n)

Not documented –returns float--

tats_stat_correlation(array arr1, array arr2)

Not documented –returns float--

tats_stat_gennch(int n)

Not documented –returns float--

tats_stat_independent_t(array arr1, array arr2)

Not documented –returns float--

tats_stat_innerproduct(array arr1, array arr2)

Description float –returns float--

tats_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. –returns float--

tats_stat_paired_t(array arr1, array arr2)

Not documented –returns float--

tats_stat_percentile(float df, float xnonc)

Not documented –returns float--

tats_stat_powersum(array arr, float power)

Not documented –returns float--

tats_variance(array a [, bool sample ])

Returns the population variance –returns float--

tr_getcsv(string input [, string delimiter [, string enclosure [, string escape ]]])

Parse a CSV string into an array –returns array--

tr_ireplace(mixed search, mixed replace, mixed subject [, int &count ])

Case-insensitive version of str_replace(). –returns mixed--

tr_pad(string input, int pad_length [, string pad_string [, int pad_type ]])

Pad a string to a certain length with another string –returns string--

tr_repeat(string input, int multiplier)

Repeat a string –returns string--

tr_replace(mixed search, mixed replace, mixed subject [, int &count ])

Replace all occurrences of the search string with the replacement string –returns mixed--

tr_rot13(string str)

Perform the rot13 transform on a string –returns string--

tr_shuffle(string str)

Randomly shuffles a string –returns string--

tr_split(string string [, int split_length ])

Convert a string to an array –returns array--

tr_word_count(string string [, int format [, string charlist ]])

Return information about words used in a string –returns mixed--

trcasecmp(string str1, string str2)

Binary safe case-insensitive string comparison –returns int--

trchr

Alias of strstr() –returns ?--

trcmp(string str1, string str2)

Binary safe string comparison –returns int--

trcoll(string str1, string str2)

Locale based string comparison –returns int--

trcspn(string str1, string str2 [, int start [, int length ]])

Find length of initial segment not matching mask –returns int--

tream_bucket_append(resource brigade, resource bucket)

Append bucket to brigade –returns void--

tream_bucket_make_writeable(resource brigade)

Return a bucket object from the brigade for operating on –returns object--

tream_bucket_new(resource stream, string buffer)

Create a new bucket for use on the current stream –returns object--

tream_bucket_prepend(resource brigade, resource bucket)

Prepend bucket to brigade –returns void--

tream_context_create ([ array options [, array params ]])

Create a streams context –returns resource--

tream_context_get_default ([ array options ])

Retreive the default streams context –returns resource--

tream_context_get_options(resource stream_or_context)

Retrieve options for a stream/wrapper/context –returns array--

tream_context_set_default(array options)

Set the default streams context –returns resource--

tream_context_set_option(resource stream_or_context, string wrapper, string option, mixed value) bool stream_context_set_option(resource stream_or_context, array options)

Sets an option for a stream/wrapper/context –returns bool--

tream_context_set_params(resource stream_or_context, array params)

Set parameters for a stream/wrapper/context –returns bool--

tream_copy_to_stream(resource source, resource dest [, int maxlength [, int offset ]])

Copies data from one stream to another –returns int--

tream_encoding(resource stream [, string encoding ])

Set character set for stream encoding –returns bool--

tream_filter_append(resource stream, string filtername [, int read_write [, mixed params ]])

Attach a filter to a stream –returns resource--

tream_filter_prepend(resource stream, string filtername [, int read_write [, mixed params ]])

Attach a filter to a stream –returns resource--

tream_filter_register(string filtername, string classname) int filter(resource in, resource out, int &consumed, bool closing) bool onCreate(void) void onClose(void)

Register a stream filter implemented as a PHP class derived from php_user_filter –returns bool--

tream_filter_remove(resource stream_filter)

Remove a filter from a stream –returns bool--

tream_get_contents(resource handle [, int maxlength [, int offset ]])

Reads remainder of a stream into a string –returns string--

tream_get_filters(void)

Retrieve list of registered filters –returns array--

tream_get_line(resource handle, int length [, string ending ])

Gets line from stream resource up to a given delimiter –returns string--

tream_get_meta_data(resource stream)

Retrieves header/meta data from streams/file pointers –returns array--

tream_get_transports(void)

Retrieve list of registered socket transports –returns array--

tream_get_wrappers(void)

Retrieve list of registered streams –returns array--

tream_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 –returns void--

tream_register_wrapper

Alias of stream_wrapper_register() –returns ?--

tream_resolve_include_path(string filename [, resource context ])

Determine what file will be opened by calls to fopen() with a relative path –returns string--

tream_select(array &read, array &write, array &except, int tv_sec [, int tv_usec ])

Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec –returns int--

tream_set_blocking(resource stream, int mode)

Set blocking/non-blocking mode on a stream –returns bool--

tream_set_timeout(resource stream, int seconds [, int microseconds ])

Set timeout period on a stream –returns bool--

tream_set_write_buffer(resource stream, int buffer)

Sets file buffering on the given stream –returns int--

tream_socket_accept(resource server_socket [, float timeout [, string &peername ]])

Accept a connection on a socket created by stream_socket_server() –returns resource--

tream_socket_client(string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context ]]]]])

Open Internet or Unix domain socket connection –returns resource--

tream_socket_enable_crypto(resource stream, bool enable [, int crypto_type [, resource session_stream ]])

Turns encryption on/off on an already connected socket –returns mixed--

tream_socket_get_name(resource handle, bool want_peer)

Retrieve the name of the local or remote sockets –returns string--

tream_socket_pair(int domain, int type, int protocol)

Creates a pair of connected, indistinguishable socket streams –returns array--

tream_socket_recvfrom(resource socket, int length [, int flags [, string &address ]])

Receives data from a socket, connected or not –returns string--

tream_socket_sendto(resource socket, string data [, int flags [, string address ]])

Sends a message to a socket, whether it is connected or not –returns int--

tream_socket_server(string local_socket [, int &errno [, string &errstr [, int flags [, resource context ]]]])

Create an Internet or Unix domain server socket –returns resource--

tream_socket_shutdown(resource stream, int how)

Shutdown a full-duplex connection –returns bool--

tream_wrapper_register(string protocol, string classname) bool stream_open(string path, string mode, int options, string opened_path) void stream_close(void) string stream_read(int count) int stream_write(string data) bool stream_eof(void) int stream_tell(void) bool stream_seek(int offset, int whence) bool stream_flush(void) array stream_stat(void) bool unlink(string path) bool rename(string path_from, string path_to) bool mkdir(string path, int mode, int options) bool rmdir(string path, int options) bool dir_opendir(string path, int options) array url_stat(string path, int flags) string dir_readdir(void) bool dir_rewinddir(void) bool dir_closedir(void)

Register a URL wrapper implemented as a PHP class –returns bool--

tream_wrapper_restore(string protocol)

Restores a previously unregistered built-in wrapper –returns bool--

tream_wrapper_unregister(string protocol)

Unregister a URL wrapper –returns bool--

trftime(string format [, int timestamp ])

Format a local time/date according to locale settings –returns string--

trip_tags(string str [, string allowable_tags ])

Strip HTML and PHP tags from a string –returns string--

tripcslashes(string str)

Un-quote string quoted with addcslashes() –returns string--

tripos(string haystack, string needle [, int offset ])

Find position of first occurrence of a case-insensitive string –returns int--

tripslashes(string str)

Un-quotes a quoted string –returns string--

tristr(string haystack, mixed needle [, bool before_needle ])

Case-insensitive strstr() –returns string--

trlen(string string)

Get string length –returns int--

trnatcasecmp(string str1, string str2)

Case insensitive string comparisons using a "natural order" algorithm –returns int--

trnatcmp(string str1, string str2)

String comparisons using a "natural order" algorithm –returns int--

trncasecmp(string str1, string str2, int len)

Binary safe case-insensitive string comparison of the first n characters –returns int--

trncmp(string str1, string str2, int len)

Binary safe string comparison of the first n characters –returns int--

trpbrk(string haystack, string char_list)

Search a string for any of a set of characters –returns string--

trpos(string haystack, mixed needle [, int offset ])

Find position of first occurrence of a string –returns int--

trptime(string date, string format)

Parse a time/date generated with strftime() –returns array--

trrchr(string haystack, mixed needle)

Find the last occurrence of a character in a string –returns string--

trrev(string string)

Reverse a string –returns string--

trripos(string haystack, string needle [, int offset ])

Find position of last occurrence of a case-insensitive string in a string –returns int--

trrpos(string haystack, string needle [, int offset ])

Find position of last occurrence of a char in a string –returns int--

trspn(string str1, string str2 [, int start [, int length ]])

Find length of initial segment matching mask –returns int--

trstr(string haystack, mixed needle [, bool before_needle ])

Find first occurrence of a string –returns string--

trtok(string str, string token)

Tokenize string –returns string--

trtolower(string str)

Make a string lowercase –returns string--

trtotime(string time [, int now ])

Parse about any English textual datetime description into a Unix timestamp –returns int--

trtoupper(string string)

Make a string uppercase –returns string--

trtr(string str, string from, string to) string strtr(string str, array replace_pairs)

Translate certain characters –returns string--

trval(mixed var)

Get string value of a variable –returns string--

ubstr_compare(string main_str, string str, int offset [, int length [, bool case_insensitivity ]])

Binary safe comparison of 2 strings from an offset, up to length characters –returns int--

ubstr_count(string haystack, string needle [, int offset [, int length ]])

Count the number of substring occurrences –returns int--

ubstr_replace(mixed string, string replacement, int start [, int length ])

Replace text within a portion of a string –returns mixed--

ubstr(string string, int start [, int length ])

Return part of a string –returns string--

vn_add(string path [, bool recursive [, bool force ]])

Schedules the addition of an item in a working directory –returns bool--

vn_auth_get_parameter(string key)

Retrieves authentication parameter –returns string--

vn_auth_set_parameter(string key, string value)

Sets an authentication parameter –returns void--

vn_cat(string repos_url [, int revision_no ])

Returns the contents of a file in a repository –returns string--

vn_checkout(string repos, string targetpath [, int revision [, int flags ]])

Checks out a working copy from the repository –returns bool--

vn_cleanup(string workingdir)

Recursively cleanup a working copy directory, finishing incomplete operations and removing locks –returns bool--

vn_client_version(void)

Returns the version of the SVN client libraries –returns string--

vn_commit(string log, array targets [, bool dontrecurse ])

Sends changes from the local working copy to the repository –returns array--

vn_diff(string path1, int rev1, string path2, int rev2)

Recursively diffs two paths –returns array--

vn_fs_abort_txn(resource txn)

Abort a transaction, returns true if everything is ok, false othewise –returns bool--

vn_fs_apply_text(resource root, string path)

Creates and returns a stream that will be used to replace –returns resource--

vn_fs_begin_txn2(resource repos, int rev)

Create a new transaction –returns resource--

vn_fs_change_node_prop(resource root, string path, string name, string value)

Return true if everything is ok, false otherwise –returns bool--

vn_fs_check_path(resource fsroot, string path)

Determines what kind of item lives at path in a given repository fsroot –returns int--

vn_fs_contents_changed(resource root1, string path1, resource root2, string path2)

Return true if content is different, false otherwise –returns bool--

vn_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 –returns bool--

vn_fs_delete(resource root, string path)

Deletes a file or a directory, return true if all is ok, false otherwise –returns bool--

vn_fs_dir_entries(resource fsroot, string path)

Enumerates the directory entries under path; returns a hash of dir names to file type –returns array--

vn_fs_file_contents(resource fsroot, string path)

Returns a stream to access the contents of a file from a given version of the fs –returns resource--

vn_fs_file_length(resource fsroot, string path)

Returns the length of a file from a given version of the fs –returns int--

vn_fs_is_dir(resource root, string path)

Return true if the path points to a directory, false otherwise –returns bool--

vn_fs_is_file(resource root, string path)

Return true if the path points to a file, false otherwise –returns bool--

vn_fs_make_dir(resource root, string path)

Creates a new empty directory, returns true if all is ok, false otherwise –returns bool--

vn_fs_make_file(resource root, string path)

Creates a new empty file, returns true if all is ok, false otherwise –returns bool--

vn_fs_node_created_rev(resource fsroot, string path)

Returns the revision in which path under fsroot was created –returns int--

vn_fs_node_prop(resource fsroot, string path, string propname)

Returns the value of a property for a node –returns string--

vn_fs_props_changed(resource root1, string path1, resource root2, string path2)

Return true if props are different, false otherwise –returns bool--

vn_fs_revision_prop(resource fs, int revnum, string propname)

Fetches the value of a named property –returns string--

vn_fs_revision_root(resource fs, int revnum)

Get a handle on a specific version of the repository root –returns resource--

vn_fs_txn_root(resource txn)

Creates and returns a transaction root –returns resource--

vn_fs_youngest_rev(resource fs)

Returns the number of the youngest revision in the filesystem –returns int--

vn_import(string path, string url, bool nonrecursive)

Imports an unversioned path into a repository –returns bool--

vn_log(string repos_url [, int start_revision [, int end_revision [, int limit [, int flags ]]]])

Returns the commit log messages of a repository URL –returns array--

vn_ls(string repos_url [, int revision_no [, bool recurse ]])

Returns list of directory contents in repository URL, optionally at revision number –returns array--

vn_repos_create(string path [, array config [, array fsconfig ]])

Create a new subversion repository at path –returns resource--

vn_repos_fs_begin_txn_for_commit(resource repos, int rev, string author, string log_msg)

Create a new transaction –returns resource--

vn_repos_fs_commit_txn(resource txn)

Commits a transaction and returns the new revision –returns int--

vn_repos_fs(resource repos)

Gets a handle on the filesystem for a repository –returns resource--

vn_repos_hotcopy(string repospath, string destpath, bool cleanlogs)

Make a hot-copy of the repos at repospath; copy it to destpath –returns bool--

vn_repos_open(string path)

Open a shared lock on a repository. –returns resource--

vn_repos_recover(string path)

Run recovery procedures on the repository located at path. –returns bool--

vn_status(string path [, int flags ])

Returns the status of working copy files and directories –returns array--

vn_update(string path [, int revno [, bool recurse ]])

Update working copy –returns int--

wf_actiongeturl(string url, string target)

Get a URL from a Shockwave Flash movie –returns void--

wf_actiongotoframe(int framenumber)

Play a frame and then stop –returns void--

wf_actiongotolabel(string label)

Display a frame with the specified label –returns void--

wf_actionnextframe(void)

Go forward one frame –returns void--

wf_actionplay(void)

Start playing the flash movie from the current frame –returns void--

wf_actionprevframe(void)

Go backwards one frame –returns void--

wf_actionsettarget(string target)

Set the context for actions –returns void--

wf_actionstop(void)

Stop playing the flash movie at the current frame –returns void--

wf_actiontogglequality(void)

Toggle between low and high quality –returns void--

wf_actionwaitforframe(int framenumber, int skipcount)

Skip actions if a frame has not been loaded –returns void--

wf_addbuttonrecord(int states, int shapeid, int depth)

Controls location, appearance and active area of the current button –returns void--

wf_addcolor(float r, float g, float b, float a)

Set the global add color to the rgba value specified –returns void--

wf_closefile ([ int return_file ])

Close the current Shockwave Flash file –returns void--

wf_definebitmap(int objid, string image_name)

Define a bitmap –returns void--

wf_definefont(int fontid, string fontname)

Defines a font –returns void--

wf_defineline(int objid, float x1, float y1, float x2, float y2, float width)

Define a line –returns void--

wf_definepoly(int objid, array coords, int npoints, float width)

Define a polygon –returns void--

wf_definerect(int objid, float x1, float y1, float x2, float y2, float width)

Define a rectangle –returns void--

wf_definetext(int objid, string str, int docenter)

Define a text string –returns void--

wf_endbutton(void)

End the definition of the current button –returns void--

wf_enddoaction(void)

End the current action –returns void--

wf_endshape(void)

Completes the definition of the current shape –returns void--

wf_endsymbol(void)

End the definition of a symbol –returns void--

wf_fontsize(float size)

Change the font size –returns void--

wf_fontslant(float slant)

Set the font slant –returns void--

wf_fonttracking(float tracking)

Set the current font tracking –returns void--

wf_getbitmapinfo(int bitmapid)

Get information about a bitmap –returns array--

wf_getfontinfo(void)

Gets font information –returns array--

wf_getframe(void)

Get the frame number of the current frame –returns int--

wf_labelframe(string name)

Label the current frame –returns void--

wf_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 –returns void--

wf_modifyobject(int depth, int how)

Modify an object –returns void--

wf_mulcolor(float r, float g, float b, float a)

Sets the global multiply color to the rgba value specified –returns void--

wf_nextid(void)

Returns the next free object id –returns int--

wf_oncondition(int transition)

Describe a transition used to trigger an action list –returns void--

wf_openfile(string filename, float width, float height, float framerate, float r, float g, float b)

Open a new Shockwave Flash file –returns void--

wf_ortho(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax)

Defines an orthographic mapping of user coordinates onto the current viewport –returns void--

wf_ortho2(float xmin, float xmax, float ymin, float ymax)

Defines 2D orthographic mapping of user coordinates onto the current viewport –returns void--

wf_perspective(float fovy, float aspect, float near, float far)

Define a perspective projection transformation –returns void--

wf_placeobject(int objid, int depth)

Place an object onto the screen –returns void--

wf_polarview(float dist, float azimuth, float incidence, float twist)

Define the viewer's position with polar coordinates –returns void--

wf_popmatrix(void)

Restore a previous transformation matrix –returns void--

wf_posround(int round)

Enables or Disables the rounding of the translation when objects are placed or moved –returns void--

wf_pushmatrix(void)

Push the current transformation matrix back unto the stack –returns void--

wf_removeobject(int depth)

Remove an object –returns void--

wf_rotate(float angle, string axis)

Rotate the current transformation –returns void--

wf_scale(float x, float y, float z)

Scale the current transformation –returns void--

wf_setfont(int fontid)

Change the current font –returns void--

wf_setframe(int framenumber)

Switch to a specified frame –returns void--

wf_shapearc(float x, float y, float r, float ang1, float ang2)

Draw a circular arc –returns void--

wf_shapecurveto(float x1, float y1, float x2, float y2)

Draw a quadratic bezier curve between two points –returns void--

wf_shapecurveto3(float x1, float y1, float x2, float y2, float x3, float y3)

Draw a cubic bezier curve –returns void--

wf_shapefillbitmapclip(int bitmapid)

Set current fill mode to clipped bitmap –returns void--

wf_shapefillbitmaptile(int bitmapid)

Set current fill mode to tiled bitmap –returns void--

wf_shapefilloff(void)

Turns off filling –returns void--

wf_shapefillsolid(float r, float g, float b, float a)

Set the current fill style to the specified color –returns void--

wf_shapelinesolid(float r, float g, float b, float a, float width)

Set the current line style –returns void--

wf_shapelineto(float x, float y)

Draw a line –returns void--

wf_shapemoveto(float x, float y)

Move the current position –returns void--

wf_showframe(void)

Display the current frame –returns void--

wf_startbutton(int objid, int type)

Start the definition of a button –returns void--

wf_startdoaction(void)

Start a description of an action list for the current frame –returns void--

wf_startshape(int objid)

Start a complex shape –returns void--

wf_startsymbol(int objid)

Define a symbol –returns void--

wf_textwidth(string str)

Get the width of a string –returns float--

wf_translate(float x, float y, float z)

Translate the current transformations –returns void--

wf_viewport(float xmin, float xmax, float ymin, float ymax)

Select an area for future drawing –returns void--

_construct(string script)

Creates a new SWFAction –returns SWFAction--

_construct(mixed file [, mixed alphafile ])

Loads Bitmap object –returns SWFBitmap--

etHeight(void)

Returns the bitmap's height –returns float--

etWidth(void)

Returns the bitmap's width –returns float--

ddAction(SWFAction action, int flags)

Adds an action –returns void--

ddASound(SWFSound sound, int flags)

Associates a sound with a button transition –returns SWFSoundInstance--

ddShape(SWFShape shape, int flags)

Adds a shape to a button –returns void--

_construct(void)

Creates a new Button –returns SWFButton--

etAction(SWFAction action)

Sets the action –returns void--

etDown(SWFShape shape)

Alias for addShape(shape, SWFBUTTON_DOWN) –returns void--

etHit(SWFShape shape)

Alias for addShape(shape, SWFBUTTON_HIT) –returns void--

etMenu(int flag)

enable track as menu button behaviour –returns void--

etOver(SWFShape shape)

Alias for addShape(shape, SWFBUTTON_OVER) –returns void--

etUp(SWFShape shape)

Alias for addShape(shape, SWFBUTTON_UP) –returns void--

ddAction(SWFAction action, int flags)

Adds this SWFAction to the given SWFSprite instance –returns void--

ddColor(int red, int green, int blue [, int a ])

Adds the given color to this item's color transform –returns void--

ndMask(void)

Another way of defining a MASK layer –returns void--

etRot(void)

Description SWFDisplayItem float –returns float--

etX(void)

Description SWFDisplayItem float –returns float--

etXScale(void)

Description SWFDisplayItem float –returns float--

etXSkew(void)

Description SWFDisplayItem float –returns float--

etY(void)

Description SWFDisplayItem float –returns float--

etYScale(void)

Description SWFDisplayItem float –returns float--

etYSkew(void)

Description SWFDisplayItem float –returns float--

ove(int dx, int dy)

Moves object in relative coordinates –returns void--

oveTo(int x, int y)

Moves object in global coordinates –returns void--

ultColor(int red, int green, int blue [, int a ])

Multiplies the item's color transform –returns void--

emove(void)

Removes the object from the movie –returns void--

otate(float angle)

Rotates in relative coordinates –returns void--

otateTo(float angle)

Rotates the object in global coordinates –returns void--

cale(int dx, int dy)

Scales the object in relative coordinates –returns void--

caleTo(int x [, int y ])

Scales the object in global coordinates –returns void--

etDepth(float depth)

Sets z-order –returns void--

etMaskLevel(int level)

Defines a MASK layer at level –returns void--

etMatrix(float a, float b, float c, float d, float x, float y)

Sets the item's transform matrix –returns void--

etName(string name)

Sets the object's name –returns void--

etRatio(float ratio)

Sets the object's ratio –returns void--

kewX(float ddegrees)

Sets the X-skew –returns void--

kewXTo(float degrees)

Sets the X-skew –returns void--

kewY(float ddegrees)

Sets the Y-skew –returns void--

kewYTo(float degrees)

Sets the Y-skew –returns void--

oveTo(int x, int y)

Moves fill origin –returns void--

otateTo(float angle)

Sets fill's rotation –returns void--

caleTo(int x [, int y ])

Sets fill's scale –returns void--

kewXTo(float x)

Sets fill x-skew –returns void--

kewYTo(float y)

Sets fill y-skew –returns void--

_construct(string filename)

Loads a font definition –returns SWFFont--

etAscent(void)

Returns the ascent of the font, or 0 if not available –returns float--

etDescent(void)

Returns the descent of the font, or 0 if not available –returns float--

etLeading(void)

Returns the leading of the font, or 0 if not available –returns float--

etShape(int code)

Returns the glyph shape of a char as a text string –returns string--

etUTF8Width(string string)

Calculates the width of the given string in this font at full height –returns float--

etWidth(string string)

Returns the string's width –returns float--

ddChars(string char)

Adds characters to a font for exporting font –returns void--

ddUTF8Chars(string char)

Adds characters to a font for exporting font –returns void--

ddEntry(float ratio, int red, int green, int blue [, int a ])

Adds an entry to the gradient list –returns void--

_construct(void)

Creates a gradient object –returns SWFGradient--

_construct(void)

Creates a new SWFMorph object –returns SWFMorph--

etShape1(void)

Gets a handle to the starting shape –returns SWFShape--

etShape2(void)

Gets a handle to the ending shape –returns SWFShape--

dd(object instance)

Adds any type of data to a movie –returns mixed--

ddExport(SWFCharacter char, string name)

Description SWFMovie void –returns void--

ddFont(SWFFont font)

Description SWFMovie mixed –returns mixed--

_construct(int version)

Creates a new movie object, representing an SWF version 4 movie –returns SWFMovie--

mportChar(string libswf, string name)

Description SWFMovie SWFSprite –returns SWFSprite--

mportFont(string libswf, string name)

Description SWFMovie SWFFontChar –returns SWFFontChar--

abelFrame(string label)

Labels a frame –returns void--

extFrame(void)

Moves to the next frame of the animation –returns void--

utput ([ int compression ])

Dumps your lovingly prepared movie out –returns int--

emove(object instance)

Removes the object instance from the display list –returns void--

ave(string filename [, int compression ])

Saves the SWF movie in a file –returns int--

aveToFile(stream x [, int compression ])

Description SWFMovie int –returns int--

etbackground(int red, int green, int blue)

Sets the background color –returns void--

etDimension(int width, int height)

Sets the movie's width and height –returns void--

etFrames(int number)

Sets the total number of frames in the animation –returns void--

etRate(int rate)

Sets the animation's frame rate –returns void--

tartSound(SWFSound sound)

Description SWFMovie SWFSoundInstance –returns SWFSoundInstance--

topSound(SWFSound sound)

Description SWFMovie void –returns void--

treamMP3(mixed mp3file [, float skip ])

Streams a MP3 file –returns int--

riteExports(void)

Description SWFMovie void –returns void--

_construct ([ string file ])

Returns a SWFPrebuiltClip object –returns SWFPrebuiltClip--

ddFill(int red, int green, int blue [, int a ]) SWFFill addFill(SWFBitmap bitmap [, int flags ]) SWFFill addFill(SWFGradient gradient [, int flags ])

Adds a solid fill to the shape –returns SWFFill--

_construct(void)

Creates a new shape object –returns SWFShape--

rawArc(float r, float startAngle, float endAngle)

Draws an arc of radius r centered at the current location, from angle startAngle to angle endAngle measured clockwise from 12 o'clock –returns void--

rawCircle(float r)

Draws a circle of radius r centered at the current location, in a counter-clockwise fashion –returns void--

rawCubic(float bx, float by, float cx, float cy, float dx, float dy)

Draws a cubic bezier curve using the current position and the three given points as control points –returns int--

rawCubicTo(float bx, float by, float cx, float cy, float dx, float dy)

Draws a cubic bezier curve using the current position and the three given points as control points –returns int--

rawCurve(int controldx, int controldy, int anchordx, int anchordy [, int targetdx ], int targetdy)

Draws a curve (relative) –returns int--

rawCurveTo(int controlx, int controly, int anchorx, int anchory [, int targetx ], int targety)

Draws a curve –returns int--

rawGlyph(SWFFont font, string character [, int size ])

Draws the first character in the given string into the shape using the glyph definition from the given font –returns void--

rawLine(int dx, int dy)

Draws a line (relative) –returns void--

rawLineTo(int x, int y)

Draws a line –returns void--

ovePen(int dx, int dy)

Moves the shape's pen (relative) –returns void--

ovePenTo(int x, int y)

Moves the shape's pen –returns void--

etLeftFill(SWFGradient fill) void setLeftFill(int red, int green, int blue [, int a ])

Sets left rasterizing color –returns void--

etLine(SWFShape shape) void setLine(int width, int red, int green, int blue [, int a ])

Sets the shape's line style –returns void--

etRightFill(SWFGradient fill) void setRightFill(int red, int green, int blue [, int a ])

Sets right rasterizing color –returns void--

_construct(string filename, int flags)

Returns a new SWFSound object from given file –returns SWFSound--

oopCount(int point)

Description SWFSoundInstance void –returns void--

oopInPoint(int point)

Description SWFSoundInstance void –returns void--

oopOutPoint(int point)

Description SWFSoundInstance void –returns void--

oMultiple(void)

Description SWFSoundInstance void –returns void--

dd(object object)

Adds an object to a sprite –returns void--

_construct(void)

Creates a movie clip (a sprite) –returns SWFSprite--

abelFrame(string label)

Labels frame –returns void--

extFrame(void)

Moves to the next frame of the animation –returns void--

emove(object object)

Removes an object to a sprite –returns void--

etFrames(int number)

Sets the total number of frames in the animation –returns void--

tartSound(SWFSound sount)

Description SWFSprite SWFSoundInstance –returns SWFSoundInstance--

topSound(SWFSound sount)

Description SWFSprite void –returns void--

ddString(string string)

Draws a string –returns void--

ddUTF8String(string text)

Writes the given text into this SWFText object at the current pen position, using the current font, height, spacing, and color –returns void--

_construct(void)

Creates a new SWFText object –returns void--

etAscent(void)

Returns the ascent of the current font at its current size, or 0 if not available –returns float--

etDescent(void)

Returns the descent of the current font at its current size, or 0 if not available –returns float--

etLeading(void)

Returns the leading of the current font at its current size, or 0 if not available –returns float--

etUTF8Width(string string)

calculates the width of the given string in this text objects current font and size –returns float--

etWidth(string string)

Computes string's width –returns float--

oveTo(int x, int y)

Moves the pen –returns void--

etColor(int red, int green, int blue [, int a ])

Sets the current text color –returns void--

etFont(string font)

Sets the current font –returns void--

etHeight(int height)

Sets the current font height –returns void--

etSpacing(float spacing)

Sets the current font spacing –returns void--

ddChars(string chars)

adds characters to a font that will be available within a textfield –returns void--

ddString(string string)

Concatenates the given string to the text field –returns void--

lign(int alignement)

Sets the text field alignment –returns void--

_construct ([ int flags ])

Creates a text field object –returns SWFTextField--

etBounds(int width, int height)

Sets the text field width and height –returns void--

etColor(int red, int green, int blue [, int a ])

Sets the color of the text field –returns void--

etFont(string font)

Sets the text field font –returns void--

etHeight(int height)

Sets the font height of this text field font –returns void--

etIndentation(int width)

Sets the indentation of the first line –returns void--

etLeftMargin(int width)

Sets the left margin width of the text field –returns void--

etLineSpacing(int height)

Sets the line spacing of the text field –returns void--

etMargins(int left, int right)

Sets the margins width of the text field –returns void--

etName(string name)

Sets the variable name –returns void--

etPadding(float padding)

Sets the padding of this textfield –returns void--

etRightMargin(int width)

Sets the right margin width of the text field –returns void--

_construct ([ string file ])

Returns a SWFVideoStream object –returns SWFVideoStream--

etNumFrames(void)

Returns the number of frames in the video –returns int--

etDimension(int x, int y)

Sets video dimension –returns void--

wish::__construct(string index_names)

Construct a Swish object –returns void--

wish->getMetaList(string index_name)

Get the list of meta entries for the index –returns array--

wish->getPropertyList(string index_name)

Get the list of properties for the index –returns array--

wish->prepare ([ string query ])

Prepare a search query –returns object--

wish->query(string query)

Execute a query and return results object –returns object--

wishResult->getMetaList(void)

Get a list of meta entries –returns array--

wishResult->stem(string word)

Stems the given word –returns array--

wishResults->getParsedWords(string index_name)

Get an array of parsed words –returns array--

wishResults->getRemovedStopwords(string index_name)

Get an array of stopwords removed from the query –returns array--

wishResults->nextResult(void)

Get the next search result –returns object--

wishResults->seekResult(int position)

Set current seek pointer to the given position –returns int--

wishSearch->execute ([ string query ])

Execute the search and get the results –returns object--

wishSearch->resetLimit(void)

Reset the search limits –returns void--

wishSearch->setLimit(string property, string low, string high)

Set the search limits –returns void--

wishSearch->setPhraseDelimiter(string delimiter)

Set the phrase delimiter –returns void--

wishSearch->setSort(string sort)

Set the sort order –returns void--

wishSearch->setStructure(int structure)

Set the structure flag in the search object –returns void--

ybase_affected_rows ([ resource link_identifier ])

Gets number of affected rows in last query –returns int--

ybase_close ([ resource link_identifier ])

Closes a Sybase connection –returns bool--

ybase_connect ([ string servername [, string username [, string password [, string charset [, string appname ]]]]])

Opens a Sybase server connection –returns resource--

ybase_data_seek(resource result_identifier, int row_number)

Moves internal row pointer –returns bool--

ybase_deadlock_retry_count(int retry_count)

Sets the deadlock retry count –returns void--

ybase_fetch_array(resource result)

Fetch row as array –returns array--

ybase_fetch_assoc(resource result)

Fetch a result row as an associative array –returns array--

ybase_fetch_field(resource result [, int field_offset ])

Get field information from a result –returns object--

ybase_fetch_object(resource result [, mixed object ])

Fetch a row as an object –returns object--

ybase_fetch_row(resource result)

Get a result row as an enumerated array –returns array--

ybase_field_seek(resource result, int field_offset)

Sets field offset –returns bool--

ybase_free_result(resource result)

Frees result memory –returns bool--

ybase_get_last_message(void)

Returns the last message from the server –returns string--

ybase_min_client_severity(int severity)

Sets minimum client severity –returns void--

ybase_min_error_severity(int severity)

Sets minimum error severity –returns void--

ybase_min_message_severity(int severity)

Sets minimum message severity –returns void--

ybase_min_server_severity(int severity)

Sets minimum server severity –returns void--

ybase_num_fields(resource result)

Gets the number of fields in a result set –returns int--

ybase_num_rows(resource result)

Get number of rows in a result set –returns int--

ybase_pconnect ([ string servername [, string username [, string password [, string charset [, string appname ]]]]])

Open persistent Sybase connection –returns resource--

ybase_query(string query [, resource link_identifier ])

Sends a Sybase query –returns mixed--

ybase_result(resource result, int row, mixed field)

Get result data –returns string--

ybase_select_db(string database_name [, resource link_identifier ])

Selects a Sybase database –returns bool--

ybase_set_message_handler(callback handler [, resource connection ])

Sets the handler called when a server message is raised –returns bool--

ybase_unbuffered_query(string query, resource link_identifier [, bool store_result ])

Send a Sybase query and do not block –returns resource--

ymlink(string target, string link)

Creates a symbolic link –returns bool--

ys_get_temp_dir(void)

Returns directory path used for temporary files –returns string--

ys_getloadavg(void)

Gets system load average –returns array--

yslog(int priority, string message)

Generate a system log message –returns bool--

ystem(string command [, int &return_var ])

Execute an external program and display the output –returns string--

an(float arg)

Tangent –returns float--

anh(float arg)

Hyperbolic tangent –returns float--

cpwrap_check(string daemon, string address [, string user [, bool nodns ]])

Performs a tcpwrap check –returns bool--

empnam(string dir, string prefix)

Create file with unique file name –returns string--

extdomain(string text_domain)

Sets the default domain –returns string--

idy_access_count(tidy object)

Returns the Number of Tidy accessibility warnings encountered for specified document –returns int--

idy_clean_repair(tidy object) bool tidy->cleanRepair(void)

Execute configured cleanup and repair operations on parsed markup –returns bool--

idy_config_count(tidy object)

Returns the Number of Tidy configuration errors encountered for specified document –returns int--

idy::__construct ([ string filename [, mixed config [, string encoding [, bool use_include_path ]]]])

Constructs a new tidy object –returns tidy--

idy_diagnose(tidy object) bool tidy->diagnose(void)

Run configured diagnostics on parsed and repaired markup –returns bool--

idy_error_count(tidy object)

Returns the Number of Tidy errors encountered for specified document –returns int--

idy_get_body(tidy object) tidyNode tidy->body(void)

Returns a tidyNode Object starting from the <body> tag of the tidy parse tree –returns tidyNode--

idy_get_config(tidy object) array tidy->getConfig(void)

Get current Tidy configuration –returns array--

idy_get_error_buffer(tidy object)

Return warnings and errors which occurred parsing the specified document –returns string--

idy_get_head(tidy object) tidyNode tidy->head(void)

Returns a tidyNode Object starting from the <head> tag of the tidy parse tree –returns tidyNode--

idy_get_html_ver(tidy object) int tidy->getHtmlVer(void)

Get the Detected HTML version for the specified document –returns int--

idy_get_html(tidy object) tidyNode tidy->html(void)

Returns a tidyNode Object starting from the <html> tag of the tidy parse tree –returns tidyNode--

idy_get_opt_doc(tidy object, string optname) string tidy->getOptDoc(string optname)

Returns the documentation for the given option name –returns string--

idy_get_output(tidy object)

Return a string representing the parsed tidy markup –returns string--

idy_get_release(void) string tidy->getRelease(void)

Get release date (version) for Tidy library –returns string--

idy_get_root(tidy object) tidyNode tidy->root(void)

Returns a tidyNode object representing the root of the tidy parse tree –returns tidyNode--

idy_get_status(tidy object) int tidy->getStatus(void)

Get status of specified document –returns int--

idy_getopt(tidy object, string option) mixed tidy->getOpt(string option)

Returns the value of the specified configuration option for the tidy document –returns mixed--

idy_is_xhtml(tidy object) bool tidy->isXhtml(void)

Indicates if the document is a XHTML document –returns bool--

idy_is_xml(tidy object) bool tidy->isXml(void)

Indicates if the document is a generic (non HTML/XHTML) XML document –returns bool--

idy_load_config(string filename, string encoding)

Load an ASCII Tidy configuration file with the specified encoding –returns void--

idy_node->get_attr(int attrib_id)

Return the attribute with the provided attribute id –returns tidy_attr--

idy_node->get_nodes(int node_id)

Return an array of nodes under this node with the specified id –returns array--

idy_node->next(void)

Returns the next sibling to this node –returns tidy_node--

idy_node->prev(void)

Returns the previous sibling to this node –returns tidy_node--

idy_parse_file(string filename [, mixed config [, string encoding [, bool use_include_path ]]]) bool tidy->parseFile(string filename [, mixed config [, string encoding [, bool use_include_path ]]])

Parse markup in file or URI –returns tidy--

idy_parse_string(string input [, mixed config [, string encoding ]]) bool tidy->parseString(string input [, mixed config [, string encoding ]])

Parse a document stored in a string –returns tidy--

idy_repair_file(string filename [, mixed config [, string encoding [, bool use_include_path ]]])

Repair a file and return it as a string –returns string--

idy_repair_string(string data [, mixed config [, string encoding ]])

Repair a string using an optionally provided configuration file –returns string--

idy_reset_config(void)

Restore Tidy configuration to default values –returns bool--

idy_save_config(string filename)

Save current settings to named file –returns bool--

idy_set_encoding(string encoding)

Set the input/output character encoding for parsing markup –returns bool--

idy_setopt(string option, mixed value)

Updates the configuration settings for the specified tidy document –returns bool--

idy_warning_count(tidy object)

Returns the Number of Tidy warnings encountered for specified document –returns int--

idyNode::getParent(void)

returns the parent node of the current node –returns tidyNode--

idyNode->hasChildren(void)

Returns true if this node has children –returns bool--

idyNode->hasSiblings(void)

Returns true if this node has siblings –returns bool--

idyNode->isAsp(void)

Returns true if this node is ASP –returns bool--

idyNode->isComment(void)

Returns true if this node represents a comment –returns bool--

idyNode->isHtml(void)

Returns true if this node is part of a HTML document –returns bool--

idyNode->isJste(void)

Returns true if this node is JSTE –returns bool--

idyNode->isPhp(void)

Returns true if this node is PHP –returns bool--

idyNode->isText(void)

Returns true if this node represents text (no markup) –returns bool--

ime_nanosleep(int seconds, int nanoseconds)

Delay for a number of seconds and nanoseconds –returns mixed--

ime_sleep_until(float timestamp)

Make the script sleep until the specified time –returns bool--

ime(void)

Return current Unix timestamp –returns int--

imezone_abbreviations_list(void) array DateTimeZone::listAbbreviations(void)

Returns associative array containing dst, offset and the timezone name –returns array--

imezone_identifiers_list(void) array DateTimeZone::listIdentifiers(void)

Returns numerically index array with all timezone identifiers –returns array--

imezone_name_from_abbr(string abbr [, int gmtOffset [, int isdst ]])

Returns the timezone name from abbrevation –returns string--

imezone_name_get(DateTimeZone object) string DateTimeZone::getName(void)

Returns the name of the timezone –returns string--

imezone_offset_get(DateTimeZone object, DateTime datetime) int DateTimeZone::getOffset(DateTime datetime)

Returns the timezone offset from GMT –returns int--

imezone_open(string timezone) DateTimeZone DateTimeZone::__construct(string timezone)

Returns new DateTimeZone object –returns DateTimeZone--

imezone_transitions_get(DateTimeZone object) array DateTimeZone::getTransitions(void)

Returns all transitions for the timezone –returns array--

mpfile(void)

Creates a temporary file –returns resource--

oken_get_all(string source)

Split given source into PHP tokens –returns array--

oken_name(int token)

Get the symbolic name of a given PHP token –returns string--

ouch(string filename [, int time [, int atime ]])

Sets access and modification time of file –returns bool--

rigger_error(string error_msg [, int error_type ])

Generates a user-level error/warning/notice message –returns bool--

rim(string str [, string charlist ])

Strip whitespace (or other characters) from the beginning and end of a string –returns string--

asort(array &array, callback cmp_function)

Sort an array with a user-defined comparison function and maintain index association –returns bool--

cfirst(string str)

Make a string's first character uppercase –returns string--

cwords(string str)

Uppercase the first character of each word in a string –returns string--

dm_add_search_limit(resource agent, int var, string val)

Add various search limits –returns bool--

dm_alloc_agent_array(array databases)

Allocate mnoGoSearch session –returns resource--

dm_alloc_agent(string dbaddr [, string dbmode ])

Allocate mnoGoSearch session –returns resource--

dm_api_version(void)

Get mnoGoSearch API version –returns int--

dm_cat_list(resource agent, string category)

Get all the categories on the same level with the current one –returns array--

dm_cat_path(resource agent, string category)

Get the path to the current category –returns array--

dm_check_charset(resource agent, string charset)

Check if the given charset is known to mnogosearch –returns bool--

dm_check_stored(resource agent, int link, string doc_id)

Check connection to stored –returns int--

dm_clear_search_limits(resource agent)

Clear all mnoGoSearch search restrictions –returns bool--

dm_close_stored(resource agent, int link)

Close connection to stored –returns int--

dm_crc32(resource agent, string str)

Return CRC32 checksum of given string –returns int--

dm_errno(resource agent)

Get mnoGoSearch error number –returns int--

dm_error(resource agent)

Get mnoGoSearch error message –returns string--

dm_find(resource agent, string query)

Perform search –returns resource--

dm_free_agent(resource agent)

Free mnoGoSearch session –returns int--

dm_free_ispell_data(int agent)

Free memory allocated for ispell data –returns bool--

dm_free_res(resource res)

Free mnoGoSearch result –returns bool--

dm_get_doc_count(resource agent)

Get total number of documents in database –returns int--

dm_get_res_field(resource res, int row, int field)

Fetch a result field –returns string--

dm_get_res_param(resource res, int param)

Get mnoGoSearch result parameters –returns string--

dm_hash32(resource agent, string str)

Return Hash32 checksum of gived string –returns int--

dm_load_ispell_data(resource agent, int var, string val1, string val2, int flag)

Load ispell data –returns bool--

dm_open_stored(resource agent, string storedaddr)

Open connection to stored –returns int--

dm_set_agent_param(resource agent, int var, string val)

Set mnoGoSearch agent session parameters –returns bool--

ksort(array &array, callback cmp_function)

Sort an array by keys using a user-defined comparison function –returns bool--

mask ([ int mask ])

Changes the current umask –returns int--

nicode_decode(string input, string encoding [, int errmode ])

Convert a binary string into a Unicode string –returns unicode--

nicode_encode(unicode input, string encoding [, int errmode ])

Convert a unicode string in any encoding –returns string--

nicode_get_error_mode(int direction)

Get the error mode for strings conversions –returns int--

nicode_get_subst_char(void)

Get the substitution character for string conversion errors –returns unicode--

nicode_set_error_mode(int direction, int mode)

Set the error mode for strings conversions –returns bool--

nicode_set_subst_char(unicode character)

Set the substitution character for string conversion errors –returns bool--

niqid ([ string prefix [, bool more_entropy ]])

Generate a unique ID –returns string--

nixtojd ([ int timestamp ])

Convert Unix timestamp to Julian Day –returns int--

nlink(string filename [, resource context ])

Deletes a file –returns bool--

npack(string format, string data)

Unpack data from binary string –returns array--

nregister_tick_function(string function_name)

De-register a function for execution on each tick –returns void--

nserialize(string str)

Creates a PHP value from a stored representation –returns mixed--

nset(mixed var [, mixed var [, mixed ... ]])

Unset a given variable –returns void--

rldecode(string str)

Decodes URL-encoded string –returns string--

rlencode(string str)

URL-encodes string –returns string--

se_soap_error_handler ([ bool handler ])

Set whether to use the SOAP error handler and return the former value –returns bool--

ser_error

Alias of trigger_error() –returns ?--

sleep(int micro_seconds)

Delay execution in microseconds –returns void--

sort(array &array, callback cmp_function)

Sort an array by values using a user-defined comparison function –returns bool--

tf8_decode(string data)

Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1 –returns string--

tf8_encode(string data)

Encodes an ISO-8859-1 string to UTF-8 –returns string--

ar_dump(mixed expression [, mixed expression [, ... ]])

Dumps information about a variable –returns void--

ar_export(mixed expression [, bool return ])

Outputs or returns a parsable string representation of a variable –returns mixed--

ariant_abs(mixed val)

Returns the absolute value of a variant –returns mixed--

ariant_add(mixed left, mixed right)

"Adds" two variant values together and returns the result –returns mixed--

ariant_and(mixed left, mixed right)

Performs a bitwise AND operation between two variants –returns mixed--

ariant_cast(variant variant, int type)

Convert a variant into a new variant object of another type –returns variant--

ariant_cat(mixed left, mixed right)

concatenates two variant values together and returns the result –returns mixed--

ariant_cmp(mixed left, mixed right [, int lcid [, int flags ]])

Compares two variants –returns int--

ariant_date_from_timestamp(int timestamp)

Returns a variant date representation of a Unix timestamp –returns variant--

ariant_date_to_timestamp(variant variant)

Converts a variant date/time value to Unix timestamp –returns int--

ariant_div(mixed left, mixed right)

Returns the result from dividing two variants –returns mixed--

ariant_eqv(mixed left, mixed right)

Performs a bitwise equivalence on two variants –returns mixed--

ariant_fix(mixed variant)

Returns the integer portion of a variant –returns mixed--

ariant_get_type(variant variant)

Returns the type of a variant object –returns int--

ariant_idiv(mixed left, mixed right)

Converts variants to integers and then returns the result from dividing them –returns mixed--

ariant_imp(mixed left, mixed right)

Performs a bitwise implication on two variants –returns mixed--

ariant_int(mixed variant)

Returns the integer portion of a variant –returns mixed--

ariant_mod(mixed left, mixed right)

Divides two variants and returns only the remainder –returns mixed--

ariant_mul(mixed left, mixed right)

Multiplies the values of the two variants –returns mixed--

ariant_neg(mixed variant)

Performs logical negation on a variant –returns mixed--

ariant_not(mixed variant)

Performs bitwise not negation on a variant –returns mixed--

ariant_or(mixed left, mixed right)

Performs a logical disjunction on two variants –returns mixed--

ariant_pow(mixed left, mixed right)

Returns the result of performing the power function with two variants –returns mixed--

ariant_round(mixed variant, int decimals)

Rounds a variant to the specified number of decimal places –returns mixed--

ariant_set_type(variant variant, int type)

Convert a variant into another type "in-place" –returns void--

ariant_set(variant variant, mixed value)

Assigns a new value for a variant object –returns void--

ariant_sub(mixed left, mixed right)

Subtracts the value of the right variant from the left variant value –returns mixed--

ariant_xor(mixed left, mixed right)

Performs a logical exclusion on two variants –returns mixed--

ersion_compare(string version1, string version2 [, string operator ])

Compares two "PHP-standardized" version number strings –returns mixed--

fprintf(resource handle, string format, array args)

Write a formatted string to a stream –returns int--

irtual(string filename)

Perform an Apache sub-request –returns bool--

popmail_add_alias_domain_ex(string olddomain, string newdomain)

Add alias to an existing virtual domain –returns bool--

popmail_add_alias_domain(string domain, string aliasdomain)

Add an alias for a virtual domain –returns bool--

popmail_add_domain_ex(string domain, string passwd [, string quota [, string bounce [, bool apop ]]])

Add a new virtual domain –returns bool--

popmail_add_domain(string domain, string dir, int uid, int gid)

Add a new virtual domain –returns bool--

popmail_add_user(string user, string domain, string password [, string gecos [, bool apop ]])

Add a new user to the specified virtual domain –returns bool--

popmail_alias_add(string user, string domain, string alias)

Insert a virtual alias –returns bool--

popmail_alias_del_domain(string domain)

Deletes all virtual aliases of a domain –returns bool--

popmail_alias_del(string user, string domain)

Deletes all virtual aliases of a user –returns bool--

popmail_alias_get_all(string domain)

Get all lines of an alias for a domain –returns array--

popmail_alias_get(string alias, string domain)

Get all lines of an alias for a domain –returns array--

popmail_auth_user(string user, string domain, string password [, string apop ])

Attempt to validate a username/domain/password –returns bool--

popmail_del_domain_ex(string domain)

Delete a virtual domain –returns bool--

popmail_del_domain(string domain)

Delete a virtual domain –returns bool--

popmail_del_user(string user, string domain)

Delete a user from a virtual domain –returns bool--

popmail_error(void)

Get text message for last vpopmail error –returns string--

popmail_passwd(string user, string domain, string password [, bool apop ])

Change a virtual user's password –returns bool--

popmail_set_user_quota(string user, string domain, string quota)

Sets a virtual user's quota –returns bool--

printf(string format, array args)

Output a formatted string –returns int--

sprintf(string format, array args)

Return a formatted string –returns string--

32api_deftype(string typename, string member1_type, string member1_name [, string ... [, string ... ]])

Defines a type for use with other w32api_functions –returns bool--

32api_init_dtype(string typename, mixed value [, mixed ... ])

Creates an instance of the data type typename and fills it with the values passed –returns resource--

32api_invoke_function(string funcname, mixed argument [, mixed ... ])

Invokes function funcname with the arguments passed after the function name –returns mixed--

32api_register_function(string library, string function_name, string return_type)

Registers function function_name from library with PHP –returns bool--

32api_set_call_method(int method)

Sets the calling method used –returns void--

ddx_add_vars(resource packet_id, mixed var_name [, mixed ... ])

Add variables to a WDDX packet with the specified ID –returns bool--

ddx_deserialize

Alias of wddx_unserialize() –returns ?--

ddx_packet_end(resource packet_id)

Ends a WDDX packet with the specified ID –returns string--

ddx_packet_start ([ string comment ])

Starts a new WDDX packet with structure inside it –returns resource--

ddx_serialize_value(mixed var [, string comment ])

Serialize a single value into a WDDX packet –returns string--

ddx_serialize_vars(mixed var_name [, mixed ... ])

Serialize variables into a WDDX packet –returns string--

ddx_unserialize(string packet)

Unserializes a WDDX packet –returns mixed--

in32_create_service(array details [, string machine ])

Creates a new service entry in the SCM database –returns mixed--

in32_delete_service(string servicename [, string machine ])

Deletes a service entry from the SCM database –returns int--

in32_get_last_control_message(void)

Returns the last control message that was sent to this service –returns int--

in32_ps_list_procs(void)

List running processes –returns array--

in32_ps_stat_mem(void)

Stat memory utilization –returns array--

in32_ps_stat_proc ([ int pid ])

Stat process –returns array--

in32_query_service_status(string servicename [, string machine ])

Queries the status of a service –returns mixed--

in32_set_service_status(int status)

Update the service status –returns bool--

in32_start_service_ctrl_dispatcher(string name)

Registers the script with the SCM, so that it can act as the service with the given name –returns mixed--

in32_start_service(string servicename [, string machine ])

Starts a service –returns int--

in32_stop_service(string servicename [, string machine ])

Stops a service –returns int--

ordwrap(string str [, int width [, string break [, bool cut ]]])

Wraps a string to a given number of characters –returns string--

attr_get(string filename, string name [, int flags ])

Get an extended attribute –returns string--

attr_list(string filename [, int flags ])

Get a list of extended attributes –returns array--

attr_remove(string filename, string name [, int flags ])

Remove an extended attribute –returns bool--

attr_set(string filename, string name, string value [, int flags ])

Set an extended attribute –returns bool--

attr_supported(string filename [, int flags ])

Check if filesystem supports extended attributes –returns bool--

diff_file_bdiff_size(string file)

Read a size of file created by applying a binary diff –returns int--

diff_file_bdiff(string old_file, string new_file, string dest)

Make binary diff of two files –returns bool--

diff_file_bpatch(string file, string patch, string dest)

Patch a file with a binary diff –returns bool--

diff_file_diff_binary(string old_file, string new_file, string dest)

Alias of xdiff_file_bdiff –returns bool--

diff_file_diff(string old_file, string new_file, string dest [, int context [, bool minimal ]])

Make unified diff of two files –returns bool--

diff_file_merge3(string old_file, string new_file1, string new_file2, string dest)

Merge 3 files into one –returns mixed--

diff_file_patch_binary(string file, string patch, string dest)

Alias of xdiff_file_bpatch –returns bool--

diff_file_patch(string file, string patch, string dest [, int flags ])

Patch a file with an unified diff –returns mixed--

diff_file_rabdiff(string old_file, string new_file, string dest)

Make binary diff of two files using the Rabin's polynomial fingerprinting algorithm –returns bool--

diff_string_bdiff_size(string patch)

Read a size of file created by applying a binary diff –returns int--

diff_string_bdiff(string old_data, string new_data)

Make binary diff of two strings –returns string--

diff_string_bpatch(string str, string patch)

Patch a string with a binary diff –returns string--

diff_string_bdiff(string old_data, string new_data)

Alias of xdiff_string_bdiff –returns string--

diff_string_diff(string old_data, string new_data [, int context [, bool minimal ]])

Make unified diff of two strings –returns string--

diff_string_merge3(string old_data, string new_data1, string new_data2 [, string &error ])

Merge 3 strings into one –returns mixed--

diff_string_patch_binary(string str, string patch)

Alias of xdiff_string_bpatch –returns string--

diff_string_patch(string str, string patch [, int flags [, string &error ]])

Patch a string with an unified diff –returns string--

diff_string_bdiff(string old_data, string new_data)

Make binary diff of two strings using the Rabin's polynomial fingerprinting algorithm –returns string--

ml_error_string(int code)

Get XML parser error string –returns string--

ml_get_current_byte_index(resource parser)

Get current byte index for an XML parser –returns int--

ml_get_current_column_number(resource parser)

Get current column number for an XML parser –returns int--

ml_get_current_line_number(resource parser)

Get current line number for an XML parser –returns int--

ml_get_error_code(resource parser)

Get XML parser error code –returns int--

ml_parse_into_struct(resource parser, string data, array &values [, array &index ])

Parse XML data into an array structure –returns int--

ml_parse(resource parser, string data [, bool is_final ])

Start parsing an XML document –returns int--

ml_parser_create_ns ([ string encoding [, string separator ]])

Create an XML parser with namespace support –returns resource--

ml_parser_create ([ string encoding ])

Create an XML parser –returns resource--

ml_parser_free(resource parser)

Free an XML parser –returns bool--

ml_parser_get_option(resource parser, int option)

Get options from an XML parser –returns mixed--

ml_parser_set_option(resource parser, int option, mixed value)

Set options in an XML parser –returns bool--

ml_set_character_data_handler(resource parser, callback handler) handler(resource parser, string data)

Set up character data handler –returns bool--

ml_set_default_handler(resource parser, callback handler) handler(resource parser, string data)

Set up default handler –returns bool--

ml_set_element_handler(resource parser, callback start_element_handler, callback end_element_handler) start_element_handler(resource parser, string name, array attribs) end_element_handler(resource parser, string name)

Set up start and end element handlers –returns bool--

ml_set_end_namespace_decl_handler(resource parser, callback handler) handler(resource parser, string user_data, string prefix)

Set up end namespace declaration handler –returns bool--

ml_set_external_entity_ref_handler(resource parser, callback handler) handler(resource parser, string open_entity_names, string base, string system_id, string public_id)

Set up external entity reference handler –returns bool--

ml_set_notation_decl_handler(resource parser, callback handler) handler(resource parser, string notation_name, string base, string system_id, string public_id)

Set up notation declaration handler –returns bool--

ml_set_object(resource parser, object &object)

Use XML Parser within an object –returns bool--

ml_set_processing_instruction_handler(resource parser, callback handler) handler(resource parser, string target, string data)

Set up processing instruction (PI) handler –returns bool--

ml_set_start_namespace_decl_handler(resource parser, callback handler) handler(resource parser, string user_data, string prefix, string uri)

Set up start namespace declaration handler –returns bool--

ml_set_unparsed_entity_decl_handler(resource parser, callback handler) handler(resource parser, string entity_name, string base, string system_id, string public_id, string notation_name)

Set up unparsed entity declaration handler –returns bool--

mlrpc_decode_request(string xml, string &method [, string encoding ])

Decodes XML into native PHP types –returns mixed--

mlrpc_decode(string xml [, string encoding ])

Decodes XML into native PHP types –returns mixed--

mlrpc_encode_request(string method, mixed params [, array output_options ])

Generates XML for a method request –returns string--

mlrpc_encode(mixed value)

Generates XML for a PHP value –returns string--

mlrpc_get_type(mixed value)

Gets xmlrpc type for a PHP value –returns string--

mlrpc_is_fault(array arg)

Determines if an array value represents an XMLRPC fault –returns bool--

mlrpc_parse_method_descriptions(string xml)

Decodes XML into a list of method descriptions –returns array--

mlrpc_server_add_introspection_data(resource server, array desc)

Adds introspection documentation –returns int--

mlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options ])

Parses XML requests and call methods –returns string--

mlrpc_server_create(void)

Creates an xmlrpc server –returns resource--

mlrpc_server_destroy(resource server)

Destroys server resources –returns int--

mlrpc_server_register_introspection_callback(resource server, string function)

Register a PHP function to generate documentation –returns bool--

mlrpc_server_register_method(resource server, string method_name, string function)

Register a PHP function to resource method matching method_name –returns bool--

mlrpc_set_type(string &value, string type)

Sets xmlrpc type, base64 or datetime, for a PHP string value –returns bool--

ndAttribute(void) bool xmlwriter_end_attribute(resource xmlwriter)

End attribute –returns bool--

ndCData(void) bool xmlwriter_end_cdata(resource xmlwriter)

End current CDATA –returns bool--

ndComment(void) bool xmlwriter_end_comment(resource xmlwriter)

Create end comment –returns bool--

ndDocument(void) bool xmlwriter_end_document(resource xmlwriter)

End current document –returns bool--

ndDTDAttlist(void) bool xmlwriter_end_dtd_attlist(resource xmlwriter)

End current DTD AttList –returns bool--

ndDTDElement(void) bool xmlwriter_end_dtd_element(resource xmlwriter)

End current DTD element –returns bool--

ndDTDEntity(void) bool xmlwriter_end_dtd_entity(resource xmlwriter)

End current DTD Entity –returns bool--

ndDTD(void) bool xmlwriter_end_dtd(resource xmlwriter)

End current DTD –returns bool--

ndElement(void) bool xmlwriter_end_element(resource xmlwriter)

End current element –returns bool--

ndPI(void) bool xmlwriter_end_pi(resource xmlwriter)

End current PI –returns bool--

lush ([ bool empty ]) mixed xmlwriter_flush(resource xmlwriter [, bool empty ])

Flush current buffer –returns mixed--

ullEndElement(void) bool xmlwriter_full_end_element(resource xmlwriter)

End current element –returns bool--

penMemory(void) resource xmlwriter_open_memory(void)

Create new xmlwriter using memory for string output –returns bool--

penURI(string uri) resource xmlwriter_open_uri(string uri)

Create new xmlwriter using source uri for output –returns bool--

utputMemory ([ bool flush ]) string xmlwriter_output_memory(resource xmlwriter [, bool flush ])

Returns current buffer –returns string--

etIndentString(string indentString) bool xmlwriter_set_indent_string(resource xmlwriter, string indentString)

Set string used for indenting –returns bool--

etIndent(bool indent) bool xmlwriter_set_indent(resource xmlwriter, bool indent)

Toggle indentation on/off –returns bool--

tartAttributeNS(string prefix, string name, string uri) bool xmlwriter_start_attribute_ns(resource xmlwriter, string prefix, string name, string uri)

Create start namespaced attribute –returns bool--

tartAttribute(string name) bool xmlwriter_start_attribute(resource xmlwriter, string name)

Create start attribute –returns bool--

tartCData(void) bool xmlwriter_start_cdata(resource xmlwriter)

Create start CDATA tag –returns bool--

tartComment(void) bool xmlwriter_start_comment(resource xmlwriter)

Create start comment –returns bool--

tartDocument ([ string version [, string encoding [, string standalone ]]]) bool xmlwriter_start_document(resource xmlwriter [, string version [, string encoding [, string standalone ]]])

Create document tag –returns bool--

tartDTDAttlist(string name) bool xmlwriter_start_dtd_attlist(resource xmlwriter, string name)

Create start DTD AttList –returns bool--

tartDTDElement(string qualifiedName) bool xmlwriter_start_dtd_element(resource xmlwriter, string qualifiedName)

Create start DTD element –returns bool--

tartDTDEntity(string name, bool isparam) bool xmlwriter_start_dtd_entity(resource xmlwriter, string name, bool isparam)

Create start DTD Entity –returns bool--

tartDTD(string qualifiedName [, string publicId [, string systemId ]]) bool xmlwriter_start_dtd(resource xmlwriter, string qualifiedName [, string publicId [, string systemId ]])

Create start DTD tag –returns bool--

tartElementNS(string prefix, string name, string uri) bool xmlwriter_start_element_ns(resource xmlwriter, string prefix, string name, string uri)

Create start namespaced element tag –returns bool--

tartElement(string name) bool xmlwriter_start_element(resource xmlwriter, string name)

Create start element tag –returns bool--

tartPI(string target) bool xmlwriter_start_pi(resource xmlwriter, string target)

Create start PI tag –returns bool--

ext(string content) bool xmlwriter_text(resource xmlwriter, string content)

Write text –returns bool--

riteAttributeNS(string prefix, string name, string uri, string content) bool xmlwriter_write_attribute_ns(resource xmlwriter, string prefix, string name, string uri, string content)

Write full namespaced attribute –returns bool--

riteAttribute(string name, string value) bool xmlwriter_write_attribute(resource xmlwriter, string name, string value)

Write full attribute –returns bool--

riteCData(string content) bool xmlwriter_write_cdata(resource xmlwriter, string content)

Write full CDATA tag –returns bool--

riteComment(string content) bool xmlwriter_write_comment(resource xmlwriter, string content)

Write full comment tag –returns bool--

riteDTDAttlist(string name, string content) bool xmlwriter_write_dtd_attlist(resource xmlwriter, string name, string content)

Write full DTD AttList tag –returns bool--

riteDTDElement(string name, string content) bool xmlwriter_write_dtd_element(resource xmlwriter, string name, string content)

Write full DTD element tag –returns bool--

riteDTDEntity(string name, string content) bool xmlwriter_write_dtd_entity(resource xmlwriter, string name, string content)

Write full DTD Entity tag –returns bool--

riteDTD(string name [, string publicId [, string systemId [, string subset ]]]) bool xmlwriter_write_dtd(resource xmlwriter, string name [, string publicId [, string systemId [, string subset ]]])

Write full DTD tag –returns bool--

riteElementNS(string prefix, string name, string uri [, string content ]) bool xmlwriter_write_element_ns(resource xmlwriter, string prefix, string name, string uri [, string content ])

Write full namesapced element tag –returns bool--

riteElement(string name [, string content ]) bool xmlwriter_write_element(resource xmlwriter, string name [, string content ])

Write full element tag –returns bool--

ritePI(string target, string content) bool xmlwriter_write_pi(resource xmlwriter, string target, string content)

Writes a PI –returns bool--

riteRaw(string content) bool xmlwriter_write_raw(resource xmlwriter, string content)

Write a raw XML text –returns bool--

path_eval_expression(string expression [, domnode contextnode ]) XPathObject xpath_eval_expression(XPathContext xpath_context, string expression [, domnode contextnode ])

Evaluates the XPath Location Path in the given string –returns XPathObject--

path_eval(string xpath_expression [, domnode contextnode ]) XPathObject xpath_eval(XPathContext xpath_context, string xpath_expression [, domnode contextnode ])

Evaluates the XPath Location Path in the given string –returns XPathObject--

path_new_context(domdocument dom_document)

Creates new xpath context –returns XPathContext--

path_register_ns_auto(XPathContext xpath_context [, object context_node ])

Register the given namespace in the passed XPath context –returns bool--

path_register_ns(XPathContext xpath_context, string prefix, string uri)

Register the given namespace in the passed XPath context –returns bool--

ptr_eval(string eval_str [, domnode contextnode ]) int xptr_eval(XPathContext xpath_context, string eval_str [, domnode contextnode ])

Evaluate the XPtr Location Path in the given string –returns int--

ptr_new_context(void)

Create new XPath Context –returns XPathContext--

slt_backend_info(void)

Returns the information on the compilation settings of the backend –returns string--

slt_backend_name(void)

Returns the name of the backend –returns string--

slt_backend_version(void)

Returns the version number of Sablotron –returns string--

slt_create(void)

Create a new XSLT processor –returns resource--

slt_errno(resource xh)

Returns an error number –returns int--

slt_error(resource xh)

Returns an error string –returns string--

slt_free(resource xh)

Free XSLT processor –returns void--

slt_getopt(resource processor)

Get options on a given xsl processor –returns int--

slt_process(resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters ]]])

Perform an XSLT transformation –returns mixed--

slt_set_base(resource xh, string uri)

Set the base URI for all XSLT transformations –returns void--

slt_set_encoding(resource xh, string encoding)

Set the encoding for the parsing of XML documents –returns void--

slt_set_error_handler(resource xh, mixed handler) error_handler(resource xh, int error_level, int error_code, array messages)

Set an error handler for a XSLT processor –returns void--

slt_set_log(resource xh [, mixed log ])

Set the log file to write log messages to –returns void--

slt_set_object(resource processor, object &obj)

Sets the object in which to resolve callback functions –returns bool--

slt_set_sax_handler(resource xh, array handlers)

Set SAX handlers for a XSLT processor –returns void--

slt_set_sax_handlers(resource processor, array handlers) start_doc(resource processor) end_doc(resource processor) start_element(resource processor, string name, array attributes) end_element(resource processor, string name) start_namespace(resource processor, string prefix, string uri) end_namespace(resource processor, string prefix) comment(resource processor, string contents) pi(resource processor, string target, string contents) characters(resource processor, string contents)

Set the SAX handlers to be called when the XML document gets processed –returns void--

slt_set_scheme_handler(resource xh, array handlers)

Set Scheme handlers for a XSLT processor –returns void--

slt_set_scheme_handlers(resource xh, array handlers)

Set the scheme handlers for the XSLT processor –returns void--

slt_setopt(resource processor, int newmask)

Set options on a given xsl processor –returns mixed--

az_addinfo(resource id)

Returns additional error information –returns string--

az_ccl_conf(resource id, array config)

Configure CCL parser –returns void--

az_ccl_parse(resource id, string query, array &result)

Invoke CCL Parser –returns bool--

az_close(resource id)

Close YAZ connection –returns bool--

az_connect(string zurl [, mixed options ])

Prepares for a connection to a Z39.50 server –returns mixed--

az_database(resource id, string databases)

Specifies the databases within a session –returns bool--

az_element(resource id, string elementset)

Specifies Element-Set Name for retrieval –returns bool--

az_errno(resource id)

Returns error number –returns int--

az_error(resource id)

Returns error description –returns string--

az_es_result(resource id)

Inspects Extended Services Result –returns array--

az_es(resource id, string type, array args)

Prepares for an Extended Service Request –returns void--

az_get_option(resource id, string name)

Returns value of option for connection –returns string--

az_hits(resource id [, array &searchresult ])

Returns number of hits for last search –returns int--

az_itemorder(resource id, array args)

Prepares for Z39.50 Item Order with an ILL-Request package –returns void--

az_present(resource id)

Prepares for retrieval (Z39.50 present) –returns bool--

az_range(resource id, int start, int number)

Specifies a range of records to retrieve –returns void--

az_record(resource id, int pos, string type)

Returns a record –returns string--

az_scan_result(resource id [, array &result ])

Returns Scan Response result –returns array--

az_scan(resource id, string type, string startterm [, array flags ])

Prepares for a scan –returns void--

az_schema(resource id, string schema)

Specifies schema for retrieval –returns void--

az_search(resource id, string type, string query)

Prepares for a search –returns bool--

az_set_option(resource id, string name, string value) void yaz_set_option(resource id, array options)

Sets one or more options for connection –returns void--

az_sort(resource id, string criteria)

Sets sorting criteria –returns void--

az_syntax(resource id, string syntax)

Specifies the preferred record syntax for retrieval –returns void--

az_wait ([ array &options ])

Wait for Z39.50 requests to complete –returns mixed--

p_all(string domain, string map, string callback)

Traverse the map and call a function on each entry –returns void--

p_cat(string domain, string map)

Return an array containing the entire map –returns array--

p_err_string(int errorcode)

Returns the error string associated with the given error code –returns string--

p_errno(void)

Returns the error code of the previous operation –returns int--

p_first(string domain, string map)

Returns the first key-value pair from the named map –returns array--

p_get_default_domain(void)

Fetches the machine's default NIS domain –returns string--

p_master(string domain, string map)

Returns the machine name of the master NIS server for a map –returns string--

p_match(string domain, string map, string key)

Returns the matched line –returns string--

p_next(string domain, string map, string key)

Returns the next key-value pair in the named map –returns array--

p_order(string domain, string map)

Returns the order number for a map –returns int--

end_logo_guid(void)

Gets the Zend guid –returns string--

end_thread_id(void)

Returns a unique identifier for the current thread –returns int--

end_version(void)

Gets the version of the current Zend engine –returns string--

ip_close(resource zip)

Close a ZIP file archive –returns void--

ip_entry_close(resource zip_entry)

Close a directory entry –returns bool--

ip_entry_compressedsize(resource zip_entry)

Retrieve the compressed size of a directory entry –returns int--

ip_entry_compressionmethod(resource zip_entry)

Retrieve the compression method of a directory entry –returns string--

ip_entry_filesize(resource zip_entry)

Retrieve the actual file size of a directory entry –returns int--

ip_entry_name(resource zip_entry)

Retrieve the name of a directory entry –returns string--

ip_entry_open(resource zip, resource zip_entry [, string mode ])

Open a directory entry for reading –returns bool--

ip_entry_read(resource zip_entry [, int length ])

Read from an open directory entry –returns string--

ip_open(string filename)

Open a ZIP file archive –returns mixed--

ip_read(resource zip)

Read next entry in a ZIP file archive –returns mixed--

ipArchive::addEmptyDir(string dirname)

Add a new directory –returns bool--

ipArchive::addFile(string filename [, string localname ])

Adds a file to a ZIP archive from the given path –returns bool--

ipArchive::addFromString(string localname, string contents)

Add a file to a ZIP archive using its contents –returns bool--

ipArchive::close(void)

Close the active archive (opened or newly created) –returns bool--

ipArchive::deleteIndex(int index)

delete an entry in the archive using its index –returns bool--

ipArchive::deleteName(string name)

delete an entry in the archive using its name –returns bool--

ipArchive::extractTo(string destination [, mixed entries ])

Extract the archive contents –returns mixed--

ipArchive::getArchiveComment(void)

Returns the Zip archive comment –returns string--

ipArchive::getCommentIndex(int index [, int flags ])

Returns the comment of an entry using the entry index –returns string--

ipArchive::getCommentName(string name [, int flags ])

Returns the comment of an entry using the entry name –returns string--

ipArchive::getFromIndex(int index [, int flags ])

Returns the entry contents using its index. –returns mixed--

ipArchive::getFromName(string name [, int flags ])

Returns the entry contents using its name. –returns mixed--

ipArchive::getNameIndex(int index)

Returns the name of an entry using its index –returns string--

ipArchive::getStream(string name)

Get a file handler to the entry defined by its name (read only). –returns resource--

ipArchive::locateName(string name [, int flags ])

Returns the index of the entry in the archive –returns mixed--

ipArchive::open(string filename [, int flags ])

Open a ZIP file archive –returns mixed--

ipArchive::renameIndex(int index, string newname)

Renames an entry defined by its index –returns bool--

ipArchive::renameName(string name, string newname)

Renames an entry defined by its name –returns bool--

ipArchive::setCommentName(string name, string comment)

Set the comment of an entry defined by its name –returns mixed--

ipArchive::setArchiveComment(string comment)

Set the comment of a ZIP archive –returns mixed--

ipArchive::setCommentIndex(int index, string comment)

Set the comment of an entry defined by its index –returns mixed--

ipArchive::statIndex(int index [, int flags ])

Get the details of an entry defined by its index. –returns mixed--

ipArchive::statName(name name [, int flags ])

Get the details of an entry defined by its name. –returns mixed--

ipArchive::unchangeAll(void)

Undo all changes done in the archive. –returns mixed--

ipArchive::unchangeArchive(void)

Revert all global changes done in the archive. –returns mixed--

ipArchive::unchangeIndex(int index)

Revert all changes done to an entry at the given index. –returns mixed--

ipArchive::unchangeName(string name)

Revert all changes done to an entry with the given name. –returns mixed--

lib_get_coding_type(void)

Returns the coding type used for output compression –returns string--

Auteur: Philippe Ivaldi http://www.piprime.fr/ <pivaldi à sfr point fr>

Date: 2010-02-22 17:20:32 CET

HTML generated by org-mode 6.33x in emacs 23