From 0c7cbf90473db14883ff6a47849a145fd3ec0069 Mon Sep 17 00:00:00 2001 From: khartlage Date: Thu, 20 May 2004 09:06:32 +0000 Subject: [PATCH] Added changes from David Foerster's automatically generated script. Ref.: http://phpeclipse.de/tiki-index.php?page=Generating+phpsyntax.xml --- .../sourceforge/phpeclipse/phpeditor/phpsyntax.xml | 5189 ++++++++++---------- 1 files changed, 2582 insertions(+), 2607 deletions(-) diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml index 8336273..170f699 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpsyntax.xml @@ -4,2613 +4,2588 @@ =================================================== *Below this are the various PHP-specific functions * =================================================== - Invokes a COM module - Loads a COM module - Return the absolute value of the number - - Return the arc cosine of the arg in radians - Returns the inverse hyperbolic cosine of arg - - - - - -Returns a string with backslashes before characters that are listed in charlist parameter. -It escapes \n, \r etc. in C-like style, characters with ASCII code lower than 32 and -higher than 126 are converted to octal representation. - - - - -Returns a string with backslashes before characters that need to be quoted in database queries etc. -These characters are single quote ('), double quote ("), backslash (\) and NUL (the NULL byte). - - -Aggregates methods and properties defined in a class to an existing object. -Methods and properties with names starting with an underscore character (_) are considered private -to the aggregated class and are not used, constructors are also excluded from the aggregation procedure. - - -apache_child_terminate() will register the Apache process executing the current PHP request for termination -once execution of PHP code it is completed. It may be used to terminate a process after a script with -high memory consumption has been run as memory will usually only be freed internally but not given -back to the operating system. - - -This performs a partial request for a URI. It goes just far enough to obtain all the important information -about the given resource and returns this information in a class. - - apache_note() is an Apache-specific function which gets and sets values in a request's notes table. If called with one argument, it returns the current value of note note_name. If called with two arguments, it sets the value of note note_name to note_value and returns the previous value of note note_name. - - -Create an array. -Returns an array of the parameters. The parameters can be given an index with the => operator. -Note: array() is a language construct used to represent literal arrays, and not a regular function. -Syntax "index => values", separated by commas, define index and values. index may be of type string or numeric. -When index is omitted, a integer index is automatically generated, starting at 0. -If index is an integer, next generated index will be the biggest integer index + 1. -Note that when two identical index are defined, the last overwrite the first. - - Returns an array with all string keys lowercased or uppercased - Split an array into chunks - Counts all the values of an array - Computes the difference of arrays - Computes the difference of arrays with additional index check - Fill an array with values - Filters elements of an array using a callback function - Exchanges all keys with their associated values in an array - Computes the intersection of arrays - Computes the intersection of arrays with additional index check - Checks if the given key or index exists in the array - Return all the keys of an array - Applies the callback to the elements of the given arrays - Merge two or more arrays - Merge two or more arrays recursively - Sort multiple or multi-dimensional arrays - Pad array to the specified length with a value - Pop the element off the end of array - Push one or more elements onto the end of array - Pick one or more random entries out of an array - Iteratively reduce the array to a single value using a callback function - Return an array with elements in reverse order - Searches haystack for needle and returns the key if it is found in the array, FALSE otherwise. - Shift an element off the beginning of array - Extract a slice of the array - Remove a portion of the array and replace it with something else - Calculate the sum of values in an array - Removes duplicate values from an array - Prepend one or more elements to the beginning of array - Return all the values of an array - Apply a user function to every member of an array - This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant. - Returns the arc sine of arg in radians. asin() is the complementary function of sin(), which means that a==sin(asin(a)) for every value of a that is within asin() 's range. - This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant. - aspell_check() checks the spelling of a word and returns TRUE if the spelling is correct, FALSE if not. - aspell_check_raw() checks the spelling of a word, without changing its case or trying to trim it in any way and returns TRUE if the spelling is correct, FALSE if not. - aspell_new() opens up a new dictionary and returns the dictionary link identifier for use in other aspell functions. Returns FALSE on error. - aspell_suggest() returns an array of possible spellings for the given word. - -assert() will check the given assertion and take appropriate action if its result is FALSE . - -If the assertion is given as a string it will be evaluated as PHP code by assert(). The advantages of a string assertion are less overhead when assertion checking is off and messages containing the assertion expression when an assertion fails. This means that if you pass a boolean condition as assertion this condition will not show up as parameter to the assertion function which you may have defined with the assert_options() function, the condition is converted to a string before calling that handler function, and the boolean FALSE is converted as the empty string. - Using assert_options() you may set the various assert() control options or just query their current settings. - Returns the arc tangent of arg in radians. atan() is the complementary function of tan(), which means that a==tan(atan(a)) for every value of a that is within atan()'s range. - -This function calculates the arc tangent of the two variables xand y. It is similar to calculating the arc tangent of y/x, except that the signs of both arguments are used to determine the quadrant of the result. - -The function returns the result in radians, which is between -PI and PI (inclusive) - base64_decode() decodes encoded_data and returns the original data. The returned data may be binary. - base64_encode returns data encoded with base64. This encoding is designed to make binary data survive transport through transport layers that are not 8-bit clean, such as mail bodies. - Returns a string containing number represented in base tobase. The base in which number is given is specified in frombase. Both frombase and tobase have to be between 2 and 36, inclusive. Digits in numbers with a base higher than 10 will be represented with the letters a-z, with a meaning 10, b meaning 11 and z meaning 35. - Given a string containing a path to a file, this function will return the base name of the file. If the filename ends in suffix this will also be cut off. - Adds the left_operand to the right_operand and returns the sum in a string. The optional scale parameter is used to set the number of digits after the decimal place in the result. - Compares the left_operand to the right_operand and returns the result as an integer. The optional scale parameter is used to set the number of digits after the decimal place which will be used in the comparison. The return value is 0 if the two operands are equal. If the left_operand is larger than the right_operand the return value is +1 and if the left_operand is less than the right_operand the return value is -1. - Divides the left_operand by the right_operand and returns the result. The optional scale sets the number of digits after the decimal place in the result. - Get the modulus of the left_operand using modulus. - Multiply the left_operand by the right_operand and returns the result. The optional scale sets the number of digits after the decimal place in the result. - Raise x to the power y. The optional scale can be used to set the number of digits after the decimal place in the result. - This function sets the default scale parameter for all subsequent bc math functions that do not explicitly specify a scale parameter. - Return the square root of the operand. The optional scale parameter sets the number of digits after the decimal place in the result. - Subtracts the right_operand from the left_operand and returns the result in a string. The optional scale parameter is used to set the number of digits after the decimal place in the result. - Returns an ASCII string containing the hexadecimal representation of str. The conversion is done byte-wise with the high-nibble first. - - - -Returns the decimal equivalent of the binary number represented by the binary_string argument. - -bindec() converts a binary number to an integer. The largest number that can be converted is 31 bits of 1's or 2147483647 in decimal. - The bindtextdomain() function sets the path for a domain. - Closes the bzip2 file referenced by the pointer bz. - -bzcompress() compresses the source string and returns it as bzip2 encoded data. - -The optional parameter blocksize specifies the blocksize used during compression and should be a number from 1 to 9 with 9 giving the best compression, but using more resources to do so. blocksize defaults to 4. - -The optional parameter workfactor controls how the compression phase behaves when presented with worst case, highly repetitive, input data. The value can be between 0 and 250 with 0 being a special case and 30 being the default value. Regardless of the workfactor, the generated output is the same. - bzdecompress() decompresses the source string containing bzip2 encoded data and returns it. If the optional parameter small is TRUE , an alternative decompression algorithm will be used which uses less memory (the maximum memory requirement drops to around 2300K) but works at roughly half the speed. - Returns the error number of any bzip2 error returned by the file pointer bz. - Returns the error number and error string, in an associative array, of any bzip2 error returned by the file pointer bz. - Returns the error string of any bzip2 error returned by the file pointer bz. - -Forces a write of all buffered bzip2 data for the file pointer bz. - -Returns TRUE on success or FALSE on failure. - -Opens a bzip2 (.bz2) file for reading or writing. filename is the name of the file to open. mode is similar to the fopen() function (`r' for read, `w' for write, etc.). - -If the open fails, the function returns FALSE, otherwise it returns a pointer to the newly opened file. - bzread() reads up to length bytes from the bzip2 file pointer referenced by bz. Reading stops when length (uncompressed) bytes have been read or EOF is reached, whichever comes first. If the optional parameter length is not specified, bzread() will read 1024 (uncompressed) bytes at a time. - bzwrite() writes the contents of the string data to the bzip2 file stream pointed to by bz. If the optional length argument is given, writing will stop after length (uncompressed) bytes have been written or the end of string is reached, whichever comes first. - - - - - - - - - - - - - - - - - - - - - - - - - - - - Strip whitespace from the end of a string. This function is an alias of rtrim(). - - Return a specific character. Returns a one-character string containing the character specified by ascii. - - - Split a string into smaller chunks - bool class_exists(string classname) - - - void closedir([resource dir_handle]) - - - - - - - Create array containing variables and their values - - - - - - - Convert from one Cyrillic character set to another - - - Count elements in a variable - Return information about characters used in a string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Calculates the crc32 polynomial of a string - Creates an anonymous function, and returns its name (funny, eh?) - One-way string encryption (hashing) - - - - - - - - - - - - - - - - - - - - - Return the current element in an array - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Define a new constant - - Check whether a constant exists - - - - - -Directory class with properties, handle and class and methods read, rewind and close. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Return the current key and value pair from an array and advance the array cursor - -Output one or more strings. -echo() is not actually a function (it is a language construct) so you are not required to use parentheses with it. -In fact, if you want to pass more than one parameter to echo, you must not enclose the parameters within parentheses. -It is not possible to use echo() in a variable function context. - - - - Set the internal pointer of an array to its last element - Note: preg_match(), which uses a Perl-compatible regular expression syntax, is often a faster alternative to ereg(). -Searches a string for matches to the regular expression given in pattern. -If matches are found for parenthesized substrings of pattern and the function is called with the third argument regs, -the matches will be stored in the elements of the array regs. -$regs[1] will contain the substring which starts at the first left parenthesis; -$regs[2] will contain the substring starting at the second, and so on. -$regs[0] will contain a copy of the complete string matched. -Note: Up to (and including) PHP 4.1.0 $regs will be filled with exactly ten elements, -even though more or fewer than ten parenthesized substrings may actually have matched. -This has no effect on ereg()'s ability to match more substrings. -If no matches are found, $regs will not be altered by ereg(). -Searching is case sensitive. -Returns TRUE if a match for pattern was found in string, or FALSE if no matches were found or an error occurred. - - - This function is identical to ereg() except that this ignores case distinction when matching alphabetic characters. - - replace regular expression case insensitive -This function is identical to ereg_replace() except that this ignores case distinction when matching alphabetic characters. - - - - - - - - Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string separator. -If limit is set, the returned array will contain a maximum of limit elements with the last element containing the rest of string. -If separator is an empty string (""), explode() will return FALSE. If separator contains a value that is not contained in string, -then explode() will return an array containing string. -Note: The limit parameter was added in PHP 4.0.1 - - - Import variables into the current symbol table from an array - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Checks whether a file exists -Returns TRUE if the file specified by filename exists; FALSE otherwise. -This function will not work on remote files; the file to be examined must be accessible via the server's filesystem. -The results of this function are cached. See clearstatcache() for more details. -Using Windows shares: On windows, use //computername/share/filename or \\\\computername\share\filename to check files on network shares. - - Identical to file(), except that file_get_contents() returns the file in a string. On failure, file_get_contents() will return FALSE. -file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance. - - - - - - - - - - - - - - - - - - - - - - - - - - Write a formatted string to a stream - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Returns the translation table used by htmlspecialchars() and htmlentities() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Send a raw HTTP header -header() is used to send raw HTTP headers. See the HTTP/1.1 specification for more information on HTTP headers. -The optional replace parameter indicates whether the header should replace a previous similar header, -or add a second header of the same type. -By default it will replace, but if you pass in FALSE as the second argument you can force multiple headers of the same type. - -The second optional http_response_code force the HTTP response code to the specified value. -(This parameter is available in PHP 4.3.0 and higher.) -There are two special-case header calls. The first is a header that starts with the string "HTTP/" (case is not significant), -which will be used to figure out the HTTP status code to send. For example, -if you have configured Apache to use a PHP script to handle requests for missing files -(using the ErrorDocument directive), you may want to make sure that your script generates the proper status code. - - - Convert logical Hebrew text to visual text - Convert logical Hebrew text to visual text with newline conversion - - - - Convert all HTML entities to their applicable characters - Convert all applicable characters to HTML entities - -Convert special characters to HTML entities. -Certain characters have special significance in HTML, -and should be represented by HTML entities if they are to preserve their meanings. -This function returns a string with some of these conversions made; -the translations made are those most useful for everyday web programming. -If you require all HTML character entities to be translated, use htmlentities() instead. -This function is useful in preventing user-supplied text from containing HTML markup, -such as in a message board or guest book application. -The optional second argument, quote_style, tells the function what to do with single and double quote characters. -The default mode, ENT_COMPAT, is the backwards compatible mode which only translates -the double-quote character and leaves the single-quote untranslated. -If ENT_QUOTES is set, both single and double quotes are translated and -if ENT_NOQUOTES is set neither single nor double quotes are translated. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Join array elements with a string - Return TRUE if a value exists in an array - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This function returns TRUE if the object is of this class or has this class as one of its parents, FALSE otherwise. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Join array elements with a string - - - Fetch a key from an associative array - Sort an array by key in reverse order - Sort an array by key - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Calculate Levenshtein distance between two strings - - - - - -Assign variables as if they were an array. -Like array(), this is not really a function, but a language construct. -list() is used to assign a list of variables in one operation. -Note: list() only works on numerical arrays and assumes the numerical indices start at 0. - - - Get numeric formatting information - - - - - - Strip whitespace from the beginning of a string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Calculate the md5 hash of a string - Calculates the md5 hash of a given filename - - Calculate the metaphone key of a string - - - - - - - Return current UNIX timestamp with microseconds -Returns the string "msec sec" where sec is the current time measured in the number of seconds -since the Unix Epoch (0:00:00 January 1, 1970 GMT), and msec is the microseconds part. -This function is only available on operating systems that support the gettimeofday() system call. -Both portions of the string are returned in units of seconds. - - - - - - - Formats a number as a currency string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -mysql_affected_rows() returns the number of rows affected by the last INSERT, -UPDATE or DELETE query associated with link_identifier. -If the link identifier isn't specified, the last link opened by mysql_connect() is assumed. - -Note: If you are using transactions, you need to call mysql_affected_rows() -after your INSERT, UPDATE, or DELETE query, not after the commit. - -If the last query was a DELETE query with no WHERE clause, -all of the records will have been deleted from the table but this function will return zero. - -Note: When using UPDATE, MySQL will not update columns where the new value is the same as the old value. -This creates the possiblity that mysql_affected_rows() may not actually equal the number of rows matched, -only the number of rows that were literally affected by the query. - -mysql_affected_rows() does not work with SELECT statements; only on statements which modify records. -To retrieve the number of rows returned by a SELECT, use mysql_num_rows(). - -If the last query failed, this function will return -1. - - Close MySQL connection - Open a connection to a MySQL Server - Create a MySQL database - Move internal result pointer - Get result data - Send a MySQL query - -Returns TRUE on success or FALSE on failure. - -mysql_drop_db() attempts to drop (remove) an entire database from the server -associated with the specified link identifier. - -For downward compatibility mysql_dropdb() can also be used. This is deprecated, however. - -Note: The function mysql_drop_db() is deprecated. -It is preferable to use mysql_query() to issue a SQL DROP DATABASE statement instead. - - -Returns the error number from the last MySQL function, or 0 (zero) if no error occurred. - -Errors coming back from the MySQL database backend no longer issue warnings. -Instead, use mysql_errno() to retrieve the error code. -Note that this function only returns the error code from the most recently executed -MySQL function (not including mysql_error() and mysql_errno()), so if you want to use it, -make sure you check the value before calling another MySQL function. - - -Returns the error text from the last MySQL function, or '' (the empty string) if no error occurred. - -Errors coming back from the MySQL database backend no longer issue warnings. -Instead, use mysql_error() to retrieve the error text. -Note that this function only returns the error text from the most recently -executed MySQL function (not including mysql_error() and mysql_errno()), -so if you want to use it, make sure you check the value before calling another MySQL function. - - - -Returns an array that corresponds to the fetched row, or FALSE if there are no more rows. - -mysql_fetch_array() is an extended version of mysql_fetch_row(). -In addition to storing the data in the numeric indices of the result array, -it also stores the data in associative indices, using the field names as keys. - -If two or more columns of the result have the same field names, -the last column will take precedence. To access the other column(s) of the same name, -you must use the numeric index of the column or make an alias for the column. -For aliased columns, you cannot access the contents with the original column name. - - -Returns an associative array that corresponds to the fetched row, or FALSE if there are no more rows. - -mysql_fetch_assoc() is equivalent to calling mysql_fetch_array() with MYSQL_ASSOC -for the optional second parameter. It only returns an associative array. -This is the way mysql_fetch_array() originally worked. -If you need the numeric indices as well as the associative, use mysql_fetch_array(). - -If two or more columns of the result have the same field names, the last column will take precedence. -To access the other column(s) of the same name, you either need to access the result -with numeric indices by using mysql_fetch_row() or add alias names. - -An important thing to note is that using mysql_fetch_assoc() is not significantly slower -than using mysql_fetch_row(), while it provides a significant added value. - - -Returns an object containing field information. - -mysql_fetch_field() can be used in order to obtain information about fields in a certain query result. -If the field offset isn't specified, the next field that wasn't yet retrieved by mysql_fetch_field() -is retrieved. - -The properties of the object are: -name - column name -table - name of the table the column belongs to -max_length - maximum length of the column -not_null - 1 if the column cannot be NULL -primary_key - 1 if the column is a primary key -unique_key - 1 if the column is a unique key -multiple_key - 1 if the column is a non-unique key -numeric - 1 if the column is numeric -blob - 1 if the column is a BLOB -type - the type of the column -unsigned - 1 if the column is unsigned -zerofill - 1 if the column is zero-filled - - Get the length of each output in a result - Fetch a result row as an object - Get a result row as an enumerated array - Get the flags associated with the specified field in a result - Returns the length of the specified field - Get the name of the specified field in a result - Set result pointer to a specified field offset - Get name of the table the specified field is in - Get the type of the specified field in a result - Free result memory - Get MySQL client info - Get MySQL host info - Get MySQL protocol info - Get MySQL server info - Get information about the most recent query - Get the ID generated from the previous INSERT operation - List databases available on a MySQL server - List MySQL result fields - List MySQL processes - List tables in a MySQL database - Get number of fields in result - Get number of rows in result - Open a persistent connection to a MySQL server - Ping a server connection or reconnect if there is no connection - -mysql_query() sends a query to the currently active database on the server -that's associated with the specified link identifier. -If link_identifier isn't specified, the last opened link is assumed. -If no link is open, the function tries to establish a link as if mysql_connect() -was called with no arguments, and use it. - -The optional result_mode parameter can be MYSQL_USE_RESULT and MYSQL_STORE_RESULT. -It defaults to MYSQL_STORE_RESULT, so the result is buffered. -See also mysql_unbuffered_query() for the counterpart of this behaviour. - - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection. - Get result data - Select a MySQL database - Get current system status - Get table name of field - Return the current thread ID - -mysql_unbuffered_query() sends a SQL query query to MySQL, without fetching and buffering the -result rows automatically, as mysql_query() does. -On the one hand, this saves a considerable amount of memory with SQL queries -that produce large result sets. On the other hand, you can start working on -the result set immediately after the first row has been retrieved: you don't -have to wait until the complete SQL query has been performed. When using multiple DB-connects, -you have to specify the optional parameter link_identifier. - -The optional result_mode parameter can be MYSQL_USE_RESULT and MYSQL_STORE_RESULT. -It defaults to MYSQL_USE_RESULT, so the result is not buffered. -See also mysql_query() for the counterpart of this behaviour. - - Sort an array using a case insensitive "natural order" algorithm - Sort an array using a "natural order" algorithm - - Advance the internal array pointer of an array - - - Inserts HTML line breaks before all newlines in a string - Query language and locale information - - - - - - - - - - - - - - - Format a number with grouped thousands - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Returns the ASCII value of the first character of string. This function complements chr(). - - - - - - - - - - - - - - - - - - - - - - - - - Parses the string into variables - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Returns a string containing the version of the currently running PHP parser. -Note: This information is also available in the predefined constant PHP_VERSION. - - - - - Get the current element from an array - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Rewind the internal array pointer - -Output a string. -Outputs arg. Returns TRUE on success or FALSE on failure. -print() is not actually a real function (it is a language construct) so you are not required to use parentheses with it. - - Output a formatted string. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Convert a quoted-printable string to an 8 bit string - Quote meta characters - - - Create an array containing a range of elements - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set the internal pointer of an array to its first element - - - - - - - - - Sort an array in reverse order - Strip whitespace from the end of a string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Send a cookie -setcookie() defines a cookie to be sent along with the rest of the HTTP headers. -Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). -This requires that you place calls to this function prior to any output, including <html> and <head> tags as well as any whitespace. -If output exists prior to calling this function, setcookie() will fail and return FALSE. -If setcookie() successfully runs, it will return TRUE. -This does not indicate whether the user accepted the cookie. - -All the arguments except the name argument are optional. -If only the name argument is present, the cookie by that name will be deleted from the remote client. -You may also replace an argument with an empty string ("") in order to skip that argument. -Because the expire and secure arguments are integers, they cannot be skipped with an empty string, use a zero (0) instead. - - - - - - - - - - - - - - - - - Set locale information - - - - - - - - - - - - - - -Calculate the sha1 hash of a string -Calculates the sha1 hash of str using the US Secure Hash Algorithm 1, and returns that hash. -The hash is a 40-character hexadecimal number. - - Calculate the sha1 hash of a file - - - - - - - - - - - - - - - Shuffle an array - - - Calculate the similarity between two strings - - Get the number of elements in variable. The sizeof() function is an alias for count(). - - - - - - - - - - - - - - - - - - - - - - - Sort an array. This function sorts an array. Elements will be arranged from lowest to highest when this function has completed. - Calculate the soundex key of a string - - - Return a formatted string - - - - Parses input from a string according to a format - - Pad a string to a certain length with another string - Repeat a string - Replace all occurrences of the search string with the replacement string - -Perform the rot13 transform on a string. -This function performs the ROT13 encoding on the str argument and returns the resulting string. -The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched. -Encoding and decoding are done by the same function, passing an encoded string as argument -will return the original version. - - Randomly shuffles a string - Return information about words used in a string - Binary safe case-insensitive string comparison - Find the first occurrence of a character.This function is an alias for strstr(), and is identical in every way. - Binary safe string comparison. -Returns < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal. -Note that this comparison is case sensitive. - - Locale based string comparison - Find length of initial segment not matching mask - - - - - Strip HTML and PHP tags from a string - Un-quote string quoted with addcslashes() - Un-quote string quoted with addslashes() - Case-insensitive strstr() - Get string length - Case insensitive string comparisons using a "natural order" algorithm - String comparisons using a "natural order" algorithm - Binary safe case-insensitive string comparison of the first n characters - Binary safe string comparison of the first n characters - Find position of first occurrence of a string - Find the last occurrence of a character in a string - Reverse a string - Find position of last occurrence of a char in a string - Find length of initial segment matching mask - Find first occurrence of a string - Tokenize string - Make a string lowercase - - Make a string uppercase - Translate certain characters - - Returns part of a string - Count the number of substring occurrences - Replace text within a portion of a string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Strip whitespace from the beginning and end of a string - Sort an array with a user-defined comparison function and maintain index association - Make a string's first character uppercase - Uppercase the first character of each word in a string - - - - - - - - - - - - - - - - Sort an array by keys using a user-defined comparison function - - - - - - - - - - - - Sort an array by values using a user-defined comparison function - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Output a formatted string - Output a formatted string - - - - - - - Wraps a string to a given number of characters using a string break character - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Checks if the class exists +Creates an anonymous function, and returns its name (funny, eh?) +Return backtrace as array + +Define a new constant +Check whether a constant exists +Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element +Return the current error_reporting level, and if an argument was passed - change to the new level +Returns true if the named extension is loaded +Get the $arg_num'th argument that was passed to the function +Get an array of the arguments that were passed to the function +Get the number of arguments that were passed to the function +Checks if the function exists +Retrieves the class name +Returns an array of method names for class or class instance. +Returns an array of default properties of the class +Returns an array of all declared classes. +Returns an array of all declared interfaces. +Return an array containing the names and values of all defined constants +Returns an array of all defined functions +Returns an associative array of names and values of all currently defined variable names (variables in the current scope) +Returns an array with the names of functions belonging to the named extension +Returns an array with the file names that were include_once()'d +Return an array containing names of loaded extensions +Returns an array of object properties +Retrieves the parent class name for object or class. +Get the resource type name for a given resource +Returns true if the object is of this class or has this class as one of its parents +Returns true if the object has this class as one of its parents +Cause an intentional memory leak, for testing/debugging purposes +Checks if the class method exists +Restores the previously defined error handler function +Restores the previously defined exception handler function +Sets a user-defined error handler function. Returns the previously defined error handler, or false on error +Sets a user-defined exception handler function. Returns the previously defined exception handler, or false on error +Binary safe case-insensitive string comparison +Binary safe string comparison +Get string length +Binary safe string comparison +Binary safe string comparison +Generates a user-level error/warning/notice message +Get the version of the Zend Engine +Returns the sum of two arbitrary precision numbers +Compares two arbitrary precision numbers +Returns the quotient of two arbitrary precision numbers (division) +Returns the modulus of the two arbitrary precision operands +Returns the multiplication of two arbitrary precision numbers +Returns the value of an arbitrary precision number raised to the power of another +Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous +Sets default scale parameter for all bc math functions +Returns the square root of an arbitray precision number +Returns the difference between two arbitrary precision numbers +Compresses a string into BZip2 encoded data +Decompresses BZip2 compressed data +Returns the error number +Returns the error number and error string in an associative array +Returns the error string +Opens a new BZip2 stream +Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified +Convert Julian Day to UNIX timestamp +Convert UNIX timestamp to Julian Day +Returns the number of days in a month for a given year and calendar +Converts from Julian Day Count to a supported calendar and return extended information +Returns information about a particular calendar +Converts from a supported calendar to Julian Day Count +Converts a french republic calendar date to julian day count +Converts a gregorian calendar date to julian day count +Returns name or number of day of week from julian day count +Returns name of month for julian day count +Converts a julian day count to a french republic calendar date +Converts a julian day count to a gregorian calendar date +Converts a julian day count to a jewish calendar date +Convert a julian day count to a julian calendar date +Converts a jewish calendar date to a julian day count +Converts a julian calendar date to julian day count +Return the timestamp of midnight on Easter of a given year (defaults to current year) +Return the number of days after March 21 that Easter falls on for a given year (defaults to current year) +Generate a globally unique identifier (GUID) +Connect events from a COM object to a PHP object +Loads a Typelibrary and registers its constants +Process COM messages, sleeping for up to timeoutms milliseconds +Print out a PHP class definition for a dispatchable interface +Returns the absolute value of a variant +"Adds" two variant values together and returns the result +performs a bitwise AND operation between two variants and returns the result +Convert a variant into a new variant object of another type +concatenates two variant values together and returns the result +Compares two variants +Returns a variant date representation of a unix timestamp +Converts a variant date/time value to unix timestamp +Returns the result from dividing two variants +Performs a bitwise equivalence on two variants +Returns the ? of a variant +Returns the VT_XXX type code for a variant +Converts variants to operands and then returns the result from dividing them +Performs a bitwise implication on two variants +Get the value of a multi dimensional array property +Returns the integer portion of a variant +Divides two variants and returns only the remainder +multiplies the values of the two variants and returns the result +Performs logical negation on a variant +Performs bitwise not negation on a variant +Performs a logical disjunction on two variants +Returns the result of performing the power function with two variants +Rounds a variant to the specified number of decimal places +Assigns a new value for a variant object (like "set" in VB) +Convert a variant into another type. Variant is modified "in-place" +subjects the value of the right variant from the left variant value and returns the result +Performs a logical exclusion on two variants +Sets annotation +Adds outline +Draws an arc +Starts text section +Draws a circle +Clips to current path +Closes the pdf document +Close path +Close, fill and stroke current path +Close path and draw line along path +Outputs text in next line +Draws a curve +Ends text section +Fills current path +Fills and stroke current path +Creates PDF doc in memory +Ends the page to save memory +Sets document settings for all documents +Includes JPEG image +Draws a line +Sets current point +Starts new path +Opens a new pdf document +Returns the internal memory stream as string +Starts page +Includes image +Draws a rectangle +Restores formerly saved enviroment +Draws a line relative to current point +Sets current point +Sets rotation +Sets text rotation angle +Saves current enviroment +Saves the internal memory stream to a file +Sets scaling +Sets hyperlink +Sets character spacing +Sets the creator field +Sets page for output +Selects the current font face, size and encoding +Sets directories to search when using external fonts +Sets fontname to filename translation map when using external fonts +Sets horizontal scaling of text +Fills the keywords field of the info structure +Sets distance between text lines +Sets transition between pages +Fills the subject field of the info structure +Sets the text matrix +Sets the position of text for the next cpdf_show call +Determines how text is rendered +Sets the text rise +Fills the title field of the info structure +How to show the document in the viewer +Sets spacing between words +Sets dash pattern +Sets flatness +Sets drawing and filling color to gray value +Sets filling color to gray value +Sets drawing color to gray value +Sets linecap parameter +Sets linejoin parameter +Sets line width +Sets miter limit +Sets drawing and filling color to RGB color value +Sets filling color to rgb color value +Sets drawing color to RGB color value +Output text at current position +Output text at position +Returns width of text in current font +Draws line along path path +Outputs text +Sets origin of coordinate system +Checks for alphanumeric character(s) +Checks for alphabetic character(s) +Checks for control character(s) +Checks for numeric character(s) +Checks for any printable character(s) except space +Checks for lowercase character(s) +Checks for printable character(s) +Checks for any printable character which is not whitespace or an alphanumeric character +Checks for whitespace character(s) +Checks for uppercase character(s) +Checks for character(s) representing a hexadecimal digit +Close a CURL session +Copy a cURL handle along with all of it's preferences +Return an integer containing the last error number +Return a string contain the last error for the current session +Perform a CURL session +Get information regarding a specific transfer +Initialize a CURL session +Set an option for a CURL transfer +Return cURL version information. +Add a normal cURL handle to a cURL multi handle +Close a set of cURL handles +Run the sub-connections of the current cURL handle +Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set +Get information about the current transfers +Returns a new cURL multi handle +Remove a multi handle from a set of cURL handles +Get all the sockets associated with the cURL extension, which can then be "selected" +Closes database +Deletes the entry associated with key If inifile: remove all other key lines +Checks, if the specified key exists +Fetches the data associated with key +Resets the internal key pointer and returns the first key +List configured database handlers +If not inifile: Insert value as key, return false, if key exists already If inifile: Add vakue as key (next instance of key) +List opened databases +Returns the next key +Opens path using the specified handler in mode +Optimizes (e.g. clean up, vacuum) database +Opens path using the specified handler in mode persistently +Inserts value as key, replaces key, if key exists already If inifile: remove all other key lines +Synchronizes database +Adds a record to the database +Closes an open dBase-format database file +Creates a new dBase-format database file +Marks a record to be deleted + +Returns an array representing a record from the database +Returns an associative array representing a record from the database +Returns the number of fields (columns) in the database +Returns the number of records in the database +Opens a dBase-format database file +Packs the database (deletes records marked for deletion) +Replaces a record to the database +Returns success or failure +Returns row_y[columnname] - row_x[columnname], converted to -1, 0 or 1 +Returns a dbx_link_object on success and returns 0 on failure +Returns success or failure +Returns escaped string or NULL on error +Returns a row (index and assoc based on query) on success and returns 0 on failure or no more rows +Returns a dbx_link_object on success and returns 0 on failure +Returns 0 on failure, 1 on success +Close the file descriptor given by fd +Perform a c library fcntl on fd +Open a new filename with specified permissions of flags and creation permissions of mode +Read n bytes from fd and return them, if n is not specified, read 1k +Seek to pos on fd from whence +Get stat information about the file descriptor fd +Perform a c library tcsetattr on fd +Truncate file descriptor fd to offset bytes +Write data to fd with optional truncation at length +Substitutues xincludes in a DomDocument +Get a simplexml_element object from dom to allow for processing +Get the type of an image +Reads header data from the JPEG/TIFF image filename and optionally reads the internal thumbnails +Get headername for index or false if not defined +Reads the embedded thumbnail +Terminate monitoring +Close FAM connection +Monitor a collection of files in a directory for changes +Monitor a directory for changes +Monitor a regular file for changes +Get next pending FAM event +Open FAM connection +Check for pending FAM events +Resume suspended monitoring +Temporary suspend monitoring +Get the number of rows affected by the last statement +Turns on auto-commit +Get the size of a BLOB identified by blob_handle +Change the user for a session +Get the size of a CLOB identified by clob_handle +Close a connection to a database server +Commit the transaction +Create a connection to a database server +Create a BLOB in the database for use with an insert or update statement +Create a CLOB in the database for use with an insert or update statement +Create a new database on the server +Move the internal row counter to the specified row_number +Get or set the database name used with a connection +Get or set the databsae password used with a connection +Send one or more SQL statements to a specified database on the server +Gets the status (Stopped, Starting, Running, Stopping) for a given database +Drop a database on the server +Returns the last error code +Returns the last error string +Fetches a result row as an array (associative, numeric or both) +Detch a row of data. Returns an assoc array +Get the field properties for a specified field_index +Returns an array of the lengths of each column in the result set +Fetch a row of data. Returns an object +Fetch a row of data. Returns an indexed array +??? +Get the column length for a specified field_index +Get the column name for a specified field_index +??? +Get the table name for a specified field_index +Get the field type for a specified field_index +free the memory used to store a result +??? +Get or set the host name used with a connection +Get the internal index for the last insert statement +Retreive a list of all databases on the server +Retrieve a list of all fields for the specified database.table +Retreive a list of all tables from the specifoied database +Switch to the next result if multiple results are available +Get number of fields in the result set +Get number of rows +Get or set the user password used with a connection +Create a persistant connection to a database server +Send one or more SQL statements to the server and execute them +Read the BLOB data identified by blob_handle +Read the CLOB data identified by clob_handle +??? +Rollback all statments since last commit +Select the database to open +Sets the mode for how LOB data re retreived (actual data or a handle) +Change the password for a given user +Sets the transaction locking and isolation +Start a database on the server +Stop a database on the server +Retreive the table name for index after a call to fbsql_list_tables() +Get or set the host user used with a connection +Enable or disable FrontBase warnings +Add javascript code to the fdf file +Adds a template into the FDF document +Closes the FDF document +Creates a new FDF document +Call a user defined function for each document value +Gets error code for last operation +Gets error description for error code +Gets the appearance of a field and creates a PDF document out of it. +Get attached uploaded file +Gets FDF file encoding scheme +Gets the value of /F key +Gets the flags of a field +Gets a value from the opt array of a field +Gets the value of /Status key +Gets the value of a field as string +Gets version number for FDF api or file +Set FDF specific HTTP headers +Gets the name of the next field name or the first field name +Opens a new FDF document +Opens a new FDF document from string +Sets target frame for form +Writes out the FDF file +Returns the FDF file as a string +Sets the appearence of a field +Sets FDF encoding (either "Shift-JIS" or "Unicode") +Sets the value of /F key +Sets flags for a field in the FDF document +Sets the javascript action for a field +Adds javascript code to be executed when Acrobat opens the FDF +Sets a value in the opt array for a field +Sets the value of /Status key +Sets the submit form action for a field +Sets target frame for form +Sets the value of a field +Sets FDF version for a file +Read and verify the map file +Find out how many fields are in a filePro database +Gets the name of a field +Gets the type of a field +Gets the width of a field +Retrieves data from a filePro database +Find out how many rows are in a filePro database +Attempt to allocate space on the remote FTP server +Changes to the parent directory +Changes directories +Sets permissions on a file +Closes the FTP stream +Opens a FTP stream +Deletes a file +Requests execution of a program on the FTP server +Retrieves a file from the FTP server and writes it to an open file +Stores a file from an open file to the FTP server +Retrieves a file from the FTP server and writes it to a local file +Gets an FTP option +Logs into the FTP server +Returns the last modification time of the file, or -1 on error +Creates a directory and returns the absolute path for the new directory or false on error +Continues retrieving/sending a file nbronously +Retrieves a file from the FTP server asynchronly and writes it to an open file +Stores a file from an open file to the FTP server nbronly +Retrieves a file from the FTP server nbhronly and writes it to a local file +Stores a file on the FTP server +Returns an array of filenames in the given directory +Turns passive mode on or off +Stores a file on the FTP server +Returns the present working directory +Sends a literal command to the FTP server +Returns a detailed listing of a directory as an array of output lines +Renames the given file to a new path +Removes a directory +Sets an FTP option +Sends a SITE command to the server +Returns the size of the file, or -1 on error +Opens a FTP-SSL stream +Returns the system type identifier + +Turn alpha blending mode on or off for the given image +Should antialiased functions used or not +Draw a partial ellipse +Draw a character +Draw a character rotated 90 degrees counter-clockwise +Allocate a color for an image +Allocate a color with an alpha level. Works for true color and palette based images +Get the index of the color of a pixel +Get the index of the closest color to the specified color +Find the closest matching colour with alpha transparency +Get the index of the color which has the hue, white and blackness nearest to the given color +De-allocate a color for an image +Get the index of the specified color +Find exact match for colour with transparency +Makes the colors of the palette version of an image more closely match the true color version +Get the index of the specified color or its closest possible alternative +Resolve/Allocate a colour with an alpha level. Works for true colour and palette based images +Set the color for the specified palette index +Get the colors for an index +Find out the number of colors in an image's palette +Define a color as transparent +Copy part of an image +Merge one part of an image with another +Merge one part of an image with another +Copy and resize part of an image using resampling to help ensure clarity +Copy and resize part of an image +Create a new image +Create a new image from GD file or URL +Create a new image from GIF file or URL +Create a new image from JPEG file or URL +Create a new image from PNG file or URL +Create a new image from the image stream in the string +Create a new image from WBMP file or URL +Create a new image from XBM file or URL +Create a new image from XPM file or URL +Create a new true color image +Draw a dashed line +Destroy an image +Draw an ellipse +Flood fill +Draw a filled partial ellipse +Draw an ellipse +Draw a filled polygon +Draw a filled rectangle +Flood fill to specific color +Applies Filter an image using a custom angle +Get font height +Get font width +Give the bounding box of a text using fonts via freetype2 +Write text to the image using fonts via freetype2 +Apply a gamma correction to a GD image +Output GD image to browser or file +Output GIF image to browser or file +Enable or disable interlace +return true if the image uses truecolor +Output JPEG image to browser or file +Set the alpha blending flag to use the bundled libgd layering effects +Draw a line +Load a new font +Copy the palette from the src image onto the dst image +Output PNG image to browser or file +Draw a polygon +Return the bounding box needed by a string if rasterized +Make a copy of a font for purposes like extending or reenconding +To change a fonts character encoding vector +Extend or or condense (if extend < 1) a font +Free memory used by a font +Load a new font from specified file +Slant a font +Rasterize a string over an image +Draw a rectangle +Rotate an image using a custom angle +Include alpha channel to a saved image +Set the brush image to $brush when filling $image with the "IMG_COLOR_BRUSHED" color +Set a single pixel +Set the line drawing styles for use with imageline and IMG_COLOR_STYLED. +Set line thickness for drawing lines, ellipses, rectangles, polygons etc. +Set the tile image to $tile when filling $image with the "IMG_COLOR_TILED" color +Draw a string horizontally +Draw a string vertically - rotated 90 degrees counter-clockwise +Get image width +Get image height +Convert a true colour image to a palette based image with a number of colours, optionally using dithering. +Give the bounding box of a text using TrueType fonts +Write text to the image using a TrueType font +Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM +Output WBMP image to browser or file +Output XBM image to browser or file +Bind to the text domain domain_name, looking for translations in dir. Returns the current domain +Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist +Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist +Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist +Plural version of gettext() +Set the textdomain to "domain". Returns the current domain +Calculates absolute value +Add a and b +Calculates logical AND of a and b +Clears bit in a +Compares two numbers +Calculates one's complement of a +Divide a by b, returns quotient only +Divide a by b, returns quotient and reminder +Divide a by b, returns reminder only +Divide a by b using exact division algorithm +Calculates factorial function +Computes greatest common denominator (gcd) of a and b +Computes G, S, and T, such that AS BT = G = `gcd' (A, B) +Calculates hamming distance between a and b +Initializes GMP number +Gets signed long value of GMP number +Computes the inverse of a modulo b +Computes Jacobi symbol +Computes Legendre symbol +Computes a modulo b +Multiply a and b +Negates a number +Calculates logical OR of a and b +Checks if a is an exact square +Calculates the population count of a +Raise base to power exp +Raise base to power exp and take result modulo mod +Checks if a is "probably prime" +Gets random number +Sets or clear bit in a +Gets the sign of the number +Takes integer part of square root of a +Square root with remainder +Gets string representation of GMP number +Subtract b from a +Calculates logical exclusive OR of a and b +Returns str converted to the out_charset character set +Get internal encoding and output encoding for ob_iconv_handler() +Decodes a mime header field +Decodes multiple mime header fields +Composes a mime header field with field_name and field_value in a specified scheme +Sets internal encoding and output encoding for ob_iconv_handler() +Returns the character count of str +Finds position of first occurrence of needle within part of haystack beginning with offset +Finds position of last occurrence of needle within part of haystack beginning with offset +Returns specified part of a string +Returns str in output buffer converted to the iconv.output_encoding character set +Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called. +Append a new message to a specified mailbox +Convert an 8bit string to a base64 string +Read the message body +Read the structure of a specified body section of a specific message +Get mailbox properties +Clears flags on messages +Close an IMAP stream +Create a new mailbox +Mark a message for deletion +Delete a mailbox +Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called. +Permanently delete all messages marked for deletion +Read an overview of the information in the headers of the given message sequence +Get a specific body section +Get the full unfiltered header for a message +Read the full structure of a message +Returns the quota set to the mailbox account qroot +Returns the quota set to the mailbox account mbox +Gets the ACL for a given mailbox +Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter +Return a list of subscribed mailboxes, in the same format as imap_getmailboxes() +Read the headers of the message +Returns headers for all messages in a mailbox +Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call. +Read the list of mailboxes +Return a list of subscribed mailboxes +Send an email message +Create a MIME message based on given envelope and body sections +Copy specified message to a mailbox +Move specified message to a mailbox +Returns info about the current mailbox +Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text' +Get the sequence number associated with a UID +Gives the number of messages in the current mailbox +Gives the number of recent messages in current mailbox +Open an IMAP stream to a mailbox +Check if the IMAP stream is still active +Convert a quoted-printable string to an 8-bit string +Rename a mailbox +Reopen an IMAP stream to a new mailbox +Read list of mailboxes containing a certain string +Return a list of messages matching the given criteria +Will set the quota for qroot mailbox +Sets the ACL for a given mailbox +Sets flags on messages +Sort an array of message headers, optionally including only messages that meet specified criteria. +Get status info from a mailbox +Subscribe to a mailbox +Return threaded by REFERENCES tree +Set or fetch imap timeout +Get the unique message id associated with a standard sequential message number +Remove the delete flag from a message +Unsubscribe from a mailbox +Returns the number of rows affected by query identified by resultid +Sets the default blob-mode for all select-queries +Sets the default byte-mode for all select-queries +Close informix connection +Connects to database using userid/password, returns connection id +Duplicates the given blob-object +Creates a blob-object +Creates a char-object +Executes a previously prepared query or opens a cursor for it +Returns the Informix error codes (SQLSTATE & SQLCODE) +Returns the Informix errormessage associated with +Fetches the next row or <position> row if using a scroll cursor +Returns an associative for query <resultid> array with fieldnames as key +Returns an associative array with fieldnames as key for query <resultid> +Deletes the blob-object +Deletes the char-object +Releases resources for query associated with resultid +Returns the content of the blob-object +Returns the content of the char-object +Returns the sqlerrd[] fields of the sqlca struct for query resultid +Formats all rows of the resultid query into a html table +Sets the default return value of a NULL-value on a fetch-row +Returns the number of columns in query resultid +Returns the number of rows already fetched for query identified by resultid +Connects to database using userid/password, returns connection id +Prepare a query on a given connection +Perform a query on a given connection +Sets the default text-mode for all select-queries +Updates the content of the blob-object +Updates the content of the char-object +Deletes the slob-object +Creates a slob-object and opens it +Deletes the slob-object +Opens an slob-object +Reads nbytes of the slob-object +Sets the current file or seek position of an open slob-object +Returns the current file or seek position of an open slob-object +Writes a string into the slob-object +Switch autocommit on or off +Close an Ingres II database connection +Commit a transaction +Open a connection to an Ingres II database the syntax of database is [node_id::]dbname[/svr_class] +Fetch a row of result into an array result_type can be II_NUM for enumerated array, II_ASSOC for associative array, or II_BOTH (default) +Fetch a row of result into an object result_type can be II_NUM for enumerated object, II_ASSOC for associative object, or II_BOTH (default) +Fetch a row of result into an enumerated array +Return the length of a field in a query result index must be >0 and <= ingres_num_fields() +Return the name of a field in a query result index must be >0 and <= ingres_num_fields() +Return true if the field is nullable and false otherwise index must be >0 and <= ingres_num_fields() +Return the precision of a field in a query result index must be >0 and <= ingres_num_fields() +Return the scale of a field in a query result index must be >0 and <= ingres_num_fields() +Return the type of a field in a query result index must be >0 and <= ingres_num_fields() +Return the number of fields returned by the last query +Return the number of rows affected/returned by the last query +Open a persistent connection to an Ingres II database the syntax of database is [node_id::]dbname[/svr_class] +Send a SQL query to Ingres II +Roll back a transaction +Add data into created blob +Cancel creating blob +Close blob +Create blob for adding data +Output blob contents to browser +Get len bytes data from open blob +Create blob, copy file in it, and close it +Return blob length and other useful info +Open blob for retrieving data parts +Frees the event handler set by ibase_set_event_handler() +Register the callback for handling each of the named events +Waits for any one of the passed Interbase events to be posted by the database, and returns its name +Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement +Execute a previously prepared query +Fetch a row from the results of a query +Fetch a object from the results of a query +Fetch a row from the results of a query +Get information about a field +Free memory used by a query +Free the memory used by a result +Assign a name to a result for use with ... WHERE CURRENT OF <name> statements +Get the number of fields in result +Get the number of params in a prepared query +Return the number of rows that are available in a result +Get information about a parameter +Prepare a query for later execution +Execute a query +Add a user to security database +Initiates a backup task in the service manager and returns immediately +Request statistics about a database +Delete a user from security database +Execute a maintenance command on the database server +Modify a user in security database +Initiates a restore task in the service manager and returns immediately +Request information about a database server +Connect to the service manager +Disconnect from the service manager +Close an InterBase connection +Commit transaction +Commit transaction and retain the transaction context +Open a connection to an InterBase database +Drop an InterBase database +Return error code +Return error message +Increments the named generator and returns its new value +Open a persistent connection to an InterBase database +Rollback transaction +Rollback transaction and retain the transaction context +Sets the format of timestamp, date and time columns returned from queries +Start a transaction over one or several databases +Sets channel mode flags for user +Terminate IRC connection +Decodes a list of JS-encoded parameters into a native array +Returns the error from previous ircg operation +Gets username for connection +Encodes HTML preserving output +Adds a user to your ignore list on a server +Removes a user from your ignore list +INVITEs nickname to channel +Checks connection status +Joins a channel on a connected server +Kicks user from channel +List topic/user count of channel(s) +Selects a set of format strings for display of IRC messages +IRC network statistics +Delivers a message to the IRC network +Queries visible usernames +Changes the nickname +Escapes special characters in nickname to be IRC-compliant +Decodes encoded nickname +Sends a one-way communication NOTICE to a target +Elevates privileges to IRC OPER +Leaves a channel +Create a persistent IRC connection +Registers a set of format strings for display of IRC messages +Sets current connection for output +Sets logfile for connection +Sets hostaction to be executed when connection dies +Set action to be executed when data is received from a HTTP client +Sets topic for channel +Queries server for WHO information +Queries user information for nick on server +Add entries to LDAP directory +Bind to LDAP directory +Determine if an entry has a specific value for one of its attributes +Connect to an LDAP server +Count the number of entries in a search result +Delete an entry from a directory +Get the current ldap error number +Get the current ldap error string +Splits DN into its component parts +Return first attribute +Return first result id +Return first reference +Free result memory +Get attributes from a search result entry +Get the DN of a result entry +Get all result entries +Get the current value of various session-wide parameters +Get all values from a result entry +Get all values with lengths from a result entry +Single-level search +Add attribute values to current +Delete attribute values +Replace attribute values with new ones +Get the next attribute in result +Get next result entry +Get next reference +Extract information from reference entry +Extract information from result +Read an entry +Bind to LDAP directory using SASL +Search LDAP tree under base_dn +Set the value of various session-wide parameters +Set a callback function to do re-binds on referral chasing. +Sort LDAP result entries +Start TLS +Unbind from LDAP directory +Set the streams context for the next libxml document load or write +Returns a case-folded version of sourcestring +Returns converted string in desired encoding +Conversion between full-width character and half-width character (Japanese) +Converts the string resource in variables to desired encoding +Decodes the MIME "encoded-word" in the string +Converts HTML numeric entities to character code +Encodings of the given string is returned (as a string) +Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded_string?= +Converts specified characters to HTML numeric entities +Returns the current settings of mbstring +Returns the input encoding +Sets the current output_encoding or returns the current output_encoding as a string +Sets the current internal encoding or Returns the current internal encoding as a string +Sets the current language or Returns the current language as a string +Returns an array of all supported encodings +Returns string in output buffer converted to the http_output encoding +Parses GET/POST/COOKIE data and sets global variables +Return the preferred MIME name (charset) as a string +* Sends an email message with MIME scheme +Returns part of a string +Trim the string in terminal width +Get character numbers of a string +Find position of first occurrence of a string within another +Find the last occurrence of a character in a string within another +* Returns a lowercased version of sourcestring +* Returns a uppercased version of sourcestring +Gets terminal width of a string +Sets the current substitute_character or returns the current substitute_character +Returns part of a string +Count the number of substring occurrences +Regular expression match for multibyte string +Regular expression match for multibyte string +Replace regular expression for multibyte string +Regular expression search for multibyte string +Get search start position +Get matched substring of the last time +Initialize string and regular expression for search. +Regular expression search for multibyte string +Regular expression search for multibyte string +Set search start position +Case-insensitive regular expression match for multibyte string +Case insensitive replace regular expression for multibyte string +Returns the current encoding for regex as a string. +Set or get the default options for mbregex functions +split multibyte string into array by regular expression +CBC crypt/decrypt data using key key with cipher cipher starting with iv +CFB crypt/decrypt data using key key with cipher cipher starting with iv +Create an initialization vector (IV) +OFB crypt/decrypt data using key key with cipher cipher starting with iv +ECB crypt/decrypt data using key key with cipher cipher starting with iv +Returns the name of the algorithm specified by the descriptor td +Returns the block size of the cipher specified by the descriptor td +Returns the size of the IV in bytes of the algorithm specified by the descriptor td +Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td +Returns the name of the mode specified by the descriptor td +This function decrypts the crypttext +Returns TRUE if the alrogithm is a block algorithms +Returns TRUE if the mode is for use with block algorithms +Returns TRUE if the mode outputs blocks +This function runs the self test on the algorithm specified by the descriptor td +OFB crypt/decrypt data using key key with cipher cipher starting with iv +This function encrypts the plaintext +This function terminates encrypt specified by the descriptor td +This function terminates encrypt specified by the descriptor td +This function initializes all buffers for the specific module +Get the key size of cipher +Get the key size of cipher +Get the IV size of cipher (Usually the same as the blocksize) +Get the key size of cipher +List all algorithms in "module_dir" +List all modes "module_dir" +Free the descriptor td +Returns the block size of the algorithm +Returns the maximum supported key size of the algorithm +This function decrypts the crypttext +Returns TRUE if the algorithm is a block algorithm +Returns TRUE if the mode is for use with block algorithms +Returns TRUE if the mode outputs blocks of bytes +Opens the module of the algorithm and the mode to be used +Does a self test of the module "module" +OFB crypt/decrypt data using key key with cipher cipher starting with iv +This function decrypts the plaintext +Add an MCVE user using usersetup structure +Add a value to user configuration structure +Get unsettled batch totals +Check to see if a transaction has completed +Verify Password +Change the system administrator's password +Number of complete authorizations in queue, returning an array of their identifiers +Establish the connection to MCVE +Get a textual representation of why a connection failed +Delete specified transaction from MCVE_CONN structure +Delete specified transaction from MCVE_CONN structure +Deallocate data associated with usersetup structure +Delete an MCVE user account +Destroy the connection and MCVE_CONN structure +Free memory associated with IP/SSL connectivity +Disable an active MCVE user account +Edit MCVE user using usersetup structure +Enable an inactive MCVE user account +Send a FORCE to MCVE. (typically, a phone-authorization) +Get a specific cell from a comma delimited response by column name +Get a specific cell from a comma delimited response by column number +Get the RAW comma delimited data returned from MCVE +Get the name of the column in a comma-delimited response +Grab a value from usersetup structure +Get a user response parameter +Audit MCVE for Failed transactions +Audit MCVE for settled transactions +Audit MCVE for Unsettled Transactions +Create and initialize an MCVE_CONN structure +Ready the client for IP/SSL Communication +Initialize structure to store user data +Checks to see if response is comma delimited +List statistics for all users on MCVE system +List all users on MCVE system +The maximum amount of time the API will attempt a connection to MCVE +Perform communication with MCVE (send/receive data) Non-blocking +Number of columns returned in a comma delimited response +Number of rows returned in a comma delimited response +Send an OVERRIDE to MCVE +Parse the comma delimited response so mcve_getcell, etc will work +Send a ping request to MCVE +Send a PREAUTHORIZATION to MCVE +Complete a PREAUTHORIZATION... Ready it for settlement +Audit MCVE for a list of transactions in the outgoing queue +Get a custom response parameter +Issue a RETURN or CREDIT to MCVE +Grab the exact return code from the transaction +Check to see if the transaction was successful +Send a SALE to MCVE +Set blocking/non-blocking mode for connection +Set the connection method to Drop-File +Set the connection method to IP +Set the connection method to SSL +Set certificate key files and certificates if server requires client certificate verification +Set maximum transaction time (per trans) +Issue a settlement command to do a batch deposit +Get a textual representation of the return_avs +Get a textual representation of the return_code +Get a textual representation of the return_cv +Get the authorization number returned for the transaction (alpha-numeric) +Get the Address Verification return status +Get the batch number associated with the transaction +Get the CVC2/CVV2/CID return status +Get the unique system id for the transaction +Get the ITEM number in the associated batch for this transaction +Check to see if outgoing buffer is clear +Get verbiage (text) return from MCVE or processing institution +Number of transactions in client-queue +Start a new transaction +Add a parameter to a transaction +Finalize and send the transaction +Get a list of all Unsettled batches +Wait x microsecs +Set whether or not to PING upon connect to verify connection +Set whether or not to verify the server ssl certificate +VOID a transaction in the settlement queue +Hash data with hash +Gets the number of available hashes +Gets the block size of hash +Gets the name of hash +Return content-type for file +Returns the action flag for keyPress(char) +Set scale (?) +Use constant pool (?) +Use SWF version (?) +Returns a new SWFAction object, compiling the given script +Returns a new SWFBitmap object from jpg (with optional mask) or dbl file +Returns a new SWFButton object +Displaces this SWFDisplayItem by (dx, dy) in movie coordinates +Rotates this SWFDisplayItem the given (clockwise) degrees from its current orientation +Multiplies this SWFDisplayItem's current x scale by xScale, its y scale by yScale +Returns a new SWFFill object +Returns a new SWFFont object from given file +Returns a new SWFGradient object +Returns a new SWFMorph object + +Creates swfmovie object according to the passed version + +Labels frame + + +Saves the movie. 'where' can be stream and the movie will be saved there otherwise it is treated as string and written in file with that name +Returns a fill object, for use with swfshape_setleftfill and swfshape_setrightfill. If 1 or 2 parameter(s) is (are) passed first should be object (from gradient class) and the second int (flags). Gradient fill is performed. If 3 or 4 parameters are passed : r, g, b [, a]. Solid fill is performed. +Draws an arc of radius r centered at the current location, from angle startAngle to angle endAngle measured counterclockwise from 12 o'clock +Draws a circle of radius r centered at the current location, in a counter-clockwise fashion +Draws a cubic bezier curve using the current position and the three given points as control points +Draws a cubic bezier curve using the current position and the three given points as control points +Draws a curve from the current pen position (x, y) to the point (x+bdx, y+bdy) in the current line style, using point (x+adx, y+ady) as a control point or draws a cubic bezier to point (x+cdx, x+cdy) with control points (x+adx, y+ady) and (x+bdx, y+bdy) +Draws a curve from the current pen position (x,y) to the point (bx, by) in the current line style, using point (ax, ay) as a control point. Or draws a cubic bezier to point (dx, dy) with control points (ax, ay) and (bx, by) +Draws the first character in the given string into the shape using the glyph definition from the given font +Draws a line from the current pen position (x, y) to the point (x+dx, y+dy) in the current line style +Draws a line from the current pen position to shape coordinates (x, y) in the current line style +Returns a new SWFShape object +Moves the pen from its current location by vector (x, y) +Moves the pen to shape coordinates (x, y) +Sets the left side fill style to fill in case only one parameter is passed. When 3 or 4 parameters are passed they are treated as : int r, int g, int b, int a . Solid fill is performed in this case before setting left side fill type. +Sets the right side fill style to fill in case only one parameter is passed. When 3 or 4 parameters are passed they are treated as : int r, int g, int b, int a . Solid fill is performed in this case before setting right side fill type. +Sets the current line style for this SWFShape +Returns a new SWFSound object from given file +Adds the character to the sprite, returns a displayitem object +Returns a new SWFSprite object +Remove the named character from the sprite's display list +Returns new SWFText object +Sets the alignment of this textfield +Returns a new SWFTextField object +Add mnoGoSearch search restrictions +Allocate mnoGoSearch session +Allocate mnoGoSearch session +Get mnoGoSearch API version +Get mnoGoSearch categories list with the same root +Get mnoGoSearch categories path from the root to the given catgory +Check if the given charset is known to mnogosearch +Open connection to stored +Clear all mnoGoSearch search restrictions +Open connection to stored +Get mnoGoSearch error number +Get mnoGoSearch error message +Perform search +Free mnoGoSearch session +Free memory allocated for ispell data +mnoGoSearch free result +Get total number of documents in database +Fetch mnoGoSearch result field +Fetch mnoGoSearch result field +Get mnoGoSearch result parameters +Load ispell data +Perform search +Open connection to stored +Parses query string, initialises variables and search limits taken from it +Set mnoGoSearch agent session parameters +Set mnoGoSearch agent session parameters extended +Call the plugin function named fn_name +Connect to msession sever +Get session count +Create a session +Lock a session +Destroy a session +Disconnect from msession server +executes a program on msession system +Find all sessions with name and value +Get value from session +Get array of msession variables +Get data session unstructured data. (PHP sessions use this) +Increment value in session +List all sessions +return associative array of value:session for all sessions with a variable named 'name' +Lock a session +returns non-zero if msession is alive +Call the personality plugin escape function +Get random string +Set value in session +Set msession variables from an array +Set data session unstructured data. (PHP sessions use this) +Set/get session timeout +Get uniq id +Unlock a session +Return number of affected rows +Close an mSQL connection +Open a connection to an mSQL Server +Create an mSQL database +Move internal result pointer +Send an SQL query to mSQL +Drop (delete) an mSQL database +Returns the text of the error message from previous mSQL operation +Fetch a result row as an associative array +Get column information from a result and return as an object +Fetch a result row as an object +Get a result row as an enumerated array +Get the flags associated with the specified field in a result +Returns the length of the specified field +Get the name of the specified field in a result +Set result pointer to a specific field offset +Get name of the table the specified field is in +Get the type of the specified field in a result +Free result memory +List databases available on an mSQL server +List mSQL result fields +List tables in an mSQL database +Get number of fields in a result +Get number of rows in a result +Open a persistent connection to an mSQL Server +Send an SQL query to mSQL +Get result data +Select an mSQL database +Adds a parameter to a stored procedure or a remote stored procedure +Closes a connection to a MS-SQL server +Establishes a connection to a MS-SQL server +Moves the internal row pointer of the MS-SQL result associated with the specified result identifier to pointer to the specified row number +Executes a stored procedure on a MS-SQL server database +Returns an associative array of the current row in the result set specified by result_id +Returns an associative array of the current row in the result set specified by result_id +Returns the next batch of records +Gets information about certain fields in a query result +Returns a psuedo-object of the current row in the result set specified by result_id +Returns an array of the current row in the result set specified by result_id +Get the length of a MS-SQL field +Returns the name of the field given by offset in the result set given by result_id +Seeks to the specified field offset +Returns the type of a field +Free a MS-SQL result index +Free a MS-SQL statement index +Gets the last message from the MS-SQL server +Converts a 16 byte binary GUID to a string +Initializes a stored procedure or a remote stored procedure +Sets the lower error severity +Sets the lower message severity +Move the internal result pointer to the next result +Returns the number of fields fetched in from the result id specified +Returns the number of rows fetched in from the result id specified +Establishes a persistent connection to a MS-SQL server +Perform an SQL query on a MS-SQL server database +Returns the contents of one cell from a MS-SQL result set +Returns the number of records affected by the query +Select a MS-SQL database +Gets number of affected rows in previous MySQL operation +Returns the default character set for the current connection +Close a MySQL connection +Opens a connection to a MySQL Server +Create a MySQL database +Move internal result pointer +Sends an SQL query to MySQL +Drops (delete) a MySQL database +Returns the number of the error message from previous MySQL operation +Returns the text of the error message from previous MySQL operation +Escape string for mysql query +Fetch a result row as an array (associative, numeric or both) +Fetch a result row as an associative array +Gets column information from a result and return as an object +Gets max data size of each column in a result +Fetch a result row as an object +Gets a result row as an enumerated array +Gets the flags associated with the specified field in a result +Returns the length of the specified field +Gets the name of the specified field in a result +Sets result pointer to a specific field offset +Gets name of the table the specified field is in +Gets the type of the specified field in a result +Free result memory +Returns a string that represents the client library version +Returns a string describing the type of connection in use, including the server host name +Returns the protocol version used by current connection +Returns a string that represents the server version number +Returns a string containing information about the most recent query +Gets the ID generated from the previous INSERT operation +List databases available on a MySQL server +List MySQL result fields +Returns a result set describing the current server threads +List tables in a MySQL database +Gets number of fields in a result +Gets number of rows in a result +Opens a persistent connection to a MySQL Server +Ping a server connection. If no connection then reconnect. +Sends an SQL query to MySQL +Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection +Gets result data +Selects a MySQL database +Returns a string containing status information +Returns the thread id of current connection +Sends an SQL query to MySQL, without fetching and buffering the result rows +Get number of affected rows in previous MySQL operation +Turn auto commit on or of +Change logged-in user of the active connection +Returns the name of the character set used for this connection +Close connection +Commit outstanding actions and close transaction +Move internal result pointer + + +Returns the numerical value of the error message from previous MySQL operation +Returns the text of the error message from previous MySQL operation +Fetch the number of fields returned by the last query for the given link +Set result pointer to a specified field offset +Get current field offset of result pointer +Free query result memory for the given result handle +Get MySQL client info +Get MySQL client info +Get MySQL protocol information +Get MySQL server info +Return the MySQL version for the server referenced by the given link +Get information about the most recent query +Initialize mysqli and return a resource for use with mysql_real_connect +Get the ID generated from the previous INSERT operation +Kill a mysql process on the server +check if there any more query results from a multi query +read next result from multi_query +Get number of fields in result +Get number of rows in result +Set options +Ping a server connection or reconnect if there is no connection +Prepare a SQL statement for execution +Open a connection to a mysql server +Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection +Binary-safe version of mysql_query() +Undo actions from current transaction +Select a MySQL database + + +initialize embedded server +Returns the SQLSTATE error from previous MySQL operation + +Get current system status +Return the number of rows affected in the last query for the given link +Bind variables to a prepared statement as parameters +Bind variables to a prepared statement for result storage +Close statement +Move internal result pointer + + +Execute a prepared statement +Fetch results from a prepared statement into the bound variables +Free stored result memory for the given statement handle +Initialize statement object +Return the number of rows in statements result set +prepare server side statement with query +reset a prepared statement +return result set from statement + + +Buffer result set on client +Return the current thread ID +Return whether thread safety is given or not +Directly retrieve query results - do not buffer results on client side +Open a connection to a mysql server +Returns the numerical value of the error message from last connect command +Returns the text of the error message from previous MySQL operation +Open a connection to a embedded mysql server +Binary-safe version of mysql_query() + + + + + +Enforce execution of a query on the master in a master/slave setup + + + + +Enforce execution of a query on a slave in a master/slave setup +Adds character at current position and advance cursor +Adds attributed string with specified length at current position +Adds attributed string at current position +Adds string with specified length at current position +Outputs text at current position +Defines default colors for color 0 +Turns off the given attributes +Turns on the given attributes +Sets given attributes +Returns baudrate of terminal +Let the terminal beep +Sets background property for terminal screen +Controls screen background +Draws a border around the screen using attributed characters +Moves a visible panel to the bottom of the stack +Checks if we can change terminals colors +Switches of input buffering +Clears screen +Clears screen from current position to bottom +Clears screen from current position to end of line +Gets the RGB value for color +Sets fore- and background color +Sets cursor state +Saves terminals (program) mode +Saves terminal (shell) mode +Defines a keycode +Remove panel from the stack and delete it (but not the associated window) +Delays output on terminal using padding characters +Deletes character at current position, move rest of line left +Deletes line at current position, move rest of screen up +Deletes a ncurses window +Writes all prepared refreshes to terminal +Activates keyboard input echo +Single character output including refresh +Stops using ncurses, clean up the screen +Erases terminal screen +Returns current erase character + +Flashes terminal screen (visual bell) +Flushes keyboard input buffer +Reads a character from keyboard +Returns the size of a window +Reads mouse event from queue. The content of mevent is cleared before new data is added. +Returns the current cursor position for a window +Puts terminal into halfdelay mode +Checks if terminal has colors +Checks for insert- and delete-capabilities +Checks for line insert- and delete-capabilities +Checks for presence of a function key on terminal keyboard +Remove panel from the stack, making it invisible +Draws a horizontal line at current position using an attributed character and max. n characters long +Gets character and attribute at current position +Initializes ncurses +Sets new RGB value for color +Allocates a color pair +Inserts character moving rest of line including character at current position +Inserts lines before current line scrolling down (negative numbers delete and scroll up) +Inserts a line, move rest of screen down +Inserts string at current position, moving rest of line right +Reads string from terminal screen +Ncurses is in endwin mode, normal screen output may be performed +Enables or disable a keycode +Turns keypad on or off +Returns current line kill character +Returns terminal description +Enables/Disable 8-bit meta key information +Transforms coordinates +Sets timeout for mouse button clicks +Returns and sets mouse options +Moves output position +Moves a panel so that it's upper-left corner is at [startx, starty] +Moves current position and add character +Moves position and add attrributed string with specified length +Moves position and add attributed string +Moves position and add string with specified length +Moves position and add string +Moves cursor immediately +Moves position and delete character, shift rest of line left +Moves position and get character at new position +Sets new position and draw a horizontal line using an attributed character and max. n characters long +Moves position and get attributed character at new position +Sets new position and draw a vertical line using an attributed character and max. n characters long +Adds string at new position in window +Sleep +Create a new panel and associate it with window +Creates a new pad (window) +Creates a new window +Translates newline and carriage return / line feed +Switches terminal to cooked mode +Switches off keyboard input echo +Do not ranslate newline and carriage return / line feed +Do not flush on signal characters +Switches terminal out of raw mode +Gets the RGB value for color +Returns the panel above panel. If panel is null, returns the bottom panel in the stack +Returns the panel below panel. If panel is null, returns the top panel in the stack +Returns the window associated with panel +Copys a region from a pad into the virtual screen +Copys a region from a pad into the virtual screen +??? +Flushes on signal characters +Switches terminal into raw mode +Refresh screen +Replaces the window associated with panel +Resets the prog mode saved by def_prog_mode +Resets the shell mode saved by def_shell_mode +Restores saved terminal state +Saves terminal state +Dumps screen content to file +Initializes screen from file dump +Restores screen from file dump +Inherits screen from file dump +Scrolls window content up or down without changing current position +Places an invisible panel on top of the stack, making it visible +Returns current soft label keys attribute +??? +??? +??? +Clears soft label keys from screen +Sets color for soft label keys +Inits soft label keys +Copies soft label keys to virtual screen +Copies soft label keys to screen +Restores soft label keys +Sets function key labels +Forces output when ncurses_slk_noutrefresh is performed +Stops using 'standout' attribute +Starts using 'standout' attribute +Starts using colors +Returns a logical OR of all attribute flags supported by terminal +Returns terminal name +Sets timeout for special key sequences +Moves a visible panel to the top of the stack +Specifys different filedescriptor for typeahead checking +Puts a character back into the input stream +Pushes mouse event to queue +Refreshes the virtual screen to reflect the relations between panels in the stack. +Assigns terminal default colors to color id -1 +Controls use of environment information about terminal size +Controls use of extended names in terminfo descriptions +??? +Draws a vertical line at current position using an attributed character and max. n characters long +Adds character at current position in a window and advance cursor +Outputs text at current postion in window +Turns off attributes for a window +Turns on attributes for a window +Set the attributes for a window +Draws a border around the window using attributed characters +Clears window +Sets windows color pairings +Erase window contents +Reads a character from keyboard (window) +Draws a horizontal line in a window at current position using an attributed character and max. n characters long +Transforms window/stdscr coordinates +Moves windows output position +Copies window to virtual screen +Refreshes window on terminal screen +End standout mode for a window +Enter standout mode for a window +Draws a vertical line in a window at current position using an attributed character and max. n characters long +Bind a PHP variable to an Oracle placeholder by name +Cancel reading from a cursor +Disconnect from database +Append an object to the collection +Assign a collection from another existing collection +Assign element val to collection at index ndx +Retrieve the value at collection index ndx +Return the max value of a collection. For a varray this is the maximum length of the array +Return the size of a collection +Trim num elements from the end of a collection +Commit the current context +Connect to an Oracle database and log on. Returns a new session. +Define a PHP variable to an Oracle column by name +Return the last error of stmt|conn|global. If no error happened returns false. +Execute a parsed statement +Prepare a new row of data for reading +Fetch all rows of result data into an array +Fetch a result row as an array +Fetch a result row as an associative array +Fetch a result row as an object +Fetch a result row as an enumerated array +Tell whether a column is NULL +Tell the name of a column +Tell the precision of a column +Tell the scale of a column +Tell the maximum data size of a column +Tell the data type of a column +Tell the raw oracle data type of a column +Deletes collection object +Deletes large object description +Free all resources associated with a statement +Toggle internal debugging output for the OCI extension +Appends data from a LOB to another LOB +Closes lob descriptor +Copies data from a LOB to another LOB +Checks if EOF is reached +Erases a specified portion of the internal LOB, starting at a specified offset +Writes a large object into a file +Flushes the LOB buffer +Saves a large object to file +Tests to see if two LOB/FILE locators are equal +Loads a large object +Reads particular part of a large object +Rewind pointer of a LOB +Saves a large object +Moves the pointer of a LOB +Returns size of a large object +Tells LOB pointer position +Truncates a LOB +Writes data to current position of a LOB +Writes temporary blob +Initialize a new collection +Connect to an Oracle database and log on. Returns a new session. +Return a new cursor (Statement-Handle) - use this to bind ref-cursors! +Initialize a new empty descriptor LOB/FILE (LOB is default) +Return the number of result columns in a statement +Return the row count of an OCI statement +Parse a query and return a statement +Changes the password of an account +Connect to an Oracle database using a persistent connection and log on. Returns a new session. +Return a single column of result data +Rollback the current context +Return a string containing server version information +Sets the number of rows to be prefetched on execute to prefetch_rows for stmt +Return the query type of an OCI statement +Fetch a row of result data into an array +Returns current state of buffering for a LOB +Enables/disables buffering for a LOB + + + + + + + + + + + + +Toggle autocommit mode or get status +Handle binary column data +Close an ODBC connection +Close all ODBC connections +Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table +Returns a result identifier that can be used to fetch a list of column names in specified tables +Commit an ODBC transaction +Connect to a datasource +Get cursor name +Return information about the currently connected data source +Get the last error code +Get the last error message +Prepare and execute an SQL statement +Execute a prepared statement +Fetch a result row as an associative array +Fetch one result row into an array +Fetch a result row as an object +Fetch a row +Get the length (precision) of a column +Get a column name +Return column number +Get the scale of a column +Get the datatype of a column +Returns a result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table +Free resources associated with a result +Returns a result identifier containing information about data types supported by the data source +Handle LONG columns +Checks if multiple results are avaiable +Get number of columns in a result +Get number of rows in a result +Establish a persistent connection to a datasource +Prepares a statement for execution +Returns a result identifier listing the column names that comprise the primary key for a table +Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures +Returns a result identifier containg the list of procedure names in a datasource +Get result data +Print result as HTML table +Rollback a transaction +Sets connection or statement options +Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction +Returns a result identifier that contains statistics about a single table and the indexes associated with the table +Returns a result identifier containing a list of tables and the privileges associated with each table +Call the SQLTables function + +Exports a CSR to file or a var +Exports a CSR to file +Generates a privkey and CSR +Signs a cert with another CERT +Returns a description of the last error, and alters the index of the error messages. Returns false when the are no more messages +Opens data +Gets an exportable representation of a key into a string or file +Gets an exportable representation of a key into a file +Frees a key +Gets private keys +Gets public key from X.509 certificate +Generates a new private key +Decrypts data with private key +Encrypts data with private key +Decrypts data with public key +Encrypts data with public key +Seals data +Signs data +Verifys data +Bind a PHP variable to an Oracle parameter +Close an Oracle cursor +Get the name of an Oracle result column +Return the size of the column +Get the type of an Oracle result column +Commit an Oracle transaction +Disable automatic commit +Enable automatic commit +Parse and execute a statement and fetch first result row +Get an Oracle error message +Get an Oracle error code +Execute a parsed statement +Fetch a row of result data from a cursor +Fetch a row into the specified result array +Get data from a fetched row +Close an Oracle connection +Open an Oracle connection +Returns the numbers of columns in a result +Returns the number of rows in a result +Open an Oracle cursor +Parse an Oracle SQL statement +Open a persistent Oracle connection +Roll back an Oracle transaction +Toggle autocommit mode There can be problems with pconnections! +Close a connection +Commit an ovrimos transaction +Connect to an Ovrimos database +Get cursor name +Prepare and execute an SQL statement +Execute a prepared statement +Fetch one result row into an array how: 'Next' (default), 'Prev', 'First', 'Last', 'Absolute' +how: 'Next' (default), 'Prev', 'First', 'Last', 'Absolute' Fetch a row +Get the length of a column +Get a column name +Return column number +Get the datatype of a column +Free resources associated with a result +Handle LONG columns +Get number of columns in a result +Get number of rows in a result +Prepares a statement for execution +Get result data +Print result as HTML table +Rollback a transaction +Sets connection or statement options +Set an alarm clock for delivery of a signal +Executes specified program in current process space as defined by exec(2) +Forks the currently running process following the same behavior as the UNIX fork() system call +Get the priority of any process +Change the priority of any process +Assigns a system signal handler to a PHP function +Waits on or returns the status of a forked child as defined by the waitpid() system call +Waits on or returns the status of a forked child as defined by the waitpid() system call +Returns the status code of a child's exit +Returns true if the child status code represents a successful exit +Returns true if the child status code represents a process that was terminated due to a signal +Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid) +Returns the number of the signal that caused the process to stop who's status code is passed +Returns the number of the signal that terminated the process who's status code is passed +Searches array and returns entries which match regex +Perform a Perl-style regular expression match +Perform a Perl-style global regular expression match +Quote regular expression characters plus an optional character +Perform Perl-style regular expression replacement. +Perform Perl-style regular expression replacement using replacement callback. +Split string into an array using a perl-style regular expression as a delimiter +Sets annotation (depreciated use pdf_add_note instead) +Adds bookmark for current page +Adds link to web resource +Adds link to local resource +Sets annotation +Adds link to PDF document +Adds link to web resource +Draws an arc +Adds a file attachment annotation at the rectangle specified by his lower left and upper right corners +Starts page +Draws a circle +Clips to current path +Closes the pdf document +Closes the PDF image +Close path +Close, fill and stroke current path +Close path and draw line along path +Concatenates a matrix to the current transformation matrix for text and graphics +Output text in next line +Draws a curve +Deletes the PDF object +Ends page +Ends current path +Fill current path +Fill and stroke current path +Prepares the font fontname for later use with pdf_setfont() +Fetches the full buffer containig the generated PDF data +Gets the current font +Gets the current font name +Gets the current font size +Returns the height of an image +Returns the width of an image +Returns the major version number of the PDFlib +Returns the minor version number of the PDFlib +Gets arbitrary parameters +Gets arbitrary value +Draws a line +Sets current point +Creates a new PDF object +Opens a new pdf document. If filedesc is NULL, document is created in memory. This is the old interface, only for compatibility use pdf_new pdf_open_file instead +Opens an image file with raw CCITT G3 or G4 compresed bitmap data +Opens a new PDF document. If filename is NULL, document is created in memory. This is not yet fully supported +Opens a GIF file and returns an image for placement in a pdf object +Opens an image of the given type and returns an image for placement in a PDF document +Opens an image file of the given type and returns an image for placement in a PDF document +Opens a JPEG file and returns an image for placement in a PDF document +Takes an GD image and returns an image for placement in a PDF document +Opens a PNG file and returns an image for placement in a PDF document +Opens a TIFF file and returns an image for placement in a PDF document +Places image in the PDF document +* Place a PDF page with the lower left corner at (x, y), and scale it. +Draws a rectangle +Restores formerly saved enviroment +Sets rotation +Saves current enviroment +Sets scaling +Sets color of box surounded all kinds of annotations and links +Sets the border dash style of all kinds of annotations and links +Sets style of box surounding all kinds of annotations and link +Sets character spacing +Sets duration between pages +Select the current font face, size and encoding +Sets horizontal scaling of text +Fills an info field of the document +Fills the author field of the document +Fills the creator field of the document +Fills the keywords field of the document +Fills the subject field of the document +Fills the title field of the document +Sets distance between text lines +Sets arbitrary parameters +Sets the position of text for the next pdf_show call +Determines how text is rendered +Sets the text rise +Sets transition between pages +Sets arbitrary value +Sets spacing between words +Sets dash pattern +Sets flatness +Sets the current font in the fiven fontsize +Sets drawing and filling color to gray value +Sets filling color to gray value +Sets drawing color to gray value +Sets linecap parameter +Sets linejoin parameter +Sets line width +Explicitly set the current transformation matrix. +Sets miter limit +Sets more complicated dash pattern +Sets drawing and filling color to RGB color value +Sets filling color to RGB color value +Sets drawing color to RGB color value +Output text at current position +Output text formated in a boxed +Output text at position +Skew the coordinate system +Returns width of text in current font +Draw line along path path +Sets origin of coordinate system +Shuts down the Payflow Pro library +Initializes the Payflow Pro library +Payflow Pro transaction processing using arrays +Raw Payflow Pro transaction processing +Returns the version of the Payflow Pro library +Returns the number of affected tuples +Cancel request +Get the current client encoding +Close a PostgreSQL connection +Open a PostgreSQL connection +Get connection is busy or not +Reset connection (reconnect) +Get connection status +Check and convert values for PostgreSQL SQL statement +Copy table from array +Copy table to array +Get the database name +Delete records has ids (id=>value) +Sync with backend. Completes the Copy command +Escape binary for bytea type +Escape string for text/char type +Fetch all rows into array +Fetch a row as an array +Fetch a row as an assoc array +Fetch a row as an object +Returns values from a result identifier +Get a row as an enumerated array +Test if a field is NULL +Returns the name of the field +Returns the field number of the named field +Returns the printed length +Returns the internal size of the field +Returns the type name for the given field +Free result memory +Get asynchronous notification +Get backend(server) pid +Get asynchronous query result +Returns the host name associated with the connection +Insert values (filed=>value) to table +Get the error message string +Returns the last notice set by the backend +Returns the last object identifier +Close a large object +Create a large object +Export large object direct to filesystem +Import large object direct from filesystem +Open a large object and return fd +Read a large object +Read a large object and send straight to browser +Seeks position of large object +Returns current position of large object +Delete a large object +Write a large object +Get meta_data +Return the number of fields in the result +Return the number of rows in the result +Get the options associated with the connection +Open a persistent PostgreSQL connection +Ping database. If connection is bad, try to reconnect. +Return the port number associated with the connection +Send null-terminated string to backend server +Execute a query +Get error message associated with result +Set internal row offset +Get status of query result +Select records that has ids (id=>value) +Send asynchronous query +Set client encoding +Enable tracing a PostgreSQL connection +Return the tty name associated with the connection +Unescape binary for bytea type +Disable tracing of a PostgreSQL connection +Update table using values (field=>value) and ids (id=>value) +Returns an array with client, protocol and server version (when available) +Generate terminal path name (POSIX.1, 4.7.1) +Retrieve the error number set by the last posix function which failed. +Get working directory pathname (POSIX.1, 5.2.2) +Get the current effective group id (POSIX.1, 4.2.1) +Get the current effective user id (POSIX.1, 4.2.1) +Get the current group id (POSIX.1, 4.2.1) +Group database access (POSIX.1, 9.2.1) +Group database access (POSIX.1, 9.2.1) +Get supplementary group id's (POSIX.1, 4.2.3) +Get user name (POSIX.1, 4.2.4) +Get the process group id of the specified process (This is not a POSIX function, but a SVR4ism, so we compile conditionally) +Get current process group id (POSIX.1, 4.3.1) +Get the current process id (POSIX.1, 4.1.1) +Get the parent process id (POSIX.1, 4.1.1) +User database access (POSIX.1, 9.2.2) +User database access (POSIX.1, 9.2.2) +Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally) +Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally) +Get the current user id (POSIX.1, 4.2.1) +Determine if filedesc is a tty (POSIX.1, 4.7.1) +Send a signal to a process (POSIX.1, 3.3.2) +Make a FIFO special file (POSIX.1, 5.4.2) +Set effective group id +Set effective user id +Set group id (POSIX.1, 4.2.2) +Set process group id for job control (POSIX.1, 4.3.3) +Create session and set process group id (POSIX.1, 4.3.2) +Set user id (POSIX.1, 4.2.2) +Retrieve the system error message associated with the given errno. +Get process times (POSIX.1, 4.5.2) +Determine terminal device name (POSIX.1, 4.7.2) +Get system name (POSIX.1, 4.4.1) +Adds a word to a personal list +Adds a word to the current session +Returns true if word is valid +Clears the current session +Create a new config to be used later to create a manager +location of language data files +location of the main word list +Ignore words <= n chars +Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS) +Use a personal dictionary for this config +Use a personal dictionary with replacement pairs for this config +Consider run-together words as valid components +Save replacement pairs when personal list is saved for this config +Load a dictionary +Load a dictionary based on the given config +Load a dictionary with a personal wordlist +Saves the current (personal) wordlist +Notify the dictionary of a user-selected replacement +Returns array of suggestions +Reads a line +Adds a line to the history +Clears the history +Readline completion function? +Gets/sets various internal readline variables. +Lists the history +Reads the history +Writes the history +Recode file input into file output according to request +Recode string str according to request string +Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expire +Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiter +Deserializes data and reinitializes the variables +Destroy the current session and all data associated with it +Serializes the current setup and returns the serialized representation +Return the session cookie parameters +Return the current session id. If newid is given, the session id is replaced with newid +Checks if a variable is registered in session +Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname +Return the current session name. If newname is given, the session name is replaced with newname +Update the current session id with a newly generated one. +Adds varname(s) to the list of variables which are freezed at the session end +Return the current save path passed to module_name. If newname is given, the save path is replaced with newname +Set session cookie parameters +Sets user-level functions +Begin session - reinitializes freezed variables, registers browsers etc +Removes varname from the list of variables which are freezed at the session end +Unset all registered variables +Write session data and end session +Get a simplexml_element object from dom to allow for processing +Load a filename and return a simplexml_element object to allow for processing +Load a string and return a simplexml_element object to allow for processing +Return a string to confirm that the module is compiled in +Return the current status of quick_print +Return the method how the SNMP values will be returned +Reads and parses a MIB file into the active MIB tree. +Return all values that are enums with their enum value instead of the raw integer +Return all objects including their respective object id withing the specified one +Return all objects including their respective object id withing the specified one +Specify the method how the SNMP values will be returned +Fetch a SNMP object +Fetch a SNMP object +Return all objects including their respective object id withing the specified one +Set the value of a SNMP object +Return all objects under the specified object id +Accepts a connection on the listening socket fd +Binds an open socket to a listening port, port is only specified in AF_INET family. +Clears the error on the socket or the last error code. +Closes a file descriptor +Opens a connection to addr:port on the socket specified by socket +Creates an endpoint for communication in the domain specified by domain, of type specified by type +Opens a socket on port to accept connections +Creates a pair of indistinguishable sockets and stores them in fds. +Gets socket options for the socket +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. +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 the last socket error (either the last used or the provided socket resource) +Sets the maximum number of connections allowed to be waited for on the socket specified by fd +Reads a maximum of length bytes from socket +Receives data from a connected socket +Receives data from a socket, connected or not +Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec +Sends data to a connected socket +Sends a message to a socket, whether it is connected or not +Sets blocking mode on a socket resource +Sets nonblocking mode on a socket resource +Sets socket options for the socket +Shuts down a socket for receiving, sending, or both. +Returns a string describing an error +Writes the buffer to the socket resource, length is optional +Executes a query against a given database and returns an array of arrays. +Set busy timeout duration. If ms <= 0, all busy handlers are disabled. +Returns the number of rows that were changed by the most recent SQL statement. +Closes an open sqlite database. +Fetches a column from the current row of a result set. +Registers an aggregate function for queries. +Registers a "regular" function for queries. +Fetches the current row from a result set as an array. +Returns the textual description of an error code. +Escapes a string for use as a query parameter. +Opens a SQLite database and creates an object for it. Will create the database if it does not exist. +Fetches all rows from a result set as an array of arrays. +Fetches the next row from a result set as an array. +Return an array of column types from a particular table. +Fetches the next row from a result set as an object. +Fetches the first column of a result set as a string. +Returns the name of a particular field of a result set. +* Returns whether a previous row is available. +Returns the error code of the last error for a database. +Returns the rowid of the most recently inserted row. +Returns the encoding (iso8859 or UTF-8) of the linked SQLite library. +Returns the version of the linked SQLite library. +Seek to the next row number of a result set. +Returns the number of fields in a result set. +Returns the number of rows in a buffered result set. +Opens a SQLite database. Will create the database if it does not exist. +Opens a persistent handle to a SQLite database. Will create the database if it does not exist. +* Seek to the previous row number of a result set. +Executes a query against a given database and returns a result handle. +Seek to the first row number of a buffered result set. +Seek to a particular row number of a buffered result set. +Executes a query and returns either an array for one single column or the value of the first row. +Decode binary encoding on a string parameter passed to an UDF. +Apply binary encoding (if required) to a string to return from an UDF. +Executes a query that does not prefetch and buffer all data. +Returns whether more rows are available. +Retuns an array with all string keys lowercased [or uppercased] +Split array into chunks +Creates an array by using the elements of the first parameter as keys and the elements of the second as correspoding keys +Return the value as key and the frequency of that value in input as value +Returns the entries of arr1 that have values which are not present in any of the others arguments. +Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal +Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Elements are compared by user supplied function. +Create an array containing num elements starting with index start_key each initialized to val +Filters elements from the array via the callback. +Return array with key <-> value flipped +Returns the entries of arr1 that have values which are present in all the other arguments +Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check +Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using an user-supplied callback. +Checks if the given key or index exists in the array +Return just the keys from the input array, optionally only for the specified search_value +Applies the callback to the elements in given arrays. +Merges elements from passed arrays into one array +Recursively merges elements from passed arrays into one array +Sort multiple arrays at once similar to how ORDER BY clause works in SQL +Returns a copy of input array padded with pad_value to size pad_size +Pops an element off the end of the array +Pushes elements onto the end of the array +Return key/keys for random entry/entries in the array +Iteratively reduce the array to a single value via the callback. +Return input as a new array with the order of the entries reversed +Searches the array for a given value and returns the corresponding key if successful +Pops an element off the beginning of the array +Returns elements specified by offset and length +Removes the elements designated by offset and length and replace them with supplied array +Returns the sum of the array entries +Returns the entries of arr1 that have values which are not present in any of the others arguments. Elements are compared by user supplied function. +Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys are compared by user supplied function. +Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys and elements are compared by user supplied functions. +Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback. +Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using an user-supplied callback. +Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Both data and keys are compared by using user-supplied callbacks. +Removes duplicate values from array +Pushes elements onto the beginning of the array +Return just the values from the input array +Apply a user function to every member of an array +Apply a user function recursively to every member of an array +Sort an array in reverse order and maintain index association +Sort an array and maintain index association +Creates a hash containing variables and their values +Count the number of elements in a variable (usually an array) +Return the element currently pointed to by the internal array pointer +Advances array argument's internal pointer to the last element and return it +Imports variables into symbol table from an array +Checks if the given value exists in the array +Return the key of the element currently pointed to by the internal array pointer +Sort an array by key value in reverse order +Sort an array by key +Return the highest value in an array or a series of arguments +Return the lowest value in an array or a series of arguments +Sort an array using case-insensitive natural sort +Sort an array using natural sort +Move array argument's internal pointer to the next element and return it +Move array argument's internal pointer to the previous element and return it +Create an array containing the range of integers or characters from low to high (inclusive) +Set array argument's internal pointer to the first element and return it +Sort an array in reverse order +Randomly shuffle the contents of an array +Sort an array +Sort an array with a user-defined comparison function and maintain index association +Sort an array by keys using a user-defined comparison function +Sort an array by values using a user-defined comparison function +Checks if assertion is false +Set/get the various assert flags +Call a user function which is the first parameter +Call a user function which is the first parameter with the arguments contained in array +Call a user method on a specific object or class +Call a user method on a specific object or class using a parameter array +Returns true if client disconnected +Returns the connection status bitfield +Given the name of a constant this function will return the constants associated value +Send an error message somewhere +Flush the output buffer +Get the value of a PHP configuration option +Get the name of the owner of the current PHP script +Get the current include_path configuration option +Get the current active configuration setting of magic_quotes_gpc +Get the current active configuration setting of magic_quotes_runtime +Get the value of an environment variable +Get options from the command line argument list +Returns protocol number associated with name as per /etc/protocols +Returns protocol name associated with protocol number proto +Returns port associated with service. Protocol must be "tcp" or "udp" +Returns service name associated with port. Protocol must be "tcp" or "udp" +Syntax highlight a source file +Syntax highlight a string or optionally return it +Set whether we want to ignore a user abort event or not +Import GET/POST/Cookie variables into the global scope +Get a configuration option +Get all configuration options +Restore the value of a configuration option specified by varname +Set a configuration option, returns false on error and the old value of the configuration option on success +Check if file was created by rfc1867 upload +Move a file if and only if it was created by an upload +Parse configuration file +Check the syntax of the specified file. +Return source with stripped comments and whitespace +Prints out or returns information about the specified variable +Set the value of an environment variable +Register a user-level function to be called on request termination +Registers a tick callback function +Restore the value of the include_path configuration option +Sets the include_path configuration option +Set the current active configuration setting of magic_quotes_runtime and return previous +Delay for a given number of seconds +Delay for a number of seconds and nano seconds +Unregisters a tick callback function +Delay for a given number of micro seconds +Get information about the capabilities of a browser. If browser_name is omitted or null, HTTP_USER_AGENT is used. Returns an object by default; if return_array is true, returns an array. +Encrypt a string +Convert from one Cyrillic character set to another +Returns true(1) if it is a valid date in gregorian calendar +Format a local time/date +Get date/time information +Format a GMT/UTC date/time +Get UNIX timestamp for a GMT date +Format a GMT/UCT time/date according to locale settings +Format a local time/date as integer +Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array +Get UNIX timestamp for a date +Format a local time/date according to locale settings +Convert string representation of date and time to a timestamp +Return current UNIX timestamp +Change the current directory +Change root directory +Close directory connection identified by the dir_handle +Directory class with properties, handle and class and methods read, rewind and close +Gets the current directory +Find pathnames matching a pattern +Open a directory and return a dir_handle +Read directory entry from dir_handle +Rewind dir_handle back to the start +List files & directories inside the specified path +Load a PHP extension at runtime +Check DNS records corresponding to a given Internet host name or IP address +Get MX records corresponding to a given Internet host name +Get the Internet host name corresponding to a given IP address +Get the IP address corresponding to a given Internet host name +Return a list of IP addresses that a given hostname resolves to. +Quote and escape an argument for use in a shell command +Escape shell metacharacters +Execute an external program +Execute an external program and display raw output +Change the priority of the current process +Execute command via shell and return complete output as string +Execute an external program and display output +Copy a file +Close an open file pointer +Test for end-of-file on a file pointer +Flushes output +Get a character from file pointer +Get line from file pointer and parse for CSV fields +Get a line from file pointer +Get a line from file pointer and strip HTML tags +Read entire file into an array +Read the entire file into a string +Write/Create a file with contents data and return the number of bytes written +Portable file locking +Match filename against pattern +Open a file or a URL and return a file pointer +Output all remaining data from a file pointer +Binary-safe file read +Implements a mostly ANSI compatible fscanf() +Seek on a file pointer +Stat() on a filehandle +Get file pointer's read/write position +Truncate file to 'size' length +Binary-safe file write +Extracts all meta tag content attributes from a file and returns an array + +Create a directory +Close a file pointer opened by popen() +Execute a command and open either a read or a write pipe to it +Output a file or a URL +Return the resolved path +Rename a file +Rewind the position of a file pointer +Remove a directory +Create a unique filename in a directory +Create a temporary file that will be deleted automatically after use +Return or change the umask +Delete a file +Change file group +Change file mode +Clear file stat cache +Get free disk space for filesystem that path is on +Get total disk space for filesystem that path is on +Returns true if filename exists +Get last access time of file +Get inode modification time of file +Get file group +Get file inode +Get last modification time of file +Get file owner +Get file permissions +Get file size +Get file type +Returns true if file is directory +Returns true if file is executable +Returns true if file is a regular file +Returns true if file is symbolic link +Returns true if file can be read +Returns true if file can be written +Give information about a file or symbolic link +Give information about a file +Set modification time of file +Output a formatted string into a stream +Output a formatted string +Return a formatted string +Output a formatted string into a stream +Output a formatted string +Return a formatted string +Open Internet or Unix domain socket connection +Open persistent Internet or Unix domain socket connection +Convert a pathname and a project identifier to a System V IPC key +Sends a raw HTTP header +Return list of headers to be sent / already sent +Returns true if headers have already been sent, false otherwise +Send a cookie +Send a cookie with no url encoding of the value +Returns the internal translation table used by htmlspecialchars and htmlentities +Convert all HTML entities to their applicable characters +Convert all applicable characters to HTML entities +Convert special characters to HTML entities +Generates a form-encoded query string from an associative array or object. +Get the size of an image as 4-element array +Get file extension for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype +Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype +Return the special ID used to request the PHP logo in phpinfo screens +Return comma-separated string of .ini files parsed from the additional ini dir +Return the special ID used to request the PHP logo in phpinfo screens +Return the special ID used to request the PHP logo in phpinfo screens +Return the current SAPI module name +Return information about the system PHP was built on +Prints the list of people who've contributed to the PHP project +Output a page of useful information about PHP and the current request +Return the current PHP version +Return the special ID used to request the Zend logo in phpinfo screens +Embed binary IPTC data into a JPEG image. +Parse binary IPTC-data into associative array +Returns a value from the combined linear congruential generator +Calculate Levenshtein distance between two strings +Create a hard link +Returns the st_dev field of the UNIX C stat structure describing the link +Return the target of a symbolic link +Create a symbolic link +Calculate EZMLM list hash value. +Send an email message +Return the absolute value of the number +Return the arc cosine of the number in radians +Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number +Returns the arc sine of the number in radians +Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number +Returns the arc tangent of the number in radians +Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number +Converts a number in a string from any base <= 36 to any base <= 36 +Returns the decimal equivalent of the binary number +Returns the next highest integer value of the number +Returns the cosine of the number in radians +Returns the hyperbolic cosine of the number, defined as (exp(number) exp(-number))/2 +Returns a string containing a binary representation of the number +Returns a string containing a hexadecimal representation of the given number +Returns a string containing an octal representation of the given number +Returns e raised to the power of the number +Returns the next lowest integer value from the number +Returns the remainder of dividing x by y as a float +Returns the decimal equivalent of the hexadecimal number +Returns sqrt(num1*num1 num2*num2) +Returns whether argument is finite +Returns whether argument is infinite +Returns whether argument is not a number +Returns the natural logarithm of the number, or the base log if base is specified +Formats a number with grouped thousands +Returns the decimal equivalent of an octal string +Returns an approximation of pi +Returns base raised to the power of exponent. Returns integer result when possible +Returns the number rounded to specified precision +Returns the sine of the number in radians +Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2 +Returns the square root of the number +Returns the tangent of the number in radians +Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number) +Break english phrases down into their phonemes +Returns an array of usage statistics +Returns the current time as array +Returns either a string or a float containing the current time in seconds and microseconds +Takes one or more arguments and packs them into a binary string according to the format argument +Unpack binary string into named array elements according to format argument +Get time of last page modification +Get PHP script owner's GID +Get the inode of the current script being parsed +Get current process ID +Get PHP script owner's UID +close a process opened by proc_open +get information about a process opened by proc_open +Run a process with more control over it's file descriptors +kill a process opened by proc_open +Convert a quoted-printable string to an 8 bit string +Returns the maximum value a random number can have +Returns the maximum value a random number from Mersenne Twister can have +Returns a random number from Mersenne Twister +Seeds Mersenne Twister random number generator +Returns a random number +Seeds random number generator +Regular expression match +Replace regular expression +Case-insensitive regular expression match +Case insensitive replace regular expression +Split string into array by regular expression +Split string into array by regular expression case-insensitive +Make regular expression for case insensitive match +Calculate the soundex key of a string +Set blocking/non-blocking mode on a socket +Create a file context and optionally set parameters +Retrieve options for a stream/wrapper/context +Set an option for a wrapper +Set parameters for a file context +Reads up to maxlen bytes from source stream and writes them to dest stream. +Append a filter to a stream +Prepend a filter to a stream +Reads all remaining bytes (or up to maxlen bytes) from a stream and returns them as a string. +Read up to maxlen bytes from a stream or until the ending string is found +Retrieves header/meta data from streams/file pointers +Retrieves list of registered socket transports +Retrieves list of registered stream wrappers +Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec +Set blocking/non-blocking mode on a socket or stream +Set timeout on stream read to seconds microseonds +Set file write buffer +Accept a client connection from a server socket +Open a client connection to a remote address +Returns either the locally bound or remote name for a socket stream +Receives data from a socket stream +Send data to a socket stream. If target_addr is specified it must be in dotted quad (or [ipv6]) format +Create a server socket bound to localaddress +Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\n', '\r', '\t' etc...) +Escapes single quote, double quotes and backslash characters in a string with backslashes +Returns the filename component of the path +Converts ASCII code to a character +Returns split line +Returns info about what characters are used in input +Returns the directory name component of the path +Splits a string on string separator and return array of components +Converts logical Hebrew text to visual text +Converts logical Hebrew text to visual text with newline conversion +Joins array elements placing glue string between items and return one string +An alias for implode +Returns numeric formatting information based on the current locale +Strips whitespace from the beginning of a string +Convert monetary value(s) to string +Query language and locale information +Returns ASCII value of character +Parses GET/POST/COOKIE data and sets global variables +Returns information about a certain string +Quotes meta characters +Removes trailing whitespace +Set locale information +Calculates the similarity between two strings +Implements an ANSI C compatible sscanf +Replaces all occurrences of search in haystack with replace / case-insensitive +Returns input string padded on the left or right to specified length with pad_string +Returns the input string repeat mult times +Replaces all occurrences of search in haystack with replace +Shuffles string. One permutation of all possible is created +Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long. +Counts the number of words inside a string. If format of 1 is specified, then the function will return an array containing all the words found inside the string. If format of 2 is specified, then the function will return an associated array where the position of the word is the key and the word itself is the value. For the purpose of this function, 'word' is defined as a locale dependent string containing alphabetic characters, which also may contain, but not start with "'" and "-" characters. +An alias for strstr +Compares two strings using the current locale +Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars) +Strips HTML and PHP tags from a string +Strips backslashes from a string. Uses C-style conventions +Finds position of first occurrence of a string within another, case insensitive +Strips backslashes from a string +Finds first occurrence of a string within another, case insensitive +Returns the result of case-insensitive string comparison using 'natural' algorithm +Returns the result of string comparison using 'natural' algorithm +Search a string for any of a set of characters +Finds position of first occurrence of a string within another +Finds the last occurrence of a character in a string within another +Reverse a string +Finds position of last occurrence of a string within another string +Finds position of last occurrence of a string within another string +Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars) +Finds first occurrence of a string within another +Tokenize a string +Makes a string lowercase +Makes a string uppercase +Translates characters in str using given translation tables +Returns part of a string +Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters +Returns the number of times a substring occurs in the string +Replaces part of a string with another string +Strips whitespace from the beginning and end of a string +Makes a string's first character uppercase +Uppercase the first character of every word in a string +Wraps buffer to selected number of characters using string break char +Returns time of sunrise for a given day & location +Returns time of sunset for a given day & location +Close connection to system logger +Initializes all syslog-related variables +Open connection to system logger +Generate a system log message +Get the float value of a variable +Returns the type of the variable +Get the integer value of a variable using the optional base for the conversion +Returns true if variable is an array +Returns true if variable is a boolean +Returns true if var is callable. +Returns true if variable is float point +Returns true if variable is a long (integer) +Returns true if variable is null +Returns true if value is a number or a numeric string +Returns true if variable is an object +Returns true if variable is a resource +Returns true if value is a scalar +Returns true if variable is a string +Set the type of the variable +Get the string value of a variable +Generates a unique ID +fetches all the headers sent by the server in response to a HTTP request +Parse a URL and return its components +Decodes URL-encodes string +URL-encodes string +Decodes URL-encoded string +URL-encodes string +Append bucket to brigade +Return a bucket object from the brigade for operating on +Create a new bucket for use on the current stream +Prepend bucket to brigade +Registers a custom filter handler class +Returns a list of registered filters +decode a uuencoded string +uuencode a string +Dumps a string representation of an internal zend value to output. +Returns the allocated by PHP memory +Returns a string representation of variable (which can later be unserialized) +Takes a string representation of variable and recreates it +Dumps a string representation of variable to output +Outputs or returns a string representation of a variable +Compares two "PHP-standardized" version number strings +Get number of affected rows in last query +Close Sybase connection +Open Sybase server connection +Move internal row pointer +Fetch row as array +Get field information +Fetch row as object +Get row as enumerated array +Set field offset +Free result memory +Returns the last message from server (over min_message_severity) +Sets the minimum error severity +Sets the minimum message severity +Get number of fields in result +Get number of rows in result +Open persistent Sybase connection +Send Sybase query +Get result data +Select Sybase database +Get number of affected rows in last query +Close Sybase connection +Open Sybase server connection +Move internal row pointer +Sets deadlock retry count +Fetch row as array +Fetch row as array without numberic indices +Get field information +Fetch row as object +Get row as enumerated array +Set field offset +Free result memory +Returns the last message from server (over min_message_severity) +Sets minimum client severity +Sets minimum server severity +Get number of fields in result +Get number of rows in result +Open persistent Sybase connection +Send Sybase query +Get result data +Select Sybase database +Set the error handler, to be called when a server message is raised. If error_func is NULL the handler will be deleted +Send Sybase query +Attach to a message queue +Send a message of type msgtype (must be > 0) to a message queue +Destroy the queue +Send a message of type msgtype (must be > 0) to a message queue +Set information for a message queue +Returns information about a message queue +Acquires the semaphore with the given id, blocking if necessary +Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously +Releases the semaphore with the given id +Removes semaphore from Unix systems +Creates or open a shared memory segment +Disconnects from shared memory segment +Returns a variable from shared memory +Inserts or updates a variable in shared memory +Removes shared memory from Unix systems +Removes variable from shared memory +Returns the Number of Tidy accessibility warnings encountered for specified document. +Execute configured cleanup and repair operations on parsed markup +Returns the Number of Tidy configuration errors encountered for specified document. +Run configured diagnostics on parsed and repaired markup. +Returns the Number of Tidy errors encountered for specified document. +Returns a TidyNode Object starting from the <BODY> tag of the tidy parse tree +Get current Tidy configuarion +Return warnings and errors which occured parsing the specified document +Returns a TidyNode Object starting from the <HEAD> tag of the tidy parse tree +Returns a TidyNode Object starting from the <HTML> tag of the tidy parse tree +Get the Detected HTML version for the specified document. +Return a string representing the parsed tidy markup +Get release date (version) for Tidy library +Returns a TidyNode Object representing the root of the tidy parse tree +Get status of specfied document. +Returns the value of the specified configuration option for the tidy document. +Indicates if the document is a XHTML document. +Indicates if the document is a generic (non HTML/XHTML) XML document. +Parse markup in file or URI +Parse a document stored in a string +Repair a file using an optionally provided configuration file +Repair a string using an optionally provided configuration file +Returns the Number of Tidy warnings encountered for specified document. + + +Serializes given variables and adds them to packet given by packet_id +Deserializes given packet and returns a PHP value +Ends specified WDDX packet and returns the string containing the packet +Starts a WDDX packet with optional comment and returns the packet id +Creates a new packet and serializes the given value +Creates a new packet and serializes given variables into a struct +Get XML parser error string +Get current byte index for an XML parser +Get current column number for an XML parser +Get current line number for an XML parser +Get XML parser error code +Start parsing an XML document +Parsing a XML document +Create an XML parser +Create an XML parser +Free an XML parser +Get options from an XML parser +Set options in an XML parser +Set up character data handler +Set up default handler +Set up start and end element handlers +Set up character data handler +Set up external entity reference handler +Set up notation declaration handler +Set up object which should be used for callbacks +Set up processing instruction (PI) handler +Set up character data handler +Set up unparsed entity declaration handler +Decodes XML into native PHP types +Decodes XML into native PHP types +Generates XML for a PHP value +Generates XML for a method request +Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings +Determines if an array value represents an XMLRPC fault. +Decodes XML into a list of method descriptions +Adds introspection documentation +Parses XML requests and call methods +Creates an xmlrpc server +Destroys server resources +Register a PHP function to generate documentation +Register a PHP function to handle method matching method_name +Sets xmlrpc type, base64 or datetime, for a PHP string value +Traverse the map and call a function on each entry +Return an array containing the entire map +Returns the corresponding error string for the given error code +Returns the error code from the last call or 0 if no error occured +Returns the first key as array with $var[$key] and the the line as the value +Returns the domain or false +Returns the machine name of the master +Returns the matched line or false +Returns an array with $var[$key] and the the line as the value +Returns the order number or false +Gzip-compress a string +Gzip-compress a string +GZ encode a string +Read und uncompress entire .gz-file into an array +Unzip a gzip-compressed string +Open a .gz-file and return a .gz-file pointer +Unzip a gzip-compressed string +Encode str based on accept-encoding setting - designed to be called from ob_start() +Output a .gz-file +Returns the coding type used for output compression +Sets the maximum time a script can run +Clean (delete) the current output buffer +Clean the output buffer, and delete current output buffer +Flush (send) the output buffer, and delete current output buffer +Flush (send) contents of the output buffer. The last buffer content is sent to next buffer +Get current buffer contents and delete current output buffer +Return the contents of the output buffer +Get current buffer contents, flush (send) the output buffer, and delete current output buffer +Return the length of the output buffer +Return the nesting level of the output buffer +Turn implicit flush on/off and is equivalent to calling flush() after every output call +Turn on Output Buffering (specifying an optional output handler). +Add URL rewriter values +Reset(clear) URL rewriter values +Registers a custom URL protocol handler class +Terminate apache process after this request +Get a list of loaded Apache modules +Fetch Apache version +Perform a partial request of the given URI to obtain information about it +Get and set Apache request notes +Fetch all HTTP request headers +Fetch all HTTP response headers +Set an Apache subprocess_env variable +Alias for apache_request_headers() +Perform an Apache sub-request +Get a list of loaded Apache modules +Fetch Apache version +Get an Apache subprocess_env variable +Get and set Apache request notes +Fetch all HTTP response headers +Set an Apache subprocess_env variable +Fetch all HTTP request headers +Perform an apache sub-request +Get a list of loaded Apache modules +Fetch Apache version +Get an Apache subprocess_env variable +Get and set Apache request notes +Fetch all HTTP response headers +Set an Apache subprocess_env variable +Fetch all HTTP request headers +Perform an apache sub-request +Terminate apache process after this request +Get a list of loaded Apache modules +Fetch Apache version +Perform a partial request of the given URI to obtain information about it +Get and set Apache request notes + + + +* fetch all headers that go out in case of an error or a subrequest +Fetch all HTTP request headers +* fetch all incoming request headers +* fetch all outgoing request headers + + + + +This is a wrapper for ap_sub_run_req and ap_destory_sub_req. It takes sub_request, runs it, destroys it, and returns it's status. + + + + + +Returns sub-request for the specified file. You would need to run it yourself with run(). +Returns sub-request for the specified uri. You would need to run it yourself with run() +Returns sub-request for the specified file. You would need to run it yourself with run(). + +Fetch all HTTP response headers +Set an Apache subprocess_env variable + +Perform an Apache sub-request +Adds a header to the current message. +Add a recipient to the message envelope. +Changes a header's value for the current message. +Removes the named recipient from the current message's envelope. +Returns the value of the given macro or NULL if the macro is not defined. +Replaces the body of the current message. If called more than once, subsequent calls result in data being appended to the new body. +Sets the flags describing the actions the filter may take. +Directly set the SMTP error reply code for this connection. This code will be used on subsequent error replies resulting from actions taken by this filter. +Sets the number of seconds libmilter will wait for an MTA connection before timing out a socket. +Get all headers from the request +Get all headers from the response +Perform an NSAPI sub-request ================================================== *Below this are the various PHP-specific keywords * ================================================== -- 1.7.1