home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Universal Viewer / UniversalViewer.exe / Plugins / Syn2 / HL / PHP.acp < prev    next >
Encoding:
Text File  |  2007-10-20  |  462.7 KB  |  4,271 lines

  1. global $_COOKIE |HTTP Cookies
  2. global $_ENV |Environment variables
  3. global $_FILES |HTTP File upload variables
  4. global $_GET |HTTP GET variables
  5. global $_POST |HTTP POST variables
  6. global $_REQUEST |An associative array consisting of the contents of $_GET, $_POST, and $_COOKIE
  7. global $_SESSION |Session variables
  8. global $_SERVER |Server variables
  9. global $_SERVER['argc'] |Contains the number of command line parameters passed to the script (if run on the command line).
  10. global $_SERVER['argv'] |Array of arguments passed to the script. When the script is run on the command line
  11. global $_SERVER['AUTH_TYPE'] |When running under Apache as module doing HTTP authenticated this variable is set to the authentication type.
  12. global $_SERVER['DOCUMENT_ROOT'] |The document root directory under which the current script is executing
  13. global $_SERVER['GATEWAY_INTERFACE'] |What revision of the CGI specification the server is using; i.e. 'CGI/1.1'.
  14. global $_SERVER['HTTP_ACCEPT'] |Contents of the Accept: header from the current request, if there is one.
  15. global $_SERVER['HTTP_ACCEPT_CHARSET'] |Contents of the Accept-Charset: header from the current request, if there is one. Example: 'iso-8859-1,*,utf-8'.
  16. global $_SERVER['HTTP_ACCEPT_ENCODING'] |Contents of the Accept-Encoding: header from the current request, if there is one. Example: 'gzip'
  17. global $_SERVER['HTTP_ACCEPT_LANGUAGE'] |Contents of the Accept-Language: header from the current request, if there is one. Example: 'en'
  18. global $_SERVER['HTTP_CONNECTION'] |Contents of the Connection: header from the current request, if there is one. Example: 'Keep-Alive'.
  19. global $_SERVER['HTTP_HOST'] |Contents of the Host: header from the current request, if there is one.
  20. global $_SERVER['HTTP_REFERER'] |The address of the page (if any) which referred the user agent to the current page
  21. global $_SERVER['HTTP_USER_AGENT'] |Contents of the User-Agent: header from the current request, if there is one
  22. global $_SERVER['PATH_TRANSLATED'] |Filesystem- (not document root-) based path to the current script
  23. global $_SERVER['PHP_AUTH_PW'] |When running under Apache as module doing HTTP authentication this variable is set to the password provided by the user.
  24. global $_SERVER['PHP_AUTH_USER'] |When running under Apache as module doing HTTP authentication this variable is set to the username provided by the user
  25. global $_SERVER['PHP_SELF'] |The filename of the currently executing script, relative to the document root.
  26. global $_SERVER['QUERY_STRING'] |The query string, if any, via which the page was accessed.
  27. global $_SERVER['REMOTE_ADDR'] |The IP address from which the user is viewing the current page
  28. global $_SERVER['REMOTE_HOST'] |The Host name from which the user is viewing the current page
  29. global $_SERVER['REMOTE_PORT'] |The port being used on the user's machine to communicate with the web server
  30. global $_SERVER['REQUEST_METHOD'] |Which request method was used to access the page; i.e. 'GET', 'HEAD', 'POST', 'PUT'.
  31. global $_SERVER['REQUEST_URI'] |The URI which was given in order to access this page; for instance, '/index.html'
  32. global $_SERVER['SCRIPT_FILENAME'] |The absolute pathname of the currently executing script.
  33. global $_SERVER['SCRIPT_NAME'] |Contains the current script's path.
  34. global $_SERVER['SERVER_ADMIN'] |The value given to the SERVER_ADMIN (for Apache) directive in the web server configuration file
  35. global $_SERVER['SERVER_NAME'] |The name of the server host under which the current script is executing
  36. global $_SERVER['SERVER_PORT'] |The port on the server machine being used by the web server for communication
  37. global $_SERVER['SERVER_PROTOCOL'] |Name and revision of the information protocol via which the page was requested; i.e. 'HTTP/1.0';
  38. global $_SERVER['SERVER_SIGNATURE'] |String containing the server version and virtual host name which are added to server-generated pages, if enabled
  39. global $_SERVER['SERVER_SOFTWARE'] |Server identification string, given in the headers when responding to requests
  40. global $HTTP_COOKIE_VARS |HTTP Cookies (Deprecated, use $_COOKIE)
  41. global $HTTP_ENV_VARS |Environment variables (Deprecated, use $_ENV)
  42. global $HTTP_FILES_VARS |HTTP File upload variables (Deprecated, use $_FILES)
  43. global $HTTP_GET_VARS |HTTP GET variables (Deprecated, use $_GET)
  44. global $HTTP_POST_VARS |HTTP POST variables (Deprecated, use $_POST)
  45. global $HTTP_REQUEST_VARS |Request variables (Deprecated, use $_REQUEST)
  46. global $HTTP_SESSION_VARS |Session variables (Deprecated, use $_SESSION)
  47. global $HTTP_SERVER_VARS |Server variables (Deprecated, use $_SERVER)
  48. global $GLOBALS |Global variables
  49. global $php_errormsg |The previous error message
  50. php break |Control Structure
  51. php continue |Control Structure
  52. php declare |Control Structure
  53. php do |Control Structure
  54. php else |Control Structure
  55. php elseif(expression) |Control Structure
  56. php for(init expr, loop expr, end expr)  |Control Structure
  57. php foreach(array as $k->$v) |Control Structure
  58. php if(expression) |Control Structure
  59. php switch |Control Structure
  60. php while(expression)  |Control Structure
  61.  
  62. number abs(mixed number) |Absolute value (PHP 3, PHP 4, PHP 5)
  63. float acos(float arg) |Arc cosine (PHP 3, PHP 4, PHP 5)
  64. float acosh(float arg) |Inverse hyperbolic cosine (PHP 4 >= 4.1.0, PHP 5)
  65. string addcslashes(string str, string charlist) |Quote string with slashes in a C style (PHP 4, PHP 5)
  66. string addslashes(string str) |Quote string with slashes (PHP 3, PHP 4, PHP 5)
  67. array aggregate_info(object object) |Returns an associative array of the methods and properties from each class that has been aggregated to the object
  68. void aggregate_methods_by_list(object object, string class_name, array methods_list [, bool exclude]) |Selective dynamic class methods aggregation to an object (PHP 4 >= 4.2.0)
  69. void aggregate_methods_by_regexp(object object, string class_name, string regexp [, bool exclude]) |Selective class methods aggregation to an object using a regular expression (PHP 4 >= 4.2.0)
  70. void aggregate_methods(object object, string class_name) |Dynamic class and object aggregation of methods (PHP 4 >= 4.2.0)
  71. void aggregate_properties_by_list(object object, string class_name, array properties_list [, bool exclude]) |Selective dynamic class properties aggregation to an object (PHP 4 >= 4.2.0)
  72. void aggregate_properties_by_regexp(object object, string class_name, string regexp [, bool exclude]) |Selective class properties aggregation to an object using a regular expression (PHP 4 >= 4.2.0)
  73. void aggregate_properties(object object, string class_name) |Dynamic aggregation of class properties to an object (PHP 4 >= 4.2.0)
  74. void aggregate(object object, string class_name) |Dynamic class and object aggregation of methods and properties (PHP 4 >= 4.2.0)
  75. array aggregation_info(object object) |Returns an associative array of the methods and properties from each class that has been aggregated to the object
  76. bool apache_child_terminate() |Terminate apache process after this request (PHP 4 >= 4.0.5, PHP 5)
  77. array apache_get_modules() |Get a list of loaded Apache modules (PHP 4 >= 4.3.2, PHP 5)
  78. string apache_get_version() |Fetch Apache version (PHP 4 >= 4.3.2, PHP 5)
  79. string apache_getenv(string variable [, bool walk_to_top]) |Get an Apache subprocess_env variable (PHP 4 >= 4.3.0, PHP 5)
  80. object apache_lookup_uri(string filename) |Perform a partial request for the specified URI and return all info about it (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  81. string apache_note(string note_name [, string note_value]) |Get and set apache request notes (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  82. array apache_request_headers() |Fetch all HTTP request headers (PHP 4 >= 4.3.0, PHP 5)
  83. bool apache_reset_timeout() |Reset the Apache write timer
  84. array apache_response_headers() |Fetch all HTTP response headers (PHP 4 >= 4.3.0, PHP 5)
  85. bool apache_setenv(string variable, string value [, bool walk_to_top]) |Set an Apache subprocess_env variable (PHP 4 >= 4.2.0, PHP 5)
  86. array apc_cache_info([string cache_type]) |Retrieves cached information (and meta-data) from APC's data store (PECL)
  87. bool apc_clear_cache([string cache_type]) |Clears the APC cache (PECL)
  88. bool apc_define_constants(string key, array constants [, bool case_sensitive]) |Defines a set of constants for later retrieval and mass-definition (PECL)
  89. bool apc_delete(string key) |Removes a stored variable from the cache (PECL)
  90. mixed apc_fetch(string key) |Fetch a stored variable from the cache (PECL)
  91. bool apc_load_constants(string key [, bool case_sensitive]) |Loads a set of constants from the cache (PECL)
  92. array apc_sma_info() |Retrieves APC's Shared Memory Allocation information (PECL)
  93. bool apc_store(string key, mixed var [, int ttl]) |Cache a variable in the data store (PECL)
  94. bool apd_breakpoint(int debug_level) |Stops the interpreter and waits on a CR from the socket (PECL)
  95. array apd_callstack() |Returns the current call stack as an array
  96. void apd_clunk(string warning [, string delimiter]) |Throw a warning and a callstack
  97. bool apd_continue(int debug_level) |Restarts the interpreter (PECL)
  98. void apd_croak(string warning [, string delimiter]) |Throw an error, a callstack and then exit
  99. void apd_dump_function_table() |Outputs the current function table
  100. array apd_dump_persistent_resources() |Return all persistent resources as an array
  101. array apd_dump_regular_resources() |Return all current regular resources as an array
  102. bool apd_echo(string output) |Echo to the debugging socket (PECL)
  103. array apd_get_active_symbols() |Get an array of the current variables names in the local scope
  104. void apd_set_pprof_trace([string dump_directory]) |Starts the session debugging (PECL)
  105. void apd_set_session_trace(int debug_level [, string dump_directory]) |Starts the session debugging
  106. void apd_set_session(int debug_level) |Changes or sets the current debugging level
  107. bool apd_set_socket_session_trace(string ip_address_or_unix_socket_file, int socket_type, int port, int debug_level) |Starts the remote session debugging
  108. array array_change_key_case(array input [, int case]) |Returns an array with all string keys lowercased or uppercased (PHP 4 >= 4.2.0, PHP 5)
  109. array array_chunk(array input, int size [, bool preserve_keys]) |Split an array into chunks (PHP 4 >= 4.2.0, PHP 5)
  110. array array_combine(array keys, array values) |Creates an array by using one array for keys and another for its values (PHP 5)
  111. array array_count_values(array input) |Counts all the values of an array (PHP 4, PHP 5)
  112. array array_diff_assoc(array array1, array array2 [, array ...]) |Computes the difference of arrays with additional index check (PHP 4 >= 4.3.0, PHP 5)
  113. array array_diff_key(array array1, array array2 [, array ...]) |Computes the difference of arrays using keys for comparison (PHP 5 >= 5.1.0RC1)
  114. array array_diff_uassoc(array array1, array array2 [, array ..., callback key_compare_func]) |Computes the difference of arrays with additional index check which is performed by a user supplied callback function (PHP 5)
  115. array array_diff_ukey(array array1, array array2 [, array ..., callback key_compare_func]) |Computes the difference of arrays using a callback function on the keys for comparison (PHP 5 >= 5.1.0RC1)
  116. array array_diff(array array1, array array2 [, array ...]) |Computes the difference of arrays (PHP 4 >= 4.0.1, PHP 5)
  117. array array_fill(int start_index, int num, mixed value) |Fill an array with values (PHP 4 >= 4.2.0, PHP 5)
  118. array array_filter(array input [, callback callback]) |Filters elements of an array using a callback function (PHP 4 >= 4.0.6, PHP 5)
  119. array array_flip(array trans) |Exchanges all keys with their associated values in an array (PHP 4, PHP 5)
  120. array array_intersect_assoc(array array1, array array2 [, array ...]) |Computes the intersection of arrays with additional index check (PHP 4 >= 4.3.0, PHP 5)
  121. array array_intersect_key(array array1, array array2 [, array ...]) |Computes the intersection of arrays using keys for comparison (PHP 5 >= 5.1.0RC1)
  122. array array_intersect_uassoc(array array1, array array2 [, array ..., callback key_compare_func]) |Computes the intersection of arrays with additional index check, compares indexes by a callback function (PHP 5)
  123. array array_intersect_ukey(array array1, array array2 [, array ..., callback key_compare_func]) |Computes the intersection of arrays using a callback function on the keys for comparison (PHP 5 >= 5.1.0RC1)
  124. array array_intersect(array array1, array array2 [, array ...]) |Computes the intersection of arrays (PHP 4 >= 4.0.1, PHP 5)
  125. bool array_key_exists(mixed key, array search) |Checks if the given key or index exists in the array (PHP 4 >= 4.1.0, PHP 5)
  126. array array_keys(array input [, mixed search_value [, bool strict]]) |Return all the keys of an array (PHP 4, PHP 5)
  127. array array_map(callback callback, array arr1 [, array ...]) |Applies the callback to the elements of the given arrays (PHP 4 >= 4.0.6, PHP 5)
  128. array array_merge_recursive(array array1 [, array ...]) |Merge two or more arrays recursively (PHP 4 >= 4.0.1, PHP 5)
  129. array array_merge(array array1 [, array array2 [, array ...]]) |Merge one or more arrays (PHP 4, PHP 5)
  130. bool array_multisort(array ar1 [, mixed arg [, mixed ... [, array ...]]]) |Sort multiple or multi-dimensional arrays (PHP 4, PHP 5)
  131. array array_pad(array input, int pad_size, mixed pad_value) |Pad array to the specified length with a value (PHP 4, PHP 5)
  132. mixed array_pop(array &array) |Pop the element off the end of array (PHP 4, PHP 5)
  133. number array_product(array array) |Calculate the product of values in an array (PHP 5 >= 5.1.0RC1)
  134. int array_push(array &array, mixed var [, mixed ...]) |Push one or more elements onto the end of array (PHP 4, PHP 5)
  135. mixed array_rand(array input [, int num_req]) |Pick one or more random entries out of an array (PHP 4, PHP 5)
  136. mixed array_reduce(array input, callback function [, int initial]) |Iteratively reduce the array to a single value using a callback function (PHP 4 >= 4.0.5, PHP 5)
  137. array array_reverse(array array [, bool preserve_keys]) |Return an array with elements in reverse order (PHP 4, PHP 5)
  138. mixed array_search(mixed needle, array haystack [, bool strict]) |Searches the array for a given value and returns the corresponding key if successful (PHP 4 >= 4.0.5, PHP 5)
  139. mixed array_shift(array &array) |Shift an element off the beginning of array (PHP 4, PHP 5)
  140. array array_slice(array array, int offset [, int length [, bool preserve_keys]]) |Extract a slice of the array (PHP 4, PHP 5)
  141. array array_splice(array &input, int offset [, int length [, array replacement ]]) |Remove a portion of the array and replace it with something else (PHP 4, PHP 5)
  142. number array_sum(array array) |Calculate the sum of values in an array (PHP 4 >= 4.0.4, PHP 5)
  143. array array_udiff_assoc(array array1, array array2 [, array ..., callback data_compare_func]) |Computes the difference of arrays with additional index check, compares data by a callback function (PHP 5)
  144. array array_udiff_uassoc(array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func]) |Computes the difference of arrays with additional index check, compares data and indexes by a callback function (PHP 5)
  145. array array_udiff(array array1, array array2 [, array ..., callback data_compare_func]) |Computes the difference of arrays by using a callback function for data comparison (PHP 5)
  146. array array_uintersect_assoc(array array1, array array2 [, array ..., callback data_compare_func]) |Computes the intersection of arrays with additional index check, compares data by a callback function (PHP 5)
  147. array array_uintersect_uassoc(array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func]) |Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions (PHP 5)
  148. array array_uintersect(array array1, array array2 [, array ..., callback data_compare_func]) |Computes the intersection of arrays, compares data by a callback function (PHP 5)
  149. array array_unique(array array) |Removes duplicate values from an array (PHP 4 >= 4.0.1, PHP 5)
  150. int array_unshift(array &array, mixed var [, mixed ...]) |Prepend one or more elements to the beginning of an array (PHP 4, PHP 5)
  151. array array_values(array input) |Return all the values of an array (PHP 4, PHP 5)
  152. bool array_walk_recursive(array &input, callback funcname [, mixed userdata]) |Apply a user function recursively to every member of an array (PHP 5)
  153. bool array_walk(array &array, callback funcname [, mixed userdata]) |Apply a user function to every member of an array (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  154. array array([mixed ...]) |Create an array (PHP 3, PHP 4, PHP 5)
  155. mixed ArrayIterator::current() |Return current array entry
  156. mixed ArrayIterator::key() |Return current array key
  157. void ArrayIterator::next() |Move to next entry
  158. void ArrayIterator::rewind() |Rewind array back to the start
  159. void ArrayIterator::seek(int position) |Seek to position
  160. bool ArrayIterator::valid() |Check whether array contains more entries
  161. void ArrayObject::append(mixed newval) |Appends the value
  162. ArrayObject ArrayObject::__construct(mixed input) |Construct a new array object
  163. int ArrayObject::count() |Return the number of elements in the Iterator
  164. ArrayIterator ArrayObject::getIterator() |Create a new iterator from an ArrayObject instance
  165. bool ArrayObject::offsetExists(mixed index) |Returns whether the requested $index exists
  166. bool ArrayObject::offsetGet(mixed index) |Returns the value at the specified $index
  167. void ArrayObject::offsetSet(mixed index, mixed newval) |Sets the value at the specified $index to $newval
  168. void ArrayObject::offsetUnset(mixed index) |Unsets the value at the specified $index
  169. bool arsort(array &array [, int sort_flags]) |Sort an array in reverse order and maintain index association (PHP 3, PHP 4, PHP 5)
  170. int ascii2ebcdic(string ascii_str) |Translate string from ASCII to EBCDIC (PHP 3 >= 3.0.17)
  171. float asin(float arg) |Arc sine (PHP 3, PHP 4, PHP 5)
  172. float asinh(float arg) |Inverse hyperbolic sine (PHP 4 >= 4.1.0, PHP 5)
  173. bool asort(array &array [, int sort_flags]) |Sort an array and maintain index association (PHP 3, PHP 4, PHP 5)
  174. bool aspell_check_raw(int dictionary_link, string word) |Check a word without changing its case or trying to trim it [deprecated] (PHP 3 >= 3.0.7, PHP 4 <= 4.2.3)
  175. bool aspell_check(int dictionary_link, string word) |Check a word [deprecated] (PHP 3 >= 3.0.7, PHP 4 <= 4.2.3)
  176. int aspell_new(string master [, string personal]) |Load a new dictionary [deprecated] (PHP 3 >= 3.0.7, PHP 4 <= 4.2.3)
  177. array aspell_suggest(int dictionary_link, string word) |Suggest spellings of a word [deprecated] (PHP 3 >= 3.0.7, PHP 4 <= 4.2.3)
  178. mixed assert_options(int what [, mixed value]) |Set/get the various assert flags (PHP 4, PHP 5)
  179. bool assert(mixed assertion) |Checks if assertion is FALSE (PHP 4, PHP 5)
  180. float atan(float arg) |Arc tangent (PHP 3, PHP 4, PHP 5)
  181. float atan2(float y, float x) |Arc tangent of two variables (PHP 3 >= 3.0.5, PHP 4, PHP 5)
  182. float atanh(float arg) |Inverse hyperbolic tangent (PHP 4 >= 4.1.0, PHP 5)
  183. string base_convert(string number, int frombase, int tobase) |Convert a number between arbitrary bases (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  184. string base64_decode(string encoded_data) |Decodes data encoded with MIME base64 (PHP 3, PHP 4, PHP 5)
  185. string base64_encode(string data) |Encodes data with MIME base64 (PHP 3, PHP 4, PHP 5)
  186. string basename(string path [, string suffix]) |Returns filename component of path (PHP 3, PHP 4, PHP 5)
  187. string bcadd(string left_operand, string right_operand [, int scale]) |Add two arbitrary precision numbers (PHP 3, PHP 4, PHP 5)
  188. int bccomp(string left_operand, string right_operand [, int scale]) |Compare two arbitrary precision numbers (PHP 3, PHP 4, PHP 5)
  189. string bcdiv(string left_operand, string right_operand [, int scale]) |Divide two arbitrary precision numbers (PHP 3, PHP 4, PHP 5)
  190. string bcmod(string left_operand, string modulus) |Get modulus of an arbitrary precision number (PHP 3, PHP 4, PHP 5)
  191. string bcmul(string left_operand, string right_operand [, int scale]) |Multiply two arbitrary precision number (PHP 3, PHP 4, PHP 5)
  192. bool bcompiler_load_exe(string filename) |Reads and creates classes from a bcompiler exe file (PECL)
  193. bool bcompiler_load(string filename) |Reads and creates classes from a bz compressed file (PECL)
  194. bool bcompiler_parse_class(string class, string callback) |Reads the bytecodes of a class and calls back to a user function (PECL)
  195. bool bcompiler_read(resource filehandle) |Reads and creates classes from a filehandle (PECL)
  196. bool bcompiler_write_class(resource filehandle, string className [, string extends]) |Writes an defined class as bytecodes (PECL)
  197. bool bcompiler_write_constant(resource filehandle, string constantName) |Writes a defined constant as bytecodes (PECL)
  198. bool bcompiler_write_exe_footer(resource filehandle, int startpos) |Writes the start pos, and sig to the end of a exe type file (PECL)
  199. bool bcompiler_write_file(resource filehandle, string filename) |Writes a php source file as bytecodes (PECL)
  200. bool bcompiler_write_footer(resource filehandle) |Writes the single character \x00 to indicate End of compiled data (PECL)
  201. bool bcompiler_write_function(resource filehandle, string functionName) |Writes an defined function as bytecodes (PECL)
  202. bool bcompiler_write_functions_from_file(resource filehandle, string fileName) |Writes all functions defined in a file as bytecodes (PECL)
  203. bool bcompiler_write_header(resource filehandle [, string write_ver]) |Writes the bcompiler header (PECL)
  204. string bcpow(string x, string y [, int scale]) |Raise an arbitrary precision number to another (PHP 3, PHP 4, PHP 5)
  205. string bcpowmod(string x, string y, string modulus [, int scale]) |Raise an arbitrary precision number to another, reduced by a specified modulus (PHP 5)
  206. bool bcscale(int scale) |Set default scale parameter for all bc math functions (PHP 3, PHP 4, PHP 5)
  207. string bcsqrt(string operand [, int scale]) |Get the square root of an arbitrary precision number (PHP 3, PHP 4, PHP 5)
  208. string bcsub(string left_operand, string right_operand [, int scale]) |Subtract one arbitrary precision number from another (PHP 3, PHP 4, PHP 5)
  209. string bin2hex(string str) |Convert binary data into hexadecimal representation (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  210. string bind_textdomain_codeset(string domain, string codeset) |Specify the character encoding in which the messages from the DOMAIN message catalog will be returned (PHP 4 >= 4.2.0, PHP 5)
  211. number bindec(string binary_string) |Binary to decimal (PHP 3, PHP 4, PHP 5)
  212. string bindtextdomain(string domain, string directory) |Sets the path for a domain (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  213. int bzclose(resource bz) |Close a bzip2 file (PHP 4 >= 4.3.3, PHP 5)
  214. mixed bzcompress(string source [, int blocksize [, int workfactor]]) |Compress a string into bzip2 encoded data (PHP 4 >= 4.3.3, PHP 5)
  215. mixed bzdecompress(string source [, int small]) |Decompresses bzip2 encoded data (PHP 4 >= 4.3.3, PHP 5)
  216. int bzerrno(resource bz) |Returns a bzip2 error number (PHP 4 >= 4.3.3, PHP 5)
  217. array bzerror(resource bz) |Returns the bzip2 error number and error string in an array (PHP 4 >= 4.3.3, PHP 5)
  218. string bzerrstr(resource bz) |Returns a bzip2 error string (PHP 4 >= 4.3.3, PHP 5)
  219. int bzflush(resource bz) |Force a write of all buffered data (PHP 4 >= 4.3.3, PHP 5)
  220. resource bzopen(string filename, string mode) |Opens a bzip2 compressed file (PHP 4 >= 4.3.3, PHP 5)
  221. string bzread(resource bz [, int length]) |Binary safe bzip2 file read (PHP 4 >= 4.3.3, PHP 5)
  222. int bzwrite(resource bz, string data [, int length]) |Binary safe bzip2 file write (PHP 4 >= 4.3.3, PHP 5)
  223. bool CachingIterator::hasNext() |Check whether the inner iterator has a valid next element
  224. void CachingIterator::next() |Move the iterator forward
  225. void CachingIterator::rewind() |Rewind the iterator
  226. string CachingIterator::__toString() |Return the string representation of the current element
  227. bool CachingIterator::valid() |Check whether the current element is valid
  228. CachingRecursiveIterator CachingRecursiveIterator::getChildren() |Return the inner iterator's children as a CachingRecursiveIterator
  229. bolean CachingRecursiveIterator::hasChildren() |Check whether the current element of the inner iterator has children
  230. int cal_days_in_month(int calendar, int month, int year) |Return the number of days in a month for a given year and calendar (PHP 4 >= 4.1.0, PHP 5)
  231. array cal_from_jd(int jd, int calendar) |Converts from Julian Day Count to a supported calendar (PHP 4 >= 4.1.0, PHP 5)
  232. array cal_info([int calendar]) |Returns information about a particular calendar (PHP 4 >= 4.1.0, PHP 5)
  233. int cal_to_jd(int calendar, int month, int day, int year) |Converts from a supported calendar to Julian Day Count (PHP 4 >= 4.1.0, PHP 5)
  234. mixed call_user_func_array(callback function, array param_arr) |Call a user function given with an array of parameters (PHP 4 >= 4.0.4, PHP 5)
  235. mixed call_user_func(callback function [, mixed parameter [, mixed ...]]) |Call a user function given by the first parameter (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  236. mixed call_user_method_array(string method_name, object &obj, array paramarr) |Call a user method given with an array of parameters [deprecated] (PHP 4 >= 4.0.5, PHP 5)
  237. mixed call_user_method(string method_name, object &obj [, mixed parameter [, mixed ...]]) |Call a user method on an specific object [deprecated] (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  238. string ccvs_add(string session, string invoice, string argtype, string argval) |Add data to a transaction (4.0.2 - 4.2.3 only)
  239. string ccvs_auth(string session, string invoice) |Perform credit authorization test on a transaction (4.0.2 - 4.2.3 only)
  240. string ccvs_command(string session, string type, string argval) |Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API (4.0.2 - 4.2.3 only)
  241. int ccvs_count(string session, string type) |Find out how many transactions of a given type are stored in the system (4.0.2 - 4.2.3 only)
  242. string ccvs_delete(string session, string invoice) |Delete a transaction (4.0.2 - 4.2.3 only)
  243. string ccvs_done(string sess) |Terminate CCVS engine and do cleanup work (4.0.2 - 4.2.3 only)
  244. string ccvs_init(string name) |Initialize CCVS for use (4.0.2 - 4.2.3 only)
  245. string ccvs_lookup(string session, string invoice, int inum) |Look up an item of a particular type in the database # (4.0.2 - 4.2.3 only)
  246. string ccvs_new(string session, string invoice) |Create a new, blank transaction (4.0.2 - 4.2.3 only)
  247. string ccvs_report(string session, string type) |Return the status of the background communication process (4.0.2 - 4.2.3 only)
  248. string ccvs_return(string session, string invoice) |Transfer funds from the merchant to the credit card holder (4.0.2 - 4.2.3 only)
  249. string ccvs_reverse(string session, string invoice) |Perform a full reversal on an already-processed authorization (4.0.2 - 4.2.3 only)
  250. string ccvs_sale(string session, string invoice) |Transfer funds from the credit card holder to the merchant (4.0.2 - 4.2.3 only)
  251. string ccvs_status(string session, string invoice) |Check the status of an invoice (4.0.2 - 4.2.3 only)
  252. string ccvs_textvalue(string session) |Get text return value for previous function call (4.0.2 - 4.2.3 only)
  253. string ccvs_void(string session, string invoice) |Perform a full reversal on a completed transaction (4.0.2 - 4.2.3 only)
  254. float ceil(float value) |Round fractions up (PHP 3, PHP 4, PHP 5)
  255. bool chdir(string directory) |Change directory (PHP 3, PHP 4, PHP 5)
  256. bool checkdate(int month, int day, int year) |Validate a Gregorian date (PHP 3, PHP 4, PHP 5)
  257. int checkdnsrr(string host [, string type]) |Check DNS records corresponding to a given Internet host name or IP address (PHP 3, PHP 4, PHP 5)
  258. bool chgrp(string filename, mixed group) |Changes file group (PHP 3, PHP 4, PHP 5)
  259. bool chmod(string filename, int mode) |Changes file mode (PHP 3, PHP 4, PHP 5)
  260. string chop(string str [, string charlist]) |Strip whitespace (or other characters) from the end of a string (PHP 3, PHP 4, PHP 5)
  261. bool chown(string filename, mixed user) |Changes file owner (PHP 3, PHP 4, PHP 5)
  262. string chr(int ascii) |Return a specific character (PHP 3, PHP 4, PHP 5)
  263. bool chroot(string directory) |Change the root directory (PHP 4 >= 4.0.5, PHP 5)
  264. string chunk_split(string body [, int chunklen [, string end]]) |Split a string into smaller chunks (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  265. bool class_exists(string class_name [, bool autoload]) |Checks if the class has been defined (PHP 4, PHP 5)
  266. array class_implements(mixed class [, bool autoload]) |Return the interfaces which are implemented by the given class (PHP 5)
  267. array class_parents(mixed class [, bool autoload]) |Return the parent classes of the given class (PHP 5)
  268. array classkit_import(string filename) |Import new class method definitions from a file (PECL)
  269. bool classkit_method_add(string classname, string methodname, string args, string code [, int flags]) |Dynamically adds a new method to a given class (PECL)
  270. bool classkit_method_copy(string dClass, string dMethod, string sClass [, string sMethod]) |Copies a method from class to another (PECL)
  271. bool classkit_method_redefine(string classname, string methodname, string args, string code [, int flags]) |Dynamically changes the code of the given method (PECL)
  272. bool classkit_method_remove(string classname, string methodname) |Dynamically removes the given method (PECL)
  273. bool classkit_method_rename(string classname, string methodname, string newname) |Dynamically changes the name of the given method (PECL)
  274. void clearstatcache() |Clears file status cache (PHP 3, PHP 4, PHP 5)
  275. void closedir(resource dir_handle) |Close directory handle (PHP 3, PHP 4, PHP 5)
  276. bool closelog() |Close connection to system logger (PHP 3, PHP 4, PHP 5)
  277. void com_addref() |Increases the components reference counter [deprecated] (PHP 4 >= 4.1.0)
  278. string com_create_guid() |Generate a globally unique identifier (GUID) (PHP 5)
  279. bool com_event_sink(variant comobject, object sinkobject [, mixed sinkinterface]) |Connect events from a COM object to a PHP object (PHP 4 >= 4.2.3, PHP 5)
  280. variant com_get_active_object(string progid [, int code_page]) |Returns a handle to an already running instance of a COM object (PHP 5)
  281. mixed com_get(resource com_object, string property) |Gets the value of a COM Component's property [deprecated] (PHP 3 >= 3.0.3, PHP 4)
  282. mixed com_invoke(resource com_object, string function_name [, mixed function_parameters]) |Calls a COM component's method [deprecated] (PHP 3 >= 3.0.3)
  283. bool com_isenum(variant com_module) |Indicates if a COM object has an IEnumVariant interface for iteration [deprecated] (PHP 4 >= 4.1.0)
  284. bool com_load_typelib(string typelib_name [, bool case_insensitive]) |Loads a Typelib (PHP 4 >= 4.1.0, PHP 5)
  285. resource com_load(string module_name [, string server_name [, int codepage ]]) |Creates a new reference to a COM component [deprecated] (PHP 3 >= 3.0.3)
  286. bool com_message_pump([int timeoutms]) |Process COM messages, sleeping for up to timeoutms milliseconds (PHP 4 >= 4.2.3, PHP 5)
  287. bool com_print_typeinfo(object comobject [, string dispinterface [, bool wantsink]]) |Print out a PHP class definition for a dispatchable interface (PHP 4 >= 4.2.3, PHP 5)
  288. variant com_propget_active_object(string progid [, int code_page]) |Returns a handle to an already running instance of a COM object (PHP 5)
  289. void com_propput(resource com_object, string property, mixed value) |Assigns a value to a COM component's property (PHP 3 >= 3.0.3, PHP 4)
  290. void com_propset(resource com_object, string property, mixed value) |Assigns a value to a COM component's property (PHP 3 >= 3.0.3, PHP 4)
  291. void com_release() |Decreases the components reference counter [deprecated] (PHP 4 >= 4.1.0)
  292. void com_set(resource com_object, string property, mixed value) |Assigns a value to a COM component's property (PHP 3 >= 3.0.3, PHP 4)
  293. array compact(mixed varname [, mixed ...]) |Create array containing variables and their values (PHP 4, PHP 5)
  294. int connection_aborted() |Returns TRUE if client disconnected (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  295. int connection_status() |Returns connection status bitfield (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  296. bool connection_timeout() |Return TRUE if script timed out (PHP 3 >= 3.0.7, PHP 4 <= 4.0.4)
  297. mixed constant(string name) |Returns the value of a constant (PHP 4 >= 4.0.4, PHP 5)
  298. string convert_cyr_string(string str, string from, string to) |Convert from one Cyrillic character set to another (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  299. string convert_uudecode(string data) |Decode a uuencoded string (PHP 5)
  300. string convert_uuencode(string data) |Uuencode a string (PHP 5)
  301. bool copy(string source, string dest) |Copies file (PHP 3, PHP 4, PHP 5)
  302. float cos(float arg) |Cosine (PHP 3, PHP 4, PHP 5)
  303. float cosh(float arg) |Hyperbolic cosine (PHP 4 >= 4.1.0, PHP 5)
  304. mixed count_chars(string string [, int mode]) |Return information about characters used in a string (PHP 4, PHP 5)
  305. int count(mixed var [, int mode]) |Count elements in an array, or properties in an object (PHP 3, PHP 4, PHP 5)
  306. bool cpdf_add_annotation(int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode]) |Adds annotation (PHP 3 >= 3.0.12, PHP 4, PHP 5 <= 5.0.4)
  307. int cpdf_add_outline(int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text) |Adds bookmark for current page (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  308. bool cpdf_arc(int pdf_document, float x_coor, float y_coor, float radius, float start, float end [, int mode]) |Draws an arc (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  309. bool cpdf_begin_text(int pdf_document) |Starts text section (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  310. bool cpdf_circle(int pdf_document, float x_coor, float y_coor, float radius [, int mode]) |Draw a circle (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  311. bool cpdf_clip(int pdf_document) |Clips to current path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  312. bool cpdf_close(int pdf_document) |Closes the pdf document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  313. bool cpdf_closepath_fill_stroke(int pdf_document) |Close, fill and stroke current path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  314. bool cpdf_closepath_stroke(int pdf_document) |Close path and draw line along path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  315. bool cpdf_closepath(int pdf_document) |Close path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  316. bool cpdf_continue_text(int pdf_document, string text) |Output text in next line (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  317. bool cpdf_curveto(int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode]) |Draws a curve (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  318. bool cpdf_end_text(int pdf_document) |Ends text section (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  319. bool cpdf_fill_stroke(int pdf_document) |Fill and stroke current path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  320. bool cpdf_fill(int pdf_document) |Fill current path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  321. bool cpdf_finalize_page(int pdf_document, int page_number) |Ends page (PHP 3 >= 3.0.10, PHP 4, PHP 5 <= 5.0.4)
  322. bool cpdf_finalize(int pdf_document) |Ends document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  323. bool cpdf_global_set_document_limits(int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects) |Sets document limits for any pdf document (PHP 4, PHP 5 <= 5.0.4)
  324. bool cpdf_import_jpeg(int pdf_document, string file_name, float x_coor, float y_coor, float angle, float width, float height, float x_scale, float y_scale, int gsave [, int mode]) |Opens a JPEG image (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  325. bool cpdf_lineto(int pdf_document, float x_coor, float y_coor [, int mode]) |Draws a line (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  326. bool cpdf_moveto(int pdf_document, float x_coor, float y_coor [, int mode]) |Sets current point (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  327. bool cpdf_newpath(int pdf_document) |Starts a new path (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  328. int cpdf_open(int compression [, string filename [, array doc_limits]]) |Opens a new pdf document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  329. bool cpdf_output_buffer(int pdf_document) |Outputs the pdf document in memory buffer (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  330. bool cpdf_page_init(int pdf_document, int page_number, int orientation, float height, float width [, float unit]) |Starts new page (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  331. bool cpdf_place_inline_image(int pdf_document, int image, float x_coor, float y_coor, float angle, float width, float height, int gsave [, int mode]) |Places an image on the page (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  332. bool cpdf_rect(int pdf_document, float x_coor, float y_coor, float width, float height [, int mode]) |Draw a rectangle (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  333. bool cpdf_restore(int pdf_document) |Restores formerly saved environment (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  334. bool cpdf_rlineto(int pdf_document, float x_coor, float y_coor [, int mode]) |Draws a line (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  335. bool cpdf_rmoveto(int pdf_document, float x_coor, float y_coor [, int mode]) |Sets current point (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  336. bool cpdf_rotate_text(int pdfdoc, float angle) |Sets text rotation angle (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  337. bool cpdf_rotate(int pdf_document, float angle) |Sets rotation (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  338. bool cpdf_save_to_file(int pdf_document, string filename) |Writes the pdf document into a file (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  339. bool cpdf_save(int pdf_document) |Saves current environment (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  340. bool cpdf_scale(int pdf_document, float x_scale, float y_scale) |Sets scaling (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  341. bool cpdf_set_action_url(int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode]) |Sets hyperlink (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  342. bool cpdf_set_char_spacing(int pdf_document, float space) |Sets character spacing (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  343. bool cpdf_set_creator(int pdf_document, string creator) |Sets the creator field in the pdf document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  344. bool cpdf_set_current_page(int pdf_document, int page_number) |Sets current page (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  345. bool cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir) |Sets directories to search when using external fonts (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  346. bool cpdf_set_font_map_file(int pdfdoc, string filename) |Sets fontname to filename translation map when using external fonts (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  347. bool cpdf_set_font(int pdf_document, string font_name, float size, string encoding) |Select the current font face and size (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  348. bool cpdf_set_horiz_scaling(int pdf_document, float scale) |Sets horizontal scaling of text (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  349. bool cpdf_set_keywords(int pdf_document, string keywords) |Sets the keywords field of the pdf document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  350. bool cpdf_set_leading(int pdf_document, float distance) |Sets distance between text lines (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  351. bool cpdf_set_page_animation(int pdf_document, int transition, float duration, float direction, int orientation, int inout) |Sets duration between pages (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  352. bool cpdf_set_subject(int pdf_document, string subject) |Sets the subject field of the pdf document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  353. bool cpdf_set_text_matrix(int pdf_document, array matrix) |Sets the text matrix (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  354. bool cpdf_set_text_pos(int pdf_document, float x_coor, float y_coor [, int mode]) |Sets text position (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  355. bool cpdf_set_text_rendering(int pdf_document, int rendermode) |Determines how text is rendered (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  356. bool cpdf_set_text_rise(int pdf_document, float value) |Sets the text rise (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  357. bool cpdf_set_title(int pdf_document, string title) |Sets the title field of the pdf document (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  358. bool cpdf_set_viewer_preferences(int pdfdoc, array preferences) |How to show the document in the viewer (PHP 3 >= 3.0.9, PHP 4, PHP 5 <= 5.0.4)
  359. bool cpdf_set_word_spacing(int pdf_document, float space) |Sets spacing between words (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  360. bool cpdf_setdash(int pdf_document, float white, float black) |Sets dash pattern (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  361. bool cpdf_setflat(int pdf_document, float value) |Sets flatness (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  362. bool cpdf_setgray_fill(int pdf_document, float value) |Sets filling color to gray value (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  363. bool cpdf_setgray_stroke(int pdf_document, float gray_value) |Sets drawing color to gray value (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  364. bool cpdf_setgray(int pdf_document, float gray_value) |Sets drawing and filling color to gray value (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  365. bool cpdf_setlinecap(int pdf_document, int value) |Sets linecap parameter (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  366. bool cpdf_setlinejoin(int pdf_document, int value) |Sets linejoin parameter (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  367. bool cpdf_setlinewidth(int pdf_document, float width) |Sets line width (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  368. bool cpdf_setmiterlimit(int pdf_document, float value) |Sets miter limit (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  369. bool cpdf_setrgbcolor_fill(int pdf_document, float red_value, float green_value, float blue_value) |Sets filling color to rgb color value (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  370. bool cpdf_setrgbcolor_stroke(int pdf_document, float red_value, float green_value, float blue_value) |Sets drawing color to rgb color value (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  371. bool cpdf_setrgbcolor(int pdf_document, float red_value, float green_value, float blue_value) |Sets drawing and filling color to rgb color value (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  372. bool cpdf_show_xy(int pdf_document, string text, float x_coor, float y_coor [, int mode]) |Output text at position (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  373. bool cpdf_show(int pdf_document, string text) |Output text at current position (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  374. float cpdf_stringwidth(int pdf_document, string text) |Returns width of text in current font (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  375. bool cpdf_stroke(int pdf_document) |Draw line along path (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  376. bool cpdf_text(int pdf_document, string text [, float x_coor, float y_coor [, int mode [, float orientation [, int alignmode]]]]) |Output text with parameters (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  377. bool cpdf_translate(int pdf_document, float x_coor, float y_coor) |Sets origin of coordinate system (PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
  378. bool crack_check(resource dictionary, string password) |Performs an obscure check with the given password (PHP 4 >= 4.0.5, PECL)
  379. bool crack_closedict([resource dictionary]) |Closes an open CrackLib dictionary (PHP 4 >= 4.0.5, PECL)
  380. string crack_getlastmessage() |Returns the message from the last obscure check (PHP 4 >= 4.0.5, PECL)
  381. resource crack_opendict(string dictionary) |Opens a new CrackLib dictionary (PHP 4 >= 4.0.5, PECL)
  382. int crc32(string str) |Calculates the crc32 polynomial of a string (PHP 4 >= 4.0.1, PHP 5)
  383. string create_function(string args, string code) |Create an anonymous (lambda-style) function (PHP 4 >= 4.0.1, PHP 5)
  384. string crypt(string str [, string salt]) |One-way string encryption (hashing) (PHP 3, PHP 4, PHP 5)
  385. bool ctype_alnum(string text) |Check for alphanumeric character(s) (PHP 4 >= 4.0.4, PHP 5)
  386. bool ctype_alpha(string text) |Check for alphabetic character(s) (PHP 4 >= 4.0.4, PHP 5)
  387. bool ctype_cntrl(string text) |Check for control character(s) (PHP 4 >= 4.0.4, PHP 5)
  388. bool ctype_digit(string text) |Check for numeric character(s) (PHP 4 >= 4.0.4, PHP 5)
  389. bool ctype_graph(string text) |Check for any printable character(s) except space (PHP 4 >= 4.0.4, PHP 5)
  390. bool ctype_lower(string text) |Check for lowercase character(s) (PHP 4 >= 4.0.4, PHP 5)
  391. bool ctype_print(string text) |Check for printable character(s) (PHP 4 >= 4.0.4, PHP 5)
  392. bool ctype_punct(string text) |Check for any printable character which is not whitespace or an alphanumeric character (PHP 4 >= 4.0.4, PHP 5)
  393. bool ctype_space(string text) |Check for whitespace character(s) (PHP 4 >= 4.0.4, PHP 5)
  394. bool ctype_upper(string text) |Check for uppercase character(s) (PHP 4 >= 4.0.4, PHP 5)
  395. bool ctype_xdigit(string text) |Check for character(s) representing a hexadecimal digit (PHP 4 >= 4.0.4, PHP 5)
  396. void curl_close(resource ch) |Close a CURL session (PHP 4 >= 4.0.2, PHP 5)
  397. resource curl_copy_handle(resource ch) |Copy a cURL handle along with all of its preferences (PHP 5)
  398. int curl_errno(resource ch) |Return the last error number (PHP 4 >= 4.0.3, PHP 5)
  399. string curl_error(resource ch) |Return a string containing the last error for the current session (PHP 4 >= 4.0.3, PHP 5)
  400. mixed curl_exec(resource ch) |Perform a CURL session (PHP 4 >= 4.0.2, PHP 5)
  401. mixed curl_getinfo(resource ch [, int opt]) |Get information regarding a specific transfer (PHP 4 >= 4.0.4, PHP 5)
  402. resource curl_init([string url]) |Initialize a CURL session (PHP 4 >= 4.0.2, PHP 5)
  403. int curl_multi_add_handle(resource mh, resource ch) |Add a normal cURL handle to a cURL multi handle (PHP 5)
  404. void curl_multi_close(resource mh) |Close a set of cURL handles (PHP 5)
  405. int curl_multi_exec(resource mh, int &still_running) |Run the sub-connections of the current cURL handle (PHP 5)
  406. string curl_multi_getcontent(resource ch) |Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set (PHP 5)
  407. array curl_multi_info_read(resource mh) |Get information about the current transfers (PHP 5)
  408. resource curl_multi_init() |Returns a new cURL multi handle (PHP 5)
  409. int curl_multi_remove_handle(resource mh, resource ch) |Remove a multi handle from a set of cURL handles (PHP 5)
  410. int curl_multi_select(resource mh [, float timeout]) |Get all the sockets associated with the cURL extension, which can then be "selected" (PHP 5)
  411. bool curl_setopt(resource ch, int option, mixed value) |Set an option for a CURL transfer (PHP 4 >= 4.0.2, PHP 5)
  412. array curl_version([int version]) |Return the current CURL version (PHP 4 >= 4.0.2, PHP 5)
  413. mixed current(array &array) |Return the current element in an array (PHP 3, PHP 4, PHP 5)
  414. string cybercash_base64_decode(string inbuff) |base64 decode data for Cybercash (PHP 4 <= 4.2.3, PECL)
  415. string cybercash_base64_encode(string inbuff) |base64 encode data for Cybercash (PHP 4 <= 4.2.3, PECL)
  416. array cybercash_decr(string wmk, string sk, string inbuff) |Cybercash decrypt (PHP 4 <= 4.2.3, PECL)
  417. array cybercash_encr(string wmk, string sk, string inbuff) |Cybercash encrypt (PHP 4 <= 4.2.3, PECL)
  418. string cybermut_creerformulairecm(string url_cm, string version, string tpe, string price, string ref_command, string text_free, string url_return, string url_return_ok, string url_return_err, string language, string code_company, string text_button) |Generate HTML form of request for payment (4.0.5 - 4.2.3 only, PECL)
  419. string cybermut_creerreponsecm(string sentence) |Generate the delivery's acknowledgement of the payment's confirmation (4.0.5 - 4.2.3 only, PECL)
  420. bool cybermut_testmac(string code_mac, string version, string tpe, string cdate, string price, string ref_command, string text_free, string code_return) |Make sure that there was no data diddling contained in the received message of confirmation (4.0.5 - 4.2.3 only, PECL)
  421. void cyrus_authenticate(resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf [, string authname [, string password]]]]]]]) |Authenticate against a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL)
  422. bool cyrus_bind(resource connection, array callbacks) |Bind callbacks to a Cyrus IMAP connection (PHP 4 >= 4.1.0, PECL)
  423. bool cyrus_close(resource connection) |Close connection to a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL)
  424. resource cyrus_connect([string host [, string port [, int flags]]]) |Connect to a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL)
  425. array cyrus_query(resource connection, string query) |Send a query to a Cyrus IMAP server (PHP 4 >= 4.1.0, PECL)
  426. bool cyrus_unbind(resource connection, string trigger_name) |Unbind ... (PHP 4 >= 4.1.0, PECL)
  427. string date_default_timezone_get() |Gets the default timezone used by all date/time functions in a script (PHP 5 >= 5.1.0RC1)
  428. bool date_default_timezone_set(string timezone_identifier) |Sets the default timezone used by all date/time functions in a script (PHP 5 >= 5.1.0RC1)
  429. mixed date_sunrise(int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]) |Returns time of sunrise for a given day and location (PHP 5)
  430. mixed date_sunset(int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]) |Returns time of sunset for a given day and location (PHP 5)
  431. string date(string format [, int timestamp]) |Format a local time/date (PHP 3, PHP 4, PHP 5)
  432. mixed db2_autocommit(resource connection [, bool value]) |Returns or sets the AUTOCOMMIT state for a database connection (PECL)
  433. bool db2_bind_param(resource stmt, int parameter-number, string variable-name [, int parameter-type [, int data-type [, int precision [, int scale]]]]) |Binds a PHP variable to an SQL statement parameter (PECL)
  434. object db2_client_info(resource connection) |Returns an object with properties that describe the DB2 database client
  435. bool db2_close(resource connection) |Closes a database connection (PECL)
  436. resource db2_column_privileges(resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]]) |Returns a result set listing the columns and associated privileges for a table (PECL)
  437. resource db2_columns(resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]]) |Returns a result set listing the columns and associated metadata for a table (PECL)
  438. bool db2_commit(resource connection) |Commits a transaction (PECL)
  439. string db2_conn_error([resource connection]) |Returns a string containing the SQLSTATE returned by the last connection attempt (PECL)
  440. string db2_conn_errormsg([resource connection]) |Returns the last connection error message and SQLCODE value (PECL)
  441. resource db2_connect(string database, string username, string password [, array options]) |Returns a connection to a database (PECL)
  442. int db2_cursor_type(resource stmt) |Returns the cursor type used by a statement resource (PECL)
  443. resource db2_exec(resource connection, string statement [, array options]) |Executes an SQL statement directly (PECL)
  444. bool db2_execute(resource stmt [, array parameters]) |Executes a prepared SQL statement (PECL)
  445. array db2_fetch_array(resource stmt [, int row_number]) |Returns an array, indexed by column position, representing a row in a result set (PECL)
  446. array db2_fetch_assoc(resource stmt [, int row_number]) |Returns an array, indexed by column name, representing a row in a result set (PECL)
  447. array db2_fetch_both(resource stmt [, int row_number]) |Returns an array, indexed by both column name and position, representing a row in a result set (PECL)
  448. object db2_fetch_object(resource stmt [, int row_number]) |Returns an object with properties representing columns in the fetched row (PECL)
  449. bool db2_fetch_row(resource stmt [, int row_number]) |Sets the result set pointer to the next row or requested row (PECL)
  450. int db2_field_display_size(resource stmt, mixed column) |Returns the maximum number of bytes required to display a column (PECL)
  451. string db2_field_name(resource stmt, mixed column) |Returns the name of the column in the result set (PECL)
  452. int db2_field_num(resource stmt, mixed column) |Returns the position of the named column in a result set (PECL)
  453. int db2_field_precision(resource stmt, mixed column) |Returns the precision of the indicated column in a result set (PECL)
  454. int db2_field_scale(resource stmt, mixed column) |Returns the scale of the indicated column in a result set (PECL)
  455. string db2_field_type(resource stmt, mixed column) |Returns the data type of the indicated column in a result set (PECL)
  456. int db2_field_width(resource stmt, mixed column) |Returns the width of the current value of the indicated column in a result set (PECL)
  457. resource db2_foreign_keys(resource connection, string qualifier, string schema, string table-name) |Returns a result set listing the foreign keys for a table (PECL)
  458. bool db2_free_result(resource stmt) |Frees resources associated with a result set (PECL)
  459. bool db2_free_stmt(resource stmt) |Frees resources associated with the indicated statement resource (PECL)
  460. resource db2_next_result(resource stmt) |Requests the next result set from a stored procedure (PECL)
  461. int db2_num_fields(resource stmt) |Returns the number of fields contained in a result set (PECL)
  462. int db2_num_rows(resource stmt) |Returns the number of rows affected by an SQL statement (PECL)
  463. resource db2_pconnect(string database, string username, string password [, array options]) |Returns a persistent connection to a database (PECL)
  464. resource db2_prepare(resource connection, string statement [, array options]) |Prepares an SQL statement to be executed (PECL)
  465. resource db2_primary_keys(resource connection, string qualifier, string schema, string table-name) |Returns a result set listing primary keys for a table (PECL)
  466. resource db2_procedure_columns(resource connection, string qualifier, string schema, string procedure, string parameter) |Returns a result set listing stored procedure parameters (PECL)
  467. resource db2_procedures(resource connection, string qualifier, string schema, string procedure) |Returns a result set listing the stored procedures registered in a database (PECL)
  468. mixed db2_result(resource stmt, mixed column) |Returns a single column from a row in the result set (PECL)
  469. bool db2_rollback(resource connection) |Rolls back a transaction (PECL)
  470. object db2_server_info(resource connection) |Returns an object with properties that describe the DB2 database server
  471. resource db2_special_columns(resource connection, string qualifier, string schema, string table_name, int scope) |Returns a result set listing the unique row identifier columns for a table (PECL)
  472. resource db2_statistics(resource connection, string qualifier, string schema, string table-name, bool unique) |Returns a result set listing the index and statistics for a table (PECL)
  473. string db2_stmt_error([resource stmt]) |Returns a string containing the SQLSTATE returned by an SQL statement (PECL)
  474. string db2_stmt_errormsg([resource stmt]) |Returns a string containing the last SQL statement error message (PECL)
  475. resource db2_table_privileges(resource connection [, string qualifier [, string schema [, string table_name]]]) |Returns a result set listing the tables and associated privileges in a database (PECL)
  476. resource db2_tables(resource connection [, string qualifier [, string schema [, string table-name [, string table-type]]]]) |Returns a result set listing the tables and associated metadata in a database (PECL)
  477. void dba_close(resource handle) |Close a DBA database (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  478. bool dba_delete(string key, resource handle) |Delete DBA entry specified by key (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  479. bool dba_exists(string key, resource handle) |Check whether key exists (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  480. string dba_fetch(string key, resource handle) |Fetch data specified by key (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  481. string dba_firstkey(resource handle) |Fetch first key (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  482. array dba_handlers([bool full_info]) |List all the handlers available (PHP 4 >= 4.3.0, PHP 5)
  483. bool dba_insert(string key, string value, resource handle) |Insert entry (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  484. mixed dba_key_split(mixed key) |Splits a key in string representation into array representation (PHP 5)
  485. array dba_list() |List all open database files (PHP 4 >= 4.3.0, PHP 5)
  486. string dba_nextkey(resource handle) |Fetch next key (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  487. resource dba_open(string path, string mode [, string handler [, mixed ...]]) |Open database (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  488. bool dba_optimize(resource handle) |Optimize database (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  489. resource dba_popen(string path, string mode [, string handler [, mixed ...]]) |Open database persistently (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  490. bool dba_replace(string key, string value, resource handle) |Replace or insert entry (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  491. bool dba_sync(resource handle) |Synchronize database (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  492. bool dbase_add_record(int dbase_identifier, array record) |Adds a record to a database (PHP 3, PHP 4, PHP 5)
  493. bool dbase_close(int dbase_identifier) |Closes a database (PHP 3, PHP 4, PHP 5)
  494. int dbase_create(string filename, array fields) |Creates a database (PHP 3, PHP 4, PHP 5)
  495. bool dbase_delete_record(int dbase_identifier, int record_number) |Deletes a record from a database (PHP 3, PHP 4, PHP 5)
  496. array dbase_get_header_info(int dbase_identifier) |Gets the header info of a database (PHP 5)
  497. array dbase_get_record_with_names(int dbase_identifier, int record_number) |Gets a record from a database as an associative array (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  498. array dbase_get_record(int dbase_identifier, int record_number) |Gets a record from a database as an indexed array (PHP 3, PHP 4, PHP 5)
  499. int dbase_numfields(int dbase_identifier) |Gets the number of fields of a database (PHP 3, PHP 4, PHP 5)
  500. int dbase_numrecords(int dbase_identifier) |Gets the number of records in a database (PHP 3, PHP 4, PHP 5)
  501. int dbase_open(string filename, int mode) |Opens a database (PHP 3, PHP 4, PHP 5)
  502. bool dbase_pack(int dbase_identifier) |Packs a database (PHP 3, PHP 4, PHP 5)
  503. bool dbase_replace_record(int dbase_identifier, array record, int record_number) |Replaces a record in a database (PHP 3 >= 3.0.11, PHP 4, PHP 5)
  504. string dblist() |Describes the DBM-compatible library being used (PHP 3, PHP 4, PECL)
  505. bool dbmclose(resource dbm_identifier) |Closes a dbm database (PHP 3, PHP 4, PECL)
  506. bool dbmdelete(resource dbm_identifier, string key) |Deletes the value for a key from a DBM database (PHP 3, PHP 4, PECL)
  507. bool dbmexists(resource dbm_identifier, string key) |Tells if a value exists for a key in a DBM database (PHP 3, PHP 4, PECL)
  508. string dbmfetch(resource dbm_identifier, string key) |Fetches a value for a key from a DBM database (PHP 3, PHP 4, PECL)
  509. string dbmfirstkey(resource dbm_identifier) |Retrieves the first key from a DBM database (PHP 3, PHP 4, PECL)
  510. int dbminsert(resource dbm_identifier, string key, string value) |Inserts a value for a key in a DBM database (PHP 3, PHP 4, PECL)
  511. string dbmnextkey(resource dbm_identifier, string key) |Retrieves the next key from a DBM database (PHP 3, PHP 4, PECL)
  512. resource dbmopen(string filename, string flags) |Opens a DBM database (PHP 3, PHP 4, PECL)
  513. int dbmreplace(resource dbm_identifier, string key, string value) |Replaces the value for a key in a DBM database (PHP 3, PHP 4, PECL)
  514. int dbplus_add(resource relation, array tuple) |Add a tuple to a relation (4.1.0 - 4.2.3 only, PECL)
  515. resource dbplus_aql(string query [, string server [, string dbpath]]) |Perform AQL query (4.1.0 - 4.2.3 only, PECL)
  516. string dbplus_chdir([string newdir]) |Get/Set database virtual current directory (4.1.0 - 4.2.3 only, PECL)
  517. mixed dbplus_close(resource relation) |Close a relation (4.1.0 - 4.2.3 only, PECL)
  518. int dbplus_curr(resource relation, array &tuple) |Get current tuple from relation (4.1.0 - 4.2.3 only, PECL)
  519. string dbplus_errcode([int errno]) |Get error string for given errorcode or last error (4.1.0 - 4.2.3 only, PECL)
  520. int dbplus_errno() |Get error code for last operation (4.1.0 - 4.2.3 only, PECL)
  521. int dbplus_find(resource relation, array constraints, mixed tuple) |Set a constraint on a relation (4.1.0 - 4.2.3 only, PECL)
  522. int dbplus_first(resource relation, array &tuple) |Get first tuple from relation (4.1.0 - 4.2.3 only, PECL)
  523. int dbplus_flush(resource relation) |Flush all changes made on a relation (4.1.0 - 4.2.3 only, PECL)
  524. int dbplus_freealllocks() |Free all locks held by this client (4.1.0 - 4.2.3 only, PECL)
  525. int dbplus_freelock(resource relation, string tname) |Release write lock on tuple (4.1.0 - 4.2.3 only, PECL)
  526. int dbplus_freerlocks(resource relation) |Free all tuple locks on given relation (4.1.0 - 4.2.3 only, PECL)
  527. int dbplus_getlock(resource relation, string tname) |Get a write lock on a tuple (4.1.0 - 4.2.3 only, PECL)
  528. int dbplus_getunique(resource relation, int uniqueid) |Get an id number unique to a relation (4.1.0 - 4.2.3 only, PECL)
  529. int dbplus_info(resource relation, string key, array &result) |Get information about a relation (4.1.0 - 4.2.3 only, PECL)
  530. int dbplus_last(resource relation, array &tuple) |Get last tuple from relation (4.1.0 - 4.2.3 only, PECL)
  531. int dbplus_lockrel(resource relation) |Request write lock on relation
  532. int dbplus_next(resource relation, array &tuple) |Get next tuple from relation (4.1.0 - 4.2.3 only, PECL)
  533. resource dbplus_open(string name) |Open relation file (4.1.0 - 4.2.3 only, PECL)
  534. int dbplus_prev(resource relation, array &tuple) |Get previous tuple from relation (4.1.0 - 4.2.3 only, PECL)
  535. int dbplus_rchperm(resource relation, int mask, string user, string group) |Change relation permissions (4.1.0 - 4.2.3 only, PECL)
  536. resource dbplus_rcreate(string name, mixed domlist [, bool overwrite]) |Creates a new DB++ relation (4.1.0 - 4.2.3 only, PECL)
  537. mixed dbplus_rcrtexact(string name, resource relation [, bool overwrite]) |Creates an exact but empty copy of a relation including indices (4.1.0 - 4.2.3 only, PECL)
  538. mixed dbplus_rcrtlike(string name, resource relation [, int overwrite]) |Creates an empty copy of a relation with default indices (4.1.0 - 4.2.3 only, PECL)
  539. array dbplus_resolve(string relation_name) |Resolve host information for relation (4.1.0 - 4.2.3 only, PECL)
  540. int dbplus_restorepos(resource relation, array tuple) |Restore position (4.1.0 - 4.2.3 only, PECL)
  541. mixed dbplus_rkeys(resource relation, mixed domlist) |Specify new primary key for a relation (4.1.0 - 4.2.3 only, PECL)
  542. resource dbplus_ropen(string name) |Open relation file local (4.1.0 - 4.2.3 only, PECL)
  543. resource dbplus_rquery(string query [, string dbpath]) |Perform local (raw) AQL query (4.1.0 - 4.2.3 only, PECL)
  544. int dbplus_rrename(resource relation, string name) |Rename a relation (4.1.0 - 4.2.3 only, PECL)
  545. mixed dbplus_rsecindex(resource relation, mixed domlist, int type) |Create a new secondary index for a relation (4.1.0 - 4.2.3 only, PECL)
  546. int dbplus_runlink(resource relation) |Remove relation from filesystem (4.1.0 - 4.2.3 only, PECL)
  547. int dbplus_rzap(resource relation) |Remove all tuples from relation (4.1.0 - 4.2.3 only, PECL)
  548. int dbplus_savepos(resource relation) |Save position (4.1.0 - 4.2.3 only, PECL)
  549. int dbplus_setindex(resource relation, string idx_name) |Set index (4.1.0 - 4.2.3 only, PECL)
  550. int dbplus_setindexbynumber(resource relation, int idx_number) |Set index by number (4.1.0 - 4.2.3 only, PECL)
  551. resource dbplus_sql(string query [, string server [, string dbpath]]) |Perform SQL query (4.1.0 - 4.2.3 only, PECL)
  552. string dbplus_tcl(int sid, string script) |Execute TCL code on server side (4.1.0 - 4.2.3 only, PECL)
  553. int dbplus_tremove(resource relation, array tuple [, array ¤t]) |Remove tuple and return new current tuple (4.1.0 - 4.2.3 only, PECL)
  554. int dbplus_undo(resource relation) |Undo (4.1.0 - 4.2.3 only, PECL)
  555. int dbplus_undoprepare(resource relation) |Prepare undo (4.1.0 - 4.2.3 only, PECL)
  556. int dbplus_unlockrel(resource relation) |Give up write lock on relation (4.1.0 - 4.2.3 only, PECL)
  557. int dbplus_unselect(resource relation) |Remove a constraint from relation (4.1.0 - 4.2.3 only, PECL)
  558. int dbplus_update(resource relation, array old, array new) |Update specified tuple in relation (4.1.0 - 4.2.3 only, PECL)
  559. int dbplus_xlockrel(resource relation) |Request exclusive lock on relation (4.1.0 - 4.2.3 only, PECL)
  560. int dbplus_xunlockrel(resource relation) |Free exclusive lock on relation (4.1.0 - 4.2.3 only, PECL)
  561. bool dbx_close(object link_identifier) |Close an open connection/database (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  562. int dbx_compare(array row_a, array row_b, string column_key [, int flags]) |Compare two rows for sorting purposes (PHP 4 >= 4.1.0, PHP 5 <= 5.0.4)
  563. object dbx_connect(mixed module, string host, string database, string username, string password [, int persistent]) |Open a connection/database (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  564. string dbx_error(object link_identifier) |Report the error message of the latest function call in the module (not just in the connection) (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  565. string dbx_escape_string(object link_identifier, string text) |Escape a string so it can safely be used in an sql-statement (PHP 4 >= 4.3.0, PHP 5 <= 5.0.4)
  566. mixed dbx_fetch_row(object result_identifier) |Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set (PHP 5 <= 5.0.4)
  567. mixed dbx_query(object link_identifier, string sql_statement [, int flags]) |Send a query and fetch all results (if any) (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  568. bool dbx_sort(object result, string user_compare_function) |Sort a result from a dbx_query by a custom sort function (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  569. string dcgettext(string domain, string message, int category) |Overrides the domain for a single lookup (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  570. string dcngettext(string domain, string msgid1, string msgid2, int n, int category) |Plural version of dcgettext (PHP 4 >= 4.2.0, PHP 5)
  571. void deaggregate(object object [, string class_name]) |Removes the aggregated methods and properties from an object (PHP 4 >= 4.2.0)
  572. array debug_backtrace() |Generates a backtrace (PHP 4 >= 4.3.0, PHP 5)
  573. void debug_print_backtrace() |Prints a backtrace (PHP 5)
  574. void debug_zval_dump(mixed variable) |Dumps a string representation of an internal zend value to output (PHP 4 >= 4.2.0, PHP 5)
  575. int debugger_off() |Disable internal PHP debugger (PHP 3) (PHP 3)
  576. int debugger_on(string address) |Enable internal PHP debugger (PHP 3) (PHP 3)
  577. string decbin(int number) |Decimal to binary (PHP 3, PHP 4, PHP 5)
  578. string dechex(int number) |Decimal to hexadecimal (PHP 3, PHP 4, PHP 5)
  579. string decoct(int number) |Decimal to octal (PHP 3, PHP 4, PHP 5)
  580. void define_syslog_variables() |Initializes all syslog related constants (PHP 3, PHP 4, PHP 5)
  581. bool define(string name, mixed value [, bool case_insensitive]) |Defines a named constant (PHP 3, PHP 4, PHP 5)
  582. bool defined(string name) |Checks whether a given named constant exists (PHP 3, PHP 4, PHP 5)
  583. float deg2rad(float number) |Converts the number in degrees to the radian equivalent (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  584. void delete(string file) |See unlink or unset
  585. string dgettext(string domain, string message) |Override the current domain (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  586. void die([string status]) |Output a message and terminate the current script (PHP 3, PHP 4, PHP 5)
  587. void dio_close(resource fd) |Closes the file descriptor given by fd (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  588. mixed dio_fcntl(resource fd, int cmd [, mixed args]) |Performs a c library fcntl on fd (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  589. resource dio_open(string filename, int flags [, int mode]) |Opens a new filename with specified permissions of flags and creation permissions of mode (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  590. string dio_read(resource fd [, int len]) |Reads bytes from a file descriptor (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  591. int dio_seek(resource fd, int pos [, int whence]) |Seeks to pos on fd from whence (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  592. array dio_stat(resource fd) |Gets stat information about the file descriptor fd (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  593. bool dio_tcsetattr(resource fd, array options) |Sets terminal attributes and baud rate for a serial port (PHP 4 >= 4.3.0, PHP 5 <= 5.0.4)
  594. bool dio_truncate(resource fd, int offset) |Truncates file descriptor fd to offset bytes (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  595. int dio_write(resource fd, string data [, int len]) |Writes data to fd with optional truncation at length (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  596. DirectoryIterator DirectoryIterator::__construct(string path) |Constructs a new dir iterator from a path
  597. DirectoryIterator DirectoryIterator::current() |Return this (needed for Iterator interface)
  598. int DirectoryIterator::getATime() |Get last access time of file
  599. RecursiveDirectoryIterator DirectoryIterator::getChildren() |Returns an iterator for the current entry if it is a directory
  600. int DirectoryIterator::getCTime() |Get inode modification time of file
  601. string DirectoryIterator::getFilename() |Return filename of current dir entry
  602. int DirectoryIterator::getGroup() |Get file group
  603. int DirectoryIterator::getInode() |Get file inode
  604. int DirectoryIterator::getMTime() |Get last modification time of file
  605. int DirectoryIterator::getOwner() |Get file owner
  606. string DirectoryIterator::getPath() |Return directory path
  607. string DirectoryIterator::getPathname() |Return path and filename of current dir entry
  608. int DirectoryIterator::getPerms() |Get file permissions
  609. int DirectoryIterator::getSize() |Get file size
  610. string DirectoryIterator::getType() |Get file type
  611. bool DirectoryIterator::isDir() |Returns true if file is directory
  612. bool DirectoryIterator::isDot() |Returns true if current entry is '.' or '..'
  613. bool DirectoryIterator::isExecutable() |Returns true if file is executable
  614. bool DirectoryIterator::isFile() |Returns true if file is a regular file
  615. bool DirectoryIterator::isLink() |Returns true if file is symbolic link
  616. bool DirectoryIterator::isReadable() |Returns true if file can be read
  617. bool DirectoryIterator::isWritable() |Returns true if file can be written
  618. string DirectoryIterator::key() |Return current dir entry
  619. void DirectoryIterator::next() |Move to next entry
  620. void DirectoryIterator::rewind() |Rewind dir back to the start
  621. string DirectoryIterator::valid() |Check whether dir contains more entries
  622. string dirname(string path) |Returns directory name component of path (PHP 3, PHP 4, PHP 5)
  623. float disk_free_space(string directory) |Returns available space in directory (PHP 4 >= 4.1.0, PHP 5)
  624. float disk_total_space(string directory) |Returns the total size of a directory (PHP 4 >= 4.1.0, PHP 5)
  625. float diskfreespace(string directory) |Returns available space in directory (PHP 4 >= 4.1.0, PHP 5)
  626. int dl(string library) |Loads a PHP extension at runtime (PHP 3, PHP 4, PHP 5)
  627. string dngettext(string domain, string msgid1, string msgid2, int n) |Plural version of dgettext (PHP 4 >= 4.2.0, PHP 5)
  628. bool dns_check_record(string host [, string type]) |Synonym for checkdnsrr (PHP 5)
  629. bool dns_get_mx(string hostname, array &mxhosts [, array &weight]) |Synonym for getmxrr (PHP 5)
  630. array dns_get_record(string hostname [, int type [, array &authns, array &addtl]]) |Fetch DNS Resource Records associated with a hostname (PHP 5)
  631. int dotnet_load(string assembly_name [, string datatype_name [, int codepage]]) |Loads a DOTNET module
  632. float doubleval(mixed var) |Get float value of a variable (PHP 4 >= 4.2.0, PHP 5)
  633. array each(array &array) |Return the current key and value pair from an array and advance the array cursor (PHP 3, PHP 4, PHP 5)
  634. int easter_date([int year]) |Get Unix timestamp for midnight on Easter of a given year (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  635. int easter_days([int year [, int method]]) |Get number of days after March 21 on which Easter falls for a given year (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  636. int ebcdic2ascii(string ebcdic_str) |Translate string from EBCDIC to ASCII (PHP 3 >= 3.0.17)
  637. void echo |Output one or more strings (PHP 3, PHP 4, PHP 5)
  638. bool empty(mixed var) |Determine whether a variable is empty (PHP 3, PHP 4, PHP 5)
  639. mixed end(array &array) |Set the internal pointer of an array to its last element (PHP 3, PHP 4, PHP 5)
  640. string ereg_replace(string pattern, string replacement, string string) |Replace regular expression (PHP 3, PHP 4, PHP 5)
  641. int ereg(string pattern, string string [, array ®s]) |Regular expression match (PHP 3, PHP 4, PHP 5)
  642. string eregi_replace(string pattern, string replacement, string string) |Replace regular expression case insensitive (PHP 3, PHP 4, PHP 5)
  643. int eregi(string pattern, string string [, array ®s]) |Case insensitive regular expression match (PHP 3, PHP 4, PHP 5)
  644. bool error_log(string message [, int message_type [, string destination [, string extra_headers]]]) |Send an error message somewhere (PHP 3, PHP 4, PHP 5)
  645. int error_reporting([int level]) |Sets which PHP errors are reported (PHP 3, PHP 4, PHP 5)
  646. string escapeshellarg(string arg) |Escape a string to be used as a shell argument (PHP 4 >= 4.0.3, PHP 5)
  647. string escapeshellcmd(string command) |Escape shell metacharacters (PHP 3, PHP 4, PHP 5)
  648. mixed eval(string code_str) |Evaluate a string as PHP code (PHP 3, PHP 4, PHP 5)
  649. string exec(string command [, array &output [, int &return_var]]) |Execute an external program (PHP 3, PHP 4, PHP 5)
  650. int exif_imagetype(string filename) |Determine the type of an image (PHP 4 >= 4.3.0, PHP 5)
  651. array exif_read_data(string filename [, string sections [, bool arrays [, bool thumbnail]]]) |Reads the EXIF headers from JPEG or TIFF (PHP 4 >= 4.2.0, PHP 5)
  652. string exif_tagname(string index) |Get the header name for an index (PHP 4 >= 4.2.0, PHP 5)
  653. string exif_thumbnail(string filename [, int &width [, int &height [, int &imagetype]]]) |Retrieve the embedded thumbnail of a TIFF or JPEG image (PHP 4 >= 4.2.0, PHP 5)
  654. void exit([string status]) |Output a message and terminate the current script (PHP 3, PHP 4, PHP 5)
  655. float exp(float arg) |Calculates the exponent of e (the Neperian or Natural logarithm base) (PHP 3, PHP 4, PHP 5)
  656. mixed expect_expectl(resource expect, array cases) |Waits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen
  657. resource expect_popen(string command) |Exectute command via Bourne shell, and open the PTY stream to the process
  658. array explode(string separator, string string [, int limit]) |Split a string by string (PHP 3, PHP 4, PHP 5)
  659. float expm1(float number) |Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero (PHP 4 >= 4.1.0, PHP 5)
  660. bool extension_loaded(string name) |Find out whether an extension is loaded (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  661. int extract(array var_array [, int extract_type [, string prefix]]) |Import variables into the current symbol table from an array (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  662. int ezmlm_hash(string addr) |Calculate the hash value needed by EZMLM (PHP 3 >= 3.0.17, PHP 4 >= 4.0.2, PHP 5)
  663. bool fam_cancel_monitor(resource fam, resource fam_monitor) |Terminate monitoring (PHP 5 <= 5.0.4)
  664. void fam_close(resource fam) |Close FAM connection (PHP 5 <= 5.0.4)
  665. resource fam_monitor_collection(resource fam, string dirname, int depth, string mask) |Monitor a collection of files in a directory for changes (PHP 5 <= 5.0.4)
  666. resource fam_monitor_directory(resource fam, string dirname) |Monitor a directory for changes (PHP 5 <= 5.0.4)
  667. resource fam_monitor_file(resource fam, string filename) |Monitor a regular file for changes (PHP 5 <= 5.0.4)
  668. array fam_next_event(resource fam) |Get next pending FAM event (PHP 5 <= 5.0.4)
  669. resource fam_open([string appname]) |Open connection to FAM daemon (PHP 5 <= 5.0.4)
  670. int fam_pending(resource fam) |Check for pending FAM events (PHP 5 <= 5.0.4)
  671. bool fam_resume_monitor(resource fam, resource fam_monitor) |Resume suspended monitoring (PHP 5 <= 5.0.4)
  672. bool fam_suspend_monitor(resource fam, resource fam_monitor) |Temporarily suspend monitoring (PHP 5 <= 5.0.4)
  673. int fbsql_affected_rows([resource link_identifier ]) |Get number of affected rows in previous FrontBase operation (PHP 4 >= 4.0.6, PHP 5)
  674. bool fbsql_autocommit(resource link_identifier [, bool OnOff]) |Enable or disable autocommit (PHP 4 >= 4.0.6, PHP 5)
  675. int fbsql_blob_size(string blob_handle [, resource link_identifier]) |Get the size of a BLOB (PHP 4 >= 4.2.0, PHP 5)
  676. resource fbsql_change_user(string user, string password [, string database [, resource link_identifier ]]) |Change logged in user of the active connection
  677. int fbsql_clob_size(string clob_handle [, resource link_identifier]) |Get the size of a CLOB (PHP 4 >= 4.2.0, PHP 5)
  678. bool fbsql_close([resource link_identifier ]) |Close FrontBase connection (PHP 4 >= 4.0.6, PHP 5)
  679. bool fbsql_commit([resource link_identifier ]) |Commits a transaction to the database (PHP 4 >= 4.0.6, PHP 5)
  680. resource fbsql_connect([string hostname [, string username [, string password]]]) |Open a connection to a FrontBase Server (PHP 4 >= 4.0.6, PHP 5)
  681. string fbsql_create_blob(string blob_data [, resource link_identifier ]) |Create a BLOB (PHP 4 >= 4.2.0, PHP 5)
  682. string fbsql_create_clob(string clob_data [, resource link_identifier ]) |Create a CLOB (PHP 4 >= 4.2.0, PHP 5)
  683. bool fbsql_create_db(string database_name [, resource link_identifier [, string database_options]]) |Create a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
  684. bool fbsql_data_seek(resource result_identifier, int row_number) |Move internal result pointer (PHP 4 >= 4.0.6, PHP 5)
  685. string fbsql_database_password(resource link_identifier [, string database_password ]) |Sets or retrieves the password for a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
  686. string fbsql_database(resource link_identifier [, string database]) |Get or set the database name used with a connection (PHP 4 >= 4.0.6, PHP 5)
  687. resource fbsql_db_query(string database, string query [, resource link_identifier ]) |Send a FrontBase query (PHP 4 >= 4.0.6, PHP 5)
  688. int fbsql_db_status(string database_name [, resource link_identifier ]) |Get the status for a given database (PHP 4 >= 4.1.0, PHP 5)
  689. bool fbsql_drop_db(string database_name [, resource link_identifier ]) |Drop (delete) a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
  690. int fbsql_errno([resource link_identifier ]) |Returns the numerical value of the error message from previous FrontBase operation (PHP 4 >= 4.0.6, PHP 5)
  691. string fbsql_error([resource link_identifier ]) |Returns the text of the error message from previous FrontBase operation (PHP 4 >= 4.0.6, PHP 5)
  692. array fbsql_fetch_array(resource result [, int result_type ]) |Fetch a result row as an associative array, a numeric array, or both (PHP 4 >= 4.0.6, PHP 5)
  693. array fbsql_fetch_assoc(resource result) |Fetch a result row as an associative array (PHP 4 >= 4.0.6, PHP 5)
  694. object fbsql_fetch_field(resource result [, int field_offset ]) |Get column information from a result and return as an object (PHP 4 >= 4.0.6, PHP 5)
  695. array fbsql_fetch_lengths(resource result) |Get the length of each output in a result (PHP 4 >= 4.0.6, PHP 5)
  696. object fbsql_fetch_object(resource result [, int result_type ]) |Fetch a result row as an object (PHP 4 >= 4.0.6, PHP 5)
  697. array fbsql_fetch_row(resource result) |Get a result row as an enumerated array (PHP 4 >= 4.0.6, PHP 5)
  698. string fbsql_field_flags(resource result [, int field_offset]) |Get the flags associated with the specified field in a result (PHP 4 >= 4.0.6, PHP 5)
  699. int fbsql_field_len(resource result [, int field_offset]) |Returns the length of the specified field (PHP 4 >= 4.0.6, PHP 5)
  700. string fbsql_field_name(resource result [, int field_index]) |Get the name of the specified field in a result (PHP 4 >= 4.0.6, PHP 5)
  701. bool fbsql_field_seek(resource result [, int field_offset]) |Set result pointer to a specified field offset (PHP 4 >= 4.0.6, PHP 5)
  702. string fbsql_field_table(resource result [, int field_offset]) |Get name of the table the specified field is in (PHP 4 >= 4.0.6, PHP 5)
  703. string fbsql_field_type(resource result [, int field_offset]) |Get the type of the specified field in a result (PHP 4 >= 4.0.6, PHP 5)
  704. bool fbsql_free_result(resource result) |Free result memory (PHP 4 >= 4.0.6, PHP 5)
  705. array fbsql_get_autostart_info([resource link_identifier]) |No description given yet (PHP 4 >= 4.1.0, PHP 5)
  706. string fbsql_hostname(resource link_identifier [, string host_name]) |Get or set the host name used with a connection (PHP 4 >= 4.0.6, PHP 5)
  707. int fbsql_insert_id([resource link_identifier ]) |Get the id generated from the previous INSERT operation (PHP 4 >= 4.0.6, PHP 5)
  708. resource fbsql_list_dbs([resource link_identifier ]) |List databases available on a FrontBase server (PHP 4 >= 4.0.6, PHP 5)
  709. resource fbsql_list_fields(string database_name, string table_name [, resource link_identifier ]) |List FrontBase result fields (PHP 4 >= 4.0.6, PHP 5)
  710. resource fbsql_list_tables(string database [, resource link_identifier ]) |List tables in a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
  711. bool fbsql_next_result(resource result_id) |Move the internal result pointer to the next result (PHP 4 >= 4.0.6, PHP 5)
  712. int fbsql_num_fields(resource result) |Get number of fields in result (PHP 4 >= 4.0.6, PHP 5)
  713. int fbsql_num_rows(resource result) |Get number of rows in result (PHP 4 >= 4.0.6, PHP 5)
  714. string fbsql_password(resource link_identifier [, string password]) |Get or set the user password used with a connection (PHP 4 >= 4.0.6, PHP 5)
  715. resource fbsql_pconnect([string hostname [, string username [, string password]]]) |Open a persistent connection to a FrontBase Server (PHP 4 >= 4.0.6, PHP 5)
  716. resource fbsql_query(string query [, resource link_identifier [, int batch_size]]) |Send a FrontBase query (PHP 4 >= 4.0.6, PHP 5)
  717. string fbsql_read_blob(string blob_handle [, resource link_identifier ]) |Read a BLOB from the database (PHP 4 >= 4.2.0, PHP 5)
  718. string fbsql_read_clob(string clob_handle [, resource link_identifier ]) |Read a CLOB from the database (PHP 4 >= 4.2.0, PHP 5)
  719. mixed fbsql_result(resource result [, int row [, mixed field]]) |Get result data (PHP 4 >= 4.0.6, PHP 5)
  720. bool fbsql_rollback([resource link_identifier ]) |Rollback a transaction to the database (PHP 4 >= 4.0.6, PHP 5)
  721. bool fbsql_select_db([string database_name [, resource link_identifier]]) |Select a FrontBase database (PHP 4 >= 4.0.6, PHP 5)
  722. bool fbsql_set_lob_mode(resource result, string database_name) |Set the LOB retrieve mode for a FrontBase result set (PHP 4 >= 4.2.0, PHP 5)
  723. bool fbsql_set_password(resource link_identifier, string user, string password, string old_password) |Change the password for a given user (PHP 5)
  724. void fbsql_set_transaction(resource link_identifier, int Locking, int Isolation) |Set the transaction locking and isolation (PHP 4 >= 4.2.0, PHP 5)
  725. bool fbsql_start_db(string database_name [, resource link_identifier [, string database_options]]) |Start a database on local or remote server (PHP 4 >= 4.0.6, PHP 5)
  726. bool fbsql_stop_db(string database_name [, resource link_identifier ]) |Stop a database on local or remote server (PHP 4 >= 4.0.6, PHP 5)
  727. string fbsql_tablename(resource result, int i) |Get table name of field (PHP 4 >= 4.2.0, PHP 5)
  728. string fbsql_username(resource link_identifier [, string username]) |Get or set the host user used with a connection (PHP 4 >= 4.0.6, PHP 5)
  729. bool fbsql_warnings([bool OnOff ]) |Enable or disable FrontBase warnings (PHP 4 >= 4.0.6, PHP 5)
  730. bool fclose(resource handle) |Closes an open file pointer (PHP 3, PHP 4, PHP 5)
  731. bool fdf_add_doc_javascript(resource fdfdoc, string script_name, string script_code) |Adds javascript code to the FDF document (PHP 4 >= 4.3.0, PHP 5)
  732. bool fdf_add_template(resource fdfdoc, int newpage, string filename, string template, int rename) |Adds a template into the FDF document (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  733. void fdf_close(resource fdf_document) |Close an FDF document (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  734. resource fdf_create() |Create a new FDF document (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  735. bool fdf_enum_values(resource fdfdoc, callback function [, mixed userdata]) |Call a user defined function for each document value (PHP 4 >= 4.3.0, PHP 5)
  736. int fdf_errno() |Return error code for last fdf operation (PHP 4 >= 4.3.0, PHP 5)
  737. string fdf_error([int error_code]) |Return error description for fdf error code (PHP 4 >= 4.3.0, PHP 5)
  738. bool fdf_get_ap(resource fdf_document, string field, int face, string filename) |Get the appearance of a field (PHP 4 >= 4.3.0, PHP 5)
  739. array fdf_get_attachment(resource fdf_document, string fieldname, string savepath) |Extracts uploaded file embedded in the FDF (PHP 4 >= 4.3.0, PHP 5)
  740. string fdf_get_encoding(resource fdf_document) |Get the value of the /Encoding key (PHP 4 >= 4.3.0, PHP 5)
  741. string fdf_get_file(resource fdf_document) |Get the value of the /F key (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  742. int fdf_get_flags(resource fdfdoc, string fieldname, int whichflags) |Gets the flags of a field (PHP 4 >= 4.3.0, PHP 5)
  743. mixed fdf_get_opt(resource fdfdof, string fieldname [, int element]) |Gets a value from the opt array of a field (PHP 4 >= 4.3.0, PHP 5)
  744. string fdf_get_status(resource fdf_document) |Get the value of the /STATUS key (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  745. mixed fdf_get_value(resource fdf_document, string fieldname [, int which]) |Get the value of a field (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  746. string fdf_get_version([resource fdf_document]) |Gets version number for FDF API or file (PHP 4 >= 4.3.0, PHP 5)
  747. void fdf_header() |Sets FDF-specific output headers (PHP 4 >= 4.3.0, PHP 5)
  748. string fdf_next_field_name(resource fdf_document [, string fieldname]) |Get the next field name (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  749. resource fdf_open_string(string fdf_data) |Read a FDF document from a string (PHP 4 >= 4.3.0, PHP 5)
  750. resource fdf_open(string filename) |Open a FDF document (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  751. bool fdf_remove_item(resource fdfdoc, string fieldname, int item) |Sets target frame for form (PHP 4 >= 4.3.0, PHP 5)
  752. string fdf_save_string(resource fdf_document) |Returns the FDF document as a string (PHP 4 >= 4.3.0, PHP 5)
  753. bool fdf_save(resource fdf_document [, string filename]) |Save a FDF document (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  754. bool fdf_set_ap(resource fdf_document, string field_name, int face, string filename, int page_number) |Set the appearance of a field (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  755. bool fdf_set_encoding(resource fdf_document, string encoding) |Sets FDF character encoding (PHP 4 >= 4.1.0, PHP 5)
  756. bool fdf_set_file(resource fdf_document, string url [, string target_frame]) |Set PDF document to display FDF data in (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  757. bool fdf_set_flags(resource fdf_document, string fieldname, int whichFlags, int newFlags) |Sets a flag of a field (PHP 4 >= 4.0.2, PHP 5)
  758. bool fdf_set_javascript_action(resource fdf_document, string fieldname, int trigger, string script) |Sets an javascript action of a field (PHP 4 >= 4.0.2, PHP 5)
  759. bool fdf_set_on_import_javascript(resource fdfdoc, string script, bool before_data_import) |Adds javascript code to be executed when Acrobat opens the FDF (PHP 4 >= 4.3.0, PHP 5)
  760. bool fdf_set_opt(resource fdf_document, string fieldname, int element, string str1, string str2) |Sets an option of a field (PHP 4 >= 4.0.2, PHP 5)
  761. bool fdf_set_status(resource fdf_document, string status) |Set the value of the /STATUS key (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  762. bool fdf_set_submit_form_action(resource fdf_document, string fieldname, int trigger, string script, int flags) |Sets a submit form action of a field (PHP 4 >= 4.0.2, PHP 5)
  763. bool fdf_set_target_frame(resource fdf_document, string frame_name) |Set target frame for form display (PHP 4 >= 4.3.0, PHP 5)
  764. bool fdf_set_value(resource fdf_document, string fieldname, mixed value [, int isName]) |Set the value of a field (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  765. bool fdf_set_version(resource fdf_document, string version) |Sets version number for a FDF file (PHP 4 >= 4.3.0, PHP 5)
  766. bool feof(resource handle) |Tests for end-of-file on a file pointer (PHP 3, PHP 4, PHP 5)
  767. bool fflush(resource handle) |Flushes the output to a file (PHP 4 >= 4.0.1, PHP 5)
  768. string fgetc(resource handle) |Gets character from file pointer (PHP 3, PHP 4, PHP 5)
  769. array fgetcsv(resource handle [, int length [, string delimiter [, string enclosure]]]) |Gets line from file pointer and parse for CSV fields (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  770. string fgets(resource handle [, int length]) |Gets line from file pointer (PHP 3, PHP 4, PHP 5)
  771. string fgetss(resource handle [, int length [, string allowable_tags]]) |Gets line from file pointer and strip HTML tags (PHP 3, PHP 4, PHP 5)
  772. bool file_exists(string filename) |Checks whether a file or directory exists (PHP 3, PHP 4, PHP 5)
  773. string file_get_contents(string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]]) |Reads entire file into a string (PHP 4 >= 4.3.0, PHP 5)
  774. int file_put_contents(string filename, mixed data [, int flags [, resource context]]) |Write a string to a file (PHP 5)
  775. array file(string filename [, int use_include_path [, resource context]]) |Reads entire file into an array (PHP 3, PHP 4, PHP 5)
  776. int fileatime(string filename) |Gets last access time of file (PHP 3, PHP 4, PHP 5)
  777. int filectime(string filename) |Gets inode change time of file (PHP 3, PHP 4, PHP 5)
  778. int filegroup(string filename) |Gets file group (PHP 3, PHP 4, PHP 5)
  779. int fileinode(string filename) |Gets file inode (PHP 3, PHP 4, PHP 5)
  780. int filemtime(string filename) |Gets file modification time (PHP 3, PHP 4, PHP 5)
  781. int fileowner(string filename) |Gets file owner (PHP 3, PHP 4, PHP 5)
  782. int fileperms(string filename) |Gets file permissions (PHP 3, PHP 4, PHP 5)
  783. int filepro_fieldcount() |Find out how many fields are in a filePro database (PHP 3, PHP 4, PHP 5)
  784. string filepro_fieldname(int field_number) |Gets the name of a field (PHP 3, PHP 4, PHP 5)
  785. string filepro_fieldtype(int field_number) |Gets the type of a field (PHP 3, PHP 4, PHP 5)
  786. int filepro_fieldwidth(int field_number) |Gets the width of a field (PHP 3, PHP 4, PHP 5)
  787. string filepro_retrieve(int row_number, int field_number) |Retrieves data from a filePro database (PHP 3, PHP 4, PHP 5)
  788. int filepro_rowcount() |Find out how many rows are in a filePro database (PHP 3, PHP 4, PHP 5)
  789. bool filepro(string directory) |Read and verify the map file (PHP 3, PHP 4, PHP 5)
  790. int filesize(string filename) |Gets file size (PHP 3, PHP 4, PHP 5)
  791. string filetype(string filename) |Gets file type (PHP 3, PHP 4, PHP 5)
  792. mixed FilterIterator::current() |Get the current element value
  793. Iterator FilterIterator::getInnerIterator() |Get the inner iterator
  794. mixed FilterIterator::key() |Get the current key
  795. void FilterIterator::next() |Move the iterator forward
  796. void FilterIterator::rewind() |Rewind the iterator
  797. bool FilterIterator::valid() |Check whether the current element is valid
  798. float floatval(mixed var) |Get float value of a variable (PHP 4 >= 4.2.0, PHP 5)
  799. bool flock(resource handle, int operation [, int &wouldblock]) |Portable advisory file locking (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  800. float floor(float value) |Round fractions down (PHP 3, PHP 4, PHP 5)
  801. void flush() |Flush the output buffer (PHP 3, PHP 4, PHP 5)
  802. float fmod(float x, float y) |Returns the floating point remainder (modulo) of the division of the arguments (PHP 4 >= 4.2.0, PHP 5)
  803. bool fnmatch(string pattern, string string [, int flags]) |Match filename against a pattern (PHP 4 >= 4.3.0, PHP 5)
  804. resource fopen(string filename, string mode [, bool use_include_path [, resource zcontext]]) |Opens file or URL (PHP 3, PHP 4, PHP 5)
  805. int fpassthru(resource handle) |Output all remaining data on a file pointer (PHP 3, PHP 4, PHP 5)
  806. int fprintf(resource handle, string format [, mixed args [, mixed ...]]) |Write a formatted string to a stream (PHP 5)
  807. int fputcsv(resource handle [, array fields [, string delimiter [, string enclosure]]]) |Format line as CSV and write to file pointer (PHP 5 >= 5.1.0RC1)
  808. int fputs(resource handle, string string [, int length]) |Binary-safe file write (PHP 3, PHP 4, PHP 5)
  809. string fread(resource handle, int length) |Binary-safe file read (PHP 3, PHP 4, PHP 5)
  810. int frenchtojd(int month, int day, int year) |Converts a date from the French Republican Calendar to a Julian Day Count
  811. string fribidi_log2vis(string str, string direction, int charset) |Convert a logical string to a visual one (PHP 4 >= 4.0.4, PECL)
  812. mixed fscanf(resource handle, string format [, mixed &...]) |Parses input from a file according to a format (PHP 4 >= 4.0.1, PHP 5)
  813. int fseek(resource handle, int offset [, int whence]) |Seeks on a file pointer (PHP 3, PHP 4, PHP 5)
  814. resource fsockopen(string target [, int port [, int &errno [, string &errstr [, float timeout]]]]) |Open Internet or Unix domain socket connection (PHP 3, PHP 4, PHP 5)
  815. array fstat(resource handle) |Gets information about a file using an open file pointer (PHP 4, PHP 5)
  816. int ftell(resource handle) |Tells file pointer read/write position (PHP 3, PHP 4, PHP 5)
  817. int ftok(string pathname, string proj) |Convert a pathname and a project identifier to a System V IPC key (PHP 4 >= 4.2.0, PHP 5)
  818. bool ftp_alloc(resource ftp_stream, int filesize [, string &result]) |Allocates space for a file to be uploaded (PHP 5)
  819. bool ftp_cdup(resource ftp_stream) |Changes to the parent directory (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  820. bool ftp_chdir(resource ftp_stream, string directory) |Changes the current directory on a FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  821. int ftp_chmod(resource ftp_stream, int mode, string filename) |Set permissions on a file via FTP (PHP 5)
  822. bool ftp_close(resource ftp_stream) |Closes an FTP connection (PHP 4 >= 4.2.0, PHP 5)
  823. resource ftp_connect(string host [, int port [, int timeout]]) |Opens an FTP connection (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  824. bool ftp_delete(resource ftp_stream, string path) |Deletes a file on the FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  825. bool ftp_exec(resource ftp_stream, string command) |Requests execution of a program on the FTP server (PHP 4 >= 4.0.3, PHP 5)
  826. bool ftp_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) |Downloads a file from the FTP server and saves to an open file (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  827. bool ftp_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) |Uploads from an open file to the FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  828. mixed ftp_get_option(resource ftp_stream, int option) |Retrieves various runtime behaviours of the current FTP stream (PHP 4 >= 4.2.0, PHP 5)
  829. bool ftp_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) |Downloads a file from the FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  830. bool ftp_login(resource ftp_stream, string username, string password) |Logs in to an FTP connection (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  831. int ftp_mdtm(resource ftp_stream, string remote_file) |Returns the last modified time of the given file (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  832. string ftp_mkdir(resource ftp_stream, string directory) |Creates a directory (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  833. int ftp_nb_continue(resource ftp_stream) |Continues retrieving/sending a file (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
  834. int ftp_nb_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) |Retrieves a file from the FTP server and writes it to an open file (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
  835. int ftp_nb_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) |Stores a file from an open file to the FTP server (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
  836. int ftp_nb_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) |Retrieves a file from the FTP server and writes it to a local file (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
  837. int ftp_nb_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) |Stores a file on the FTP server (non-blocking) (PHP 4 >= 4.3.0, PHP 5)
  838. array ftp_nlist(resource ftp_stream, string directory) |Returns a list of files in the given directory (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  839. bool ftp_pasv(resource ftp_stream, bool pasv) |Turns passive mode on or off (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  840. bool ftp_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) |Uploads a file to the FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  841. string ftp_pwd(resource ftp_stream) |Returns the current directory name (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  842. bool ftp_quit(resource ftp_stream) |Closes an FTP connection (PHP 4 >= 4.2.0, PHP 5)
  843. array ftp_raw(resource ftp_stream, string command) |Sends an arbitrary command to an FTP server (PHP 5)
  844. array ftp_rawlist(resource ftp_stream, string directory [, bool recursive]) |Returns a detailed list of files in the given directory (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  845. bool ftp_rename(resource ftp_stream, string oldname, string newname) |Renames a file or a directory on the FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  846. bool ftp_rmdir(resource ftp_stream, string directory) |Removes a directory (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  847. bool ftp_set_option(resource ftp_stream, int option, mixed value) |Set miscellaneous runtime FTP options (PHP 4 >= 4.2.0, PHP 5)
  848. bool ftp_site(resource ftp_stream, string command) |Sends a SITE command to the server (PHP 3 >= 3.0.15, PHP 4, PHP 5)
  849. int ftp_size(resource ftp_stream, string remote_file) |Returns the size of the given file (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  850. resource ftp_ssl_connect(string host [, int port [, int timeout]]) |Opens an Secure SSL-FTP connection (PHP 4 >= 4.3.0, PHP 5)
  851. string ftp_systype(resource ftp_stream) |Returns the system type identifier of the remote FTP server (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  852. bool ftruncate(resource handle, int size) |Truncates a file to a given length (PHP 4, PHP 5)
  853. mixed func_get_arg(int arg_num) |Return an item from the argument list (PHP 4, PHP 5)
  854. array func_get_args() |Returns an array comprising a function's argument list (PHP 4, PHP 5)
  855. int func_num_args() |Returns the number of arguments passed to the function (PHP 4, PHP 5)
  856. bool function_exists(string function_name) |Return TRUE if the given function has been defined (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  857. int fwrite(resource handle, string string [, int length]) |Binary-safe file write (PHP 3, PHP 4, PHP 5)
  858. array gd_info() |Retrieve information about the currently installed GD library (PHP 4 >= 4.3.0, PHP 5)
  859. mixed get_browser([string user_agent [, bool return_array]]) |Tells what the user's browser is capable of (PHP 3, PHP 4, PHP 5)
  860. string get_cfg_var(string varname) |Gets the value of a PHP configuration option (PHP 3, PHP 4, PHP 5)
  861. array get_class_methods(mixed class_name) |Returns an array of class methods' names (PHP 4, PHP 5)
  862. array get_class_vars(string class_name) |Returns an array of default properties of the class (PHP 4, PHP 5)
  863. string get_class([object obj]) |Returns the name of the class of an object (PHP 4, PHP 5)
  864. string get_current_user() |Gets the name of the owner of the current PHP script (PHP 3, PHP 4, PHP 5)
  865. array get_declared_classes() |Returns an array with the name of the defined classes (PHP 4, PHP 5)
  866. array get_declared_interfaces() |Returns an array of all declared interfaces (PHP 5)
  867. array get_defined_constants([mixed categorize]) |Returns an associative array with the names of all the constants and their values (PHP 4 >= 4.1.0, PHP 5)
  868. array get_defined_functions() |Returns an array of all defined functions (PHP 4 >= 4.0.4, PHP 5)
  869. array get_defined_vars() |Returns an array of all defined variables (PHP 4 >= 4.0.4, PHP 5)
  870. array get_extension_funcs(string module_name) |Returns an array with the names of the functions of a module (PHP 4, PHP 5)
  871. array get_headers(string url [, int format]) |Fetches all the headers sent by the server in response to a HTTP request (PHP 5)
  872. array get_html_translation_table([int table [, int quote_style]]) |Returns the translation table used by htmlspecialchars and htmlentities (PHP 4, PHP 5)
  873. string get_include_path() |Gets the current include_path configuration option (PHP 4 >= 4.3.0, PHP 5)
  874. array get_included_files() |Returns an array with the names of included or required files (PHP 4, PHP 5)
  875. array get_loaded_extensions() |Returns an array with the names of all modules compiled and loaded (PHP 4, PHP 5)
  876. int get_magic_quotes_gpc() |Gets the current configuration setting of magic quotes gpc (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  877. int get_magic_quotes_runtime() |Gets the current active configuration setting of magic_quotes_runtime (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  878. array get_meta_tags(string filename [, bool use_include_path]) |Extracts all meta tag content attributes from a file and returns an array (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  879. array get_object_vars(object obj) |Returns an associative array of object properties (PHP 4, PHP 5)
  880. string get_parent_class([mixed obj]) |Retrieves the parent class name for object or class (PHP 4, PHP 5)
  881. array get_required_files() |Returns an array with the names of included or required files (PHP 4, PHP 5)
  882. string get_resource_type(resource handle) |Returns the resource type (PHP 4 >= 4.0.2, PHP 5)
  883. array getallheaders() |Fetch all HTTP request headers (PHP 3, PHP 4, PHP 5)
  884. string getcwd() |Gets the current working directory (PHP 4, PHP 5)
  885. array getdate([int timestamp]) |Get date/time information (PHP 3, PHP 4, PHP 5)
  886. string getenv(string varname) |Gets the value of an environment variable (PHP 3, PHP 4, PHP 5)
  887. string gethostbyaddr(string ip_address) |Get the Internet host name corresponding to a given IP address (PHP 3, PHP 4, PHP 5)
  888. string gethostbyname(string hostname) |Get the IP address corresponding to a given Internet host name (PHP 3, PHP 4, PHP 5)
  889. array gethostbynamel(string hostname) |Get a list of IP addresses corresponding to a given Internet host name (PHP 3, PHP 4, PHP 5)
  890. array getimagesize(string filename [, array &imageinfo]) |Get the size of an image (PHP 3, PHP 4, PHP 5)
  891. int getlastmod() |Gets time of last page modification (PHP 3, PHP 4, PHP 5)
  892. bool getmxrr(string hostname, array &mxhosts [, array &weight]) |Get MX records corresponding to a given Internet host name (PHP 3, PHP 4, PHP 5)
  893. int getmygid() |Get PHP script owner's GID (PHP 4 >= 4.1.0, PHP 5)
  894. int getmyinode() |Gets the inode of the current script (PHP 3, PHP 4, PHP 5)
  895. int getmypid() |Gets PHP's process ID (PHP 3, PHP 4, PHP 5)
  896. int getmyuid() |Gets PHP script owner's UID (PHP 3, PHP 4, PHP 5)
  897. array getopt(string options) |Gets options from the command line argument list (PHP 4 >= 4.3.0, PHP 5)
  898. int getprotobyname(string name) |Get protocol number associated with protocol name (PHP 4, PHP 5)
  899. string getprotobynumber(int number) |Get protocol name associated with protocol number (PHP 4, PHP 5)
  900. int getrandmax() |Show largest possible random value (PHP 3, PHP 4, PHP 5)
  901. array getrusage([int who]) |Gets the current resource usages (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  902. int getservbyname(string service, string protocol) |Get port number associated with an Internet service and protocol (PHP 4, PHP 5)
  903. string getservbyport(int port, string protocol) |Get Internet service which corresponds to port and protocol (PHP 4, PHP 5)
  904. string gettext(string message) |Lookup a message in the current domain (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  905. mixed gettimeofday([bool return_float]) |Get current time (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  906. string gettype(mixed var) |Get the type of a variable (PHP 3, PHP 4, PHP 5)
  907. array glob(string pattern [, int flags]) |Find pathnames matching a pattern (PHP 4 >= 4.3.0, PHP 5)
  908. string gmdate(string format [, int timestamp]) |Format a GMT/UTC date/time (PHP 3, PHP 4, PHP 5)
  909. int gmmktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) |Get Unix timestamp for a GMT date (PHP 3, PHP 4, PHP 5)
  910. resource gmp_abs(resource a) |Absolute value (PHP 4 >= 4.0.4, PHP 5)
  911. resource gmp_add(resource a, resource b) |Add numbers (PHP 4 >= 4.0.4, PHP 5)
  912. resource gmp_and(resource a, resource b) |Logical AND (PHP 4 >= 4.0.4, PHP 5)
  913. void gmp_clrbit(resource &a, int index) |Clear bit (PHP 4 >= 4.0.4, PHP 5)
  914. int gmp_cmp(resource a, resource b) |Compare numbers (PHP 4 >= 4.0.4, PHP 5)
  915. resource gmp_com(resource a) |Calculates one's complement (PHP 4 >= 4.0.4, PHP 5)
  916. resource gmp_div_q(resource a, resource b [, int round]) |Divide numbers (PHP 4 >= 4.0.4, PHP 5)
  917. array gmp_div_qr(resource n, resource d [, int round]) |Divide numbers and get quotient and remainder (PHP 4 >= 4.0.4, PHP 5)
  918. resource gmp_div_r(resource n, resource d [, int round]) |Remainder of the division of numbers (PHP 4 >= 4.0.4, PHP 5)
  919. resource gmp_div(resource a, resource b [, int round]) |Divide numbers (PHP 4 >= 4.0.4, PHP 5)
  920. resource gmp_divexact(resource n, resource d) |Exact division of numbers (PHP 4 >= 4.0.4, PHP 5)
  921. resource gmp_fact(int a) |Factorial (PHP 4 >= 4.0.4, PHP 5)
  922. resource gmp_gcd(resource a, resource b) |Calculate GCD (PHP 4 >= 4.0.4, PHP 5)
  923. array gmp_gcdext(resource a, resource b) |Calculate GCD and multipliers (PHP 4 >= 4.0.4, PHP 5)
  924. int gmp_hamdist(resource a, resource b) |Hamming distance (PHP 4 >= 4.0.4, PHP 5)
  925. resource gmp_init(mixed number [, int base]) |Create GMP number (PHP 4 >= 4.0.4, PHP 5)
  926. int gmp_intval(resource gmpnumber) |Convert GMP number to integer (PHP 4 >= 4.0.4, PHP 5)
  927. resource gmp_invert(resource a, resource b) |Inverse by modulo (PHP 4 >= 4.0.4, PHP 5)
  928. int gmp_jacobi(resource a, resource p) |Jacobi symbol (PHP 4 >= 4.0.4, PHP 5)
  929. int gmp_legendre(resource a, resource p) |Legendre symbol (PHP 4 >= 4.0.4, PHP 5)
  930. resource gmp_mod(resource n, resource d) |Modulo operation (PHP 4 >= 4.0.4, PHP 5)
  931. resource gmp_mul(resource a, resource b) |Multiply numbers (PHP 4 >= 4.0.4, PHP 5)
  932. resource gmp_neg(resource a) |Negate number (PHP 4 >= 4.0.4, PHP 5)
  933. resource gmp_or(resource a, resource b) |Logical OR (PHP 4 >= 4.0.4, PHP 5)
  934. bool gmp_perfect_square(resource a) |Perfect square check (PHP 4 >= 4.0.4, PHP 5)
  935. int gmp_popcount(resource a) |Population count (PHP 4 >= 4.0.4, PHP 5)
  936. resource gmp_pow(resource base, int exp) |Raise number into power (PHP 4 >= 4.0.4, PHP 5)
  937. resource gmp_powm(resource base, resource exp, resource mod) |Raise number into power with modulo (PHP 4 >= 4.0.4, PHP 5)
  938. int gmp_prob_prime(resource a [, int reps]) |Check if number is "probably prime" (PHP 4 >= 4.0.4, PHP 5)
  939. resource gmp_random(int limiter) |Random number (PHP 4 >= 4.0.4, PHP 5)
  940. int gmp_scan0(resource a, int start) |Scan for 0 (PHP 4 >= 4.0.4, PHP 5)
  941. int gmp_scan1(resource a, int start) |Scan for 1 (PHP 4 >= 4.0.4, PHP 5)
  942. void gmp_setbit(resource &a, int index [, bool set_clear]) |Set bit (PHP 4 >= 4.0.4, PHP 5)
  943. int gmp_sign(resource a) |Sign of number (PHP 4 >= 4.0.4, PHP 5)
  944. resource gmp_sqrt(resource a) |Calculate square root (PHP 4 >= 4.0.4, PHP 5)
  945. array gmp_sqrtrem(resource a) |Square root with remainder (PHP 4 >= 4.0.4, PHP 5)
  946. string gmp_strval(resource gmpnumber [, int base]) |Convert GMP number to string (PHP 4 >= 4.0.4, PHP 5)
  947. resource gmp_sub(resource a, resource b) |Subtract numbers (PHP 4 >= 4.0.4, PHP 5)
  948. resource gmp_xor(resource a, resource b) |Logical XOR (PHP 4 >= 4.0.4, PHP 5)
  949. string gmstrftime(string format [, int timestamp]) |Format a GMT/UTC time/date according to locale settings (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  950. bool gnupg_adddecryptkey(resource identifier, string fingerprint, string passphrase) |Add a key for decryption
  951. bool gnupg_addencryptkey(resource identifier, string fingerprint) |Add a key for encryption
  952. bool gnupg_addsignkey(resource identifier, string fingerprint [, string passphrase]) |Add a key for signing
  953. bool gnupg_cleardecryptkeys(resource identifier) |Removes all keys which were set for decryption before
  954. bool gnupg_clearencryptkeys(resource identifier) |Removes all keys which were set for encryption before
  955. bool gnupg_clearsignkeys(resource identifier) |Removes all keys which were set for signing before
  956. string gnupg_decrypt(resource identifier, string text) |Decrypts a given text
  957. array gnupg_decryptverify(resource identifier, string text, string plaintext) |Decrypts and verifies a given text
  958. string gnupg_encrypt(resource identifier, string plaintext) |Encrypts a given text
  959. string gnupg_encryptsign(resource identifier, string plaintext) |Encrypts and signs a given text
  960. string gnupg_export(resource identifier, string fingerprint) |Exports a key
  961. string gnupg_geterror(resource identifier) |Returns the errortext, if a function fails
  962. int gnupg_getprotocol(resource identifier) |Returns the currently active protocol for all operations
  963. array gnupg_import(resource identifier, string keydata) |Imports a key
  964. array gnupg_keyinfo(resource identifier, string pattern) |Returns an array with information about all keys that matches the given pattern
  965. bool gnupg_setarmor(resource identifier, int armor) |Toggle armored output
  966. void gnupg_seterrormode(resource identifier, int errormode) |Sets the mode for error_reporting
  967. bool gnupg_setsignmode(resource identifier, int signmode) |Sets the mode for signing
  968. string gnupg_sign(resource identifier, string plaintext) |Signs a given text
  969. array gnupg_verify(resource identifier, string signed_text, string signature [, string plaintext]) |Verifies a signed text
  970. array gopher_parsedir(string dirent) |Translate a gopher formatted directory entry into an associative array. (PECL)
  971. int gregoriantojd(int month, int day, int year) |Converts a Gregorian date to Julian Day Count
  972. bool gzclose(resource zp) |Close an open gz-file pointer (PHP 3, PHP 4, PHP 5)
  973. string gzcompress(string data [, int level]) |Compress a string (PHP 4 >= 4.0.1, PHP 5)
  974. string gzdeflate(string data [, int level]) |Deflate a string (PHP 4 >= 4.0.4, PHP 5)
  975. string gzencode(string data [, int level [, int encoding_mode]]) |Create a gzip compressed string (PHP 4 >= 4.0.4, PHP 5)
  976. int gzeof(resource zp) |Test for end-of-file on a gz-file pointer (PHP 3, PHP 4, PHP 5)
  977. array gzfile(string filename [, int use_include_path]) |Read entire gz-file into an array (PHP 3, PHP 4, PHP 5)
  978. string gzgetc(resource zp) |Get character from gz-file pointer (PHP 3, PHP 4, PHP 5)
  979. string gzgets(resource zp, int length) |Get line from file pointer (PHP 3, PHP 4, PHP 5)
  980. string gzgetss(resource zp, int length [, string allowable_tags]) |Get line from gz-file pointer and strip HTML tags (PHP 3, PHP 4, PHP 5)
  981. string gzinflate(string data [, int length]) |Inflate a deflated string (PHP 4 >= 4.0.4, PHP 5)
  982. resource gzopen(string filename, string mode [, int use_include_path]) |Open gz-file (PHP 3, PHP 4, PHP 5)
  983. int gzpassthru(resource zp) |Output all remaining data on a gz-file pointer (PHP 3, PHP 4, PHP 5)
  984. int gzputs(resource zp, string string [, int length]) |Binary-safe gz-file write (PHP 3, PHP 4, PHP 5)
  985. string gzread(resource zp, int length) |Binary-safe gz-file read (PHP 3, PHP 4, PHP 5)
  986. bool gzrewind(resource zp) |Rewind the position of a gz-file pointer (PHP 3, PHP 4, PHP 5)
  987. int gzseek(resource zp, int offset) |Seek on a gz-file pointer (PHP 3, PHP 4, PHP 5)
  988. int gztell(resource zp) |Tell gz-file pointer read/write position (PHP 3, PHP 4, PHP 5)
  989. string gzuncompress(string data [, int length]) |Uncompress a compressed string (PHP 4 >= 4.0.1, PHP 5)
  990. int gzwrite(resource zp, string string [, int length]) |Binary-safe gz-file write (PHP 3, PHP 4, PHP 5)
  991. void __halt_compiler() |Halts the compiler execution
  992. array hash_algos() |Return a list of registered hashing algorithms
  993. string hash_file(string algo, string filename [, bool raw_output]) |Generate a hash value using the contents of a given file
  994. string hash_final(resource context [, bool raw_output]) |Finalize an incremental hash and return resulting digest
  995. string hash_hmac_file(string algo, string filename, string key [, bool raw_output]) |Generate a keyed hash value using the HMAC method and the contents of a given file
  996. string hash_hmac(string algo, string data, string key [, bool raw_output]) |Generate a keyed hash value using the HMAC method
  997. resource hash_init(string algo [, int options, string key]) |Initialize an incremental hashing context
  998. bool hash_update_file(resource context, string filename [, resource context]) |Pump data into an active hashing context from a file
  999. int hash_update_stream(resource context, resource handle [, int length]) |Pump data into an active hashing context from an open stream
  1000. bool hash_update(resource context, string data) |Pump data into an active hashing context
  1001. string hash(string algo, string data [, bool raw_output]) |Generate a hash value (message digest)
  1002. void header(string string [, bool replace [, int http_response_code]]) |Send a raw HTTP header (PHP 3, PHP 4, PHP 5)
  1003. array headers_list() |Returns a list of response headers sent (or ready to send) (PHP 5)
  1004. bool headers_sent([string &file [, int &line]]) |Checks if or where headers have been sent (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1005. string hebrev(string hebrew_text [, int max_chars_per_line]) |Convert logical Hebrew text to visual text (PHP 3, PHP 4, PHP 5)
  1006. string hebrevc(string hebrew_text [, int max_chars_per_line]) |Convert logical Hebrew text to visual text with newline conversion (PHP 3, PHP 4, PHP 5)
  1007. number hexdec(string hex_string) |Hexadecimal to decimal (PHP 3, PHP 4, PHP 5)
  1008. mixed highlight_file(string filename [, bool return]) |Syntax highlighting of a file (PHP 4, PHP 5)
  1009. mixed highlight_string(string str [, bool return]) |Syntax highlighting of a string (PHP 4, PHP 5)
  1010. string html_entity_decode(string string [, int quote_style [, string charset]]) |Convert all HTML entities to their applicable characters (PHP 4 >= 4.3.0, PHP 5)
  1011. string htmlentities(string string [, int quote_style [, string charset]]) |Convert all applicable characters to HTML entities (PHP 3, PHP 4, PHP 5)
  1012. string htmlspecialchars_decode(string string [, int quote_style]) |Convert special HTML entities back to characters (PHP 5 >= 5.1.0RC1)
  1013. string htmlspecialchars(string string [, int quote_style [, string charset]]) |Convert special characters to HTML entities (PHP 3, PHP 4, PHP 5)
  1014. string http_build_query(array formdata [, string numeric_prefix]) |Generate URL-encoded query string (PHP 5)
  1015. string hw_array2objrec(array object_array) |Convert attributes from object array to object record
  1016. bool hw_changeobject(int link, int objid, array attributes) |Changes attributes of an object (obsolete) (PHP 3 >= 3.0.3, PHP 4, PECL)
  1017. array hw_children(int connection, int objectID) |Object ids of children
  1018. array hw_childrenobj(int connection, int objectID) |Object records of children
  1019. bool hw_close(int connection) |Closes the Hyperwave connection
  1020. int hw_connect(string host, int port [, string username, string password]) |Opens a connection
  1021. void hw_connection_info(int link) |Prints information about the connection to Hyperwave server (PHP 3 >= 3.0.3, PHP 4, PECL)
  1022. int hw_cp(int connection, array object_id_array, int destination_id) |Copies objects (PHP 3 >= 3.0.3, PHP 4, PECL)
  1023. bool hw_deleteobject(int connection, int object_to_delete) |Deletes object
  1024. int hw_docbyanchor(int connection, int anchorID) |Object id object belonging to anchor
  1025. string hw_docbyanchorobj(int connection, int anchorID) |Object record object belonging to anchor
  1026. string hw_document_attributes(int hw_document) |Object record of hw_document
  1027. string hw_document_bodytag(int hw_document [, string prefix]) |Body tag of hw_document
  1028. string hw_document_content(int hw_document) |Returns content of hw_document
  1029. bool hw_document_setcontent(int hw_document, string content) |Sets/replaces content of hw_document
  1030. int hw_document_size(int hw_document) |Size of hw_document
  1031. string hw_dummy(int link, int id, int msgid) |Hyperwave dummy function (PHP 3 >= 3.0.3, PHP 4, PECL)
  1032. bool hw_edittext(int connection, int hw_document) |Retrieve text document
  1033. int hw_error(int connection) |Error number
  1034. string hw_errormsg(int connection) |Returns error message
  1035. bool hw_free_document(int hw_document) |Frees hw_document
  1036. array hw_getanchors(int connection, int objectID) |Object ids of anchors of document
  1037. array hw_getanchorsobj(int connection, int objectID) |Object records of anchors of document
  1038. string hw_getandlock(int connection, int objectID) |Return object record and lock object
  1039. array hw_getchildcoll(int connection, int objectID) |Object ids of child collections
  1040. array hw_getchildcollobj(int connection, int objectID) |Object records of child collections
  1041. array hw_getchilddoccoll(int connection, int objectID) |Object ids of child documents of collection
  1042. array hw_getchilddoccollobj(int connection, int objectID) |Object records of child documents of collection
  1043. mixed hw_getobject(int connection, mixed objectID [, string query]) |Object record
  1044. array hw_getobjectbyquery(int connection, string query, int max_hits) |Search object
  1045. array hw_getobjectbyquerycoll(int connection, int objectID, string query, int max_hits) |Search object in collection
  1046. array hw_getobjectbyquerycollobj(int connection, int objectID, string query, int max_hits) |Search object in collection
  1047. array hw_getobjectbyqueryobj(int connection, string query, int max_hits) |Search object
  1048. array hw_getparents(int connection, int objectID) |Object ids of parents
  1049. array hw_getparentsobj(int connection, int objectID) |Object records of parents
  1050. string hw_getrellink(int link, int rootid, int sourceid, int destid) |Get link from source to dest relative to rootid (PHP 3 >= 3.0.3, PHP 4, PECL)
  1051. int hw_getremote(int connection, int objectID) |Gets a remote document
  1052. mixed hw_getremotechildren(int connection, string object_record) |Gets children of remote document (PHP 3 >= 3.0.3, PHP 4, PECL)
  1053. array hw_getsrcbydestobj(int connection, int objectID) |Returns anchors pointing at object
  1054. int hw_gettext(int connection, int objectID [, mixed rootID/prefix ]) |Retrieve text document
  1055. string hw_getusername(int connection) |Name of currently logged in user (PHP 3 >= 3.0.3, PHP 4, PECL)
  1056. string hw_identify(int link, string username, string password) |Identifies as user
  1057. array hw_incollections(int connection, array object_id_array, array collection_id_array, int return_collections) |Check if object ids in collections
  1058. string hw_info(int connection) |Info about connection
  1059. int hw_inscoll(int connection, int objectID, array object_array) |Insert collection
  1060. int hw_insdoc(resource connection, int parentID, string object_record [, string text]) |Insert document
  1061. bool hw_insertanchors(int hwdoc, array anchorecs, array dest [, array urlprefixes]) |Inserts only anchors into text (PHP 4 >= 4.0.4, PECL)
  1062. int hw_insertdocument(int connection, int parent_id, int hw_document) |Upload any document
  1063. int hw_insertobject(int connection, string object_rec, string parameter) |Inserts an object record
  1064. int hw_mapid(int connection, int server_id, int object_id) |Maps global id on virtual local id (PHP 3 >= 3.0.13, PHP 4, PECL)
  1065. bool hw_modifyobject(int connection, int object_to_change, array remove, array add [, int mode]) |Modifies object record
  1066. int hw_mv(int connection, array object_id_array, int source_id, int destination_id) |Moves objects (PHP 3 >= 3.0.3, PHP 4, PECL)
  1067. int hw_new_document(string object_record, string document_data, int document_size) |Create new document
  1068. array hw_objrec2array(string object_record [, array format ]) |Convert attributes from object record to object array (PHP 3 >= 3.0.3, PHP 4, PECL)
  1069. bool hw_output_document(int hw_document) |Prints hw_document
  1070. int hw_pconnect(string host, int port [, string username, string password]) |Make a persistent database connection
  1071. int hw_pipedocument(int connection, int objectID [, array url_prefixes]) |Retrieve any document
  1072. int hw_root() |Root object id
  1073. int hw_setlinkroot(int link, int rootid) |Set the id to which links are calculated (PHP 3 >= 3.0.3, PHP 4, PECL)
  1074. string hw_stat(int link) |Returns status string (PHP 3 >= 3.0.3, PHP 4, PECL)
  1075. bool hw_unlock(int connection, int objectID) |Unlock object
  1076. array hw_who(int connection) |List of currently logged in users
  1077. string hw_api_attribute->key() |Returns key of the attribute
  1078. string hw_api_attribute->langdepvalue(string language) |Returns value for a given language
  1079. string hw_api_attribute->value() |Returns value of the attribute
  1080. array hw_api_attribute->values() |Returns all values of the attribute
  1081. HW_API_Attribute hw_api_attribute([string name [, string value]]) |Creates instance of class hw_api_attribute
  1082. bool hw_api->checkin(array parameter) |Checks in an object
  1083. bool hw_api->checkout(array parameter) |Checks out an object
  1084. array hw_api->children(array parameter) |Returns children of an object
  1085. string hw_api_content->mimetype() |Returns mimetype
  1086. string hw_api_content->read(string buffer, int len) |Read content
  1087. HW_API_Content hw_api->content(array parameter) |Returns content of an object
  1088. hw_api_object hw_api->copy(array parameter) |Copies physically
  1089. hw_api_object hw_api->dbstat(array parameter) |Returns statistics about database server
  1090. hw_api_object hw_api->dcstat(array parameter) |Returns statistics about document cache server
  1091. array hw_api->dstanchors(array parameter) |Returns a list of all destination anchors
  1092. hw_api_object hw_api->dstofsrcanchor(array parameter) |Returns destination of a source anchor
  1093. int hw_api_error->count() |Returns number of reasons
  1094. HW_API_Reason hw_api_error->reason() |Returns reason of error
  1095. array hw_api->find(array parameter) |Search for objects
  1096. hw_api_object hw_api->ftstat(array parameter) |Returns statistics about fulltext server
  1097. HW_API hwapi_hgcsp(string hostname [, int port]) |Returns object of class hw_api
  1098. hw_api_object hw_api->hwstat(array parameter) |Returns statistics about Hyperwave server
  1099. bool hw_api->identify(array parameter) |Log into Hyperwave Server
  1100. array hw_api->info(array parameter) |Returns information about server configuration
  1101. hw_api_object hw_api->insert(array parameter) |Inserts a new object
  1102. hw_api_object hw_api->insertanchor(array parameter) |Inserts a new object of type anchor
  1103. hw_api_object hw_api->insertcollection(array parameter) |Inserts a new object of type collection
  1104. hw_api_object hw_api->insertdocument(array parameter) |Inserts a new object of type document
  1105. bool hw_api->link(array parameter) |Creates a link to an object
  1106. bool hw_api->lock(array parameter) |Locks an object
  1107. bool hw_api->move(array parameter) |Moves object between collections
  1108. HW_API_Content hw_api_content(string content, string mimetype) |Create new instance of class hw_api_content
  1109. bool hw_api_object->assign(array parameter) |Clones object
  1110. bool hw_api_object->attreditable(array parameter) |Checks whether an attribute is editable
  1111. int hw_api_object->count(array parameter) |Returns number of attributes
  1112. bool hw_api_object->insert(HW_API_Attribute attribute) |Inserts new attribute
  1113. hw_api_object hw_api_object(array parameter) |Creates a new instance of class hw_api_object
  1114. bool hw_api_object->remove(string name) |Removes attribute
  1115. string hw_api_object->title(array parameter) |Returns the title attribute
  1116. string hw_api_object->value(string name) |Returns value of attribute
  1117. hw_api_object hw_api->object(array parameter) |Retrieve attribute information
  1118. hw_api_object hw_api->objectbyanchor(array parameter) |Returns the object an anchor belongs to
  1119. array hw_api->parents(array parameter) |Returns parents of an object
  1120. string hw_api_reason->description() |Returns description of reason
  1121. HW_API_Reason hw_api_reason->type() |Returns type of reason
  1122. bool hw_api->remove(array parameter) |Delete an object
  1123. hw_api_object hw_api->replace(array parameter) |Replaces an object
  1124. hw_api_object hw_api->setcommittedversion(array parameter) |Commits version other than last version
  1125. array hw_api->srcanchors(array parameter) |Returns a list of all source anchors
  1126. array hw_api->srcsofdst(array parameter) |Returns source of a destination object
  1127. bool hw_api->unlock(array parameter) |Unlocks a locked object
  1128. hw_api_object hw_api->user(array parameter) |Returns the own user object
  1129. array hw_api->userlist(array parameter) |Returns a list of all logged in users
  1130. float hypot(float x, float y) |Calculate the length of the hypotenuse of a right-angle triangle (PHP 4 >= 4.1.0, PHP 5)
  1131. string i18n_loc_get_default() |Get the default Locale
  1132. bool i18n_loc_set_default(string name) |Set the default Locale
  1133. bool ibase_add_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]) |Add a user to a security database (only for IB6 or later) (PHP 4 >= 4.2.0, PHP 5)
  1134. int ibase_affected_rows([resource link_identifier]) |Return the number of rows that were affected by the previous query (PHP 5)
  1135. mixed ibase_backup(resource service_handle, string source_db, string dest_file [, int options [, bool verbose]]) |Initiates a backup task in the service manager and returns immediately (PHP 5)
  1136. void ibase_blob_add(resource blob_handle, string data) |Add data into a newly created blob (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1137. bool ibase_blob_cancel(resource blob_handle) |Cancel creating blob (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1138. mixed ibase_blob_close(resource blob_handle) |Close blob (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1139. resource ibase_blob_create([resource link_identifier]) |Create a new blob for adding data (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1140. bool ibase_blob_echo(resource link_identifier, string blob_id) |Output blob contents to browser (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1141. string ibase_blob_get(resource blob_handle, int len) |Get len bytes data from open blob (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1142. string ibase_blob_import(resource link_identifier, resource file_handle) |Create blob, copy file in it, and close it (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1143. array ibase_blob_info(resource link_identifier, string blob_id) |Return blob length and other useful info (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1144. resource ibase_blob_open(resource link_identifier, string blob_id) |Open blob for retrieving data parts (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1145. bool ibase_close([resource connection_id]) |Close a connection to an InterBase database (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1146. bool ibase_commit_ret([resource link_or_trans_identifier]) |Commit a transaction without closing it (PHP 5)
  1147. bool ibase_commit([resource link_or_trans_identifier]) |Commit a transaction (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1148. resource ibase_connect([string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]]) |Open a connection to an InterBase database (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1149. string ibase_db_info(resource service_handle, string db, int action [, int argument]) |Request statistics about a database (PHP 5)
  1150. bool ibase_delete_user(resource service_handle, string user_name) |Delete a user from a security database (only for IB6 or later) (PHP 4 >= 4.2.0, PHP 5)
  1151. bool ibase_drop_db([resource connection]) |Drops a database (PHP 5)
  1152. int ibase_errcode() |Return an error code (PHP 5)
  1153. string ibase_errmsg() |Return error messages (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1154. resource ibase_execute(resource query [, mixed bind_arg [, mixed ...]]) |Execute a previously prepared query (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1155. array ibase_fetch_assoc(resource result [, int fetch_flag]) |Fetch a result row from a query as an associative array (PHP 4 >= 4.3.0, PHP 5)
  1156. object ibase_fetch_object(resource result_id [, int fetch_flag]) |Get an object from a InterBase database (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1157. array ibase_fetch_row(resource result_identifier [, int fetch_flag]) |Fetch a row from an InterBase database (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1158. array ibase_field_info(resource result, int field_number) |Get information about a field (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1159. bool ibase_free_event_handler(resource event) |Cancels a registered event handler (PHP 5)
  1160. bool ibase_free_query(resource query) |Free memory allocated by a prepared query (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1161. bool ibase_free_result(resource result_identifier) |Free a result set (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1162. mixed ibase_gen_id(string generator [, int increment [, resource link_identifier]]) |Increments the named generator and returns its new value (PHP 5)
  1163. bool ibase_maintain_db(resource service_handle, string db, int action [, int argument]) |Execute a maintenance command on the database server (PHP 5)
  1164. bool ibase_modify_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]) |Modify a user to a security database (only for IB6 or later) (PHP 4 >= 4.2.0, PHP 5)
  1165. bool ibase_name_result(resource result, string name) |Assigns a name to a result set (PHP 5)
  1166. int ibase_num_fields(resource result_id) |Get the number of fields in a result set (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1167. int ibase_num_params(resource query) |Return the number of parameters in a prepared query (PHP 5)
  1168. array ibase_param_info(resource query, int param_number) |Return information about a parameter in a prepared query (PHP 5)
  1169. resource ibase_pconnect([string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]]) |Open a persistent connection to an InterBase database (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1170. resource ibase_prepare(string query) |Prepare a query for later binding of parameter placeholders and execution (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1171. resource ibase_query([resource link_identifier, string query [, int bind_args]]) |Execute a query on an InterBase database (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1172. mixed ibase_restore(resource service_handle, string source_file, string dest_db [, int options [, bool verbose]]) |Initiates a restore task in the service manager and returns immediately (PHP 5)
  1173. bool ibase_rollback_ret([resource link_or_trans_identifier]) |Roll back a transaction without closing it (PHP 5)
  1174. bool ibase_rollback([resource link_or_trans_identifier]) |Roll back a transaction (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1175. string ibase_server_info(resource service_handle, int action) |Request information about a database server (PHP 5)
  1176. resource ibase_service_attach(string host, string dba_username, string dba_password) |Connect to the service manager (PHP 5)
  1177. bool ibase_service_detach(resource service_handle) |Disconnect from the service manager (PHP 5)
  1178. resource ibase_set_event_handler(callback event_handler, string event_name1 [, string event_name2 [, string ...]]) |Register a callback function to be called when events are posted (PHP 5)
  1179. int ibase_timefmt(string format [, int columntype]) |Sets the format of timestamp, date and time type columns returned from queries (PHP 3 >= 3.0.6, PHP 4)
  1180. resource ibase_trans([int trans_args [, resource link_identifier]]) |Begin a transaction (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1181. string ibase_wait_event(string event_name1 [, string event_name2 [, string ...]]) |Wait for an event to be posted by the database (PHP 5)
  1182. int icap_close(int icap_stream [, int flags]) |Close an ICAP stream
  1183. string icap_create_calendar(int stream_id, string calendar) |Create a new calendar (PHP 4 <= 4.2.3)
  1184. string icap_delete_calendar(int stream_id, string calendar) |Delete a calendar (PHP 4 <= 4.2.3)
  1185. string icap_delete_event(int stream_id, int uid) |Delete an event from an ICAP calendar (PHP 4 <= 4.2.3)
  1186. int icap_fetch_event(int stream_id, int event_id [, int options]) |Fetches an event from the calendar stream/ (PHP 4 <= 4.2.3)
  1187. int icap_list_alarms(int stream_id, array date, array time) |Return a list of events that has an alarm triggered at the given datetime (PHP 4 <= 4.2.3)
  1188. array icap_list_events(int stream_id, int begin_date [, int end_date]) |Return a list of events between two given datetimes (PHP 4 <= 4.2.3)
  1189. resource icap_open(string calendar, string username, string password, string options) |Opens up an ICAP connection (PHP 4 <= 4.2.3)
  1190. string icap_rename_calendar(int stream_id, string old_name, string new_name) |Rename a calendar (PHP 4 <= 4.2.3)
  1191. int icap_reopen(int stream_id, string calendar [, int options]) |Reopen ICAP stream to new calendar (PHP 4 <= 4.2.3)
  1192. string icap_snooze(int stream_id, int uid) |Snooze an alarm (PHP 4 <= 4.2.3)
  1193. string icap_store_event(int stream_id, object event) |Store an event into an ICAP calendar (PHP 4 <= 4.2.3)
  1194. mixed iconv_get_encoding([string type]) |Retrieve internal configuration variables of iconv extension (PHP 4 >= 4.0.5, PHP 5)
  1195. array iconv_mime_decode_headers(string encoded_headers [, int mode [, string charset]]) |Decodes multiple MIME header fields at once (PHP 5)
  1196. string iconv_mime_decode(string encoded_header [, int mode [, string charset]]) |Decodes a MIME header field (PHP 5)
  1197. string iconv_mime_encode(string field_name, string field_value [, array preferences]) |Composes a MIME header field (PHP 5)
  1198. bool iconv_set_encoding(string type, string charset) |Set current setting for character encoding conversion (PHP 4 >= 4.0.5, PHP 5)
  1199. int iconv_strlen(string str [, string charset]) |Returns the character count of string (PHP 5)
  1200. int iconv_strpos(string haystack, string needle [, int offset [, string charset]]) |Finds position of first occurrence of a needle within a haystack (PHP 5)
  1201. int iconv_strrpos(string haystack, string needle [, string charset]) |Finds the last occurrence of a needle within the specified range of haystack (PHP 5)
  1202. string iconv_substr(string str, int offset [, int length [, string charset]]) |Cut out part of a string (PHP 5)
  1203. string iconv(string in_charset, string out_charset, string str) |Convert string to requested character encoding (PHP 4 >= 4.0.5, PHP 5)
  1204. string id3_get_frame_long_name(string frameId) |Get the long name of an ID3v2 frame (PECL)
  1205. string id3_get_frame_short_name(string frameId) |Get the short name of an ID3v2 frame (PECL)
  1206. int id3_get_genre_id(string genre) |Get the id for a genre (PECL)
  1207. array id3_get_genre_list() |Get all possible genre values (PECL)
  1208. string id3_get_genre_name(int genre_id) |Get the name for a genre id (PECL)
  1209. array id3_get_tag(string filename [, int version]) |Get all information stored in an ID3 tag (PECL)
  1210. int id3_get_version(string filename) |Get version of an ID3 tag (PECL)
  1211. bool id3_remove_tag(string filename [, int version]) |Remove an existing ID3 tag (PECL)
  1212. bool id3_set_tag(string filename, array tag [, int version]) |Update information stored in an ID3 tag (PECL)
  1213. int idate(string format [, int timestamp]) |Format a local time/date as integer (PHP 5)
  1214. int ifx_affected_rows(int result_id) |Get number of rows affected by a query (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1215. void ifx_blobinfile_mode(int mode) |Set the default blob mode for all select queries (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1216. void ifx_byteasvarchar(int mode) |Set the default byte mode (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1217. int ifx_close([int link_identifier]) |Close Informix connection (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1218. int ifx_connect([string database [, string userid [, string password ]]]) |Open Informix server connection (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1219. int ifx_copy_blob(int bid) |Duplicates the given blob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1220. int ifx_create_blob(int type, int mode, string param) |Creates an blob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1221. int ifx_create_char(string param) |Creates an char object (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1222. int ifx_do(int result_id) |Execute a previously prepared SQL-statement (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1223. string ifx_error() |Returns error code of last Informix call (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1224. string ifx_errormsg([int errorcode]) |Returns error message of last Informix call (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1225. array ifx_fetch_row(int result_id [, mixed position]) |Get row as enumerated array (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1226. array ifx_fieldproperties(int result_id) |List of SQL fieldproperties (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1227. array ifx_fieldtypes(int result_id) |List of Informix SQL fields (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1228. int ifx_free_blob(int bid) |Deletes the blob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1229. int ifx_free_char(int bid) |Deletes the char object (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1230. int ifx_free_result(int result_id) |Releases resources for the query (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1231. int ifx_get_blob(int bid) |Return the content of a blob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1232. int ifx_get_char(int bid) |Return the content of the char object (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1233. array ifx_getsqlca(int result_id) |Get the contents of sqlca.sqlerrd[0..5] after a query (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1234. int ifx_htmltbl_result(int result_id [, string html_table_options]) |Formats all rows of a query into a HTML table (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1235. void ifx_nullformat(int mode) |Sets the default return value on a fetch row (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1236. int ifx_num_fields(int result_id) |Returns the number of columns in the query (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1237. int ifx_num_rows(int result_id) |Count the rows already fetched from a query (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1238. int ifx_pconnect([string database [, string userid [, string password]]]) |Open persistent Informix connection (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1239. int ifx_prepare(string query, int conn_id [, int cursor_def, mixed blobidarray]) |Prepare an SQL-statement for execution (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1240. int ifx_query(string query, int link_identifier [, int cursor_type [, mixed blobidarray ]]) |Send Informix query (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1241. void ifx_textasvarchar(int mode) |Set the default text mode (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1242. bool ifx_update_blob(int bid, string content) |Updates the content of the blob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1243. int ifx_update_char(int bid, string content) |Updates the content of the char object (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1244. int ifxus_close_slob(int bid) |Deletes the slob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1245. int ifxus_create_slob(int mode) |Creates an slob object and opens it (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1246. int ifxus_free_slob(int bid) |Deletes the slob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1247. int ifxus_open_slob(int bid, int mode) |Opens an slob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1248. int ifxus_read_slob(int bid, int nbytes) |Reads nbytes of the slob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1249. int ifxus_seek_slob(int bid, int mode, int offset) |Sets the current file or seek position (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1250. int ifxus_tell_slob(int bid) |Returns the current file or seek position (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1251. int ifxus_write_slob(int bid, string content) |Writes a string into the slob object (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1252. int ignore_user_abort([bool setting]) |Set whether a client disconnect should abort script execution (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1253. int iis_add_server(string path, string comment, string server_ip, int port, string host_name, int rights, int start_server) |Creates a new virtual web server (PECL)
  1254. int iis_get_dir_security(int server_instance, string virtual_path) |Gets Directory Security (PECL)
  1255. string iis_get_script_map(int server_instance, string virtual_path, string script_extension) |Gets script mapping on a virtual directory for a specific extension (PECL)
  1256. int iis_get_server_by_comment(string comment) |Return the instance number associated with the Comment (PECL)
  1257. int iis_get_server_by_path(string path) |Return the instance number associated with the Path (PECL)
  1258. int iis_get_server_rights(int server_instance, string virtual_path) |Gets server rights (PECL)
  1259. int iis_get_service_state(string service_id) |Returns the state for the service defined by ServiceId (PECL)
  1260. int iis_remove_server(int server_instance) |Removes the virtual web server indicated by ServerInstance (PECL)
  1261. int iis_set_app_settings(int server_instance, string virtual_path, string application_scope) |Creates application scope for a virtual directory (PECL)
  1262. int iis_set_dir_security(int server_instance, string virtual_path, int directory_flags) |Sets Directory Security (PECL)
  1263. int iis_set_script_map(int server_instance, string virtual_path, string script_extension, string engine_path, int allow_scripting) |Sets script mapping on a virtual directory (PECL)
  1264. int iis_set_server_rights(int server_instance, string virtual_path, int directory_flags) |Sets server rights (PECL)
  1265. int iis_start_server(int server_instance) |Starts the virtual web server (PECL)
  1266. int iis_start_service(string service_id) |Starts the service defined by ServiceId (PECL)
  1267. int iis_stop_server(int server_instance) |Stops the virtual web server (PECL)
  1268. int iis_stop_service(string service_id) |Stops the service defined by ServiceId (PECL)
  1269. string image_type_to_extension(int imagetype [, bool include_dot]) |Get file extension for image type
  1270. string image_type_to_mime_type(int imagetype) |Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype (PHP 4 >= 4.3.0, PHP 5)
  1271. int image2wbmp(resource image [, string filename [, int threshold]]) |Output image to browser or file (PHP 4 >= 4.0.5, PHP 5)
  1272. bool imagealphablending(resource image, bool blendmode) |Set the blending mode for an image (PHP 4 >= 4.0.6, PHP 5)
  1273. bool imageantialias(resource im, bool on) |Should antialias functions be used or not (PHP 4 >= 4.3.2, PHP 5)
  1274. bool imagearc(resource image, int cx, int cy, int w, int h, int s, int e, int color) |Draw a partial ellipse (PHP 3, PHP 4, PHP 5)
  1275. bool imagechar(resource image, int font, int x, int y, string c, int color) |Draw a character horizontally (PHP 3, PHP 4, PHP 5)
  1276. bool imagecharup(resource image, int font, int x, int y, string c, int color) |Draw a character vertically (PHP 3, PHP 4, PHP 5)
  1277. int imagecolorallocate(resource image, int red, int green, int blue) |Allocate a color for an image (PHP 3, PHP 4, PHP 5)
  1278. int imagecolorallocatealpha(resource image, int red, int green, int blue, int alpha) |Allocate a color for an image (PHP 4 >= 4.3.2, PHP 5)
  1279. int imagecolorat(resource image, int x, int y) |Get the index of the color of a pixel (PHP 3, PHP 4, PHP 5)
  1280. int imagecolorclosest(resource image, int red, int green, int blue) |Get the index of the closest color to the specified color (PHP 3, PHP 4, PHP 5)
  1281. int imagecolorclosestalpha(resource image, int red, int green, int blue, int alpha) |Get the index of the closest color to the specified color + alpha (PHP 4 >= 4.0.6, PHP 5)
  1282. int imagecolorclosesthwb(resource image, int red, int green, int blue) |Get the index of the color which has the hue, white and blackness nearest to the given color (PHP 4 >= 4.0.1, PHP 5)
  1283. bool imagecolordeallocate(resource image, int color) |De-allocate a color for an image (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1284. int imagecolorexact(resource image, int red, int green, int blue) |Get the index of the specified color (PHP 3, PHP 4, PHP 5)
  1285. int imagecolorexactalpha(resource image, int red, int green, int blue, int alpha) |Get the index of the specified color + alpha (PHP 4 >= 4.0.6, PHP 5)
  1286. bool imagecolormatch(resource image1, resource image2) |Makes the colors of the palette version of an image more closely match the true color version (PHP 4 >= 4.3.0, PHP 5)
  1287. int imagecolorresolve(resource image, int red, int green, int blue) |Get the index of the specified color or its closest possible alternative (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  1288. int imagecolorresolvealpha(resource image, int red, int green, int blue, int alpha) |Get the index of the specified color + alpha or its closest possible alternative (PHP 4 >= 4.0.6, PHP 5)
  1289. void imagecolorset(resource image, int index, int red, int green, int blue) |Set the color for the specified palette index (PHP 3, PHP 4, PHP 5)
  1290. array imagecolorsforindex(resource image, int index) |Get the colors for an index (PHP 3, PHP 4, PHP 5)
  1291. int imagecolorstotal(resource image) |Find out the number of colors in an image's palette (PHP 3, PHP 4, PHP 5)
  1292. int imagecolortransparent(resource image [, int color]) |Define a color as transparent (PHP 3, PHP 4, PHP 5)
  1293. bool imageconvolution(resource image, array matrix3x3, float div, float offset) |Apply a 3x3 convolution matrix, using coefficient div and offset (PHP 5 >= 5.1.0RC1)
  1294. bool imagecopy(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) |Copy part of an image (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1295. bool imagecopymerge(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) |Copy and merge part of an image (PHP 4 >= 4.0.1, PHP 5)
  1296. bool imagecopymergegray(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) |Copy and merge part of an image with gray scale (PHP 4 >= 4.0.6, PHP 5)
  1297. bool imagecopyresampled(resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) |Copy and resize part of an image with resampling (PHP 4 >= 4.0.6, PHP 5)
  1298. bool imagecopyresized(resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) |Copy and resize part of an image (PHP 3, PHP 4, PHP 5)
  1299. resource imagecreate(int x_size, int y_size) |Create a new palette based image (PHP 3, PHP 4, PHP 5)
  1300. resource imagecreatefromgd(string filename) |Create a new image from GD file or URL (PHP 4 >= 4.1.0, PHP 5)
  1301. resource imagecreatefromgd2(string filename) |Create a new image from GD2 file or URL (PHP 4 >= 4.1.0, PHP 5)
  1302. resource imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height) |Create a new image from a given part of GD2 file or URL (PHP 4 >= 4.1.0, PHP 5)
  1303. resource imagecreatefromgif(string filename) |Create a new image from file or URL (PHP 3, PHP 4, PHP 5)
  1304. resource imagecreatefromjpeg(string filename) |Create a new image from file or URL (PHP 3 >= 3.0.16, PHP 4, PHP 5)
  1305. resource imagecreatefrompng(string filename) |Create a new image from file or URL (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1306. resource imagecreatefromstring(string image) |Create a new image from the image stream in the string (PHP 4 >= 4.0.4, PHP 5)
  1307. resource imagecreatefromwbmp(string filename) |Create a new image from file or URL (PHP 4 >= 4.0.1, PHP 5)
  1308. resource imagecreatefromxbm(string filename) |Create a new image from file or URL (PHP 4 >= 4.0.1, PHP 5)
  1309. resource imagecreatefromxpm(string filename) |Create a new image from file or URL (PHP 4 >= 4.0.1, PHP 5)
  1310. resource imagecreatetruecolor(int x_size, int y_size) |Create a new true color image (PHP 4 >= 4.0.6, PHP 5)
  1311. bool imagedashedline(resource image, int x1, int y1, int x2, int y2, int color) |Draw a dashed line (PHP 3, PHP 4, PHP 5)
  1312. bool imagedestroy(resource image) |Destroy an image (PHP 3, PHP 4, PHP 5)
  1313. bool imageellipse(resource image, int cx, int cy, int w, int h, int color) |Draw an ellipse (PHP 4 >= 4.0.6, PHP 5)
  1314. bool imagefill(resource image, int x, int y, int color) |Flood fill (PHP 3, PHP 4, PHP 5)
  1315. bool imagefilledarc(resource image, int cx, int cy, int w, int h, int s, int e, int color, int style) |Draw a partial ellipse and fill it (PHP 4 >= 4.0.6, PHP 5)
  1316. bool imagefilledellipse(resource image, int cx, int cy, int w, int h, int color) |Draw a filled ellipse (PHP 4 >= 4.0.6, PHP 5)
  1317. bool imagefilledpolygon(resource image, array points, int num_points, int color) |Draw a filled polygon (PHP 3, PHP 4, PHP 5)
  1318. bool imagefilledrectangle(resource image, int x1, int y1, int x2, int y2, int color) |Draw a filled rectangle (PHP 3, PHP 4, PHP 5)
  1319. bool imagefilltoborder(resource image, int x, int y, int border, int color) |Flood fill to specific color (PHP 3, PHP 4, PHP 5)
  1320. bool imagefilter(resource src_im, int filtertype [, int arg1 [, int arg2 [, int arg3]]]) |Applies a filter to an image (PHP 5)
  1321. int imagefontheight(int font) |Get font height (PHP 3, PHP 4, PHP 5)
  1322. int imagefontwidth(int font) |Get font width (PHP 3, PHP 4, PHP 5)
  1323. array imageftbbox(float size, float angle, string font_file, string text [, array extrainfo]) |Give the bounding box of a text using fonts via freetype2 (PHP 4 >= 4.1.0, PHP 5)
  1324. array imagefttext(resource image, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo]) |Write text to the image using fonts using FreeType 2 (PHP 4 >= 4.1.0, PHP 5)
  1325. bool imagegammacorrect(resource image, float inputgamma, float outputgamma) |Apply a gamma correction to a GD image (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1326. bool imagegd(resource image [, string filename]) |Output GD image to browser or file (PHP 4 >= 4.1.0, PHP 5)
  1327. bool imagegd2(resource image [, string filename [, int chunk_size [, int type]]]) |Output GD2 image to browser or file (PHP 4 >= 4.1.0, PHP 5)
  1328. bool imagegif(resource image [, string filename]) |Output image to browser or file (PHP 3, PHP 4, PHP 5)
  1329. int imageinterlace(resource image [, int interlace]) |Enable or disable interlace (PHP 3, PHP 4, PHP 5)
  1330. bool imageistruecolor(resource image) |Finds whether an image is a truecolor image (PHP 4 >= 4.3.2, PHP 5)
  1331. bool imagejpeg(resource image [, string filename [, int quality]]) |Output image to browser or file (PHP 3 >= 3.0.16, PHP 4, PHP 5)
  1332. bool imagelayereffect(resource image, int effect) |Set the alpha blending flag to use the bundled libgd layering effects (PHP 4 >= 4.3.0, PHP 5)
  1333. bool imageline(resource image, int x1, int y1, int x2, int y2, int color) |Draw a line (PHP 3, PHP 4, PHP 5)
  1334. int imageloadfont(string file) |Load a new font (PHP 3, PHP 4, PHP 5)
  1335. void imagepalettecopy(resource destination, resource source) |Copy the palette from one image to another (PHP 4 >= 4.0.1, PHP 5)
  1336. bool imagepng(resource image [, string filename]) |Output a PNG image to either the browser or a file (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1337. bool imagepolygon(resource image, array points, int num_points, int color) |Draw a polygon (PHP 3, PHP 4, PHP 5)
  1338. array imagepsbbox(string text, int font, int size [, int space, int tightness, float angle]) |Give the bounding box of a text rectangle using PostScript Type1 fonts (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1339. int imagepscopyfont(resource fontindex) |Make a copy of an already loaded font for further modification (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1340. bool imagepsencodefont(resource font_index, string encodingfile) |Change the character encoding vector of a font (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1341. bool imagepsextendfont(int font_index, float extend) |Extend or condense a font (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1342. bool imagepsfreefont(resource fontindex) |Free memory used by a PostScript Type 1 font (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1343. resource imagepsloadfont(string filename) |Load a PostScript Type 1 font from file (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1344. bool imagepsslantfont(resource font_index, float slant) |Slant a font (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1345. array imagepstext(resource image, string text, resource font, int size, int foreground, int background, int x, int y [, int space, int tightness, float angle, int antialias_steps]) |To draw a text string over an image using PostScript Type1 fonts (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1346. bool imagerectangle(resource image, int x1, int y1, int x2, int y2, int col) |Draw a rectangle (PHP 3, PHP 4, PHP 5)
  1347. resource imagerotate(resource src_im, float angle, int bgd_color [, int ignore_transparent]) |Rotate an image with a given angle (PHP 4 >= 4.3.0, PHP 5)
  1348. bool imagesavealpha(resource image, bool saveflag) |Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images (PHP 4 >= 4.3.2, PHP 5)
  1349. bool imagesetbrush(resource image, resource brush) |Set the brush image for line drawing (PHP 4 >= 4.0.6, PHP 5)
  1350. bool imagesetpixel(resource image, int x, int y, int color) |Set a single pixel (PHP 3, PHP 4, PHP 5)
  1351. bool imagesetstyle(resource image, array style) |Set the style for line drawing (PHP 4 >= 4.0.6, PHP 5)
  1352. bool imagesetthickness(resource image, int thickness) |Set the thickness for line drawing (PHP 4 >= 4.0.6, PHP 5)
  1353. bool imagesettile(resource image, resource tile) |Set the tile image for filling (PHP 4 >= 4.0.6, PHP 5)
  1354. bool imagestring(resource image, int font, int x, int y, string s, int col) |Draw a string horizontally (PHP 3, PHP 4, PHP 5)
  1355. bool imagestringup(resource image, int font, int x, int y, string s, int col) |Draw a string vertically (PHP 3, PHP 4, PHP 5)
  1356. int imagesx(resource image) |Get image width (PHP 3, PHP 4, PHP 5)
  1357. int imagesy(resource image) |Get image height (PHP 3, PHP 4, PHP 5)
  1358. bool imagetruecolortopalette(resource image, bool dither, int ncolors) |Convert a true color image to a palette image (PHP 4 >= 4.0.6, PHP 5)
  1359. array imagettfbbox(float size, float angle, string fontfile, string text) |Give the bounding box of a text using TrueType fonts (PHP 3 >= 3.0.1, PHP 4, PHP 5)
  1360. array imagettftext(resource image, float size, float angle, int x, int y, int color, string fontfile, string text) |Write text to the image using TrueType fonts (PHP 3, PHP 4, PHP 5)
  1361. int imagetypes() |Return the image types supported by this PHP build (PHP 3 CVS only, PHP 4 >= 4.0.2, PHP 5)
  1362. bool imagewbmp(resource image [, string filename [, int foreground]]) |Output image to browser or file (PHP 3 >= 3.0.15, PHP 4 >= 4.0.1, PHP 5)
  1363. bool imagexbm(resource image, string filename [, int foreground]) |Output XBM image to browser or file (PHP 5)
  1364. string imap_8bit(string string) |Convert an 8bit string to a quoted-printable string (PHP 3, PHP 4, PHP 5)
  1365. array imap_alerts() |This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1366. bool imap_append(resource imap_stream, string mbox, string message [, string options]) |Append a string message to a specified mailbox (PHP 3, PHP 4, PHP 5)
  1367. string imap_base64(string text) |Decode BASE64 encoded text (PHP 3, PHP 4, PHP 5)
  1368. string imap_binary(string string) |Convert an 8bit string to a base64 string (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  1369. string imap_body(resource imap_stream, int msg_number [, int options]) |Read the message body (PHP 3, PHP 4, PHP 5)
  1370. object imap_bodystruct(resource stream_id, int msg_no, string section) |Read the structure of a specified body section of a specific message (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1371. object imap_check(resource imap_stream) |Check current mailbox (PHP 3, PHP 4, PHP 5)
  1372. bool imap_clearflag_full(resource stream, string sequence, string flag [, string options]) |Clears flags on messages (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1373. bool imap_close(resource imap_stream [, int flag]) |Close an IMAP stream (PHP 3, PHP 4, PHP 5)
  1374. bool imap_createmailbox(resource imap_stream, string mbox) |Create a new mailbox (PHP 3, PHP 4, PHP 5)
  1375. bool imap_delete(int imap_stream, int msg_number [, int options]) |Mark a message for deletion from current mailbox (PHP 3, PHP 4, PHP 5)
  1376. bool imap_deletemailbox(resource imap_stream, string mbox) |Delete a mailbox (PHP 3, PHP 4, PHP 5)
  1377. array imap_errors() |This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1378. bool imap_expunge(resource imap_stream) |Delete all messages marked for deletion (PHP 3, PHP 4, PHP 5)
  1379. array imap_fetch_overview(resource imap_stream, string sequence [, int options]) |Read an overview of the information in the headers of the given message (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1380. string imap_fetchbody(resource imap_stream, int msg_number, string part_number [, int options]) |Fetch a particular section of the body of the message (PHP 3, PHP 4, PHP 5)
  1381. string imap_fetchheader(resource imap_stream, int msgno [, int options]) |Returns header for a message (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1382. object imap_fetchstructure(resource imap_stream, int msg_number [, int options]) |Read the structure of a particular message (PHP 3, PHP 4, PHP 5)
  1383. array imap_get_quota(resource imap_stream, string quota_root) |Retrieve the quota level settings, and usage statics per mailbox (PHP 4 >= 4.0.5, PHP 5)
  1384. array imap_get_quotaroot(resource imap_stream, string quota_root) |Retrieve the quota settings per user (PHP 4 >= 4.3.0, PHP 5)
  1385. array imap_getacl(resource stream_id, string mailbox) |Gets the ACL for a given mailbox (PHP 5)
  1386. array imap_getmailboxes(resource imap_stream, string ref, string pattern) |Read the list of mailboxes, returning detailed information on each one (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1387. array imap_getsubscribed(resource imap_stream, string ref, string pattern) |List all the subscribed mailboxes (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1388. object imap_header(resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]]) |Read the header of the message (PHP 3, PHP 4, PHP 5)
  1389. object imap_headerinfo(resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]]) |Read the header of the message (PHP 3, PHP 4, PHP 5)
  1390. array imap_headers(resource imap_stream) |Returns headers for all messages in a mailbox (PHP 3, PHP 4, PHP 5)
  1391. string imap_last_error() |This function returns the last IMAP error (if any) that occurred during this page request (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1392. array imap_list(resource imap_stream, string ref, string pattern) |Read the list of mailboxes (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1393. array imap_listmailbox(resource imap_stream, string ref, string pattern) |Read the list of mailboxes (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1394. array imap_listscan(resource imap_stream, string ref, string pattern, string content) |Read the list of mailboxes, takes a string to search for in the text of the mailbox
  1395. array imap_listsubscribed(resource imap_stream, string ref, string pattern) |List all the subscribed mailboxes (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1396. array imap_lsub(resource imap_stream, string ref, string pattern) |List all the subscribed mailboxes (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1397. string imap_mail_compose(array envelope, array body) |Create a MIME message based on given envelope and body sections (PHP 3 >= 3.0.5, PHP 4, PHP 5)
  1398. bool imap_mail_copy(resource imap_stream, string msglist, string mbox [, int options]) |Copy specified messages to a mailbox (PHP 3, PHP 4, PHP 5)
  1399. bool imap_mail_move(resource imap_stream, string msglist, string mbox [, int options]) |Move specified messages to a mailbox (PHP 3, PHP 4, PHP 5)
  1400. bool imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]]) |Send an email message (PHP 3 >= 3.0.14, PHP 4, PHP 5)
  1401. object imap_mailboxmsginfo(resource imap_stream) |Get information about the current mailbox (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  1402. array imap_mime_header_decode(string text) |Decode MIME header elements (PHP 3 >= 3.0.17, PHP 4, PHP 5)
  1403. int imap_msgno(resource imap_stream, int uid) |This function returns the message sequence number for the given UID (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1404. int imap_num_msg(resource imap_stream) |Gives the number of messages in the current mailbox (PHP 3, PHP 4, PHP 5)
  1405. int imap_num_recent(resource imap_stream) |Gives the number of recent messages in current mailbox (PHP 3, PHP 4, PHP 5)
  1406. resource imap_open(string mailbox, string username, string password [, int options]) |Open an IMAP stream to a mailbox (PHP 3, PHP 4, PHP 5)
  1407. bool imap_ping(resource imap_stream) |Check if the IMAP stream is still active (PHP 3, PHP 4, PHP 5)
  1408. string imap_qprint(string string) |Convert a quoted-printable string to an 8 bit string (PHP 3, PHP 4, PHP 5)
  1409. bool imap_renamemailbox(resource imap_stream, string old_mbox, string new_mbox) |Rename an old mailbox to new mailbox (PHP 3, PHP 4, PHP 5)
  1410. bool imap_reopen(resource imap_stream, string mailbox [, int options]) |Reopen IMAP stream to new mailbox (PHP 3, PHP 4, PHP 5)
  1411. array imap_rfc822_parse_adrlist(string address, string default_host) |Parses an address string (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  1412. object imap_rfc822_parse_headers(string headers [, string defaulthost]) |Parse mail headers from a string (PHP 4, PHP 5)
  1413. string imap_rfc822_write_address(string mailbox, string host, string personal) |Returns a properly formatted email address given the mailbox, host, and personal info (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  1414. array imap_scanmailbox(resource imap_stream, string ref, string pattern, string content) |Read the list of mailboxes, takes a string to search for in the text of the mailbox
  1415. array imap_search(resource imap_stream, string criteria [, int options [, string charset]]) |This function returns an array of messages matching the given search criteria (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1416. bool imap_set_quota(resource imap_stream, string quota_root, int quota_limit) |Sets a quota for a given mailbox (PHP 4 >= 4.0.5, PHP 5)
  1417. bool imap_setacl(resource stream_id, string mailbox, string id, string rights) |Sets the ACL for a giving mailbox (PHP 4 >= 4.1.0, PHP 5)
  1418. bool imap_setflag_full(resource stream, string sequence, string flag [, string options]) |Sets flags on messages (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1419. array imap_sort(resource stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]]) |Sort an array of message headers (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1420. object imap_status(resource imap_stream, string mailbox, int options) |This function returns status information on a mailbox other than the current one (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1421. bool imap_subscribe(resource imap_stream, string mbox) |Subscribe to a mailbox (PHP 3, PHP 4, PHP 5)
  1422. array imap_thread(resource stream_id [, int options]) |Returns a tree of threaded message (PHP 4 >= 4.1.0, PHP 5)
  1423. mixed imap_timeout(int timeout_type [, int timeout]) |Set or fetch imap timeout (PHP 4 >= 4.3.3, PHP 5)
  1424. int imap_uid(resource imap_stream, int msgno) |This function returns the UID for the given message sequence number (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  1425. bool imap_undelete(resource imap_stream, int msg_number [, int flags]) |Unmark the message which is marked deleted (PHP 3, PHP 4, PHP 5)
  1426. bool imap_unsubscribe(string imap_stream, string mbox) |Unsubscribe from a mailbox (PHP 3, PHP 4, PHP 5)
  1427. string imap_utf7_decode(string text) |Decodes a modified UTF-7 encoded string (PHP 3 >= 3.0.15, PHP 4, PHP 5)
  1428. string imap_utf7_encode(string data) |Converts ISO-8859-1 string to modified UTF-7 text (PHP 3 >= 3.0.15, PHP 4, PHP 5)
  1429. string imap_utf8(string mime_encoded_text) |Converts MIME-encoded text to UTF-8 (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1430. string implode(string glue, array pieces) |Join array elements with a string (PHP 3, PHP 4, PHP 5)
  1431. bool import_request_variables(string types [, string prefix]) |Import GET/POST/Cookie variables into the global scope (PHP 4 >= 4.1.0, PHP 5)
  1432. bool in_array(mixed needle, array haystack [, bool strict]) |Checks if a value exists in an array (PHP 4, PHP 5)
  1433. void include |
  1434. void include_once |
  1435. string inet_ntop(string in_addr) |Converts a packed internet address to a human readable representation (PHP 5 >= 5.1.0RC1)
  1436. string inet_pton(string address) |Converts a human readable IP address to its packed in_addr representation (PHP 5 >= 5.1.0RC1)
  1437. bool ingres_autocommit([resource link]) |Switch autocommit on or off (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1438. bool ingres_close([resource link]) |Close an Ingres II database connection (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1439. bool ingres_commit([resource link]) |Commit a transaction (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1440. resource ingres_connect([string database [, string username [, string password]]]) |Open a connection to an Ingres II database (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1441. string ingres_cursor([resource link]) |Gets a cursor name for a given link resource (PECL)
  1442. int ingres_errno([resource link]) |Gets the last ingres error number generated (PECL)
  1443. string ingres_error([resource link]) |Gets a meaningful error message for the last error generated (PECL)
  1444. string ingres_errsqlstate([resource link]) |Gets the last SQLSTATE error code generated (PECL)
  1445. array ingres_fetch_array([int result_type [, resource link]]) |Fetch a row of result into an array (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1446. object ingres_fetch_object([int result_type [, resource link]]) |Fetch a row of result into an object (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1447. array ingres_fetch_row([resource link]) |Fetch a row of result into an enumerated array (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1448. int ingres_field_length(int index [, resource link]) |Get the length of a field (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1449. string ingres_field_name(int index [, resource link]) |Get the name of a field in a query result (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1450. bool ingres_field_nullable(int index [, resource link]) |Test if a field is nullable (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1451. int ingres_field_precision(int index [, resource link]) |Get the precision of a field (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1452. int ingres_field_scale(int index [, resource link]) |Get the scale of a field (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1453. string ingres_field_type(int index [, resource link]) |Get the type of a field in a query result (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1454. int ingres_num_fields([resource link]) |Get the number of fields returned by the last query (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1455. int ingres_num_rows([resource link]) |Get the number of rows affected or returned by the last query (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1456. resource ingres_pconnect([string database [, string username [, string password]]]) |Open a persistent connection to an Ingres II database (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1457. bool ingres_query(string query [, resource link]) |Send a SQL query to Ingres II (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1458. bool ingres_rollback([resource link]) |Roll back a transaction (PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)
  1459. string ini_alter(string varname, string newvalue) |Sets the value of a configuration option (PHP 4, PHP 5)
  1460. array ini_get_all([string extension]) |Gets all configuration options (PHP 4 >= 4.2.0, PHP 5)
  1461. string ini_get(string varname) |Gets the value of a configuration option (PHP 4, PHP 5)
  1462. void ini_restore(string varname) |Restores the value of a configuration option (PHP 4, PHP 5)
  1463. string ini_set(string varname, string newvalue) |Sets the value of a configuration option (PHP 4, PHP 5)
  1464. bool interface_exists(string interface_name [, bool autoload]) |Checks if the interface has been defined (PHP 5 >= 5.0.2)
  1465. int intval(mixed var [, int base]) |Get the integer value of a variable (PHP 3, PHP 4, PHP 5)
  1466. int ip2long(string ip_address) |Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address (PHP 4, PHP 5)
  1467. mixed iptcembed(string iptcdata, string jpeg_file_name [, int spool]) |Embed binary IPTC data into a JPEG image (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1468. array iptcparse(string iptcblock) |Parse a binary IPTC http://www.iptc.org/ block into single tags. (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1469. bool ircg_channel_mode(resource connection, string channel, string mode_spec, string nick) |Set channel mode flags for user (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1470. bool ircg_disconnect(resource connection, string reason) |Close connection to server (PHP 4 >= 4.0.4, PHP 5 <= 5.0.4)
  1471. array ircg_eval_ecmascript_params(string params) |Decodes a list of JS-encoded parameters (PHP 4 >= 4.3.0, PHP 5 <= 5.0.4)
  1472. array ircg_fetch_error_msg(resource connection) |Returns the error from previous IRCG operation (PHP 4 >= 4.1.0, PHP 5 <= 5.0.4)
  1473. string ircg_get_username(resource connection) |Get username for connection (PHP 4 >= 4.1.0, PHP 5 <= 5.0.4)
  1474. string ircg_html_encode(string html_string [, bool auto_links [, bool conv_br]]) |Encodes HTML preserving output (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1475. void ircg_ignore_add(resource connection, string nick) |Add a user to your ignore list on a server (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1476. bool ircg_ignore_del(resource connection, string nick) |Remove a user from your ignore list on a server (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1477. bool ircg_invite(resource connection, string channel, string nickname) |Invites nickname to channel (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  1478. bool ircg_is_conn_alive(resource connection) |Check connection status (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1479. bool ircg_join(resource connection, string channel [, string key]) |Join a channel on a connected server (PHP 4 >= 4.0.4, PHP 5 <= 5.0.4)
  1480. bool ircg_kick(resource connection, string channel, string nick, string reason) |Kick a user out of a channel on server (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1481. bool ircg_list(resource connection, string channel) |List topic/user count of channel(s) (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  1482. bool ircg_lookup_format_messages(string name) |Check for the existence of a format message set (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1483. bool ircg_lusers(resource connection) |IRC network statistics (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  1484. bool ircg_msg(resource connection, string recipient, string message [, bool suppress]) |Send message to channel or user on server (PHP 4 >= 4.0.4, PHP 5 <= 5.0.4)
  1485. bool ircg_names(int connection, string channel [, string target]) |Query visible usernames (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  1486. bool ircg_nick(resource connection, string nick) |Change nickname on server (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1487. string ircg_nickname_escape(string nick) |Encode special characters in nickname to be IRC-compliant (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  1488. string ircg_nickname_unescape(string nick) |Decodes encoded nickname (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  1489. bool ircg_notice(resource connection, string recipient, string message) |Send a notice to a user on server (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1490. bool ircg_oper(resource connection, string name, string password) |Elevates privileges to IRC OPER (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  1491. bool ircg_part(resource connection, string channel) |Leave a channel on server (PHP 4 >= 4.0.4, PHP 5 <= 5.0.4)
  1492. resource ircg_pconnect(string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings [, bool bailout_on_trivial]]]]]]) |Connect to an IRC server (PHP 4 >= 4.0.4, PHP 5 <= 5.0.4)
  1493. bool ircg_register_format_messages(string name, array messages) |Register a format message set (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1494. bool ircg_set_current(resource connection) |Set current connection for output (PHP 4 >= 4.0.4, PHP 5 <= 5.0.4)
  1495. bool ircg_set_file(resource connection, string path) |Set logfile for connection (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  1496. bool ircg_set_on_die(resource connection, string host, int port, string data) |Set action to be executed when connection dies (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  1497. bool ircg_topic(resource connection, string channel, string new_topic) |Set topic for channel on server (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1498. bool ircg_who(resource connection, string mask [, bool ops_only]) |Queries server for WHO information (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  1499. bool ircg_whois(resource connection, string nick) |Query server for user information (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  1500. bool is_a(object object, string class_name) |Returns TRUE if the object is of this class or has this class as one of its parents (PHP 4 >= 4.2.0, PHP 5)
  1501. bool is_array(mixed var) |Finds whether a variable is an array (PHP 3, PHP 4, PHP 5)
  1502. bool is_bool(mixed var) |Finds out whether a variable is a boolean (PHP 4, PHP 5)
  1503. bool is_callable(mixed var [, bool syntax_only [, string &callable_name]]) |Verify that the contents of a variable can be called as a function (PHP 4 >= 4.0.6, PHP 5)
  1504. bool is_dir(string filename) |Tells whether the filename is a directory (PHP 3, PHP 4, PHP 5)
  1505. bool is_double(mixed var) |Finds whether a variable is a float (PHP 3, PHP 4, PHP 5)
  1506. bool is_executable(string filename) |Tells whether the filename is executable (PHP 3, PHP 4, PHP 5)
  1507. bool is_file(string filename) |Tells whether the filename is a regular file (PHP 3, PHP 4, PHP 5)
  1508. bool is_finite(float val) |Finds whether a value is a legal finite number (PHP 4 >= 4.2.0, PHP 5)
  1509. bool is_float(mixed var) |Finds whether a variable is a float (PHP 3, PHP 4, PHP 5)
  1510. bool is_infinite(float val) |Finds whether a value is infinite (PHP 4 >= 4.2.0, PHP 5)
  1511. bool is_int(mixed var) |Find whether a variable is an integer (PHP 3, PHP 4, PHP 5)
  1512. bool is_integer(mixed var) |Find whether a variable is an integer (PHP 3, PHP 4, PHP 5)
  1513. bool is_link(string filename) |Tells whether the filename is a symbolic link (PHP 3, PHP 4, PHP 5)
  1514. bool is_long(mixed var) |Find whether a variable is an integer (PHP 3, PHP 4, PHP 5)
  1515. bool is_nan(float val) |Finds whether a value is not a number (PHP 4 >= 4.2.0, PHP 5)
  1516. bool is_null(mixed var) |Finds whether a variable is NULL (PHP 4 >= 4.0.4, PHP 5)
  1517. bool is_numeric(mixed var) |Finds whether a variable is a number or a numeric string (PHP 4, PHP 5)
  1518. bool is_object(mixed var) |Finds whether a variable is an object (PHP 3, PHP 4, PHP 5)
  1519. bool is_readable(string filename) |Tells whether the filename is readable (PHP 3, PHP 4, PHP 5)
  1520. bool is_real(mixed var) |Finds whether a variable is a float (PHP 3, PHP 4, PHP 5)
  1521. bool is_resource(mixed var) |Finds whether a variable is a resource (PHP 4, PHP 5)
  1522. bool is_scalar(mixed var) |Finds whether a variable is a scalar (PHP 4 >= 4.0.5, PHP 5)
  1523. bool is_soap_fault(mixed obj) |Checks if SOAP call was failed (PHP 5)
  1524. bool is_string(mixed var) |Finds whether a variable is a string (PHP 3, PHP 4, PHP 5)
  1525. bool is_subclass_of(mixed object, string class_name) |Returns TRUE if the object has this class as one of its parents (PHP 4, PHP 5)
  1526. bool is_uploaded_file(string filename) |Tells whether the file was uploaded via HTTP POST (PHP 3 >= 3.0.17, PHP 4 >= 4.0.3, PHP 5)
  1527. bool is_writable(string filename) |Tells whether the filename is writable (PHP 4, PHP 5)
  1528. bool is_writeable(string filename) |Tells whether the filename is writable (PHP 4, PHP 5)
  1529. bool isset(mixed var [, mixed var [, ...]]) |Determine whether a variable is set (PHP 3, PHP 4, PHP 5)
  1530. int iterator_count(IteratorAggregate iterator) |Count the elements in an iterator (PHP 5 >= 5.1.0RC1)
  1531. array iterator_to_array(IteratorAggregate iterator) |Copy the iterator into an array (PHP 5 >= 5.1.0RC1)
  1532. void java_last_exception_clear() |Clear last Java exception (PHP 4 >= 4.0.2, PECL)
  1533. object java_last_exception_get() |Get last Java exception (PHP 4 >= 4.0.2, PECL)
  1534. mixed jddayofweek(int julianday [, int mode]) |Returns the day of the week
  1535. string jdmonthname(int julianday, int mode) |Returns a month name
  1536. string jdtofrench(int juliandaycount) |Converts a Julian Day Count to the French Republican Calendar
  1537. string jdtogregorian(int julianday) |Converts Julian Day Count to Gregorian date
  1538. string jdtojewish(int juliandaycount [, bool hebrew [, int fl]]) |Converts a Julian day count to a Jewish calendar date (PHP 3, PHP 4, PHP 5)
  1539. string jdtojulian(int julianday) |Converts a Julian Day Count to a Julian Calendar Date
  1540. int jdtounix(int jday) |Convert Julian Day to Unix timestamp (PHP 4, PHP 5)
  1541. int jewishtojd(int month, int day, int year) |Converts a date in the Jewish Calendar to Julian Day Count
  1542. string join(string glue, array pieces) |Join array elements with a string (PHP 3, PHP 4, PHP 5)
  1543. int jpeg2wbmp(string jpegname, string wbmpname, int d_height, int d_width, int threshold) |Convert JPEG image file to WBMP image file (PHP 4 >= 4.0.5, PHP 5)
  1544. int juliantojd(int month, int day, int year) |Converts a Julian Calendar date to Julian Day Count
  1545. bool kadm5_chpass_principal(resource handle, string principal, string password) |Changes the principal's password (PECL)
  1546. bool kadm5_create_principal(resource handle, string principal [, string password [, array options]]) |Creates a kerberos principal with the given parameters (PECL)
  1547. bool kadm5_delete_principal(resource handle, string principal) |Deletes a kerberos principal (PECL)
  1548. bool kadm5_destroy(resource handle) |Closes the connection to the admin server and releases all related resources (PECL)
  1549. bool kadm5_flush(resource handle) |Flush all changes to the Kerberos database, leaving the connection to the Kerberos admin server open (PECL)
  1550. array kadm5_get_policies(resource handle) |Gets all policies from the Kerberos database (PECL)
  1551. array kadm5_get_principal(resource handle, string principal) |Gets the principal's entries from the Kerberos database (PECL)
  1552. array kadm5_get_principals(resource handle) |Gets all principals from the Kerberos database (PECL)
  1553. resource kadm5_init_with_password(string admin_server, string realm, string principal, string password) |Opens a connection to the KADM5 library and initializes any neccessary state information (PECL)
  1554. bool kadm5_modify_principal(resource handle, string principal, array options) |Modifies a kerberos principal with the given parameters (PECL)
  1555. mixed key(array &array) |Fetch a key from an associative array (PHP 3, PHP 4, PHP 5)
  1556. bool krsort(array &array [, int sort_flags]) |Sort an array by key in reverse order (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1557. bool ksort(array &array [, int sort_flags]) |Sort an array by key (PHP 3, PHP 4, PHP 5)
  1558. float lcg_value() |Combined linear congruential generator (PHP 4, PHP 5)
  1559. string ldap_8859_to_t61(string value) |Translate 8859 characters to t61 characters (PHP 4 >= 4.0.2, PHP 5)
  1560. bool ldap_add(resource link_identifier, string dn, array entry) |Add entries to LDAP directory (PHP 3, PHP 4, PHP 5)
  1561. bool ldap_bind(resource link_identifier [, string bind_rdn [, string bind_password]]) |Bind to LDAP directory (PHP 3, PHP 4, PHP 5)
  1562. bool ldap_close(resource link_identifier) |Unbind from LDAP directory (PHP 3, PHP 4, PHP 5)
  1563. mixed ldap_compare(resource link_identifier, string dn, string attribute, string value) |Compare value of attribute found in entry specified with DN (PHP 4 >= 4.0.2, PHP 5)
  1564. resource ldap_connect([string hostname [, int port]]) |Connect to an LDAP server (PHP 3, PHP 4, PHP 5)
  1565. int ldap_count_entries(resource link_identifier, resource result_identifier) |Count the number of entries in a search (PHP 3, PHP 4, PHP 5)
  1566. bool ldap_delete(resource link_identifier, string dn) |Delete an entry from a directory (PHP 3, PHP 4, PHP 5)
  1567. string ldap_dn2ufn(string dn) |Convert DN to User Friendly Naming format (PHP 3, PHP 4, PHP 5)
  1568. string ldap_err2str(int errno) |Convert LDAP error number into string error message (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1569. int ldap_errno(resource link_identifier) |Return the LDAP error number of the last LDAP command (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1570. string ldap_error(resource link_identifier) |Return the LDAP error message of the last LDAP command (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  1571. array ldap_explode_dn(string dn, int with_attrib) |Splits DN into its component parts (PHP 3, PHP 4, PHP 5)
  1572. string ldap_first_attribute(resource link_identifier, resource result_entry_identifier, int &ber_identifier) |Return first attribute (PHP 3, PHP 4, PHP 5)
  1573. resource ldap_first_entry(resource link_identifier, resource result_identifier) |Return first result id (PHP 3, PHP 4, PHP 5)
  1574. resource ldap_first_reference(resource link, resource result) |Return first reference (PHP 4 >= 4.0.5, PHP 5)
  1575. bool ldap_free_result(resource result_identifier) |Free result memory (PHP 3, PHP 4, PHP 5)
  1576. array ldap_get_attributes(resource link_identifier, resource result_entry_identifier) |Get attributes from a search result entry (PHP 3, PHP 4, PHP 5)
  1577. string ldap_get_dn(resource link_identifier, resource result_entry_identifier) |Get the DN of a result entry (PHP 3, PHP 4, PHP 5)
  1578. array ldap_get_entries(resource link_identifier, resource result_identifier) |Get all result entries (PHP 3, PHP 4, PHP 5)
  1579. bool ldap_get_option(resource link_identifier, int option, mixed &retval) |Get the current value for given option (PHP 4 >= 4.0.4, PHP 5)
  1580. array ldap_get_values_len(resource link_identifier, resource result_entry_identifier, string attribute) |Get all binary values from a result entry (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  1581. array ldap_get_values(resource link_identifier, resource result_entry_identifier, string attribute) |Get all values from a result entry (PHP 3, PHP 4, PHP 5)
  1582. resource ldap_list(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) |Single-level search (PHP 3, PHP 4, PHP 5)
  1583. bool ldap_mod_add(resource link_identifier, string dn, array entry) |Add attribute values to current attributes (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1584. bool ldap_mod_del(resource link_identifier, string dn, array entry) |Delete attribute values from current attributes (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1585. bool ldap_mod_replace(resource link_identifier, string dn, array entry) |Replace attribute values with new ones (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1586. bool ldap_modify(resource link_identifier, string dn, array entry) |Modify an LDAP entry (PHP 3, PHP 4, PHP 5)
  1587. string ldap_next_attribute(resource link_identifier, resource result_entry_identifier, resource &ber_identifier) |Get the next attribute in result (PHP 3, PHP 4, PHP 5)
  1588. resource ldap_next_entry(resource link_identifier, resource result_entry_identifier) |Get next result entry (PHP 3, PHP 4, PHP 5)
  1589. resource ldap_next_reference(resource link, resource entry) |Get next reference (PHP 4 >= 4.0.5, PHP 5)
  1590. bool ldap_parse_reference(resource link, resource entry, array &referrals) |Extract information from reference entry (PHP 4 >= 4.0.5, PHP 5)
  1591. bool ldap_parse_result(resource link, resource result, int &errcode [, string &matcheddn [, string &errmsg [, array &referrals]]]) |Extract information from result (PHP 4 >= 4.0.5, PHP 5)
  1592. resource ldap_read(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) |Read an entry (PHP 3, PHP 4, PHP 5)
  1593. bool ldap_rename(resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn) |Modify the name of an entry (PHP 4 >= 4.0.5, PHP 5)
  1594. bool ldap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authz_id [, string props]]]]]]) |Bind to LDAP directory using SASL (PHP 5)
  1595. resource ldap_search(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) |Search LDAP tree (PHP 3, PHP 4, PHP 5)
  1596. bool ldap_set_option(resource link_identifier, int option, mixed newval) |Set the value of the given option (PHP 4 >= 4.0.4, PHP 5)
  1597. bool ldap_set_rebind_proc(resource link, callback callback) |Set a callback function to do re-binds on referral chasing (PHP 4 >= 4.2.0, PHP 5)
  1598. bool ldap_sort(resource link, resource result, string sortfilter) |Sort LDAP result entries (PHP 4 >= 4.2.0, PHP 5)
  1599. bool ldap_start_tls(resource link) |Start TLS (PHP 4 >= 4.2.0, PHP 5)
  1600. string ldap_t61_to_8859(string value) |Translate t61 characters to 8859 characters (PHP 4 >= 4.0.2, PHP 5)
  1601. bool ldap_unbind(resource link_identifier) |Unbind from LDAP directory (PHP 3, PHP 4, PHP 5)
  1602. int levenshtein(string str1, string str2 [, int cost_ins [, int cost_rep, int cost_del]]) |Calculate Levenshtein distance between two strings (PHP 3 >= 3.0.17, PHP 4 >= 4.0.1, PHP 5)
  1603. void libxml_clear_errors() |Clear libxml error buffer (PHP 5 >= 5.1.0RC1)
  1604. array libxml_get_errors() |Retrieve array of errors (PHP 5 >= 5.1.0RC1)
  1605. LibXMLError libxml_get_last_error() |Retrieve last error from libxml (PHP 5 >= 5.1.0RC1)
  1606. void libxml_set_streams_context(resource streams_context) |Set the streams context for the next libxml document load or write (PHP 5)
  1607. bool libxml_use_internal_errors([bool use_errors]) |Disable libxml errors and allow user to fetch error information as needed (PHP 5 >= 5.1.0RC1)
  1608. int LimitIterator::getPosition() |Return the current position
  1609. void LimitIterator::next() |Move the iterator forward
  1610. void LimitIterator::rewind() |Rewind the iterator to the specified starting offset
  1611. void LimitIterator::seek(int position) |Seek to the given position
  1612. bool LimitIterator::valid() |Check whether the current element is valid
  1613. bool link(string target, string link) |Create a hard link (PHP 3, PHP 4, PHP 5)
  1614. int linkinfo(string path) |Gets information about a link (PHP 3, PHP 4, PHP 5)
  1615. void list(mixed varname, mixed ...) |Assign variables as if they were an array (PHP 3, PHP 4, PHP 5)
  1616. array localeconv() |Get numeric formatting information (PHP 4 >= 4.0.5, PHP 5)
  1617. array localtime([int timestamp [, bool is_associative]]) |Get the local time (PHP 4, PHP 5)
  1618. float log(float arg [, float base]) |Natural logarithm (PHP 3, PHP 4, PHP 5)
  1619. float log10(float arg) |Base-10 logarithm (PHP 3, PHP 4, PHP 5)
  1620. float log1p(float number) |Returns log(1 + number), computed in a way that is accurate even when the value of number is close to zero (PHP 4 >= 4.1.0, PHP 5)
  1621. string long2ip(int proper_address) |Converts an (IPv4) Internet network address into a string in Internet standard dotted format (PHP 4, PHP 5)
  1622. array lstat(string filename) |Gives information about a file or symbolic link (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  1623. string ltrim(string str [, string charlist]) |Strip whitespace (or other characters) from the beginning of a string (PHP 3, PHP 4, PHP 5)
  1624. string lzf_compress(string data) |LZF compression (PECL)
  1625. string lzf_decompress(string data) |LZF decompression (PECL)
  1626. int lzf_optimized_for() |Determines what LZF extension was optimized for (PECL)
  1627. int m_checkstatus(resource conn, int identifier) |Check to see if a transaction has completed (PHP 4 >= 4.3.9, PHP 5)
  1628. int m_completeauthorizations(resource conn, int &array) |Number of complete authorizations in queue, returning an array of their identifiers (PHP 4 >= 4.3.9, PHP 5)
  1629. int m_connect(resource conn) |Establish the connection to MCVE (PHP 4 >= 4.3.9, PHP 5)
  1630. string m_connectionerror(resource conn) |Get a textual representation of why a connection failed (PHP 4 >= 4.3.9, PHP 5)
  1631. bool m_deletetrans(resource conn, int identifier) |Delete specified transaction from MCVE_CONN structure (PHP 4 >= 4.3.9, PHP 5)
  1632. bool m_destroyconn(resource conn) |Destroy the connection and MCVE_CONN structure (PHP 4 >= 4.3.9, PHP 5)
  1633. void m_destroyengine() |Free memory associated with IP/SSL connectivity (PHP 4 >= 4.3.9, PHP 5)
  1634. string m_getcell(resource conn, int identifier, string column, int row) |Get a specific cell from a comma delimited response by column name (PHP 4 >= 4.3.9, PHP 5)
  1635. string m_getcellbynum(resource conn, int identifier, int column, int row) |Get a specific cell from a comma delimited response by column number (PHP 4 >= 4.3.9, PHP 5)
  1636. string m_getcommadelimited(resource conn, int identifier) |Get the RAW comma delimited data returned from MCVE (PHP 4 >= 4.3.9, PHP 5)
  1637. string m_getheader(resource conn, int identifier, int column_num) |Get the name of the column in a comma-delimited response (PHP 4 >= 4.3.9, PHP 5)
  1638. resource m_initconn() |Create and initialize an MCVE_CONN structure (PHP 4 >= 4.3.9, PHP 5)
  1639. int m_initengine(string location) |Ready the client for IP/SSL Communication (PHP 4 >= 4.3.9, PHP 5)
  1640. int m_iscommadelimited(resource conn, int identifier) |Checks to see if response is comma delimited (PHP 4 >= 4.3.9, PHP 5)
  1641. bool m_maxconntimeout(resource conn, int secs) |The maximum amount of time the API will attempt a connection to MCVE (PHP 4 >= 4.3.9, PHP 5)
  1642. int m_monitor(resource conn) |Perform communication with MCVE (send/receive data) Non-blocking (PHP 4 >= 4.3.9, PHP 5)
  1643. int m_numcolumns(resource conn, int identifier) |Number of columns returned in a comma delimited response (PHP 4 >= 4.3.9, PHP 5)
  1644. int m_numrows(resource conn, int identifier) |Number of rows returned in a comma delimited response (PHP 4 >= 4.3.9, PHP 5)
  1645. int m_parsecommadelimited(resource conn, int identifier) |Parse the comma delimited response so m_getcell, etc will work (PHP 4 >= 4.3.9, PHP 5)
  1646. array m_responsekeys(resource conn, int identifier) |Returns array of strings which represents the keys that can be used for response parameters on this transaction (PHP 5 >= 5.1.0RC1)
  1647. string m_responseparam(resource conn, int identifier, string key) |Get a custom response parameter (PHP 4 >= 4.3.9, PHP 5)
  1648. int m_returnstatus(resource conn, int identifier) |Check to see if the transaction was successful (PHP 4 >= 4.3.9, PHP 5)
  1649. int m_setblocking(resource conn, int tf) |Set blocking/non-blocking mode for connection (PHP 4 >= 4.3.9, PHP 5)
  1650. int m_setdropfile(resource conn, string directory) |Set the connection method to Drop-File (PHP 4 >= 4.3.9, PHP 5)
  1651. int m_setip(resource conn, string host, int port) |Set the connection method to IP (PHP 4 >= 4.3.9, PHP 5)
  1652. int m_setssl_cafile(resource conn, string cafile) |Set SSL CA (Certificate Authority) file for verification of server certificate (PHP 5 >= 5.1.0RC1)
  1653. int m_setssl_files(resource conn, string sslkeyfile, string sslcertfile) |Set certificate key files and certificates if server requires client certificate verification (PHP 4 >= 4.3.9, PHP 5)
  1654. int m_setssl(resource conn, string host, int port) |Set the connection method to SSL (PHP 4 >= 4.3.9, PHP 5)
  1655. int m_settimeout(resource conn, int seconds) |Set maximum transaction time (per trans) (PHP 4 >= 4.3.9, PHP 5)
  1656. string m_sslcert_gen_hash(string filename) |Generate hash for SSL client certificate verification
  1657. int m_transactionssent(resource conn) |Check to see if outgoing buffer is clear (PHP 4 >= 4.3.9, PHP 5)
  1658. int m_transinqueue(resource conn) |Number of transactions in client-queue (PHP 4 >= 4.3.9, PHP 5)
  1659. int m_transkeyval(resource conn, int identifier, string key, string value) |Add key/value pair to a transaction. Replaces deprecated transparam() (PHP 5 >= 5.1.0RC1)
  1660. int m_transnew(resource conn) |Start a new transaction (PHP 4 >= 4.3.9, PHP 5)
  1661. int m_transsend(resource conn, int identifier) |Finalize and send the transaction (PHP 4 >= 4.3.9, PHP 5)
  1662. int m_uwait(int microsecs) |Wait x microsecs (PHP 4 >= 4.3.9, PHP 5)
  1663. int m_validateidentifier(resource conn, int tf) |Whether or not to validate the passed identifier on any transaction it is passed to (PHP 5 >= 5.1.0RC1)
  1664. bool m_verifyconnection(resource conn, int tf) |Set whether or not to PING upon connect to verify connection (PHP 4 >= 4.3.9, PHP 5)
  1665. bool m_verifysslcert(resource conn, int tf) |Set whether or not to verify the server ssl certificate (PHP 4 >= 4.3.9, PHP 5)
  1666. bool mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]]) |Send mail (PHP 3, PHP 4, PHP 5)
  1667. string mailparse_determine_best_xfer_encoding(resource fp) |Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able (4.1.0 - 4.1.2 only, PECL)
  1668. resource mailparse_msg_create() |Returns a handle that can be used to parse a message (4.1.0 - 4.1.2 only, PECL)
  1669. string mailparse_msg_extract_part_file(resource rfc2045, string filename [, callback callbackfunc]) |Extracts/decodes a message section, decoding the transfer encoding (4.1.0 - 4.1.2 only, PECL)
  1670. void mailparse_msg_extract_part(resource rfc2045, string msgbody [, callback callbackfunc]) |Extracts/decodes a message section (4.1.0 - 4.1.2 only, PECL)
  1671. bool mailparse_msg_free(resource rfc2045buf) |Frees a handle allocated by mailparse_msg_create (4.1.0 - 4.1.2 only, PECL)
  1672. array mailparse_msg_get_part_data(resource rfc2045) |Returns an associative array of info about the message (4.1.0 - 4.1.2 only, PECL)
  1673. resource mailparse_msg_get_part(resource rfc2045, string mimesection) |Returns a handle on a given section in a mimemessage (4.1.0 - 4.1.2 only, PECL)
  1674. array mailparse_msg_get_structure(resource rfc2045) |Returns an array of mime section names in the supplied message (4.1.0 - 4.1.2 only, PECL)
  1675. resource mailparse_msg_parse_file(string filename) |Parse file and return a resource representing the structure (4.1.0 - 4.1.2 only, PECL)
  1676. bool mailparse_msg_parse(resource rfc2045buf, string data) |Incrementally parse data into buffer (4.1.0 - 4.1.2 only, PECL)
  1677. array mailparse_rfc822_parse_addresses(string addresses) |Parse addresses and returns a hash containing that data (4.1.0 - 4.1.2 only, PECL)
  1678. bool mailparse_stream_encode(resource sourcefp, resource destfp, string encoding) |Streams data from source file pointer, apply encoding and write to destfp (4.1.0 - 4.1.2 only, PECL)
  1679. array mailparse_uudecode_all(resource fp) |Scans the data from fp and extract each embedded uuencoded file (PECL)
  1680. void main |Dummy for main
  1681. mixed max(number arg1, number arg2 [, number ...]) |Find highest value (PHP 3, PHP 4, PHP 5)
  1682. int maxdb_affected_rows(resource link) |Gets the number of affected rows in a previous MaxDB operation (PECL)
  1683. bool maxdb_autocommit(resource link, bool mode) |Turns on or off auto-commiting database modifications (PECL)
  1684. bool maxdb_bind_param(resource stmt, string types, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement as parameters (PECL)
  1685. bool maxdb_bind_result(resource stmt, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement for result storage (PECL)
  1686. bool maxdb_change_user(resource link, string user, string password, string database) |Changes the user of the specified database connection (PECL)
  1687. string maxdb_character_set_name(resource link) |Returns the default character set for the database connection (PECL)
  1688. string maxdb_client_encoding(resource link) |Returns the default character set for the database connection (PECL)
  1689. bool maxdb_close_long_data(resource stmt, int param_nr) |Ends a sequence of maxdb_stmt_send_long_data (PECL)
  1690. bool maxdb_close(resource link) |Closes a previously opened database connection (PECL)
  1691. bool maxdb_commit(resource link) |Commits the current transaction (PECL)
  1692. int maxdb_connect_errno() |Returns the error code from last connect call (PECL)
  1693. string maxdb_connect_error() |Returns a string description of the last connect error (PECL)
  1694. resource maxdb_connect([string host [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) |Open a new connection to the MaxDB server (PECL)
  1695. bool maxdb_data_seek(resource result, int offset) |Adjusts the result pointer to an arbitary row in the result (PECL)
  1696. void maxdb_debug(string debug) |Performs debugging operations (PECL)
  1697. bool maxdb_disable_reads_from_master(resource link) |Disable reads from master (PECL)
  1698. bool maxdb_disable_rpl_parse(resource link) |Disable RPL parse (PECL)
  1699. bool maxdb_dump_debug_info(resource link) |Dump debugging information into the log (PECL)
  1700. resource maxdb_embedded_connect([string dbname]) |Open a connection to an embedded MaxDB server (PECL)
  1701. bool maxdb_enable_reads_from_master(resource link) |Enable reads from master (PECL)
  1702. bool maxdb_enable_rpl_parse(resource link) |Enable RPL parse (PECL)
  1703. int maxdb_errno(resource link) |Returns the error code for the most recent function call (PECL)
  1704. string maxdb_error(resource link) |Returns a string description of the last error (PECL)
  1705. string maxdb_escape_string(resource link, string escapestr) |Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection (PECL)
  1706. bool maxdb_execute(resource stmt) |Executes a prepared Query (PECL)
  1707. mixed maxdb_fetch_array(resource result [, int resulttype]) |Fetch a result row as an associative, a numeric array, or both (PECL)
  1708. array maxdb_fetch_assoc(resource result) |Fetch a result row as an associative array (PECL)
  1709. mixed maxdb_fetch_field_direct(resource result, int fieldnr) |Fetch meta-data for a single field (PECL)
  1710. mixed maxdb_fetch_field(resource result) |Returns the next field in the result set (PECL)
  1711. mixed maxdb_fetch_fields(resource result) |Returns an array of resources representing the fields in a result set (PECL)
  1712. array maxdb_fetch_lengths(resource result) |Returns the lengths of the columns of the current row in the result set (PECL)
  1713. object maxdb_fetch_object(object result) |Returns the current row of a result set as an object (PECL)
  1714. mixed maxdb_fetch_row(resource result) |Get a result row as an enumerated array (PECL)
  1715. bool maxdb_fetch(resource stmt) |Fetch results from a prepared statement into the bound variables (PECL)
  1716. int maxdb_field_count(resource link) |Returns the number of columns for the most recent query (PECL)
  1717. bool maxdb_field_seek(resource result, int fieldnr) |Set result pointer to a specified field offset (PECL)
  1718. int maxdb_field_tell(resource result) |Get current field offset of a result pointer (PECL)
  1719. void maxdb_free_result(resource result) |Frees the memory associated with a result (PECL)
  1720. string maxdb_get_client_info() |Returns the MaxDB client version as a string (PECL)
  1721. int maxdb_get_client_version() |Get MaxDB client info (PECL)
  1722. string maxdb_get_host_info(resource link) |Returns a string representing the type of connection used (PECL)
  1723. resource maxdb_get_metadata(resource stmt) |Returns result set metadata from a prepared statement (PECL)
  1724. int maxdb_get_proto_info(resource link) |Returns the version of the MaxDB protocol used (PECL)
  1725. string maxdb_get_server_info(resource link) |Returns the version of the MaxDB server (PECL)
  1726. int maxdb_get_server_version(resource link) |Returns the version of the MaxDB server as an integer (PECL)
  1727. string maxdb_info(resource link) |Retrieves information about the most recently executed query (PECL)
  1728. resource maxdb_init() |Initializes MaxDB and returns an resource for use with maxdb_real_connect (PECL)
  1729. mixed maxdb_insert_id(resource link) |Returns the auto generated id used in the last query (PECL)
  1730. bool maxdb_kill(resource link, int processid) |Disconnects from a MaxDB server (PECL)
  1731. bool maxdb_master_query(resource link, string query) |Enforce execution of a query on the master in a master/slave setup (PECL)
  1732. bool maxdb_more_results(resource link) |Check if there any more query results from a multi query (PECL)
  1733. bool maxdb_multi_query(resource link, string query) |Performs a query on the database (PECL)
  1734. bool maxdb_next_result(resource link) |Prepare next result from multi_query (PECL)
  1735. int maxdb_num_fields(resource result) |Get the number of fields in a result (PECL)
  1736. int maxdb_num_rows(resource result) |Gets the number of rows in a result (PECL)
  1737. bool maxdb_options(resource link, int option, mixed value) |Set options (PECL)
  1738. int maxdb_param_count(resource stmt) |Returns the number of parameter for the given statement (PECL)
  1739. bool maxdb_ping(resource link) |Pings a server connection, or tries to reconnect if the connection has gone down (PECL)
  1740. resource maxdb_prepare(resource link, string query) |Prepare a SQL statement for execution (PECL)
  1741. mixed maxdb_query(resource link, string query [, int resultmode]) |Performs a query on the database (PECL)
  1742. bool maxdb_real_connect(resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) |Opens a connection to a MaxDB server (PECL)
  1743. string maxdb_real_escape_string(resource link, string escapestr) |Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection (PECL)
  1744. bool maxdb_real_query(resource link, string query) |Execute an SQL query (PECL)
  1745. bool maxdb_report(int flags) |Enables or disables internal report functions (PECL)
  1746. bool maxdb_rollback(resource link) |Rolls back current transaction (PECL)
  1747. int maxdb_rpl_parse_enabled(resource link) |Check if RPL parse is enabled (PECL)
  1748. bool maxdb_rpl_probe(resource link) |RPL probe (PECL)
  1749. int maxdb_rpl_query_type(resource link) |Returns RPL query type (PECL)
  1750. bool maxdb_select_db(resource link, string dbname) |Selects the default database for database queries (PECL)
  1751. bool maxdb_send_long_data(resource stmt, int param_nr, string data) |Send data in blocks (PECL)
  1752. bool maxdb_send_query(resource link, string query) |Send the query and return (PECL)
  1753. void maxdb_server_end() |Shut down the embedded server (PECL)
  1754. bool maxdb_server_init([array server [, array groups]]) |Initialize embedded server (PECL)
  1755. bool maxdb_set_opt(resource link, int option, mixed value) |Set options (PECL)
  1756. string maxdb_sqlstate(resource link) |Returns the SQLSTATE error from previous MaxDB operation (PECL)
  1757. bool maxdb_ssl_set(resource link, string key, string cert, string ca, string capath, string cipher) |Used for establishing secure connections using SSL (PECL)
  1758. string maxdb_stat(resource link) |Gets the current system status (PECL)
  1759. int maxdb_stmt_affected_rows(resource stmt) |Returns the total number of rows changed, deleted, or inserted by the last executed statement (PECL)
  1760. bool maxdb_stmt_bind_param(resource stmt, string types, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement as parameters (PECL)
  1761. bool maxdb_stmt_bind_result(resource stmt, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement for result storage (PECL)
  1762. bool maxdb_stmt_close_long_data(resource stmt, int param_nr) |Ends a sequence of maxdb_stmt_send_long_data (PECL)
  1763. bool maxdb_stmt_close(resource stmt) |Closes a prepared statement (PECL)
  1764. bool maxdb_stmt_data_seek(resource statement, int offset) |Seeks to an arbitray row in statement result set (PECL)
  1765. int maxdb_stmt_errno(resource stmt) |Returns the error code for the most recent statement call (PECL)
  1766. string maxdb_stmt_error(resource stmt) |Returns a string description for last statement error (PECL)
  1767. bool maxdb_stmt_execute(resource stmt) |Executes a prepared Query (PECL)
  1768. bool maxdb_stmt_fetch(resource stmt) |Fetch results from a prepared statement into the bound variables (PECL)
  1769. void maxdb_stmt_free_result(resource stmt) |Frees stored result memory for the given statement handle (PECL)
  1770. resource maxdb_stmt_init(resource link) |Initializes a statement and returns an resource for use with maxdb_stmt_prepare (PECL)
  1771. int maxdb_stmt_num_rows(resource stmt) |Return the number of rows in statements result set (PECL)
  1772. int maxdb_stmt_param_count(resource stmt) |Returns the number of parameter for the given statement (PECL)
  1773. bool maxdb_stmt_prepare(resource stmt, string query) |Prepare a SQL statement for execution (PECL)
  1774. bool maxdb_stmt_reset(resource stmt) |Resets a prepared statement (PECL)
  1775. resource maxdb_stmt_result_metadata(resource stmt) |Returns result set metadata from a prepared statement (PECL)
  1776. bool maxdb_stmt_send_long_data(resource stmt, int param_nr, string data) |Send data in blocks (PECL)
  1777. string maxdb_stmt_sqlstate(resource stmt) |Returns SQLSTATE error from previous statement operation (PECL)
  1778. bool maxdb_stmt_store_result(resource stmt) |Transfers a result set from a prepared statement (PECL)
  1779. resource maxdb_store_result(resource link) |Transfers a result set from the last query (PECL)
  1780. int maxdb_thread_id(resource link) |Returns the thread ID for the current connection (PECL)
  1781. bool maxdb_thread_safe() |Returns whether thread safety is given or not
  1782. resource maxdb_use_result(resource link) |Initiate a result set retrieval (PECL)
  1783. int maxdb_warning_count(resource link) |Returns the number of warnings from the last query for the given link (PECL)
  1784. string mb_convert_case(string str, int mode [, string encoding]) |Perform case folding on a string (PHP 4 >= 4.3.0, PHP 5)
  1785. string mb_convert_encoding(string str, string to_encoding [, mixed from_encoding]) |Convert character encoding (PHP 4 >= 4.0.6, PHP 5)
  1786. string mb_convert_kana(string str [, string option [, string encoding]]) |Convert "kana" one from another ("zen-kaku", "han-kaku" and more) (PHP 4 >= 4.0.6, PHP 5)
  1787. string mb_convert_variables(string to_encoding, mixed from_encoding, mixed &vars [, mixed &...]) |Convert character code in variable(s) (PHP 4 >= 4.0.6, PHP 5)
  1788. string mb_decode_mimeheader(string str) |Decode string in MIME header field (PHP 4 >= 4.0.6, PHP 5)
  1789. string mb_decode_numericentity(string str, array convmap [, string encoding]) |Decode HTML numeric string reference to character (PHP 4 >= 4.0.6, PHP 5)
  1790. string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]]) |Detect character encoding (PHP 4 >= 4.0.6, PHP 5)
  1791. mixed mb_detect_order([mixed encoding_list]) |Set/Get character encoding detection order (PHP 4 >= 4.0.6, PHP 5)
  1792. string mb_encode_mimeheader(string str [, string charset [, string transfer_encoding [, string linefeed]]]) |Encode string for MIME header (PHP 4 >= 4.0.6, PHP 5)
  1793. string mb_encode_numericentity(string str, array convmap [, string encoding]) |Encode character to HTML numeric string reference (PHP 4 >= 4.0.6, PHP 5)
  1794. bool mb_ereg_match(string pattern, string string [, string option]) |Regular expression match for multibyte string (PHP 4 >= 4.2.0)
  1795. string mb_ereg_replace(string pattern, string replacement, string string [, string option]) |Replace regular expression with multibyte support (PHP 4 >= 4.2.0)
  1796. int mb_ereg_search_getpos() |Returns start point for next regular expression match (PHP 4 >= 4.2.0)
  1797. array mb_ereg_search_getregs() |Retrieve the result from the last multibyte regular expression match (PHP 4 >= 4.2.0)
  1798. bool mb_ereg_search_init(string string [, string pattern [, string option]]) |Setup string and regular expression for multibyte regular expression match (PHP 4 >= 4.2.0)
  1799. array mb_ereg_search_pos([string pattern [, string option]]) |Return position and length of matched part of multibyte regular expression for predefined multibyte string (PHP 4 >= 4.2.0)
  1800. array mb_ereg_search_regs([string pattern [, string option]]) |Returns the matched part of multibyte regular expression (PHP 4 >= 4.2.0)
  1801. bool mb_ereg_search_setpos(int position) |Set start point of next regular expression match (PHP 4 >= 4.2.0)
  1802. bool mb_ereg_search([string pattern [, string option]]) |Multibyte regular expression match for predefined multibyte string (PHP 4 >= 4.2.0)
  1803. int mb_ereg(string pattern, string string [, array regs]) |Regular expression match with multibyte support (PHP 4 >= 4.2.0)
  1804. string mb_eregi_replace(string pattern, string replace, string string [, string option]) |Replace regular expression with multibyte support ignoring case (PHP 4 >= 4.2.0)
  1805. int mb_eregi(string pattern, string string [, array regs]) |Regular expression match ignoring case with multibyte support (PHP 4 >= 4.2.0)
  1806. mixed mb_get_info([string type]) |Get internal settings of mbstring (PHP 4 >= 4.2.0, PHP 5)
  1807. mixed mb_http_input([string type]) |Detect HTTP input character encoding (PHP 4 >= 4.0.6, PHP 5)
  1808. mixed mb_http_output([string encoding]) |Set/Get HTTP output character encoding (PHP 4 >= 4.0.6, PHP 5)
  1809. mixed mb_internal_encoding([string encoding]) |Set/Get internal character encoding (PHP 4 >= 4.0.6, PHP 5)
  1810. mixed mb_language([string language]) |Set/Get current language (PHP 4 >= 4.0.6, PHP 5)
  1811. array mb_list_encodings() |Returns an array of all supported encodings (PHP 5)
  1812. string mb_output_handler(string contents, int status) |Callback function converts character encoding in output buffer (PHP 4 >= 4.0.6, PHP 5)
  1813. bool mb_parse_str(string encoded_string [, array &result]) |Parse GET/POST/COOKIE data and set global variable (PHP 4 >= 4.0.6, PHP 5)
  1814. string mb_preferred_mime_name(string encoding) |Get MIME charset string (PHP 4 >= 4.0.6, PHP 5)
  1815. mixed mb_regex_encoding([string encoding]) |Returns current encoding for multibyte regex as string (PHP 4 >= 4.2.0)
  1816. string mb_regex_set_options([string options]) |Set/Get the default options for mbregex functions (PHP 4 >= 4.3.0)
  1817. bool mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameter]]) |Send encoded mail (PHP 4 >= 4.0.6, PHP 5)
  1818. array mb_split(string pattern, string string [, int limit]) |Split multibyte string using regular expression (PHP 4 >= 4.2.0)
  1819. string mb_strcut(string str, int start [, int length [, string encoding]]) |Get part of string (PHP 4 >= 4.0.6, PHP 5)
  1820. string mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]]) |Get truncated string with specified width (PHP 4 >= 4.0.6, PHP 5)
  1821. int mb_strlen(string str [, string encoding]) |Get string length (PHP 4 >= 4.0.6, PHP 5)
  1822. int mb_strpos(string haystack, string needle [, int offset [, string encoding]]) |Find position of first occurrence of string in a string (PHP 4 >= 4.0.6, PHP 5)
  1823. int mb_strrpos(string haystack, string needle [, string encoding]) |Find position of last occurrence of a string in a string (PHP 4 >= 4.0.6, PHP 5)
  1824. string mb_strtolower(string str [, string encoding]) |Make a string lowercase (PHP 4 >= 4.3.0, PHP 5)
  1825. string mb_strtoupper(string str [, string encoding]) |Make a string uppercase (PHP 4 >= 4.3.0, PHP 5)
  1826. int mb_strwidth(string str [, string encoding]) |Return width of string (PHP 4 >= 4.0.6, PHP 5)
  1827. mixed mb_substitute_character([mixed substrchar]) |Set/Get substitution character (PHP 4 >= 4.0.6, PHP 5)
  1828. int mb_substr_count(string haystack, string needle [, string encoding]) |Count the number of substring occurrences (PHP 4 >= 4.3.0, PHP 5)
  1829. string mb_substr(string str, int start [, int length [, string encoding]]) |Get part of string (PHP 4 >= 4.0.6, PHP 5)
  1830. int mcal_append_event(int mcal_stream) |Store a new event into an MCAL calendar (PHP 4, PECL)
  1831. bool mcal_close(int mcal_stream [, int flags]) |Close an MCAL stream (PHP 3 >= 3.0.13, PHP 4, PECL)
  1832. bool mcal_create_calendar(int stream, string calendar) |Create a new MCAL calendar (PHP 3 >= 3.0.13, PHP 4, PECL)
  1833. int mcal_date_compare(int a_year, int a_month, int a_day, int b_year, int b_month, int b_day) |Compares two dates (PHP 3 >= 3.0.13, PHP 4, PECL)
  1834. bool mcal_date_valid(int year, int month, int day) |Returns TRUE if the given year, month, day is a valid date (PHP 3 >= 3.0.13, PHP 4, PECL)
  1835. int mcal_day_of_week(int year, int month, int day) |Returns the day of the week of the given date (PHP 3 >= 3.0.13, PHP 4, PECL)
  1836. int mcal_day_of_year(int year, int month, int day) |Returns the day of the year of the given date (PHP 3 >= 3.0.13, PHP 4, PECL)
  1837. int mcal_days_in_month(int month, int leap_year) |Returns the number of days in a month (PHP 3 >= 3.0.13, PHP 4, PECL)
  1838. bool mcal_delete_calendar(int stream, string calendar) |Delete an MCAL calendar (PHP 3 >= 3.0.13, PHP 4, PECL)
  1839. bool mcal_delete_event(int mcal_stream, int event_id) |Delete an event from an MCAL calendar (PHP 3 >= 3.0.13, PHP 4, PECL)
  1840. bool mcal_event_add_attribute(int stream, string attribute, string value) |Adds an attribute and a value to the streams global event structure (PHP 3 >= 3.0.15, PHP 4, PECL)
  1841. void mcal_event_init(int stream) |Initializes a streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1842. void mcal_event_set_alarm(int stream, int alarm) |Sets the alarm of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1843. void mcal_event_set_category(int stream, string category) |Sets the category of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1844. void mcal_event_set_class(int stream, int class) |Sets the class of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1845. void mcal_event_set_description(int stream, string description) |Sets the description of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1846. void mcal_event_set_end(int stream, int year, int month, int day [, int hour [, int min [, int sec]]]) |Sets the end date and time of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1847. void mcal_event_set_recur_daily(int stream, int year, int month, int day, int interval) |Sets the recurrence of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1848. void mcal_event_set_recur_monthly_mday(int stream, int year, int month, int day, int interval) |Sets the recurrence of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1849. void mcal_event_set_recur_monthly_wday(int stream, int year, int month, int day, int interval) |Sets the recurrence of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1850. void mcal_event_set_recur_none(int stream) |Sets the recurrence of the streams global event structure (PHP 3 >= 3.0.15, PHP 4, PECL)
  1851. void mcal_event_set_recur_weekly(int stream, int year, int month, int day, int interval, int weekdays) |Sets the recurrence of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1852. void mcal_event_set_recur_yearly(int stream, int year, int month, int day, int interval) |Sets the recurrence of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1853. void mcal_event_set_start(int stream, int year, int month, int day [, int hour [, int min [, int sec]]]) |Sets the start date and time of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1854. void mcal_event_set_title(int stream, string title) |Sets the title of the streams global event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1855. bool mcal_expunge(int stream) |Deletes all events marked for being expunged
  1856. object mcal_fetch_current_stream_event(int stream) |Returns an object containing the current streams event structure (PHP 3 >= 3.0.13, PHP 4, PECL)
  1857. object mcal_fetch_event(int mcal_stream, int event_id [, int options]) |Fetches an event from the calendar stream (PHP 3 >= 3.0.13, PHP 4, PECL)
  1858. bool mcal_is_leap_year(int year) |Returns if the given year is a leap year or not (PHP 3 >= 3.0.13, PHP 4, PECL)
  1859. array mcal_list_alarms(int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day]) |Return a list of events that has an alarm triggered at the given datetime (PHP 3 >= 3.0.13, PHP 4, PECL)
  1860. array mcal_list_events(int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day]) |Return a list of IDs for a date or a range of dates (PHP 3 >= 3.0.13, PHP 4, PECL)
  1861. object mcal_next_recurrence(int stream, int weekstart, array next) |Returns the next recurrence of the event (PHP 3 >= 3.0.13, PHP 4, PECL)
  1862. int mcal_open(string calendar, string username, string password [, int options]) |Opens up an MCAL connection (PHP 3 >= 3.0.13, PHP 4, PECL)
  1863. int mcal_popen(string calendar, string username, string password [, int options]) |Opens up a persistent MCAL connection (PHP 3 >= 3.0.13, PHP 4, PECL)
  1864. bool mcal_rename_calendar(int stream, string old_name, string new_name) |Rename an MCAL calendar (PHP 3 >= 3.0.13, PHP 4, PECL)
  1865. bool mcal_reopen(int mcal_stream, string calendar [, int options]) |Reopens an MCAL connection (PHP 3 >= 3.0.13, PHP 4, PECL)
  1866. bool mcal_snooze(int stream_id, int event_id) |Turn off an alarm for an event (PHP 3 >= 3.0.13, PHP 4, PECL)
  1867. int mcal_store_event(int mcal_stream) |Modify an existing event in an MCAL calendar (PHP 3 >= 3.0.13, PHP 4, PECL)
  1868. bool mcal_time_valid(int hour, int minutes, int seconds) |Returns TRUE if the given hour, minutes and seconds is a valid time (PHP 3 >= 3.0.13, PHP 4, PECL)
  1869. int mcal_week_of_year(int day, int month, int year) |Returns the week number of the given date (PHP 4, PECL)
  1870. string mcrypt_cbc(int cipher, string key, string data, int mode [, string iv]) |Encrypt/decrypt data in CBC mode (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1871. string mcrypt_cfb(int cipher, string key, string data, int mode, string iv) |Encrypt/decrypt data in CFB mode (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1872. string mcrypt_create_iv(int size [, int source]) |Create an initialization vector (IV) from a random source (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1873. string mcrypt_decrypt(string cipher, string key, string data, string mode [, string iv]) |Decrypts crypttext with given parameters (PHP 4 >= 4.0.2, PHP 5)
  1874. string mcrypt_ecb(int cipher, string key, string data, int mode) |Deprecated: Encrypt/decrypt data in ECB mode (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1875. string mcrypt_enc_get_algorithms_name(resource td) |Returns the name of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
  1876. int mcrypt_enc_get_block_size(resource td) |Returns the blocksize of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
  1877. int mcrypt_enc_get_iv_size(resource td) |Returns the size of the IV of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
  1878. int mcrypt_enc_get_key_size(resource td) |Returns the maximum supported keysize of the opened mode (PHP 4 >= 4.0.2, PHP 5)
  1879. string mcrypt_enc_get_modes_name(resource td) |Returns the name of the opened mode (PHP 4 >= 4.0.2, PHP 5)
  1880. array mcrypt_enc_get_supported_key_sizes(resource td) |Returns an array with the supported keysizes of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
  1881. bool mcrypt_enc_is_block_algorithm_mode(resource td) |Checks whether the encryption of the opened mode works on blocks (PHP 4 >= 4.0.2, PHP 5)
  1882. bool mcrypt_enc_is_block_algorithm(resource td) |Checks whether the algorithm of the opened mode is a block algorithm (PHP 4 >= 4.0.2, PHP 5)
  1883. bool mcrypt_enc_is_block_mode(resource td) |Checks whether the opened mode outputs blocks (PHP 4 >= 4.0.2, PHP 5)
  1884. int mcrypt_enc_self_test(resource td) |This function runs a self test on the opened module (PHP 4 >= 4.0.2, PHP 5)
  1885. string mcrypt_encrypt(string cipher, string key, string data, string mode [, string iv]) |Encrypts plaintext with given parameters (PHP 4 >= 4.0.2, PHP 5)
  1886. bool mcrypt_generic_deinit(resource td) |This function deinitializes an encryption module (PHP 4 >= 4.1.1, PHP 5)
  1887. bool mcrypt_generic_end(resource td) |This function terminates encryption (PHP 4 >= 4.0.2, PHP 5)
  1888. int mcrypt_generic_init(resource td, string key, string iv) |This function initializes all buffers needed for encryption (PHP 4 >= 4.0.2, PHP 5)
  1889. string mcrypt_generic(resource td, string data) |This function encrypts data (PHP 4 >= 4.0.2, PHP 5)
  1890. int mcrypt_get_block_size(int cipher) |Get the block size of the specified cipher (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1891. string mcrypt_get_cipher_name(int cipher) |Get the name of the specified cipher (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1892. int mcrypt_get_iv_size(string cipher, string mode) |Returns the size of the IV belonging to a specific cipher/mode combination (PHP 4 >= 4.0.2, PHP 5)
  1893. int mcrypt_get_key_size(int cipher) |Get the key size of the specified cipher (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1894. array mcrypt_list_algorithms([string lib_dir]) |Get an array of all supported ciphers (PHP 4 >= 4.0.2, PHP 5)
  1895. array mcrypt_list_modes([string lib_dir]) |Get an array of all supported modes (PHP 4 >= 4.0.2, PHP 5)
  1896. bool mcrypt_module_close(resource td) |Close the mcrypt module (PHP 4 >= 4.0.2, PHP 5)
  1897. int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir]) |Returns the blocksize of the specified algorithm (PHP 4 >= 4.0.2, PHP 5)
  1898. int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir]) |Returns the maximum supported keysize of the opened mode (PHP 4 >= 4.0.2, PHP 5)
  1899. array mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir]) |Returns an array with the supported keysizes of the opened algorithm (PHP 4 >= 4.0.2, PHP 5)
  1900. bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir]) |Returns if the specified module is a block algorithm or not (PHP 4 >= 4.0.2, PHP 5)
  1901. bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir]) |This function checks whether the specified algorithm is a block algorithm (PHP 4 >= 4.0.2, PHP 5)
  1902. bool mcrypt_module_is_block_mode(string mode [, string lib_dir]) |Returns if the specified mode outputs blocks or not (PHP 4 >= 4.0.2, PHP 5)
  1903. resource mcrypt_module_open(string algorithm, string algorithm_directory, string mode, string mode_directory) |Opens the module of the algorithm and the mode to be used (PHP 4 >= 4.0.2, PHP 5)
  1904. bool mcrypt_module_self_test(string algorithm [, string lib_dir]) |This function runs a self test on the specified module (PHP 4 >= 4.0.2, PHP 5)
  1905. string mcrypt_ofb(int cipher, string key, string data, int mode, string iv) |Encrypt/decrypt data in OFB mode (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  1906. string md5_file(string filename [, bool raw_output]) |Calculates the md5 hash of a given file (PHP 4 >= 4.2.0, PHP 5)
  1907. string md5(string str [, bool raw_output]) |Calculate the md5 hash of a string (PHP 3, PHP 4, PHP 5)
  1908. string mdecrypt_generic(resource td, string data) |Decrypt data (PHP 4 >= 4.0.2, PHP 5)
  1909. bool Memcache::add(string key, mixed var [, int flag [, int expire]]) |Add an item to the server
  1910. bool Memcache::addServer(string host [, int port [, bool persistent [, int weight [, int timeout [, int retry_interval]]]]]) |Add a memcached server to connection pool
  1911. bool Memcache::close() |Close memcached server connection
  1912. bool Memcache::connect(string host [, int port [, int timeout]]) |Open memcached server connection
  1913. bool memcache_debug(bool on_off) |Turn debug output on/off (PECL)
  1914. int Memcache::decrement(string key [, int value]) |Decrement item's value
  1915. bool Memcache::delete(string key [, int timeout]) |Delete item from the server
  1916. bool Memcache::flush() |Flush all existing items at the server
  1917. string Memcache::get(string key) |Retrieve item from the server
  1918. array Memcache::getExtendedStats() |Get statistics from all servers in pool
  1919. array Memcache::getStats() |Get statistics of the server
  1920. string Memcache::getVersion() |Return version of the server
  1921. int Memcache::increment(string key [, int value]) |Increment item's value
  1922. bool Memcache::pconnect(string host [, int port [, int timeout]]) |Open memcached server persistent connection
  1923. bool Memcache::replace(string key, mixed var [, int flag [, int expire]]) |Replace value of the existing item
  1924. bool Memcache::set(string key, mixed var [, int flag [, int expire]]) |Store data at the server
  1925. bool Memcache::setCompressThreshold(int threshold [, float min_savings]) |Enable automatic compression of large values
  1926. int memory_get_usage() |Returns the amount of memory allocated to PHP (PHP 4 >= 4.3.2, PHP 5)
  1927. string metaphone(string str [, int phones]) |Calculate the metaphone key of a string (PHP 4, PHP 5)
  1928. bool method_exists(object object, string method_name) |Checks if the class method exists (PHP 4, PHP 5)
  1929. int mhash_count() |Get the highest available hash id (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1930. int mhash_get_block_size(int hash) |Get the block size of the specified hash (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1931. string mhash_get_hash_name(int hash) |Get the name of the specified hash (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1932. string mhash_keygen_s2k(int hash, string password, string salt, int bytes) |Generates a key (PHP 4 >= 4.0.4, PHP 5)
  1933. string mhash(int hash, string data [, string key]) |Compute hash (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  1934. mixed microtime([bool get_as_float]) |Return current Unix timestamp with microseconds (PHP 3, PHP 4, PHP 5)
  1935. string mime_content_type(string filename) |Detect MIME Content-type for a file (PHP 4 >= 4.3.0, PHP 5)
  1936. mixed min(number arg1, number arg2 [, number ...]) |Find lowest value (PHP 3, PHP 4, PHP 5)
  1937. int ming_keypress(string str) |Returns the action flag for keyPress(char) (PHP 5)
  1938. void ming_setcubicthreshold(int threshold) |Set cubic threshold (?) (PHP 4 >= 4.0.5, PHP 5)
  1939. void ming_setscale(int scale) |Set scale (?) (PHP 4 >= 4.0.5, PHP 5)
  1940. void ming_useConstants(int use) |Use constant pool (?)
  1941. void ming_useswfversion(int version) |Use SWF version (?) (PHP 4 >= 4.2.0, PHP 5)
  1942. bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) |Makes directory (PHP 3, PHP 4, PHP 5)
  1943. int mktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) |Get Unix timestamp for a date (PHP 3, PHP 4, PHP 5)
  1944. string money_format(string format, float number) |Formats a number as a currency string (PHP 4 >= 4.3.0, PHP 5)
  1945. bool move_uploaded_file(string filename, string destination) |Moves an uploaded file to a new location (PHP 4 >= 4.0.3, PHP 5)
  1946. bool msession_connect(string host, string port) |Connect to msession server (PHP 4 >= 4.2.0, PHP 5)
  1947. int msession_count() |Get session count (PHP 4 >= 4.2.0, PHP 5)
  1948. bool msession_create(string session) |Create a session (PHP 4 >= 4.2.0, PHP 5)
  1949. bool msession_destroy(string name) |Destroy a session (PHP 4 >= 4.2.0, PHP 5)
  1950. void msession_disconnect() |Close connection to msession server (PHP 4 >= 4.2.0, PHP 5)
  1951. array msession_find(string name, string value) |Find all sessions with name and value (PHP 4 >= 4.2.0, PHP 5)
  1952. array msession_get_array(string session) |Get array of msession variables (PHP 4 >= 4.2.0, PHP 5)
  1953. string msession_get_data(string session) |Get data session unstructured data (PHP 4 >= 4.2.0, PHP 5)
  1954. string msession_get(string session, string name, string value) |Get value from session (PHP 4 >= 4.2.0, PHP 5)
  1955. string msession_inc(string session, string name) |Increment value in session (PHP 4 >= 4.2.0, PHP 5)
  1956. array msession_list() |List all sessions (PHP 4 >= 4.2.0, PHP 5)
  1957. array msession_listvar(string name) |List sessions with variable (PHP 4 >= 4.2.0, PHP 5)
  1958. int msession_lock(string name) |Lock a session (PHP 4 >= 4.2.0, PHP 5)
  1959. string msession_plugin(string session, string val [, string param]) |Call an escape function within the msession personality plugin (PHP 4 >= 4.2.0, PHP 5)
  1960. string msession_randstr(int param) |Get random string (PHP 4 >= 4.2.0, PHP 5)
  1961. void msession_set_array(string session, array tuples) |Set msession variables from an array (PHP 4 >= 4.2.0, PHP 5)
  1962. bool msession_set_data(string session, string value) |Set data session unstructured data (PHP 4 >= 4.2.0, PHP 5)
  1963. bool msession_set(string session, string name, string value) |Set value in session (PHP 4 >= 4.2.0, PHP 5)
  1964. int msession_timeout(string session [, int param]) |Set/get session timeout (PHP 4 >= 4.2.0, PHP 5)
  1965. string msession_uniq(int param) |Get unique id (PHP 4 >= 4.2.0, PHP 5)
  1966. int msession_unlock(string session, int key) |Unlock a session (PHP 4 >= 4.2.0, PHP 5)
  1967. resource msg_get_queue(int key [, int perms]) |Create or attach to a message queue (PHP 4 >= 4.3.0, PHP 5)
  1968. bool msg_receive(resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed &message [, bool unserialize [, int flags [, int &errorcode]]]) |Receive a message from a message queue (PHP 4 >= 4.3.0, PHP 5)
  1969. bool msg_remove_queue(resource queue) |Destroy a message queue (PHP 4 >= 4.3.0, PHP 5)
  1970. bool msg_send(resource queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int &errorcode]]]) |Send a message to a message queue (PHP 4 >= 4.3.0, PHP 5)
  1971. bool msg_set_queue(resource queue, array data) |Set information in the message queue data structure (PHP 4 >= 4.3.0, PHP 5)
  1972. array msg_stat_queue(resource queue) |Returns information from the message queue data structure (PHP 4 >= 4.3.0, PHP 5)
  1973. int msql_affected_rows(resource result) |Returns number of affected rows (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  1974. bool msql_close([resource link_identifier]) |Close mSQL connection (PHP 3, PHP 4, PHP 5)
  1975. resource msql_connect([string hostname]) |Open mSQL connection (PHP 3, PHP 4, PHP 5)
  1976. bool msql_create_db(string database_name [, resource link_identifier]) |Create mSQL database (PHP 3, PHP 4, PHP 5)
  1977. bool msql_createdb(string database_name [, resource link_identifier]) |Create mSQL database (PHP 3, PHP 4, PHP 5)
  1978. bool msql_data_seek(resource result, int row_number) |Move internal row pointer (PHP 3, PHP 4, PHP 5)
  1979. resource msql_db_query(string database, string query [, resource link_identifier]) |Send mSQL query (PHP 3, PHP 4, PHP 5)
  1980. string msql_dbname(resource result, int row [, mixed field]) |Get result data (PHP 3, PHP 4, PHP 5)
  1981. bool msql_drop_db(string database_name [, resource link_identifier]) |Drop (delete) mSQL database (PHP 3, PHP 4, PHP 5)
  1982. string msql_error() |Returns error message of last msql call (PHP 3, PHP 4, PHP 5)
  1983. array msql_fetch_array(resource result [, int result_type]) |Fetch row as array (PHP 3, PHP 4, PHP 5)
  1984. object msql_fetch_field(resource result [, int field_offset]) |Get field information (PHP 3, PHP 4, PHP 5)
  1985. object msql_fetch_object(resource result) |Fetch row as object (PHP 3, PHP 4, PHP 5)
  1986. array msql_fetch_row(resource result) |Get row as enumerated array (PHP 3, PHP 4, PHP 5)
  1987. string msql_field_flags(resource result, int field_offset) |Get field flags (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1988. int msql_field_len(resource result, int field_offset) |Get field length (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1989. string msql_field_name(resource result, int field_offset) |Get the name of the specified field in a result (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1990. bool msql_field_seek(resource result, int field_offset) |Set field offset (PHP 3, PHP 4, PHP 5)
  1991. int msql_field_table(resource result, int field_offset) |Get table name for field (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1992. string msql_field_type(resource result, int field_offset) |Get field type (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1993. string msql_fieldflags(resource result, int field_offset) |Get field flags (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1994. int msql_fieldlen(resource result, int field_offset) |Get field length (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1995. string msql_fieldname(resource result, int field_offset) |Get the name of the specified field in a result (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1996. int msql_fieldtable(resource result, int field_offset) |Get table name for field (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1997. string msql_fieldtype(resource result, int field_offset) |Get field type (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  1998. bool msql_free_result(resource result) |Free result memory (PHP 3, PHP 4, PHP 5)
  1999. resource msql_list_dbs([resource link_identifier]) |List mSQL databases on server (PHP 3, PHP 4, PHP 5)
  2000. resource msql_list_fields(string database, string tablename [, resource link_identifier]) |List result fields (PHP 3, PHP 4, PHP 5)
  2001. resource msql_list_tables(string database [, resource link_identifier]) |List tables in an mSQL database (PHP 3, PHP 4, PHP 5)
  2002. int msql_num_fields(resource result) |Get number of fields in result (PHP 3, PHP 4, PHP 5)
  2003. int msql_num_rows(resource query_identifier) |Get number of rows in result (PHP 3, PHP 4, PHP 5)
  2004. int msql_numfields(resource result) |Get number of fields in result (PHP 3, PHP 4, PHP 5)
  2005. int msql_numrows(resource query_identifier) |Get number of rows in result (PHP 3, PHP 4, PHP 5)
  2006. resource msql_pconnect([string hostname]) |Open persistent mSQL connection (PHP 3, PHP 4, PHP 5)
  2007. resource msql_query(string query [, resource link_identifier]) |Send mSQL query (PHP 3, PHP 4, PHP 5)
  2008. alias mmsql_regcase |Alias of msql_regcase (PHP 3, PHP 4, PHP 5)
  2009. string msql_result(resource result, int row [, mixed field]) |Get result data (PHP 3, PHP 4, PHP 5)
  2010. bool msql_select_db(string database_name [, resource link_identifier]) |Select mSQL database (PHP 3, PHP 4, PHP 5)
  2011. string msql_tablename(resource result, int row [, mixed field]) |Get result data (PHP 3, PHP 4, PHP 5)
  2012. resource msql(string database, string query [, resource link_identifier]) |Send mSQL query (PHP 3, PHP 4, PHP 5)
  2013. bool mssql_bind(resource stmt, string param_name, mixed &var, int type [, int is_output [, int is_null [, int maxlen]]]) |Adds a parameter to a stored procedure or a remote stored procedure (PHP 4 >= 4.1.0, PHP 5)
  2014. bool mssql_close([resource link_identifier]) |Close MS SQL Server connection (PHP 3, PHP 4, PHP 5)
  2015. resource mssql_connect([string servername [, string username [, string password]]]) |Open MS SQL server connection (PHP 3, PHP 4, PHP 5)
  2016. bool mssql_data_seek(resource result_identifier, int row_number) |Moves internal row pointer (PHP 3, PHP 4, PHP 5)
  2017. mixed mssql_execute(resource stmt [, bool skip_results]) |Executes a stored procedure on a MS SQL server database (PHP 4 >= 4.1.0, PHP 5)
  2018. array mssql_fetch_array(resource result [, int result_type]) |Fetch a result row as an associative array, a numeric array, or both (PHP 3, PHP 4, PHP 5)
  2019. array mssql_fetch_assoc(resource result_id) |Returns an associative array of the current row in the result set specified by result_id (PHP 4 >= 4.2.0, PHP 5)
  2020. int mssql_fetch_batch(resource result_index) |Returns the next batch of records (PHP 4 >= 4.0.4, PHP 5)
  2021. object mssql_fetch_field(resource result [, int field_offset]) |Get field information (PHP 3, PHP 4, PHP 5)
  2022. object mssql_fetch_object(resource result) |Fetch row as object (PHP 3, PHP 4, PHP 5)
  2023. array mssql_fetch_row(resource result) |Get row as enumerated array (PHP 3, PHP 4, PHP 5)
  2024. int mssql_field_length(resource result [, int offset]) |Get the length of a field (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  2025. string mssql_field_name(resource result [, int offset]) |Get the name of a field (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  2026. bool mssql_field_seek(resource result, int field_offset) |Seeks to the specified field offset (PHP 3, PHP 4, PHP 5)
  2027. string mssql_field_type(resource result [, int offset]) |Gets the type of a field (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  2028. bool mssql_free_result(resource result) |Free result memory (PHP 3, PHP 4, PHP 5)
  2029. bool mssql_free_statement(resource statement) |Free statement memory (PHP 4 >= 4.3.2, PHP 5)
  2030. string mssql_get_last_message() |Returns the last message from the server (PHP 3, PHP 4, PHP 5)
  2031. string mssql_guid_string(string binary [, int short_format]) |Converts a 16 byte binary GUID to a string (PHP 4 >= 4.1.0, PHP 5)
  2032. resource mssql_init(string sp_name [, resource conn_id]) |Initializes a stored procedure or a remote stored procedure (PHP 4 >= 4.1.0, PHP 5)
  2033. void mssql_min_error_severity(int severity) |Sets the lower error severity (PHP 3, PHP 4, PHP 5)
  2034. void mssql_min_message_severity(int severity) |Sets the lower message severity (PHP 3, PHP 4, PHP 5)
  2035. bool mssql_next_result(resource result_id) |Move the internal result pointer to the next result (PHP 4 >= 4.0.5, PHP 5)
  2036. int mssql_num_fields(resource result) |Gets the number of fields in result (PHP 3, PHP 4, PHP 5)
  2037. int mssql_num_rows(resource result) |Gets the number of rows in result (PHP 3, PHP 4, PHP 5)
  2038. resource mssql_pconnect([string servername [, string username [, string password]]]) |Open persistent MS SQL connection (PHP 3, PHP 4, PHP 5)
  2039. mixed mssql_query(string query [, resource link_identifier [, int batch_size]]) |Send MS SQL query (PHP 3, PHP 4, PHP 5)
  2040. string mssql_result(resource result, int row, mixed field) |Get result data (PHP 3, PHP 4, PHP 5)
  2041. int mssql_rows_affected(resource conn_id) |Returns the number of records affected by the query (PHP 4 >= 4.0.4, PHP 5)
  2042. bool mssql_select_db(string database_name [, resource link_identifier]) |Select MS SQL database (PHP 3, PHP 4, PHP 5)
  2043. int mt_getrandmax() |Show largest possible random value (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2044. int mt_rand([int min, int max]) |Generate a better random value (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2045. void mt_srand([int seed]) |Seed the better random number generator (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2046. void muscat_close(resource muscat_handle) |Shuts down the muscat session and releases any memory back to PHP (4.0.5 - 4.2.3 only, PECL)
  2047. string muscat_get(resource muscat_handle) |Gets a line back from the core muscat API (4.0.5 - 4.2.3 only, PECL)
  2048. void muscat_give(resource muscat_handle, string string) |Sends string to the core muscat API (4.0.5 - 4.2.3 only, PECL)
  2049. resource muscat_setup_net(string muscat_host) |Creates a new muscat session and returns the handle (4.0.5 - 4.2.3 only, PECL)
  2050. resource muscat_setup(int size [, string muscat_dir]) |Creates a new muscat session and returns the handle (4.0.5 - 4.2.3 only, PECL)
  2051. int mysql_affected_rows([resource link_identifier]) |Get number of affected rows in previous MySQL operation (PHP 3, PHP 4, PHP 5)
  2052. int mysql_change_user(string user, string password [, string database [, resource link_identifier]]) |Change logged in user of the active connection (PHP 3 >= 3.0.13)
  2053. string mysql_client_encoding([resource link_identifier]) |Returns the name of the character set (PHP 4 >= 4.3.0, PHP 5)
  2054. bool mysql_close([resource link_identifier]) |Close MySQL connection (PHP 3, PHP 4, PHP 5)
  2055. resource mysql_connect([string server [, string username [, string password [, bool new_link [, int client_flags]]]]]) |Open a connection to a MySQL Server (PHP 3, PHP 4, PHP 5)
  2056. bool mysql_create_db(string database_name [, resource link_identifier]) |Create a MySQL database (PHP 3, PHP 4, PHP 5)
  2057. bool mysql_data_seek(resource result, int row_number) |Move internal result pointer (PHP 3, PHP 4, PHP 5)
  2058. string mysql_db_name(resource result, int row [, mixed field]) |Get result data (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2059. resource mysql_db_query(string database, string query [, resource link_identifier]) |Send a MySQL query (PHP 3, PHP 4, PHP 5)
  2060. bool mysql_drop_db(string database_name [, resource link_identifier]) |Drop (delete) a MySQL database (PHP 3, PHP 4, PHP 5)
  2061. int mysql_errno([resource link_identifier]) |Returns the numerical value of the error message from previous MySQL operation (PHP 3, PHP 4, PHP 5)
  2062. string mysql_error([resource link_identifier]) |Returns the text of the error message from previous MySQL operation (PHP 3, PHP 4, PHP 5)
  2063. string mysql_escape_string(string unescaped_string) |Escapes a string for use in a mysql_query (PHP 4 >= 4.0.3, PHP 5)
  2064. array mysql_fetch_array(resource result [, int result_type]) |Fetch a result row as an associative array, a numeric array, or both (PHP 3, PHP 4, PHP 5)
  2065. array mysql_fetch_assoc(resource result) |Fetch a result row as an associative array (PHP 4 >= 4.0.3, PHP 5)
  2066. object mysql_fetch_field(resource result [, int field_offset]) |Get column information from a result and return as an object (PHP 3, PHP 4, PHP 5)
  2067. array mysql_fetch_lengths(resource result) |Get the length of each output in a result (PHP 3, PHP 4, PHP 5)
  2068. object mysql_fetch_object(resource result) |Fetch a result row as an object (PHP 3, PHP 4, PHP 5)
  2069. array mysql_fetch_row(resource result) |Get a result row as an enumerated array (PHP 3, PHP 4, PHP 5)
  2070. string mysql_field_flags(resource result, int field_offset) |Get the flags associated with the specified field in a result (PHP 3, PHP 4, PHP 5)
  2071. int mysql_field_len(resource result, int field_offset) |Returns the length of the specified field (PHP 3, PHP 4, PHP 5)
  2072. string mysql_field_name(resource result, int field_offset) |Get the name of the specified field in a result (PHP 3, PHP 4, PHP 5)
  2073. bool mysql_field_seek(resource result, int field_offset) |Set result pointer to a specified field offset (PHP 3, PHP 4, PHP 5)
  2074. string mysql_field_table(resource result, int field_offset) |Get name of the table the specified field is in (PHP 3, PHP 4, PHP 5)
  2075. string mysql_field_type(resource result, int field_offset) |Get the type of the specified field in a result (PHP 3, PHP 4, PHP 5)
  2076. bool mysql_free_result(resource result) |Free result memory (PHP 3, PHP 4, PHP 5)
  2077. string mysql_get_client_info() |Get MySQL client info (PHP 4 >= 4.0.5, PHP 5)
  2078. string mysql_get_host_info([resource link_identifier]) |Get MySQL host info (PHP 4 >= 4.0.5, PHP 5)
  2079. int mysql_get_proto_info([resource link_identifier]) |Get MySQL protocol info (PHP 4 >= 4.0.5, PHP 5)
  2080. string mysql_get_server_info([resource link_identifier]) |Get MySQL server info (PHP 4 >= 4.0.5, PHP 5)
  2081. string mysql_info([resource link_identifier]) |Get information about the most recent query (PHP 4 >= 4.3.0, PHP 5)
  2082. int mysql_insert_id([resource link_identifier]) |Get the ID generated from the previous INSERT operation (PHP 3, PHP 4, PHP 5)
  2083. resource mysql_list_dbs([resource link_identifier]) |List databases available on a MySQL server (PHP 3, PHP 4, PHP 5)
  2084. resource mysql_list_fields(string database_name, string table_name [, resource link_identifier]) |List MySQL table fields (PHP 3, PHP 4, PHP 5)
  2085. resource mysql_list_processes([resource link_identifier]) |List MySQL processes (PHP 4 >= 4.3.0, PHP 5)
  2086. resource mysql_list_tables(string database [, resource link_identifier]) |List tables in a MySQL database (PHP 3, PHP 4, PHP 5)
  2087. int mysql_num_fields(resource result) |Get number of fields in result (PHP 3, PHP 4, PHP 5)
  2088. int mysql_num_rows(resource result) |Get number of rows in result (PHP 3, PHP 4, PHP 5)
  2089. resource mysql_pconnect([string server [, string username [, string password [, int client_flags]]]]) |Open a persistent connection to a MySQL server (PHP 3, PHP 4, PHP 5)
  2090. bool mysql_ping([resource link_identifier]) |Ping a server connection or reconnect if there is no connection (PHP 4 >= 4.3.0, PHP 5)
  2091. resource mysql_query(string query [, resource link_identifier]) |Send a MySQL query (PHP 3, PHP 4, PHP 5)
  2092. string mysql_real_escape_string(string unescaped_string [, resource link_identifier]) |Escapes special characters in a string for use in a SQL statement (PHP 4 >= 4.3.0, PHP 5)
  2093. string mysql_result(resource result, int row [, mixed field]) |Get result data (PHP 3, PHP 4, PHP 5)
  2094. bool mysql_select_db(string database_name [, resource link_identifier]) |Select a MySQL database (PHP 3, PHP 4, PHP 5)
  2095. string mysql_stat([resource link_identifier]) |Get current system status (PHP 4 >= 4.3.0, PHP 5)
  2096. string mysql_tablename(resource result, int i) |Get table name of field (PHP 3, PHP 4, PHP 5)
  2097. int mysql_thread_id([resource link_identifier]) |Return the current thread ID (PHP 4 >= 4.3.0, PHP 5)
  2098. resource mysql_unbuffered_query(string query [, resource link_identifier]) |Send an SQL query to MySQL, without fetching and buffering the result rows (PHP 4 >= 4.0.6, PHP 5)
  2099. int mysqli_affected_rows(mysqli link) |Gets the number of affected rows in a previous MySQL operation (PHP 5)
  2100. bool mysqli_autocommit(mysqli link, bool mode) |Turns on or off auto-commiting database modifications (PHP 5)
  2101. bool mysqli_bind_param(mysqli_stmt stmt, string types, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement as parameters (PHP 5)
  2102. bool mysqli_bind_result(mysqli_stmt stmt, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement for result storage (PHP 5)
  2103. bool mysqli_change_user(mysqli link, string user, string password, string database) |Changes the user of the specified database connection (PHP 5)
  2104. string mysqli_character_set_name(mysqli link) |Returns the default character set for the database connection (PHP 5)
  2105. string mysqli_client_encoding(mysqli link) |Returns the default character set for the database connection (PHP 5)
  2106. bool mysqli_close(mysqli link) |Closes a previously opened database connection (PHP 5)
  2107. bool mysqli_commit(mysqli link) |Commits the current transaction (PHP 5)
  2108. int mysqli_connect_errno() |Returns the error code from last connect call (PHP 5)
  2109. string mysqli_connect_error() |Returns a string description of the last connect error (PHP 5)
  2110. mysqli mysqli_connect([string host [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) |Open a new connection to the MySQL server (PHP 5)
  2111. bool mysqli_data_seek(mysqli_result result, int offset) |Adjusts the result pointer to an arbitary row in the result (PHP 5)
  2112. bool mysqli_debug(string debug) |Performs debugging operations (PHP 5)
  2113. bool mysqli_disable_reads_from_master(mysqli link) |Disable reads from master (PHP 5)
  2114. bool mysqli_disable_rpl_parse(mysqli link) |Disable RPL parse (PHP 5)
  2115. bool mysqli_dump_debug_info(mysqli link) |Dump debugging information into the log (PHP 5)
  2116. mysqli mysqli_embedded_connect([string dbname]) |Open a connection to an embedded mysql server (PHP 5 <= 5.0.4)
  2117. bool mysqli_enable_reads_from_master(mysqli link) |Enable reads from master (PHP 5)
  2118. bool mysqli_enable_rpl_parse(mysqli link) |Enable RPL parse (PHP 5)
  2119. int mysqli_errno(mysqli link) |Returns the error code for the most recent function call (PHP 5)
  2120. string mysqli_error(mysqli link) |Returns a string description of the last error (PHP 5)
  2121. string mysqli_escape_string(mysqli link, string escapestr) |Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection (PHP 5)
  2122. bool mysqli_execute(mysqli_stmt stmt) |Executes a prepared Query (PHP 5)
  2123. mixed mysqli_fetch_array(mysqli_result result [, int resulttype]) |Fetch a result row as an associative, a numeric array, or both (PHP 5)
  2124. array mysqli_fetch_assoc(mysqli_result result) |Fetch a result row as an associative array (PHP 5)
  2125. object mysqli_fetch_field_direct(mysqli_result result, int fieldnr) |Fetch meta-data for a single field (PHP 5)
  2126. object mysqli_fetch_field(mysqli_result result) |Returns the next field in the result set (PHP 5)
  2127. array mysqli_fetch_fields(mysqli_result result) |Returns an array of objects representing the fields in a result set (PHP 5)
  2128. array mysqli_fetch_lengths(mysqli_result result) |Returns the lengths of the columns of the current row in the result set (PHP 5)
  2129. mixed mysqli_fetch_object(mysqli_result result) |Returns the current row of a result set as an object (PHP 5)
  2130. mixed mysqli_fetch_row(mysqli_result result) |Get a result row as an enumerated array (PHP 5)
  2131. bool mysqli_fetch(mysqli_stmt stmt) |Fetch results from a prepared statement into the bound variables (PHP 5)
  2132. int mysqli_field_count(mysqli link) |Returns the number of columns for the most recent query (PHP 5)
  2133. bool mysqli_field_seek(mysqli_result result, int fieldnr) |Set result pointer to a specified field offset (PHP 5)
  2134. int mysqli_field_tell(mysqli_result result) |Get current field offset of a result pointer (PHP 5)
  2135. void mysqli_free_result(mysqli_result result) |Frees the memory associated with a result (PHP 5)
  2136. string mysqli_get_client_info() |Returns the MySQL client version as a string (PHP 5)
  2137. int mysqli_get_client_version() |Get MySQL client info (PHP 5)
  2138. string mysqli_get_host_info(mysqli link) |Returns a string representing the type of connection used (PHP 5)
  2139. mysqli_result mysqli_get_metadata(mysqli_stmt stmt) |Returns result set metadata from a prepared statement (PHP 5)
  2140. int mysqli_get_proto_info(mysqli link) |Returns the version of the MySQL protocol used (PHP 5)
  2141. string mysqli_get_server_info(mysqli link) |Returns the version of the MySQL server (PHP 5)
  2142. int mysqli_get_server_version(mysqli link) |Returns the version of the MySQL server as an integer (PHP 5)
  2143. string mysqli_info(mysqli link) |Retrieves information about the most recently executed query (PHP 5)
  2144. mysqli mysqli_init() |Initializes MySQLi and returns a resource for use with mysqli_real_connect() (PHP 5)
  2145. int mysqli_insert_id(mysqli link) |Returns the auto generated id used in the last query (PHP 5)
  2146. bool mysqli_kill(mysqli link, int processid) |Asks the server to kill a MySQL thread (PHP 5)
  2147. bool mysqli_master_query(mysqli link, string query) |Enforce execution of a query on the master in a master/slave setup (PHP 5)
  2148. bool mysqli_more_results(mysqli link) |Check if there any more query results from a multi query (PHP 5)
  2149. bool mysqli_multi_query(mysqli link, string query) |Performs a query on the database (PHP 5)
  2150. bool mysqli_next_result(mysqli link) |Prepare next result from multi_query (PHP 5)
  2151. int mysqli_num_fields(mysqli_result result) |Get the number of fields in a result (PHP 5)
  2152. int mysqli_num_rows(mysqli_result result) |Gets the number of rows in a result (PHP 5)
  2153. bool mysqli_options(mysqli link, int option, mixed value) |Set options (PHP 5)
  2154. int mysqli_param_count(mysqli_stmt stmt) |Returns the number of parameter for the given statement (PHP 5)
  2155. bool mysqli_ping(mysqli link) |Pings a server connection, or tries to reconnect if the connection has gone down (PHP 5)
  2156. mysqli_stmt mysqli_prepare(mysqli link, string query) |Prepare a SQL statement for execution (PHP 5)
  2157. mixed mysqli_query(mysqli link, string query [, int resultmode]) |Performs a query on the database (PHP 5)
  2158. bool mysqli_real_connect(mysqli link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket [, int flags]]]]]]]) |Opens a connection to a mysql server (PHP 5)
  2159. string mysqli_real_escape_string(mysqli link, string escapestr) |Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection (PHP 5)
  2160. bool mysqli_real_query(mysqli link, string query) |Execute an SQL query (PHP 5)
  2161. bool mysqli_report(int flags) |Enables or disables internal report functions (PHP 5)
  2162. bool mysqli_rollback(mysqli link) |Rolls back current transaction (PHP 5)
  2163. int mysqli_rpl_parse_enabled(mysqli link) |Check if RPL parse is enabled (PHP 5)
  2164. bool mysqli_rpl_probe(mysqli link) |RPL probe (PHP 5)
  2165. int mysqli_rpl_query_type(mysqli link, string query) |Returns RPL query type (PHP 5)
  2166. bool mysqli_select_db(mysqli link, string dbname) |Selects the default database for database queries (PHP 5)
  2167. bool mysqli_send_long_data(mysqli_stmt stmt, int param_nr, string data) |Send data in blocks (PHP 5)
  2168. bool mysqli_send_query(mysqli link, string query) |Send the query and return (PHP 5)
  2169. void mysqli_server_end() |Shut down the embedded server (PHP 5 <= 5.0.4)
  2170. bool mysqli_server_init([array server [, array groups]]) |Initialize embedded server (PHP 5 <= 5.0.4)
  2171. bool mysqli_set_charset(mysqli link, string charset) |Sets the default client character set (PHP 5 >= 5.1.0RC1)
  2172. bool mysqli_set_opt(mysqli link, int option, mixed value) |Set options (PHP 5)
  2173. string mysqli_sqlstate(mysqli link) |Returns the SQLSTATE error from previous MySQL operation (PHP 5)
  2174. bool mysqli_ssl_set(mysqli link, string key, string cert, string ca, string capath, string cipher) |Used for establishing secure connections using SSL (PHP 5)
  2175. string mysqli_stat(mysqli link) |Gets the current system status (PHP 5)
  2176. int mysqli_stmt_affected_rows(mysqli_stmt stmt) |Returns the total number of rows changed, deleted, or inserted by the last executed statement (PHP 5)
  2177. bool mysqli_stmt_bind_param(mysqli_stmt stmt, string types, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement as parameters (PHP 5)
  2178. bool mysqli_stmt_bind_result(mysqli_stmt stmt, mixed &var1 [, mixed &...]) |Binds variables to a prepared statement for result storage (PHP 5)
  2179. bool mysqli_stmt_close(mysqli_stmt stmt) |Closes a prepared statement (PHP 5)
  2180. void mysqli_stmt_data_seek(mysqli_stmt statement, int offset) |Seeks to an arbitray row in statement result set (PHP 5)
  2181. int mysqli_stmt_errno(mysqli_stmt stmt) |Returns the error code for the most recent statement call (PHP 5)
  2182. string mysqli_stmt_error(mysqli_stmt stmt) |Returns a string description for last statement error (PHP 5)
  2183. bool mysqli_stmt_execute(mysqli_stmt stmt) |Executes a prepared Query (PHP 5)
  2184. bool mysqli_stmt_fetch(mysqli_stmt stmt) |Fetch results from a prepared statement into the bound variables (PHP 5)
  2185. void mysqli_stmt_free_result(mysqli_stmt stmt) |Frees stored result memory for the given statement handle (PHP 5)
  2186. mysqli_stmt mysqli_stmt_init(mysqli link) |Initializes a statement and returns an object for use with mysqli_stmt_prepare (PHP 5)
  2187. int mysqli_stmt_num_rows(mysqli_stmt stmt) |Return the number of rows in statements result set (PHP 5)
  2188. int mysqli_stmt_param_count(mysqli_stmt stmt) |Returns the number of parameter for the given statement (PHP 5)
  2189. bool mysqli_stmt_prepare(mysqli_stmt stmt, string query) |Prepare a SQL statement for execution (PHP 5)
  2190. bool mysqli_stmt_reset(mysqli_stmt stmt) |Resets a prepared statement (PHP 5)
  2191. mysqli_result mysqli_stmt_result_metadata(mysqli_stmt stmt) |Returns result set metadata from a prepared statement (PHP 5)
  2192. bool mysqli_stmt_send_long_data(mysqli_stmt stmt, int param_nr, string data) |Send data in blocks (PHP 5)
  2193. string mysqli_stmt_sqlstate(mysqli_stmt stmt) |Returns SQLSTATE error from previous statement operation (PHP 5)
  2194. bool mysqli_stmt_store_result(mysqli_stmt stmt) |Transfers a result set from a prepared statement (PHP 5)
  2195. mysqli_result mysqli_store_result(mysqli link) |Transfers a result set from the last query (PHP 5)
  2196. int mysqli_thread_id(mysqli link) |Returns the thread ID for the current connection (PHP 5)
  2197. bool mysqli_thread_safe() |Returns whether thread safety is given or not (PHP 5)
  2198. mysqli_result mysqli_use_result(mysqli link) |Initiate a result set retrieval (PHP 5)
  2199. int mysqli_warning_count(mysqli link) |Returns the number of warnings from the last query for the given link (PHP 5)
  2200. bool natcasesort(array &array) |Sort an array using a case insensitive "natural order" algorithm (PHP 4, PHP 5)
  2201. bool natsort(array &array) |Sort an array using a "natural order" algorithm (PHP 4, PHP 5)
  2202. int ncurses_addch(int ch) |Add character at current position and advance cursor (PHP 4 >= 4.1.0, PHP 5)
  2203. int ncurses_addchnstr(string s, int n) |Add attributed string with specified length at current position (PHP 4 >= 4.2.0, PHP 5)
  2204. int ncurses_addchstr(string s) |Add attributed string at current position (PHP 4 >= 4.2.0, PHP 5)
  2205. int ncurses_addnstr(string s, int n) |Add string with specified length at current position (PHP 4 >= 4.2.0, PHP 5)
  2206. int ncurses_addstr(string text) |Output text at current position (PHP 4 >= 4.2.0, PHP 5)
  2207. int ncurses_assume_default_colors(int fg, int bg) |Define default colors for color 0 (PHP 4 >= 4.2.0, PHP 5)
  2208. int ncurses_attroff(int attributes) |Turn off the given attributes (PHP 4 >= 4.1.0, PHP 5)
  2209. int ncurses_attron(int attributes) |Turn on the given attributes (PHP 4 >= 4.1.0, PHP 5)
  2210. int ncurses_attrset(int attributes) |Set given attributes (PHP 4 >= 4.1.0, PHP 5)
  2211. int ncurses_baudrate() |Returns baudrate of terminal (PHP 4 >= 4.1.0, PHP 5)
  2212. int ncurses_beep() |Let the terminal beep (PHP 4 >= 4.1.0, PHP 5)
  2213. int ncurses_bkgd(int attrchar) |Set background property for terminal screen (PHP 4 >= 4.1.0, PHP 5)
  2214. void ncurses_bkgdset(int attrchar) |Control screen background (PHP 4 >= 4.1.0, PHP 5)
  2215. int ncurses_border(int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner) |Draw a border around the screen using attributed characters (PHP 4 >= 4.2.0, PHP 5)
  2216. int ncurses_bottom_panel(resource panel) |Moves a visible panel to the bottom of the stack (PHP 4 >= 4.3.0, PHP 5)
  2217. bool ncurses_can_change_color() |Check if we can change terminals colors (PHP 4 >= 4.1.0, PHP 5)
  2218. bool ncurses_cbreak() |Switch of input buffering (PHP 4 >= 4.1.0, PHP 5)
  2219. bool ncurses_clear() |Clear screen (PHP 4 >= 4.1.0, PHP 5)
  2220. bool ncurses_clrtobot() |Clear screen from current position to bottom (PHP 4 >= 4.1.0, PHP 5)
  2221. bool ncurses_clrtoeol() |Clear screen from current position to end of line (PHP 4 >= 4.1.0, PHP 5)
  2222. int ncurses_color_content(int color, int &r, int &g, int &b) |Gets the RGB value for color (PHP 4 >= 4.3.0, PHP 5)
  2223. int ncurses_color_set(int pair) |Set fore- and background color (PHP 4 >= 4.1.0, PHP 5)
  2224. int ncurses_curs_set(int visibility) |Set cursor state (PHP 4 >= 4.1.0, PHP 5)
  2225. bool ncurses_def_prog_mode() |Saves terminals (program) mode (PHP 4 >= 4.1.0, PHP 5)
  2226. bool ncurses_def_shell_mode() |Saves terminals (shell) mode (PHP 4 >= 4.1.0, PHP 5)
  2227. int ncurses_define_key(string definition, int keycode) |Define a keycode (PHP 4 >= 4.2.0, PHP 5)
  2228. bool ncurses_del_panel(resource panel) |Remove panel from the stack and delete it (but not the associated window) (PHP 4 >= 4.3.0, PHP 5)
  2229. int ncurses_delay_output(int milliseconds) |Delay output on terminal using padding characters (PHP 4 >= 4.1.0, PHP 5)
  2230. bool ncurses_delch() |Delete character at current position, move rest of line left (PHP 4 >= 4.1.0, PHP 5)
  2231. bool ncurses_deleteln() |Delete line at current position, move rest of screen up (PHP 4 >= 4.1.0, PHP 5)
  2232. bool ncurses_delwin(resource window) |Delete a ncurses window (PHP 4 >= 4.1.0, PHP 5)
  2233. bool ncurses_doupdate() |Write all prepared refreshes to terminal (PHP 4 >= 4.1.0, PHP 5)
  2234. bool ncurses_echo() |Activate keyboard input echo (PHP 4 >= 4.1.0, PHP 5)
  2235. int ncurses_echochar(int character) |Single character output including refresh (PHP 4 >= 4.1.0, PHP 5)
  2236. int ncurses_end() |Stop using ncurses, clean up the screen (PHP 4 >= 4.1.0, PHP 5)
  2237. bool ncurses_erase() |Erase terminal screen (PHP 4 >= 4.1.0, PHP 5)
  2238. string ncurses_erasechar() |Returns current erase character (PHP 4 >= 4.1.0, PHP 5)
  2239. void ncurses_filter() |Set LINES for iniscr() and newterm() to 1 (PHP 4 >= 4.1.0, PHP 5)
  2240. bool ncurses_flash() |Flash terminal screen (visual bell) (PHP 4 >= 4.1.0, PHP 5)
  2241. bool ncurses_flushinp() |Flush keyboard input buffer (PHP 4 >= 4.1.0, PHP 5)
  2242. int ncurses_getch() |Read a character from keyboard (PHP 4 >= 4.1.0, PHP 5)
  2243. void ncurses_getmaxyx(resource window, int &y, int &x) |Returns the size of a window (PHP 4 >= 4.3.0, PHP 5)
  2244. bool ncurses_getmouse(array &mevent) |Reads mouse event (PHP 4 >= 4.2.0, PHP 5)
  2245. void ncurses_getyx(resource window, int &y, int &x) |Returns the current cursor position for a window (PHP 4 >= 4.3.0, PHP 5)
  2246. int ncurses_halfdelay(int tenth) |Put terminal into halfdelay mode (PHP 4 >= 4.1.0, PHP 5)
  2247. bool ncurses_has_colors() |Check if terminal has colors (PHP 4 >= 4.1.0, PHP 5)
  2248. bool ncurses_has_ic() |Check for insert- and delete-capabilities (PHP 4 >= 4.1.0, PHP 5)
  2249. bool ncurses_has_il() |Check for line insert- and delete-capabilities (PHP 4 >= 4.1.0, PHP 5)
  2250. int ncurses_has_key(int keycode) |Check for presence of a function key on terminal keyboard (PHP 4 >= 4.1.0, PHP 5)
  2251. int ncurses_hide_panel(resource panel) |Remove panel from the stack, making it invisible (PHP 4 >= 4.3.0, PHP 5)
  2252. int ncurses_hline(int charattr, int n) |Draw a horizontal line at current position using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5)
  2253. string ncurses_inch() |Get character and attribute at current position (PHP 4 >= 4.1.0, PHP 5)
  2254. int ncurses_init_color(int color, int r, int g, int b) |Set new RGB value for color (PHP 4 >= 4.2.0, PHP 5)
  2255. int ncurses_init_pair(int pair, int fg, int bg) |Allocate a color pair (PHP 4 >= 4.1.0, PHP 5)
  2256. void ncurses_init() |Initialize ncurses (PHP 4 >= 4.1.0, PHP 5)
  2257. int ncurses_insch(int character) |Insert character moving rest of line including character at current position (PHP 4 >= 4.1.0, PHP 5)
  2258. int ncurses_insdelln(int count) |Insert lines before current line scrolling down (negative numbers delete and scroll up) (PHP 4 >= 4.1.0, PHP 5)
  2259. bool ncurses_insertln() |Insert a line, move rest of screen down (PHP 4 >= 4.1.0, PHP 5)
  2260. int ncurses_insstr(string text) |Insert string at current position, moving rest of line right (PHP 4 >= 4.2.0, PHP 5)
  2261. int ncurses_instr(string &buffer) |Reads string from terminal screen (PHP 4 >= 4.2.0, PHP 5)
  2262. bool ncurses_isendwin() |Ncurses is in endwin mode, normal screen output may be performed (PHP 4 >= 4.1.0, PHP 5)
  2263. int ncurses_keyok(int keycode, bool enable) |Enable or disable a keycode (PHP 4 >= 4.2.0, PHP 5)
  2264. int ncurses_keypad(resource window, bool bf) |Turns keypad on or off (PHP 4 >= 4.2.0, PHP 5)
  2265. string ncurses_killchar() |Returns current line kill character (PHP 4 >= 4.1.0, PHP 5)
  2266. string ncurses_longname() |Returns terminals description (PHP 4 >= 4.2.0, PHP 5)
  2267. int ncurses_meta(resource window, bool 8bit) |Enables/Disable 8-bit meta key information (PHP 4 >= 4.3.0, PHP 5)
  2268. bool ncurses_mouse_trafo(int &y, int &x, bool toscreen) |Transforms coordinates (PHP 4 >= 4.2.0, PHP 5)
  2269. int ncurses_mouseinterval(int milliseconds) |Set timeout for mouse button clicks (PHP 4 >= 4.1.0, PHP 5)
  2270. int ncurses_mousemask(int newmask, int &oldmask) |Sets mouse options (PHP 4 >= 4.2.0, PHP 5)
  2271. int ncurses_move_panel(resource panel, int startx, int starty) |Moves a panel so that its upper-left corner is at [startx, starty] (PHP 4 >= 4.3.0, PHP 5)
  2272. int ncurses_move(int y, int x) |Move output position (PHP 4 >= 4.1.0, PHP 5)
  2273. int ncurses_mvaddch(int y, int x, int c) |Move current position and add character (PHP 4 >= 4.2.0, PHP 5)
  2274. int ncurses_mvaddchnstr(int y, int x, string s, int n) |Move position and add attributed string with specified length (PHP 4 >= 4.2.0, PHP 5)
  2275. int ncurses_mvaddchstr(int y, int x, string s) |Move position and add attributed string (PHP 4 >= 4.2.0, PHP 5)
  2276. int ncurses_mvaddnstr(int y, int x, string s, int n) |Move position and add string with specified length (PHP 4 >= 4.2.0, PHP 5)
  2277. int ncurses_mvaddstr(int y, int x, string s) |Move position and add string (PHP 4 >= 4.2.0, PHP 5)
  2278. int ncurses_mvcur(int old_y, int old_x, int new_y, int new_x) |Move cursor immediately (PHP 4 >= 4.2.0, PHP 5)
  2279. int ncurses_mvdelch(int y, int x) |Move position and delete character, shift rest of line left (PHP 4 >= 4.2.0, PHP 5)
  2280. int ncurses_mvgetch(int y, int x) |Move position and get character at new position (PHP 4 >= 4.2.0, PHP 5)
  2281. int ncurses_mvhline(int y, int x, int attrchar, int n) |Set new position and draw a horizontal line using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5)
  2282. int ncurses_mvinch(int y, int x) |Move position and get attributed character at new position (PHP 4 >= 4.2.0, PHP 5)
  2283. int ncurses_mvvline(int y, int x, int attrchar, int n) |Set new position and draw a vertical line using an attributed character and max. n characters long
  2284. int ncurses_mvwaddstr(resource window, int y, int x, string text) |Add string at new position in window (PHP 4 >= 4.2.0, PHP 5)
  2285. int ncurses_napms(int milliseconds) |Sleep (PHP 4 >= 4.1.0, PHP 5)
  2286. resource ncurses_new_panel(resource window) |Create a new panel and associate it with window (PHP 4 >= 4.3.0, PHP 5)
  2287. resource ncurses_newpad(int rows, int cols) |Creates a new pad (window) (PHP 4 >= 4.3.0, PHP 5)
  2288. resource ncurses_newwin(int rows, int cols, int y, int x) |Create a new window (PHP 4 >= 4.1.0, PHP 5)
  2289. bool ncurses_nl() |Translate newline and carriage return / line feed (PHP 4 >= 4.1.0, PHP 5)
  2290. bool ncurses_nocbreak() |Switch terminal to cooked mode (PHP 4 >= 4.1.0, PHP 5)
  2291. bool ncurses_noecho() |Switch off keyboard input echo (PHP 4 >= 4.1.0, PHP 5)
  2292. bool ncurses_nonl() |Do not translate newline and carriage return / line feed (PHP 4 >= 4.1.0, PHP 5)
  2293. void ncurses_noqiflush() |Do not flush on signal characters (PHP 4 >= 4.1.0, PHP 5)
  2294. bool ncurses_noraw() |Switch terminal out of raw mode (PHP 4 >= 4.1.0, PHP 5)
  2295. int ncurses_pair_content(int pair, int &f, int &b) |Gets the RGB value for color (PHP 4 >= 4.3.0, PHP 5)
  2296. resource ncurses_panel_above(resource panel) |Returns the panel above panel (PHP 4 >= 4.3.0, PHP 5)
  2297. resource ncurses_panel_below(resource panel) |Returns the panel below panel (PHP 4 >= 4.3.0, PHP 5)
  2298. resource ncurses_panel_window(resource panel) |Returns the window associated with panel (PHP 4 >= 4.3.0, PHP 5)
  2299. int ncurses_pnoutrefresh(resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol) |Copies a region from a pad into the virtual screen (PHP 4 >= 4.3.0, PHP 5)
  2300. int ncurses_prefresh(resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol) |Copies a region from a pad into the virtual screen (PHP 4 >= 4.3.0, PHP 5)
  2301. int ncurses_putp(string text) |Apply padding information to the string and output it (PHP 4 >= 4.2.0, PHP 5)
  2302. void ncurses_qiflush() |Flush on signal characters (PHP 4 >= 4.1.0, PHP 5)
  2303. bool ncurses_raw() |Switch terminal into raw mode (PHP 4 >= 4.1.0, PHP 5)
  2304. int ncurses_refresh(int ch) |Refresh screen (PHP 4 >= 4.1.0, PHP 5)
  2305. int ncurses_replace_panel(resource panel, resource window) |Replaces the window associated with panel (PHP 4 >= 4.3.0, PHP 5)
  2306. int ncurses_reset_prog_mode() |Resets the prog mode saved by def_prog_mode (PHP 4 >= 4.3.0, PHP 5)
  2307. int ncurses_reset_shell_mode() |Resets the shell mode saved by def_shell_mode (PHP 4 >= 4.3.0, PHP 5)
  2308. bool ncurses_resetty() |Restores saved terminal state (PHP 4 >= 4.1.0, PHP 5)
  2309. bool ncurses_savetty() |Saves terminal state (PHP 4 >= 4.1.0, PHP 5)
  2310. int ncurses_scr_dump(string filename) |Dump screen content to file (PHP 4 >= 4.2.0, PHP 5)
  2311. int ncurses_scr_init(string filename) |Initialize screen from file dump (PHP 4 >= 4.2.0, PHP 5)
  2312. int ncurses_scr_restore(string filename) |Restore screen from file dump (PHP 4 >= 4.2.0, PHP 5)
  2313. int ncurses_scr_set(string filename) |Inherit screen from file dump (PHP 4 >= 4.2.0, PHP 5)
  2314. int ncurses_scrl(int count) |Scroll window content up or down without changing current position (PHP 4 >= 4.1.0, PHP 5)
  2315. int ncurses_show_panel(resource panel) |Places an invisible panel on top of the stack, making it visible (PHP 4 >= 4.3.0, PHP 5)
  2316. bool ncurses_slk_attr() |Returns current soft label key attribute (PHP 4 >= 4.1.0, PHP 5)
  2317. int ncurses_slk_attroff(int intarg) |Turn off the given attributes for soft function-key labels (PHP 4 >= 4.1.0, PHP 5)
  2318. int ncurses_slk_attron(int intarg) |Turn on the given attributes for soft function-key labels (PHP 4 >= 4.1.0, PHP 5)
  2319. int ncurses_slk_attrset(int intarg) |Set given attributes for soft function-key labels (PHP 4 >= 4.1.0, PHP 5)
  2320. bool ncurses_slk_clear() |Clears soft labels from screen (PHP 4 >= 4.1.0, PHP 5)
  2321. int ncurses_slk_color(int intarg) |Sets color for soft label keys (PHP 4 >= 4.1.0, PHP 5)
  2322. bool ncurses_slk_init(int format) |Initializes soft label key functions (PHP 4 >= 4.1.0, PHP 5)
  2323. bool ncurses_slk_noutrefresh() |Copies soft label keys to virtual screen (PHP 4 >= 4.1.0, PHP 5)
  2324. bool ncurses_slk_refresh() |Copies soft label keys to screen (PHP 4 >= 4.1.0, PHP 5)
  2325. bool ncurses_slk_restore() |Restores soft label keys (PHP 4 >= 4.1.0, PHP 5)
  2326. bool ncurses_slk_set(int labelnr, string label, int format) |Sets function key labels (PHP 4 >= 4.2.0, PHP 5)
  2327. bool ncurses_slk_touch() |Forces output when ncurses_slk_noutrefresh is performed (PHP 4 >= 4.1.0, PHP 5)
  2328. int ncurses_standend() |Stop using 'standout' attribute (PHP 4 >= 4.1.0, PHP 5)
  2329. int ncurses_standout() |Start using 'standout' attribute (PHP 4 >= 4.1.0, PHP 5)
  2330. int ncurses_start_color() |Start using colors (PHP 4 >= 4.1.0, PHP 5)
  2331. bool ncurses_termattrs() |Returns a logical OR of all attribute flags supported by terminal (PHP 4 >= 4.1.0, PHP 5)
  2332. string ncurses_termname() |Returns terminals (short)-name (PHP 4 >= 4.2.0, PHP 5)
  2333. void ncurses_timeout(int millisec) |Set timeout for special key sequences (PHP 4 >= 4.1.0, PHP 5)
  2334. int ncurses_top_panel(resource panel) |Moves a visible panel to the top of the stack (PHP 4 >= 4.3.0, PHP 5)
  2335. int ncurses_typeahead(int fd) |Specify different filedescriptor for typeahead checking (PHP 4 >= 4.1.0, PHP 5)
  2336. int ncurses_ungetch(int keycode) |Put a character back into the input stream (PHP 4 >= 4.1.0, PHP 5)
  2337. bool ncurses_ungetmouse(array mevent) |Pushes mouse event to queue (PHP 4 >= 4.2.0, PHP 5)
  2338. void ncurses_update_panels() |Refreshes the virtual screen to reflect the relations between panels in the stack (PHP 4 >= 4.3.0, PHP 5)
  2339. bool ncurses_use_default_colors() |Assign terminal default colors to color id -1 (PHP 4 >= 4.1.0, PHP 5)
  2340. void ncurses_use_env(bool flag) |Control use of environment information about terminal size (PHP 4 >= 4.1.0, PHP 5)
  2341. int ncurses_use_extended_names(bool flag) |Control use of extended names in terminfo descriptions (PHP 4 >= 4.1.0, PHP 5)
  2342. int ncurses_vidattr(int intarg) |Display the string on the terminal in the video attribute mode (PHP 4 >= 4.1.0, PHP 5)
  2343. int ncurses_vline(int charattr, int n) |Draw a vertical line at current position using an attributed character and max. n characters long (PHP 4 >= 4.2.0, PHP 5)
  2344. int ncurses_waddch(resource window, int ch) |Adds character at current position in a window and advance cursor (PHP 4 >= 4.3.0, PHP 5)
  2345. int ncurses_waddstr(resource window, string str [, int n]) |Outputs text at current postion in window (PHP 4 >= 4.2.0, PHP 5)
  2346. int ncurses_wattroff(resource window, int attrs) |Turns off attributes for a window (PHP 4 >= 4.3.0, PHP 5)
  2347. int ncurses_wattron(resource window, int attrs) |Turns on attributes for a window (PHP 4 >= 4.3.0, PHP 5)
  2348. int ncurses_wattrset(resource window, int attrs) |Set the attributes for a window (PHP 4 >= 4.3.0, PHP 5)
  2349. int ncurses_wborder(resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner) |Draws a border around the window using attributed characters (PHP 4 >= 4.3.0, PHP 5)
  2350. int ncurses_wclear(resource window) |Clears window (PHP 4 >= 4.2.0, PHP 5)
  2351. int ncurses_wcolor_set(resource window, int color_pair) |Sets windows color pairings (PHP 4 >= 4.2.0, PHP 5)
  2352. int ncurses_werase(resource window) |Erase window contents (PHP 4 >= 4.3.0, PHP 5)
  2353. int ncurses_wgetch(resource window) |Reads a character from keyboard (window) (PHP 4 >= 4.2.0, PHP 5)
  2354. int ncurses_whline(resource window, int charattr, int n) |Draws a horizontal line in a window at current position using an attributed character and max. n characters long (PHP 4 >= 4.3.0, PHP 5)
  2355. bool ncurses_wmouse_trafo(resource window, int &y, int &x, bool toscreen) |Transforms window/stdscr coordinates (PHP 4 >= 4.2.0, PHP 5)
  2356. int ncurses_wmove(resource window, int y, int x) |Moves windows output position (PHP 4 >= 4.2.0, PHP 5)
  2357. int ncurses_wnoutrefresh(resource window) |Copies window to virtual screen (PHP 4 >= 4.2.0, PHP 5)
  2358. int ncurses_wrefresh(resource window) |Refresh window on terminal screen (PHP 4 >= 4.2.0, PHP 5)
  2359. int ncurses_wstandend(resource window) |End standout mode for a window (PHP 4 >= 4.3.0, PHP 5)
  2360. int ncurses_wstandout(resource window) |Enter standout mode for a window (PHP 4 >= 4.3.0, PHP 5)
  2361. int ncurses_wvline(resource window, int charattr, int n) |Draws a vertical line in a window at current position using an attributed character and max. n characters long (PHP 4 >= 4.3.0, PHP 5)
  2362. void newt_bell() |Send a beep to the terminal (PECL)
  2363. resource newt_button_bar(array &buttons) |(PECL)
  2364. resource newt_button(int left, int top, string text) |(PECL)
  2365. int newt_centered_window(int width, int height [, string title]) |Open a centered window of the specified size (PECL)
  2366. string newt_checkbox_get_value(resource checkbox) |(PECL)
  2367. void newt_checkbox_set_flags(resource checkbox, int flags, int sense) |(PECL)
  2368. void newt_checkbox_set_value(resource checkbox, string value) |(PECL)
  2369. void newt_checkbox_tree_add_item(resource checkboxtree, string text, mixed data, int flags, int index [, int ...]) |* (PECL)
  2370. array newt_checkbox_tree_find_item(resource checkboxtree, mixed data) |(PECL)
  2371. mixed newt_checkbox_tree_get_current(resource checkboxtree) |(PECL)
  2372. string newt_checkbox_tree_get_entry_value(resource checkboxtree, mixed data) |(PECL)
  2373. array newt_checkbox_tree_get_multi_selection(resource checkboxtree, string seqnum) |(PECL)
  2374. array newt_checkbox_tree_get_selection(resource checkboxtree) |(PECL)
  2375. resource newt_checkbox_tree_multi(int left, int top, int height, string seq [, int flags]) |(PECL)
  2376. void newt_checkbox_tree_set_current(resource checkboxtree, mixed data) |(PECL)
  2377. void newt_checkbox_tree_set_entry_value(resource checkboxtree, mixed data, string value) |(PECL)
  2378. void newt_checkbox_tree_set_entry(resource checkboxtree, mixed data, string text) |(PECL)
  2379. void newt_checkbox_tree_set_width(resource checkbox_tree, int width) |(PECL)
  2380. resource newt_checkbox_tree(int left, int top, int height [, int flags]) |(PECL)
  2381. resource newt_checkbox(int left, int top, string text, string def_value [, string seq]) |(PECL)
  2382. void newt_clear_key_buffer() |Discards the contents of the terminal's input buffer without waiting for additional input (PECL)
  2383. void newt_cls() |(PECL)
  2384. resource newt_compact_button(int left, int top, string text) |(PECL)
  2385. void newt_component_add_callback(resource component, mixed func_name, mixed data) |(PECL)
  2386. void newt_component_takes_focus(resource component, bool takes_focus) |(PECL)
  2387. resource newt_create_grid(int cols, int rows) |(PECL)
  2388. void newt_cursor_off() |(PECL)
  2389. void newt_cursor_on() |(PECL)
  2390. void newt_delay(int microseconds) |(PECL)
  2391. void newt_draw_form(resource form) |(PECL)
  2392. void newt_draw_root_text(int left, int top, string text) |Displays the string text at the position indicated (PECL)
  2393. string newt_entry_get_value(resource entry) |(PECL)
  2394. void newt_entry_set_filter(resource entry, callback filter, mixed data) |(PECL)
  2395. void newt_entry_set_flags(resource entry, int flags, int sense) |(PECL)
  2396. void newt_entry_set(resource entry, string value [, bool cursor_at_end]) |(PECL)
  2397. resource newt_entry(int left, int top, int width [, string init_value [, int flags]]) |(PECL)
  2398. int newt_finished() |Uninitializes newt interface (PECL)
  2399. void newt_form_add_component(resource form, resource component) |Adds a single component to the form (PECL)
  2400. void newt_form_add_components(resource form, array components) |Add several components to the form (PECL)
  2401. void newt_form_add_host_key(resource form, int key) |
  2402. void newt_form_destroy(resource form) |Destroys a form (PECL)
  2403. resource newt_form_get_current(resource form) |(PECL)
  2404. void newt_form_run(resource form, array &exit_struct) |Runs a form (PECL)
  2405. void newt_form_set_background(resource from, int background) |(PECL)
  2406. void newt_form_set_height(resource form, int height) |(PECL)
  2407. void newt_form_set_size(resource form) |(PECL)
  2408. void newt_form_set_timer(resource form, int milliseconds) |(PECL)
  2409. void newt_form_set_width(resource form, int width) |(PECL)
  2410. void newt_form_watch_fd(resource form, resource stream [, int flags]) |(PECL)
  2411. resource newt_form([resource vert_bar [, string help [, int flags]]]) |Create a form (PECL)
  2412. void newt_get_screen_size(int &cols, int &rows) |Fills in the passed references with the current size of the terminal (PECL)
  2413. void newt_grid_add_components_to_form(resource grid, resource form, bool recurse) |(PECL)
  2414. resource newt_grid_basic_window(resource text, resource middle, resource buttons) |(PECL)
  2415. void newt_grid_free(resource grid, bool recurse) |(PECL)
  2416. void newt_grid_get_size(resouce grid, int &width, int &height) |(PECL)
  2417. resource newt_grid_h_close_stacked(int element1_type, resource element1 [, int ... [, resource ...]]) |(PECL)
  2418. resource newt_grid_h_stacked(int element1_type, resource element1 [, int ... [, resource ...]]) |(PECL)
  2419. void newt_grid_place(resource grid, int left, int top) |(PECL)
  2420. void newt_grid_set_field(resource grid, int col, int row, int type, resource val, int pad_left, int pad_top, int pad_right, int pad_bottom, int anchor [, int flags]) |(PECL)
  2421. resource newt_grid_simple_window(resource text, resource middle, resource buttons) |(PECL)
  2422. resource newt_grid_v_close_stacked(int element1_type, resource element1 [, int ... [, resource ...]]) |(PECL)
  2423. resource newt_grid_v_stacked(int element1_type, resource element1 [, int ... [, resource ...]]) |(PECL)
  2424. void newt_grid_wrapped_window_at(resource grid, string title, int left, int top) |(PECL)
  2425. void newt_grid_wrapped_window(resource grid, string title) |(PECL)
  2426. int newt_init() |Initialize newt (PECL)
  2427. void newt_label_set_text(resource label, string text) |(PECL)
  2428. resource newt_label(int left, int top, string text) |(PECL)
  2429. void newt_listbox_append_entry(resource listbox, string text, mixed data) |(PECL)
  2430. void newt_listbox_clear_selection(resource listbox) |(PECL)
  2431. void newt_listbox_clear(resource listobx) |(PECL)
  2432. void newt_listbox_delete_entry(resource listbox, mixed key) |(PECL)
  2433. string newt_listbox_get_current(resource listbox) |(PECL)
  2434. array newt_listbox_get_selection(resource listbox) |(PECL)
  2435. void newt_listbox_insert_entry(resource listbox, string text, mixed data, mixed key) |(PECL)
  2436. int newt_listbox_item_count(resource listbox) |(PECL)
  2437. void newt_listbox_select_item(resource listbox, mixed key, int sense) |(PECL)
  2438. void newt_listbox_set_current_by_key(resource listbox, mixed key) |(PECL)
  2439. void newt_listbox_set_current(resource listbox, int num) |(PECL)
  2440. void newt_listbox_set_data(resource listbox, int num, mixed data) |(PECL)
  2441. void newt_listbox_set_entry(resource listbox, int num, string text) |(PECL)
  2442. void newt_listbox_set_width(resource listbox, int width) |(PECL)
  2443. resource newt_listbox(int left, int top, int height [, int flags]) |(PECL)
  2444. mixed newt_listitem_get_data(resource item) |(PECL)
  2445. void newt_listitem_set(resource item, string text) |(PECL)
  2446. resource newt_listitem(int left, int top, string text, bool is_default, resouce prev_item, mixed data [, int flags]) |(PECL)
  2447. int newt_open_window(int left, int top, int width, int height [, string title]) |Open a window of the specified size and position (PECL)
  2448. void newt_pop_help_line() |Replaces the current help line with the one from the stack (PECL)
  2449. void newt_pop_window() |Removes the top window from the display (PECL)
  2450. void newt_push_help_line([string text]) |Saves the current help line on a stack, and displays the new line (PECL)
  2451. resource newt_radio_get_current(resource set_member) |(PECL)
  2452. resource newt_radiobutton(int left, int top, string text, bool is_default [, resource prev_button]) |(PECL)
  2453. void newt_redraw_help_line() |(PECL)
  2454. string newt_reflow_text(string text, int width, int flex_down, int flex_up, int &actual_width, int &actual_height) |(PECL)
  2455. void newt_refresh() |Updates modified portions of the screen (PECL)
  2456. void newt_resize_screen([bool redraw]) |(PECL)
  2457. void newt_resume() |Resume using the newt interface after calling newt_suspend (PECL)
  2458. resource newt_run_form(resource form) |Runs a form (PECL)
  2459. void newt_scale_set(resource scale, int amount) |(PECL)
  2460. resource newt_scale(int left, int top, int width, int full_value) |(PECL)
  2461. void newt_scrollbar_set(resource scrollbar, int where, int total) |(PECL)
  2462. void newt_set_help_callback(mixed function) |(PECL)
  2463. void newt_set_suspend_callback(callback function, mixed data) |Set a callback function which gets invoked when user presses the suspend key (PECL)
  2464. void newt_suspend() |Tells newt to return the terminal to its initial state (PECL)
  2465. void newt_texbox_set_text(resource textbox, string text) |
  2466. int newt_textbox_get_num_lines(resource textbox) |(PECL)
  2467. resource newt_textbox_reflowed(int left, int top, char *text, int width, int flex_down, int flex_up [, int flags]) |(PECL)
  2468. void newt_textbox_set_height(resource textbox, int height) |(PECL)
  2469. resource newt_textbox(int left, int top, int width, int height [, int flags]) |(PECL)
  2470. resource newt_vertical_scrollbar(int left, int top, int height [, int normal_colorset [, int thumb_colorset]]) |(PECL)
  2471. void newt_wait_for_key() |Doesn't return until a key has been pressed (PECL)
  2472. int newt_win_choice(string title, string button1_text, string button2_text, string format [, mixed args [, mixed ...]]) |(PECL)
  2473. int newt_win_entries(string title, string text, int suggested_width, int flex_down, int flex_up, int data_width, array &items, string button1 [, string ...]) |(PECL)
  2474. int newt_win_menu(string title, string text, int suggestedWidth, int flexDown, int flexUp, int maxListHeight, array items, int &listItem [, string button1 [, string ...]]) |(PECL)
  2475. void newt_win_message(string title, string button_text, string format [, mixed args [, mixed ...]]) |(PECL)
  2476. void newt_win_messagev(string title, string button_text, string format, array args) |(PECL)
  2477. int newt_win_ternary(string title, string button1_text, string button2_text, string button3_text, string format [, mixed args [, mixed ...]]) |(PECL)
  2478. mixed next(array &array) |Advance the internal array pointer of an array (PHP 3, PHP 4, PHP 5)
  2479. string ngettext(string msgid1, string msgid2, int n) |Plural version of gettext (PHP 4 >= 4.2.0, PHP 5)
  2480. string nl_langinfo(int item) |Query language and locale information (PHP 4 >= 4.1.0, PHP 5)
  2481. string nl2br(string string) |Inserts HTML line breaks before all newlines in a string (PHP 3, PHP 4, PHP 5)
  2482. array notes_body(string server, string mailbox, int msg_number) |Open the message msg_number in the specified mailbox on the specified server (leave serv (PHP 4 >= 4.0.5, PECL)
  2483. bool notes_copy_db(string from_database_name, string to_database_name) |Copy a Lotus Notes database (PHP 4 >= 4.0.5, PECL)
  2484. bool notes_create_db(string database_name) |Create a Lotus Notes database (PHP 4 >= 4.0.5, PECL)
  2485. bool notes_create_note(string database_name, string form_name) |Create a note using form form_name (PHP 4 >= 4.0.5, PECL)
  2486. bool notes_drop_db(string database_name) |Drop a Lotus Notes database (PHP 4 >= 4.0.5, PECL)
  2487. int notes_find_note(string database_name, string name [, string type]) |Returns a note id found in database_name (PHP 4 >= 4.0.5, PECL)
  2488. object notes_header_info(string server, string mailbox, int msg_number) |Open the message msg_number in the specified mailbox on the specified server (leave serv (PHP 4 >= 4.0.5, PECL)
  2489. bool notes_list_msgs(string db) |Returns the notes from a selected database_name (PHP 4 >= 4.0.5, PECL)
  2490. bool notes_mark_read(string database_name, string user_name, string note_id) |Mark a note_id as read for the User user_name (PHP 4 >= 4.0.5, PECL)
  2491. bool notes_mark_unread(string database_name, string user_name, string note_id) |Mark a note_id as unread for the User user_name (PHP 4 >= 4.0.5, PECL)
  2492. bool notes_nav_create(string database_name, string name) |Create a navigator name, in database_name (PHP 4 >= 4.0.5, PECL)
  2493. array notes_search(string database_name, string keywords) |Find notes that match keywords in database_name (PHP 4 >= 4.0.5, PECL)
  2494. array notes_unread(string database_name, string user_name) |Returns the unread note id's for the current User user_name (PHP 4 >= 4.0.5, PECL)
  2495. float notes_version(string database_name) |Get the version Lotus Notes (PHP 4 >= 4.0.5, PECL)
  2496. array nsapi_request_headers() |Fetch all HTTP request headers (PHP 4 >= 4.3.3, PHP 5)
  2497. array nsapi_response_headers() |Fetch all HTTP response headers (PHP 4 >= 4.3.3, PHP 5)
  2498. bool nsapi_virtual(string uri) |Perform an NSAPI sub-request (PHP 4 >= 4.3.3, PHP 5)
  2499. string number_format(float number [, int decimals [, string dec_point, string thousands_sep]]) |Format a number with grouped thousands (PHP 3, PHP 4, PHP 5)
  2500. void ob_clean() |Clean (erase) the output buffer (PHP 4 >= 4.2.0, PHP 5)
  2501. bool ob_end_clean() |Clean (erase) the output buffer and turn off output buffering (PHP 4, PHP 5)
  2502. bool ob_end_flush() |Flush (send) the output buffer and turn off output buffering (PHP 4, PHP 5)
  2503. void ob_flush() |Flush (send) the output buffer (PHP 4 >= 4.2.0, PHP 5)
  2504. string ob_get_clean() |Get current buffer contents and delete current output buffer (PHP 4 >= 4.3.0, PHP 5)
  2505. string ob_get_contents() |Return the contents of the output buffer (PHP 4, PHP 5)
  2506. string ob_get_flush() |Flush the output buffer, return it as a string and turn off output buffering (PHP 4 >= 4.3.0, PHP 5)
  2507. int ob_get_length() |Return the length of the output buffer (PHP 4 >= 4.0.2, PHP 5)
  2508. int ob_get_level() |Return the nesting level of the output buffering mechanism (PHP 4 >= 4.2.0, PHP 5)
  2509. array ob_get_status([bool full_status]) |Get status of output buffers (PHP 4 >= 4.2.0, PHP 5)
  2510. string ob_gzhandler(string buffer, int mode) |ob_start callback function to gzip output buffer (PHP 4 >= 4.0.4, PHP 5)
  2511. string ob_iconv_handler(string contents, int status) |Convert character encoding as output buffer handler (PHP 4 >= 4.0.5, PHP 5)
  2512. void ob_implicit_flush([int flag]) |Turn implicit flush on/off (PHP 4, PHP 5)
  2513. array ob_list_handlers() |List all output handlers in use (PHP 4 >= 4.3.0, PHP 5)
  2514. bool ob_start([callback output_callback [, int chunk_size [, bool erase]]]) |Turn on output buffering (PHP 4, PHP 5)
  2515. string ob_tidyhandler(string input [, int mode]) |ob_start callback function to repair the buffer (PHP 5)
  2516. number octdec(string octal_string) |Octal to decimal (PHP 3, PHP 4, PHP 5)
  2517. mixed odbc_autocommit(resource connection_id [, bool OnOff]) |Toggle autocommit behaviour (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2518. bool odbc_binmode(resource result_id, int mode) |Handling of binary column data (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2519. void odbc_close_all() |Close all ODBC connections (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2520. void odbc_close(resource connection_id) |Close an ODBC connection (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2521. resource odbc_columnprivileges(resource connection_id, string qualifier, string owner, string table_name, string column_name) |Returns a result identifier that can be used to fetch a list of columns and associated privileges (PHP 4, PHP 5)
  2522. resource odbc_columns(resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]]) |Lists the column names in specified tables (PHP 4, PHP 5)
  2523. bool odbc_commit(resource connection_id) |Commit an ODBC transaction (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2524. resource odbc_connect(string dsn, string user, string password [, int cursor_type]) |Connect to a datasource (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2525. string odbc_cursor(resource result_id) |Get cursorname (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2526. array odbc_data_source(resource connection_id, int fetch_type) |Returns information about a current connection (PHP 4 >= 4.3.0, PHP 5)
  2527. resource odbc_do(resource conn_id, string query) |Synonym for odbc_exec (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2528. string odbc_error([resource connection_id]) |Get the last error code (PHP 4 >= 4.0.5, PHP 5)
  2529. string odbc_errormsg([resource connection_id]) |Get the last error message (PHP 4 >= 4.0.5, PHP 5)
  2530. resource odbc_exec(resource connection_id, string query_string [, int flags]) |Prepare and execute a SQL statement (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2531. bool odbc_execute(resource result_id [, array parameters_array]) |Execute a prepared statement (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2532. array odbc_fetch_array(resource result [, int rownumber]) |Fetch a result row as an associative array (PHP 4 >= 4.0.2, PHP 5)
  2533. int odbc_fetch_into(resource result_id, array &result_array [, int rownumber]) |Fetch one result row into array (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2534. object odbc_fetch_object(resource result [, int rownumber]) |Fetch a result row as an object (PHP 4 >= 4.0.2, PHP 5)
  2535. bool odbc_fetch_row(resource result_id [, int row_number]) |Fetch a row (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2536. int odbc_field_len(resource result_id, int field_number) |Get the length (precision) of a field (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2537. string odbc_field_name(resource result_id, int field_number) |Get the columnname (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2538. int odbc_field_num(resource result_id, string field_name) |Return column number (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2539. int odbc_field_precision(resource result_id, int field_number) |Synonym for odbc_field_len (PHP 4, PHP 5)
  2540. int odbc_field_scale(resource result_id, int field_number) |Get the scale of a field (PHP 4, PHP 5)
  2541. string odbc_field_type(resource result_id, int field_number) |Datatype of a field (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2542. resource odbc_foreignkeys(resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table) |Returns 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 (PHP 4, PHP 5)
  2543. bool odbc_free_result(resource result_id) |Free resources associated with a result (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2544. resource odbc_gettypeinfo(resource connection_id [, int data_type]) |Returns a result identifier containing information about data types supported by the data source (PHP 4, PHP 5)
  2545. bool odbc_longreadlen(resource result_id, int length) |Handling of LONG columns (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2546. bool odbc_next_result(resource result_id) |Checks if multiple results are available (PHP 4 >= 4.0.5, PHP 5)
  2547. int odbc_num_fields(resource result_id) |Number of columns in a result (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2548. int odbc_num_rows(resource result_id) |Number of rows in a result (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2549. resource odbc_pconnect(string dsn, string user, string password [, int cursor_type]) |Open a persistent database connection (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2550. resource odbc_prepare(resource connection_id, string query_string) |Prepares a statement for execution (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2551. resource odbc_primarykeys(resource connection_id, string qualifier, string owner, string table) |Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table (PHP 4, PHP 5)
  2552. resource odbc_procedurecolumns(resource connection_id [, string qualifier, string owner, string proc, string column]) |Retrieve information about parameters to procedures (PHP 4, PHP 5)
  2553. resource odbc_procedures(resource connection_id [, string qualifier, string owner, string name]) |Get the list of procedures stored in a specific data source (PHP 4, PHP 5)
  2554. int odbc_result_all(resource result_id [, string format]) |Print result as HTML table (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2555. mixed odbc_result(resource result_id, mixed field) |Get result data (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2556. bool odbc_rollback(resource connection_id) |Rollback a transaction (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2557. bool odbc_setoption(resource id, int function, int option, int param) |Adjust ODBC settings (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  2558. resource odbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable) |Returns 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 (PHP 4, PHP 5)
  2559. resource odbc_statistics(resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy) |Retrieve statistics about a table (PHP 4, PHP 5)
  2560. resource odbc_tableprivileges(resource connection_id, string qualifier, string owner, string name) |Lists tables and the privileges associated with each table (PHP 4, PHP 5)
  2561. resource odbc_tables(resource connection_id [, string qualifier [, string owner [, string name [, string types]]]]) |Get the list of table names stored in a specific data source (PHP 3 >= 3.0.17, PHP 4, PHP 5)
  2562. resource openal_buffer_create() |Generate OpenAL buffer (PECL)
  2563. bool openal_buffer_data(resource buffer, int format, string data, int freq) |Load a buffer with data (PECL)
  2564. bool openal_buffer_destroy(resource buffer) |Destroys an OpenAL buffer (PECL)
  2565. int openal_buffer_get(resource buffer, int property) |Retrieve an OpenAL buffer property (PECL)
  2566. bool openal_buffer_loadwav(resource buffer, string wavfile) |Load a .wav file into a buffer (PECL)
  2567. resource openal_context_create(resource device) |Create an audio processing context (PECL)
  2568. bool openal_context_current(resource context) |Make the specified context current (PECL)
  2569. bool openal_context_destroy(resource context) |Destroys a context (PECL)
  2570. bool openal_context_process(resource context) |Process the specified context (PECL)
  2571. bool openal_context_suspend(resource context) |Suspend the specified context (PECL)
  2572. bool openal_device_close(resource device) |Close an OpenAL device (PECL)
  2573. resource openal_device_open([string device_desc]) |Initialize the OpenAL audio layer (PECL)
  2574. mixed openal_listener_get(int property) |Retrieve a listener property (PECL)
  2575. bool openal_listener_set(int property, mixed setting) |Set a listener property (PECL)
  2576. resource openal_source_create() |Generate a source resource (PECL)
  2577. bool openal_source_destroy(resource source) |Destroy a source resource (PECL)
  2578. mixed openal_source_get(resource source, int property) |Retrieve an OpenAL source property (PECL)
  2579. bool openal_source_pause(resource source) |Pause the source (PECL)
  2580. bool openal_source_play(resource source) |Start playing the source (PECL)
  2581. bool openal_source_rewind(resource source) |Rewind the source (PECL)
  2582. bool openal_source_set(resource source, int property, mixed setting) |Set source property (PECL)
  2583. bool openal_source_stop(resource source) |Stop playing the source (PECL)
  2584. resource openal_stream(resource source, int format, int rate) |Begin streaming on a source (PECL)
  2585. resource opendir(string path [, resource context]) |Open directory handle (PHP 3, PHP 4, PHP 5)
  2586. bool openlog(string ident, int option, int facility) |Open connection to system logger (PHP 3, PHP 4, PHP 5)
  2587. bool openssl_csr_export_to_file(resource csr, string outfilename [, bool notext]) |Exports a CSR to a file (PHP 4 >= 4.2.0, PHP 5)
  2588. bool openssl_csr_export(resource csr, string &out [, bool notext]) |Exports a CSR as a string (PHP 4 >= 4.2.0, PHP 5)
  2589. mixed openssl_csr_new(array dn, resource &privkey [, array configargs [, array extraattribs]]) |Generates a CSR (PHP 4 >= 4.2.0, PHP 5)
  2590. resource openssl_csr_sign(mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]]) |Sign a CSR with another certificate (or itself) and generate a certificate (PHP 4 >= 4.2.0, PHP 5)
  2591. string openssl_error_string() |Return openSSL error message (PHP 4 >= 4.0.6, PHP 5)
  2592. void openssl_free_key(resource key_identifier) |Free key resource (PHP 4 >= 4.0.4, PHP 5)
  2593. resource openssl_get_privatekey(mixed key [, string passphrase]) |Get a private key (PHP 4 >= 4.2.0, PHP 5)
  2594. resource openssl_get_publickey(mixed certificate) |Extract public key from certificate and prepare it for use (PHP 4 >= 4.2.0, PHP 5)
  2595. bool openssl_open(string sealed_data, string &open_data, string env_key, mixed priv_key_id) |Open sealed data (PHP 4 >= 4.0.4, PHP 5)
  2596. bool openssl_pkcs7_decrypt(string infilename, string outfilename, mixed recipcert [, mixed recipkey]) |Decrypts an S/MIME encrypted message (PHP 4 >= 4.0.6, PHP 5)
  2597. bool openssl_pkcs7_encrypt(string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid]]) |Encrypt an S/MIME message (PHP 4 >= 4.0.6, PHP 5)
  2598. bool openssl_pkcs7_sign(string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]]) |Sign an S/MIME message (PHP 4 >= 4.0.6, PHP 5)
  2599. mixed openssl_pkcs7_verify(string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]]) |Verifies the signature of an S/MIME signed message (PHP 4 >= 4.0.6, PHP 5)
  2600. bool openssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase [, array configargs]]) |Gets an exportable representation of a key into a file (PHP 4 >= 4.2.0, PHP 5)
  2601. bool openssl_pkey_export(mixed key, string &out [, string passphrase [, array configargs]]) |Gets an exportable representation of a key into a string (PHP 4 >= 4.2.0, PHP 5)
  2602. void openssl_pkey_free(resource key) |Frees a private key (PHP 4 >= 4.2.0, PHP 5)
  2603. resource openssl_pkey_get_private(mixed key [, string passphrase]) |Get a private key (PHP 4 >= 4.2.0, PHP 5)
  2604. resource openssl_pkey_get_public(mixed certificate) |Extract public key from certificate and prepare it for use (PHP 4 >= 4.2.0, PHP 5)
  2605. resource openssl_pkey_new([array configargs]) |Generates a new private key (PHP 4 >= 4.2.0, PHP 5)
  2606. bool openssl_private_decrypt(string data, string &decrypted, mixed key [, int padding]) |Decrypts data with private key (PHP 4 >= 4.0.6, PHP 5)
  2607. bool openssl_private_encrypt(string data, string &crypted, mixed key [, int padding]) |Encrypts data with private key (PHP 4 >= 4.0.6, PHP 5)
  2608. bool openssl_public_decrypt(string data, string &decrypted, mixed key [, int padding]) |Decrypts data with public key (PHP 4 >= 4.0.6, PHP 5)
  2609. bool openssl_public_encrypt(string data, string &crypted, mixed key [, int padding]) |Encrypts data with public key (PHP 4 >= 4.0.6, PHP 5)
  2610. int openssl_seal(string data, string &sealed_data, array &env_keys, array pub_key_ids) |Seal (encrypt) data (PHP 4 >= 4.0.4, PHP 5)
  2611. bool openssl_sign(string data, string &signature, mixed priv_key_id [, int signature_alg]) |Generate signature (PHP 4 >= 4.0.4, PHP 5)
  2612. int openssl_verify(string data, string signature, mixed pub_key_id) |Verify signature (PHP 4 >= 4.0.4, PHP 5)
  2613. bool openssl_x509_check_private_key(mixed cert, mixed key) |Checks if a private key corresponds to a certificate (PHP 4 >= 4.2.0, PHP 5)
  2614. int openssl_x509_checkpurpose(mixed x509cert, int purpose [, array cainfo [, string untrustedfile]]) |Verifies if a certificate can be used for a particular purpose (PHP 4 >= 4.0.6, PHP 5)
  2615. bool openssl_x509_export_to_file(mixed x509, string outfilename [, bool notext]) |Exports a certificate to file (PHP 4 >= 4.2.0, PHP 5)
  2616. bool openssl_x509_export(mixed x509, string &output [, bool notext]) |Exports a certificate as a string (PHP 4 >= 4.2.0, PHP 5)
  2617. void openssl_x509_free(resource x509cert) |Free certificate resource (PHP 4 >= 4.0.6, PHP 5)
  2618. array openssl_x509_parse(mixed x509cert [, bool shortnames]) |Parse an X509 certificate and return the information as an array (PHP 4 >= 4.0.6, PHP 5)
  2619. resource openssl_x509_read(mixed x509certdata) |Parse an X.509 certificate and return a resource identifier for it (PHP 4 >= 4.0.6, PHP 5)
  2620. bool ora_bind(resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type]) |Binds a PHP variable to an Oracle parameter (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2621. bool ora_close(resource cursor) |Closes an Oracle cursor (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2622. string ora_columnname(resource cursor, int column) |Gets the name of an Oracle result column (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2623. int ora_columnsize(resource cursor, int column) |Returns the size of an Oracle result column (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2624. string ora_columntype(resource cursor, int column) |Gets the type of an Oracle result column (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2625. bool ora_commit(resource conn) |Commit an Oracle transaction (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2626. bool ora_commitoff(resource conn) |Disable automatic commit (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2627. bool ora_commiton(resource conn) |Enable automatic commit (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2628. resource ora_do(resource conn, string query) |Parse, Exec, Fetch (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2629. string ora_error([resource cursor_or_connection]) |Gets an Oracle error message (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2630. int ora_errorcode([resource cursor_or_connection]) |Gets an Oracle error code (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2631. bool ora_exec(resource cursor) |Execute a parsed statement on an Oracle cursor (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2632. int ora_fetch_into(resource cursor, array &result [, int flags]) |Fetch a row into the specified result array (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2633. bool ora_fetch(resource cursor) |Fetch a row of data from a cursor (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2634. string ora_getcolumn(resource cursor, int column) |Get data from a fetched column (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2635. bool ora_logoff(resource connection) |Close an Oracle connection (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2636. resource ora_logon(string user, string password) |Open an Oracle connection (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2637. int ora_numcols(resource cursor) |Returns the number of columns (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2638. int ora_numrows(resource cursor) |Returns the number of rows (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2639. resource ora_open(resource connection) |Opens an Oracle cursor (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2640. bool ora_parse(resource cursor, string sql_statement [, int defer]) |Parse an SQL statement with Oracle (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2641. resource ora_plogon(string user, string password) |Open a persistent Oracle connection (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2642. bool ora_rollback(resource connection) |Rolls back a transaction (PHP 3, PHP 4, PHP 5 <= 5.1.0RC1)
  2643. new OrbitEnum(string id) |Use CORBA enums
  2644. new OrbitObject(string ior) |Access CORBA objects
  2645. new OrbitStruct(string id) |Use CORBA structs
  2646. int ord(string string) |Return ASCII value of character (PHP 3, PHP 4, PHP 5)
  2647. bool output_add_rewrite_var(string name, string value) |Add URL rewriter values (PHP 4 >= 4.3.0, PHP 5)
  2648. bool output_reset_rewrite_vars() |Reset URL rewriter values (PHP 4 >= 4.3.0, PHP 5)
  2649. void overload([string class_name]) |Enable property and method call overloading for a class (PHP 4 >= 4.2.0)
  2650. bool override_function(string function_name, string function_args, string function_code) |Overrides built-in functions (PECL)
  2651. void ovrimos_close(int connection) |Closes the connection to ovrimos (PHP 4 >= 4.0.3, PHP 5)
  2652. bool ovrimos_commit(int connection_id) |Commits the transaction (PHP 4 >= 4.0.3, PHP 5)
  2653. int ovrimos_connect(string host, string db, string user, string password) |Connect to the specified database (PHP 4 >= 4.0.3, PHP 5)
  2654. string ovrimos_cursor(int result_id) |Returns the name of the cursor (PHP 4 >= 4.0.3, PHP 5)
  2655. int ovrimos_exec(int connection_id, string query) |Executes an SQL statement (PHP 4 >= 4.0.3, PHP 5)
  2656. bool ovrimos_execute(int result_id [, array parameters_array]) |Executes a prepared SQL statement (PHP 4 >= 4.0.3, PHP 5)
  2657. bool ovrimos_fetch_into(int result_id, array &result_array [, string how [, int rownumber]]) |Fetches a row from the result set (PHP 4 >= 4.0.3, PHP 5)
  2658. bool ovrimos_fetch_row(int result_id [, int how [, int row_number]]) |Fetches a row from the result set (PHP 4 >= 4.0.3, PHP 5)
  2659. int ovrimos_field_len(int result_id, int field_number) |Returns the length of the output column (PHP 4 >= 4.0.3, PHP 5)
  2660. string ovrimos_field_name(int result_id, int field_number) |Returns the output column name (PHP 4 >= 4.0.3, PHP 5)
  2661. int ovrimos_field_num(int result_id, string field_name) |Returns the (1-based) index of the output column (PHP 4 >= 4.0.3, PHP 5)
  2662. int ovrimos_field_type(int result_id, int field_number) |Returns the (numeric) type of the output column (PHP 4 >= 4.0.3, PHP 5)
  2663. bool ovrimos_free_result(int result_id) |Frees the specified result_id (PHP 4 >= 4.0.3, PHP 5)
  2664. bool ovrimos_longreadlen(int result_id, int length) |Specifies how many bytes are to be retrieved from long datatypes (PHP 4 >= 4.0.3, PHP 5)
  2665. int ovrimos_num_fields(int result_id) |Returns the number of columns (PHP 4 >= 4.0.3, PHP 5)
  2666. int ovrimos_num_rows(int result_id) |Returns the number of rows affected by update operations (PHP 4 >= 4.0.3, PHP 5)
  2667. int ovrimos_prepare(int connection_id, string query) |Prepares an SQL statement (PHP 4 >= 4.0.3, PHP 5)
  2668. int ovrimos_result_all(int result_id [, string format]) |Prints the whole result set as an HTML table (PHP 4 >= 4.0.3, PHP 5)
  2669. string ovrimos_result(int result_id, mixed field) |Retrieves the output column (PHP 4 >= 4.0.3, PHP 5)
  2670. bool ovrimos_rollback(int connection_id) |Rolls back the transaction (PHP 4 >= 4.0.3, PHP 5)
  2671. string pack(string format [, mixed args [, mixed ...]]) |Pack data into binary string (PHP 3, PHP 4, PHP 5)
  2672. ParentIterator ParentIterator::getChildren() |Return the inner iterator's children contained in a ParentIterator
  2673. bool ParentIterator::hasChildren() |Check whether the inner iterator's current element has children
  2674. void ParentIterator::next() |Move the iterator forward
  2675. void ParentIterator::rewind() |Rewind the iterator
  2676. array parse_ini_file(string filename [, bool process_sections]) |Parse a configuration file (PHP 4, PHP 5)
  2677. void parse_str(string str [, array &arr]) |Parses the string into variables (PHP 3, PHP 4, PHP 5)
  2678. array parse_url(string url) |Parse a URL and return its components (PHP 3, PHP 4, PHP 5)
  2679. array parsekit_compile_file(string filename [, array &errors [, int options]]) |Compile a string of PHP code and return the resulting op array (PECL)
  2680. array parsekit_compile_string(string phpcode [, array &errors [, int options]]) |Compile a string of PHP code and return the resulting op array (PECL)
  2681. array parsekit_func_arginfo(mixed function) |Return information regarding function argument(s) (PECL)
  2682. void passthru(string command [, int &return_var]) |Execute an external program and display raw output (PHP 3, PHP 4, PHP 5)
  2683. mixed pathinfo(string path [, int options]) |Returns information about a file path (PHP 4 >= 4.0.3, PHP 5)
  2684. int pclose(resource handle) |Closes process file pointer (PHP 3, PHP 4, PHP 5)
  2685. int pcntl_alarm(int seconds) |Set an alarm clock for delivery of a signal (PHP 4 >= 4.3.0, PHP 5)
  2686. void pcntl_exec(string path [, array args [, array envs]]) |Executes specified program in current process space (PHP 4 >= 4.2.0, PHP 5)
  2687. int pcntl_fork() |Forks the currently running process (PHP 4 >= 4.1.0, PHP 5)
  2688. int pcntl_getpriority([int pid [, int process_identifier]]) |Get the priority of any process (PHP 5)
  2689. bool pcntl_setpriority(int priority [, int pid [, int process_identifier]]) |Change the priority of any process (PHP 5)
  2690. bool pcntl_signal(int signo, callback handle [, bool restart_syscalls]) |Installs a signal handler (PHP 4 >= 4.1.0, PHP 5)
  2691. int pcntl_wait(int &status [, int options]) |Waits on or returns the status of a forked child (PHP 5)
  2692. int pcntl_waitpid(int pid, int &status [, int options]) |Waits on or returns the status of a forked child (PHP 4 >= 4.1.0, PHP 5)
  2693. int pcntl_wexitstatus(int status) |Returns the return code of a terminated child (PHP 4 >= 4.1.0, PHP 5)
  2694. bool pcntl_wifexited(int status) |Returns TRUE if status code represents a successful exit (PHP 4 >= 4.1.0, PHP 5)
  2695. bool pcntl_wifsignaled(int status) |Returns TRUE if status code represents a termination due to a signal (PHP 4 >= 4.1.0, PHP 5)
  2696. bool pcntl_wifstopped(int status) |Returns TRUE if child process is currently stopped (PHP 4 >= 4.1.0, PHP 5)
  2697. int pcntl_wstopsig(int status) |Returns the signal which caused the child to stop (PHP 4 >= 4.1.0, PHP 5)
  2698. int pcntl_wtermsig(int status) |Returns the signal which caused the child to terminate (PHP 4 >= 4.1.0, PHP 5)
  2699. bool pdf_activate_item(resource pdfdoc, int id) |Activate structure element or other content item (PECL)
  2700. void pdf_add_annotation |Add annotation [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2701. void pdf_add_bookmark |Add bookmark for current page [deprecated] (PHP 4 >= 4.0.1, PECL)
  2702. void pdf_add_bookmark2 |Add bookmark for current page [deprecated]
  2703. bool pdf_add_launchlink(resource pdfdoc, float llx, float lly, float urx, float ury, string filename) |Add launch annotation for current page [deprecated] (PHP 4 >= 4.0.5, PECL)
  2704. bool pdf_add_locallink(resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest) |Add link annotation for current page [deprecated] (PHP 4 >= 4.0.5, PECL)
  2705. bool pdf_add_nameddest(resource pdfdoc, string name, string optlist) |Create named destination (PECL)
  2706. bool pdf_add_note(resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open) |Set annotation for current page [deprecated] (PHP 4 >= 4.0.5, PECL)
  2707. void pdf_add_note2 |Set annotation for current page [deprecated]
  2708. void pdf_add_outline |Add bookmark for current page [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2709. bool pdf_add_pdflink(resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest) |Add file link annotation for current page [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2710. bool pdf_add_thumbnail(resource pdfdoc, int image) |Add thumbnail for current page (PHP 4 >= 4.0.5, PECL)
  2711. bool pdf_add_weblink(resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url) |Add weblink for current page [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2712. bool pdf_arc(resource p, float x, float y, float r, float alpha, float beta) |Draw a counterclockwise circular arc segment (PHP 3 >= 3.0.6, PHP 4, PECL)
  2713. bool pdf_arcn(resource p, float x, float y, float r, float alpha, float beta) |Draw a clockwise circular arc segment (PHP 4 >= 4.0.5, PECL)
  2714. bool pdf_attach_file(resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon) |Add file attachment for current page [deprecated] (PHP 4 >= 4.0.5, PECL)
  2715. void pdf_attach_file2 |Add file attachment for current page [deprecated]
  2716. int pdf_begin_document(resource pdfdoc, string filename, string optlist) |Create new PDF file (PECL)
  2717. bool pdf_begin_font(resource pdfdoc, string filename, float a, float b, float c, float d, float e, float f, string optlist) |Start a Type 3 font definition (PECL)
  2718. bool pdf_begin_glyph(resource pdfdoc, string glyphname, float wx, float llx, float lly, float urx, float ury) |Start glyph definition for Type 3 font (PECL)
  2719. int pdf_begin_item(resource pdfdoc, string tag, string optlist) |Open structure element or other content item (PECL)
  2720. bool pdf_begin_layer(resource pdfdoc, int layer) |Start layer (PECL)
  2721. bool pdf_begin_page_ext(resource pdfdoc, float width, float height, string optlist) |Start new page (PECL)
  2722. bool pdf_begin_page(resource pdfdoc, float width, float height) |Start new page [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2723. int pdf_begin_pattern(resource pdfdoc, float width, float height, float xstep, float ystep, int painttype) |Start pattern definition (PHP 4 >= 4.0.5, PECL)
  2724. int pdf_begin_template(resource pdfdoc, float width, float height) |Start template definition (PHP 4 >= 4.0.5, PECL)
  2725. bool pdf_circle(resource pdfdoc, float x, float y, float r) |Draw a circle (PHP 3 >= 3.0.6, PHP 4, PECL)
  2726. bool pdf_clip(resource p) |Clip to current path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2727. void pdf_close_image(resource p, int image) |Close image (PHP 3 >= 3.0.7, PHP 4, PECL)
  2728. bool pdf_close_pdi_page(resource p, int page) |Close the page handle (PHP 4 >= 4.0.5, PECL)
  2729. bool pdf_close_pdi(resource p, int doc) |Close the input PDF document (PHP 4 >= 4.0.5, PECL)
  2730. bool pdf_close(resource p) |Closes a pdf resource [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2731. bool pdf_closepath_fill_stroke(resource p) |Close, fill and stroke current path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2732. bool pdf_closepath_stroke(resource p) |Close and stroke path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2733. bool pdf_closepath(resource p) |Close current path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2734. bool pdf_concat(resource p, float a, float b, float c, float d, float e, float f) |Concatenate a matrix to the CTM (PHP 4 >= 4.0.5, PECL)
  2735. bool pdf_continue_text(resource p, string text) |Output text in next line (PHP 3 >= 3.0.6, PHP 4, PECL)
  2736. int pdf_create_action(resource pdfdoc, string type, string optlist) |Create action for objects or events (PECL)
  2737. bool pdf_create_annotation(resource pdfdoc, float llx, float lly, float urx, float ury, string type, string optlist) |Create rectangular annotation (PECL)
  2738. int pdf_create_bookmark(resource pdfdoc, string text, string optlist) |Create bookmark (PECL)
  2739. bool pdf_create_field(resource pdfdoc, float llx, float lly, float urx, float ury, string name, string type, string optlist) |Create form field (PECL)
  2740. bool pdf_create_fieldgroup(resource pdfdoc, string name, string optlist) |Create form field group (PECL)
  2741. int pdf_create_gstate(resource pdfdoc, string optlist) |Create graphics state object (PECL)
  2742. bool pdf_create_pvf(resource pdfdoc, string filename, string data, string optlist) |Create PDFlib virtual file (PECL)
  2743. int pdf_create_textflow(resource pdfdoc, string text, string optlist) |Create textflow object (PECL)
  2744. bool pdf_curveto(resource p, float x1, float y1, float x2, float y2, float x3, float y3) |Draw Bezier curve (PHP 3 >= 3.0.6, PHP 4, PECL)
  2745. int pdf_define_layer(resource pdfdoc, string name, string optlist) |Create layer definition (PECL)
  2746. int pdf_delete_pvf(resource pdfdoc, string filename) |Delete PDFlib virtual file (PECL)
  2747. bool pdf_delete_textflow(resource pdfdoc, int textflow) |Delete textflow object (PECL)
  2748. bool pdf_delete(resource pdfdoc) |Delete PDFlib object (PHP 4 >= 4.0.5, PECL)
  2749. bool pdf_encoding_set_char(resource pdfdoc, string encoding, int slot, string glyphname, int uv) |Add glyph name and/or Unicode value (PECL)
  2750. bool pdf_end_document(resource pdfdoc, string optlist) |Close PDF file (PECL)
  2751. bool pdf_end_font(resource pdfdoc) |Terminate Type 3 font definition (PECL)
  2752. bool pdf_end_glyph(resource pdfdoc) |Terminate glyph definition for Type 3 font (PECL)
  2753. bool pdf_end_item(resource pdfdoc, int id) |Close structure element or other content item (PECL)
  2754. bool pdf_end_layer(resource pdfdoc) |Deactivate all active layers (PECL)
  2755. bool pdf_end_page_ext(resource pdfdoc, string optlist) |Finish page (PECL)
  2756. bool pdf_end_page(resource p) |Finish page (PHP 3 >= 3.0.6, PHP 4, PECL)
  2757. bool pdf_end_pattern(resource p) |Finish pattern (PHP 4 >= 4.0.5, PECL)
  2758. bool pdf_end_template(resource p) |Finish template (PHP 4 >= 4.0.5, PECL)
  2759. void pdf_endpath |End current path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2760. int pdf_fill_imageblock(resource pdfdoc, int page, string blockname, int image, string optlist) |Fill image block with variable data (PECL)
  2761. int pdf_fill_pdfblock(resource pdfdoc, int page, string blockname, int contents, string optlist) |Fill image block with variable data (PECL)
  2762. bool pdf_fill_stroke(resource p) |Fill and stroke path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2763. int pdf_fill_textblock(resource pdfdoc, int page, string blockname, string text, string optlist) |Fill text block with variable data (PECL)
  2764. bool pdf_fill(resource p) |Fill current path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2765. int pdf_findfont(resource p, string fontname, string encoding, int embed) |Prepare font for later use [deprecated] (PHP 4 >= 4.0.5, PECL)
  2766. bool pdf_fit_image(resource pdfdoc, int image, float x, float y, string optlist) |Place image or template (PECL)
  2767. bool pdf_fit_pdi_page(resource pdfdoc, int page, float x, float y, string optlist) |Place imported PDF page (PECL)
  2768. string pdf_fit_textflow(resource pdfdoc, int textflow, float llx, float lly, float urx, float ury, string optlist) |Format textflow in rectangular area (PECL)
  2769. bool pdf_fit_textline(resource pdfdoc, string text, float x, float y, string optlist) |Place single line of text (PECL)
  2770. string pdf_get_apiname(resource pdfdoc) |Get name of unsuccessfull API function (PECL)
  2771. string pdf_get_buffer(resource p) |Get PDF output buffer (PHP 4 >= 4.0.5, PECL)
  2772. string pdf_get_errmsg(resource pdfdoc) |Get error text (PECL)
  2773. int pdf_get_errnum(resource pdfdoc) |Get error number (PECL)
  2774. void pdf_get_font |Get font [deprecated] (PHP 4, PECL)
  2775. void pdf_get_fontname |Get font name [deprecated] (PHP 4, PECL)
  2776. void pdf_get_fontsize |Font handling [deprecated] (PHP 4, PECL)
  2777. void pdf_get_image_height |Get image height [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2778. void pdf_get_image_width |Get image width [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2779. int pdf_get_majorversion() |Get major version number [deprecated] (PHP 4 >= 4.2.0, PECL)
  2780. int pdf_get_minorversion() |Get minor version number [deprecated] (PHP 4 >= 4.2.0, PECL)
  2781. string pdf_get_parameter(resource p, string key, float modifier) |Get string parameter (PHP 4 >= 4.0.1, PECL)
  2782. string pdf_get_pdi_parameter(resource p, string key, int doc, int page, int reserved) |Get PDI string parameter (PHP 4 >= 4.0.5, PECL)
  2783. float pdf_get_pdi_value(resource p, string key, int doc, int page, int reserved) |Get PDI numerical parameter (PHP 4 >= 4.0.5, PECL)
  2784. float pdf_get_value(resource p, string key, float modifier) |Get numerical parameter (PHP 4 >= 4.0.1, PECL)
  2785. float pdf_info_textflow(resource pdfdoc, int textflow, string keyword) |Query textflow state (PECL)
  2786. bool pdf_initgraphics(resource p) |Reset graphic state (PHP 4 >= 4.0.5, PECL)
  2787. bool pdf_lineto(resource p, float x, float y) |Draw a line (PHP 3 >= 3.0.6, PHP 4, PECL)
  2788. int pdf_load_font(resource pdfdoc, string fontname, string encoding, string optlist) |Search and prepare font (PECL)
  2789. int pdf_load_iccprofile(resource pdfdoc, string profilename, string optlist) |Search and prepare ICC profile (PECL)
  2790. int pdf_load_image(resource pdfdoc, string imagetype, string filename, string optlist) |Open image file (PECL)
  2791. int pdf_makespotcolor(resource p, string spotname) |Make spot color (PHP 4 >= 4.0.5, PECL)
  2792. bool pdf_moveto(resource p, float x, float y) |Set current point (PHP 3 >= 3.0.6, PHP 4, PECL)
  2793. resource pdf_new() |Create PDFlib object (PHP 4 >= 4.0.5, PECL)
  2794. int pdf_open_ccitt(resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1) |Open raw CCITT image [deprecated] (PHP 4 >= 4.0.5, PECL)
  2795. bool pdf_open_file(resource p, string filename) |Create PDF file [deprecated] (PHP 4 >= 4.0.5, PECL)
  2796. void pdf_open_gif |Open GIF image [deprecated] (PHP 3 >= 3.0.7, PHP 4, PECL)
  2797. int pdf_open_image_file(resource p, string imagetype, string filename, string stringparam, int intparam) |Read image from file [deprecated] (PHP 3 CVS only, PHP 4, PECL)
  2798. int pdf_open_image(resource p, string imagetype, string source, string data, int length, int width, int height, int components, int bpc, string params) |Use image data [deprecated] (PHP 4 >= 4.0.5, PECL)
  2799. void pdf_open_jpeg |Open JPEG image [deprecated] (PHP 3 >= 3.0.7, PHP 4, PECL)
  2800. int pdf_open_memory_image(resource p, resource image) |Open image created with PHP's image functions [not supported] (PHP 3 >= 3.0.10, PHP 4, PECL)
  2801. int pdf_open_pdi_page(resource p, int doc, int pagenumber, string optlist) |Prepare a page (PHP 4 >= 4.0.5, PECL)
  2802. int pdf_open_pdi(resource pdfdoc, string filename, string optlist, int len) |Open PDF file (PHP 4 >= 4.0.5, PECL)
  2803. void pdf_open_tiff |Open TIFF image [deprecated] (PHP 4, PECL)
  2804. bool pdf_place_image(resource pdfdoc, int image, float x, float y, float scale) |Place image on the page [deprecated] (PHP 3 >= 3.0.7, PHP 4, PECL)
  2805. bool pdf_place_pdi_page(resource pdfdoc, int page, float x, float y, float sx, float sy) |Place PDF page [deprecated] (PHP 4 >= 4.0.6, PECL)
  2806. int pdf_process_pdi(resource pdfdoc, int doc, int page, string optlist) |Process imported PDF document (PECL)
  2807. bool pdf_rect(resource p, float x, float y, float width, float height) |Draw rectangle (PHP 3 >= 3.0.6, PHP 4, PECL)
  2808. bool pdf_restore(resource p) |Restore graphics state (PHP 3 >= 3.0.6, PHP 4, PECL)
  2809. bool pdf_resume_page(resource pdfdoc, string optlist) |Resume page (PECL)
  2810. bool pdf_rotate(resource p, float phi) |Rotate coordinate system (PHP 3 >= 3.0.6, PHP 4, PECL)
  2811. bool pdf_save(resource p) |Save graphics state (PHP 3 >= 3.0.6, PHP 4, PECL)
  2812. bool pdf_scale(resource p, float sx, float sy) |Scale coordinate system (PHP 3 >= 3.0.6, PHP 4, PECL)
  2813. bool pdf_set_border_color(resource p, float red, float green, float blue) |Set border color of annotations [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2814. bool pdf_set_border_dash(resource pdfdoc, float black, float white) |Set border dash style of annotations [deprecated] (PHP 4 >= 4.0.1, PECL)
  2815. bool pdf_set_border_style(resource pdfdoc, string style, float width) |Set border style of annotations [deprecated] (PHP 3 >= 3.0.12, PHP 4, PECL)
  2816. void pdf_set_char_spacing |Set character spacing [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2817. void pdf_set_duration |Set duration between pages [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2818. bool pdf_set_gstate(resource pdfdoc, int gstate) |Activate graphics state object (PECL)
  2819. void pdf_set_horiz_scaling |Set horizontal text scaling [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2820. void pdf_set_info_author |Fill the author document info field [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2821. void pdf_set_info_creator |Fill the creator document info field [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2822. void pdf_set_info_keywords |Fill the keywords document info field [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2823. void pdf_set_info_subject |Fill the subject document info field [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2824. void pdf_set_info_title |Fill the title document info field [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2825. bool pdf_set_info(resource p, string key, string value) |Fill document info field (PHP 4 >= 4.0.1, PECL)
  2826. bool pdf_set_layer_dependency(resource pdfdoc, string type, string optlist) |Define relationships among layers (PECL)
  2827. void pdf_set_leading |Set distance between text lines [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2828. bool pdf_set_parameter(resource p, string key, string value) |Set string parameter (PHP 4, PECL)
  2829. void pdf_set_text_matrix |Set text matrix [deprecated] (PHP 3 >= 3.0.6)
  2830. bool pdf_set_text_pos(resource p, float x, float y) |Set text position (PHP 3 >= 3.0.6, PHP 4, PECL)
  2831. void pdf_set_text_rendering |Determine text rendering [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2832. void pdf_set_text_rise |Set text rise [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2833. bool pdf_set_value(resource p, string key, float value) |Set numerical parameter (PHP 4 >= 4.0.1, PECL)
  2834. void pdf_set_word_spacing |Set spacing between words [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2835. bool pdf_setcolor(resource p, string fstype, string colorspace, float c1, float c2, float c3, float c4) |Set fill and stroke color (PHP 4 >= 4.0.5, PECL)
  2836. bool pdf_setdash(resource pdfdoc, float b, float w) |Set simple dash pattern (PHP 3 >= 3.0.6, PHP 4, PECL)
  2837. bool pdf_setdashpattern(resource pdfdoc, string optlist) |Set dash pattern (PECL)
  2838. bool pdf_setflat(resource pdfdoc, float flatness) |Set flatness (PHP 3 >= 3.0.6, PHP 4, PECL)
  2839. bool pdf_setfont(resource pdfdoc, int font, float fontsize) |Set font (PHP 4 >= 4.0.5, PECL)
  2840. bool pdf_setgray_fill(resource p, float g) |Set fill color to gray [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2841. bool pdf_setgray_stroke(resource p, float g) |Set stroke color to gray [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2842. bool pdf_setgray(resource p, float g) |Set color to gray [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2843. bool pdf_setlinecap(resource p, int linecap) |Set linecap parameter (PHP 3 >= 3.0.6, PHP 4, PECL)
  2844. bool pdf_setlinejoin(resource p, int value) |Set linejoin parameter (PHP 3 >= 3.0.6, PHP 4, PECL)
  2845. bool pdf_setlinewidth(resource p, float width) |Set line width (PHP 3 >= 3.0.6, PHP 4, PECL)
  2846. bool pdf_setmatrix(resource p, float a, float b, float c, float d, float e, float f) |Set current transformation matrix (PHP 4 >= 4.0.5, PECL)
  2847. bool pdf_setmiterlimit(resource pdfdoc, float miter) |Set miter limit (PHP 3 >= 3.0.6, PHP 4, PECL)
  2848. void pdf_setpolydash |Set complicated dash pattern [deprecated] (PHP 4 >= 4.0.5, PECL)
  2849. bool pdf_setrgbcolor_fill(resource p, float red, float green, float blue) |Set fill rgb color values [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2850. bool pdf_setrgbcolor_stroke(resource p, float red, float green, float blue) |Set stroke rgb color values [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2851. bool pdf_setrgbcolor(resource p, float red, float green, float blue) |Set fill and stroke rgb color values [deprecated] (PHP 3 >= 3.0.6, PHP 4, PECL)
  2852. int pdf_shading_pattern(resource pdfdoc, int shading, string optlist) |Define shading pattern (PECL)
  2853. int pdf_shading(resource pdfdoc, string shtype, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist) |Define blend (PECL)
  2854. bool pdf_shfill(resource pdfdoc, int shading) |Fill area with shading (PECL)
  2855. int pdf_show_boxed(resource p, string text, float left, float top, float width, float height, string mode, string feature) |Output text in a box [deprecated] (PHP 4, PECL)
  2856. bool pdf_show_xy(resource p, string text, float x, float y) |Output text at given position (PHP 3 >= 3.0.6, PHP 4, PECL)
  2857. bool pdf_show(resource pdfdoc, string text) |Output text at current position (PHP 3 >= 3.0.6, PHP 4, PECL)
  2858. bool pdf_skew(resource p, float alpha, float beta) |Skew the coordinate system (PHP 4, PECL)
  2859. float pdf_stringwidth(resource p, string text, int font, float fontsize) |Return width of text (PHP 3 >= 3.0.6, PHP 4, PECL)
  2860. bool pdf_stroke(resource p) |Stroke path (PHP 3 >= 3.0.6, PHP 4, PECL)
  2861. bool pdf_suspend_page(resource pdfdoc, string optlist) |Suspend page (PECL)
  2862. bool pdf_translate(resource p, float tx, float ty) |Set origin of coordinate system (PHP 3 >= 3.0.6, PHP 4, PECL)
  2863. string pdf_utf16_to_utf8(resource pdfdoc, string utf16string) |Convert string from UTF-16 to UTF-8 (PECL)
  2864. string pdf_utf8_to_utf16(resource pdfdoc, string utf8string, string ordering) |Convert string from UTF-8 to UTF-16 (PECL)
  2865. bool pdf_xshow(resource pdfdoc, string text) |Output text at current position
  2866. bool PDO::beginTransaction() |Initiates a transaction
  2867. bool PDO::commit() |Commits a transaction
  2868. PDO PDO::__construct(string dsn [, string username [, string password [, array driver_options]]]) |Creates a PDO instance representing a connection to a database
  2869. string PDO::errorCode() |Fetch the SQLSTATE associated with the last operation on the database handle
  2870. array PDO::errorInfo() |Fetch extended error information associated with the last operation on the database handle
  2871. int PDO::exec(string statement) |Execute an SQL statement and return the number of affected rows
  2872. mixed PDO::getAttribute(int attribute) |Retrieve a database connection attribute
  2873. array PDO::getAvailableDrivers() |Return an array of available PDO drivers
  2874. string PDO::lastInsertId([string name]) |Returns the ID of the last inserted row or sequence value
  2875. PDOStatement PDO::prepare(string statement [, array driver_options]) |Prepares a statement for execution and returns a statement object
  2876. PDOStatement PDO::query(string statement) |Executes an SQL statement, returning a result set as a PDOStatement object
  2877. string PDO::quote(string string [, int parameter_type]) |Quotes a string for use in a query.
  2878. bool PDO::rollBack() |Rolls back a transaction
  2879. bool PDO::setAttribute(int attribute, mixed value) |Set an attribute
  2880. bool PDO::sqliteCreateAggregate(string function_name, callback step_func, callback finalize_func [, int num_args]) |Registers an aggregating User Defined Function for use in SQL statements
  2881. bool PDO::sqliteCreateFunction(string function_name, callback callback [, int num_args]) |Registers a User Defined Function for use in SQL statements
  2882. bool PDOStatement::bindColumn(mixed column, mixed ¶m [, int type]) |Bind a column to a PHP variable
  2883. bool PDOStatement::bindParam(mixed parameter, mixed &variable [, int data_type [, int length [, mixed driver_options]]]) |Binds a parameter to the specified variable name
  2884. bool PDOStatement::bindValue(mixed parameter, mixed value [, int data_type]) |Binds a value to a parameter
  2885. bool PDOStatement::closeCursor() |Closes the cursor, enabling the statement to be executed again.
  2886. int PDOStatement::columnCount() |Returns the number of columns in the result set
  2887. string PDOStatement::errorCode() |Fetch the SQLSTATE associated with the last operation on the statement handle
  2888. array PDOStatement::errorInfo() |Fetch extended error information associated with the last operation on the statement handle
  2889. bool PDOStatement::execute([array input_parameters]) |Executes a prepared statement
  2890. mixed PDOStatement::fetch([int fetch_style [, int cursor_orientation [, int cursor_offset]]]) |Fetches the next row from a result set
  2891. array PDOStatement::fetchAll([int fetch_style [, int column_index]]) |Returns an array containing all of the result set rows
  2892. string PDOStatement::fetchColumn([int column_number]) |Returns a single column from the next row of a result set
  2893. mixed PDOStatement::fetchObject([string class_name [, array ctor_args]]) |Fetches the next row and returns it as an object.
  2894. mixed PDOStatement::getAttribute(int attribute) |Retrieve a statement attribute
  2895. mixed PDOStatement::getColumnMeta(int column) |Returns metadata for a column in a result set
  2896. bool PDOStatement::nextRowset() |Advances to the next rowset in a multi-rowset statement handle
  2897. int PDOStatement::rowCount() |Returns the number of rows affected by the last SQL statement
  2898. bool PDOStatement::setAttribute(int attribute, mixed value) |Set a statement attribute
  2899. bool PDOStatement::setFetchMode(int mode) |Set the default fetch mode for this statement
  2900. bool pfpro_cleanup() |Shuts down the Payflow Pro library (PHP 4 >= 4.0.2, PHP 5)
  2901. bool pfpro_init() |Initialises the Payflow Pro library (PHP 4 >= 4.0.2, PHP 5)
  2902. string pfpro_process_raw(string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]]) |Process a raw transaction with Payflow Pro (PHP 4 >= 4.0.2, PHP 5)
  2903. array pfpro_process(array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]]) |Process a transaction with Payflow Pro (PHP 4 >= 4.0.2, PHP 5)
  2904. string pfpro_version() |Returns the version of the Payflow Pro software (PHP 4 >= 4.0.2, PHP 5)
  2905. resource pfsockopen(string hostname [, int port [, int &errno [, string &errstr [, float timeout]]]]) |Open persistent Internet or Unix domain socket connection (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  2906. int pg_affected_rows(resource result) |Returns number of affected records (tuples) (PHP 4 >= 4.2.0, PHP 5)
  2907. bool pg_cancel_query(resource connection) |Cancel an asynchronous query (PHP 4 >= 4.2.0, PHP 5)
  2908. string pg_client_encoding([resource connection]) |Gets the client encoding (PHP 3 CVS only, PHP 4 >= 4.0.3, PHP 5)
  2909. bool pg_close([resource connection]) |Closes a PostgreSQL connection (PHP 3, PHP 4, PHP 5)
  2910. resource pg_connect(string connection_string [, int connect_type]) |Open a PostgreSQL connection (PHP 3, PHP 4, PHP 5)
  2911. bool pg_connection_busy(resource connection) |Get connection is busy or not (PHP 4 >= 4.2.0, PHP 5)
  2912. bool pg_connection_reset(resource connection) |Reset connection (reconnect) (PHP 4 >= 4.2.0, PHP 5)
  2913. int pg_connection_status(resource connection) |Get connection status (PHP 4 >= 4.2.0, PHP 5)
  2914. array pg_convert(resource connection, string table_name, array assoc_array [, int options]) |Convert associative array values into suitable for SQL statement (PHP 4 >= 4.3.0, PHP 5)
  2915. bool pg_copy_from(resource connection, string table_name, array rows [, string delimiter [, string null_as]]) |Insert records into a table from an array (PHP 4 >= 4.2.0, PHP 5)
  2916. array pg_copy_to(resource connection, string table_name [, string delimiter [, string null_as]]) |Copy a table to an array (PHP 4 >= 4.2.0, PHP 5)
  2917. string pg_dbname([resource connection]) |Get the database name (PHP 3, PHP 4, PHP 5)
  2918. mixed pg_delete(resource connection, string table_name, array assoc_array [, int options]) |Deletes records (PHP 4 >= 4.3.0, PHP 5)
  2919. bool pg_end_copy([resource connection]) |Sync with PostgreSQL backend (PHP 4 >= 4.0.3, PHP 5)
  2920. string pg_escape_bytea(string data) |Escape a string for insertion into a bytea field (PHP 4 >= 4.2.0, PHP 5)
  2921. string pg_escape_string(string data) |Escape a string for insertion into a text field (PHP 4 >= 4.2.0, PHP 5)
  2922. resource pg_execute(resource connection, string stmtname, array params) |Sends a request to execute a prepared statement with given parameters, and waits for the result. (PHP 5 >= 5.1.0RC1)
  2923. array pg_fetch_all_columns(resource result [, int column]) |Fetches all rows in a particular result column as an array (PHP 5 >= 5.1.0RC1)
  2924. array pg_fetch_all(resource result) |Fetches all rows from a result as an array (PHP 4 >= 4.3.0, PHP 5)
  2925. array pg_fetch_array(resource result [, int row [, int result_type]]) |Fetch a row as an array (PHP 3 >= 3.0.1, PHP 4, PHP 5)
  2926. array pg_fetch_assoc(resource result [, int row]) |Fetch a row as an associative array (PHP 4 >= 4.3.0, PHP 5)
  2927. object pg_fetch_object(resource result [, int row [, int result_type]]) |Fetch a row as an object (PHP 3 >= 3.0.1, PHP 4, PHP 5)
  2928. string pg_fetch_result(resource result, int row, mixed field) |Returns values from a result resource (PHP 4 >= 4.2.0, PHP 5)
  2929. array pg_fetch_row(resource result [, int row]) |Get a row as an enumerated array (PHP 3 >= 3.0.1, PHP 4, PHP 5)
  2930. int pg_field_is_null(resource result, int row, mixed field) |Test if a field is SQL NULL (PHP 4 >= 4.2.0, PHP 5)
  2931. string pg_field_name(resource result, int field_number) |Returns the name of a field (PHP 4 >= 4.2.0, PHP 5)
  2932. int pg_field_num(resource result, string field_name) |Returns the field number of the named field (PHP 4 >= 4.2.0, PHP 5)
  2933. int pg_field_prtlen(resource result, int row_number, mixed field_name_or_number) |Returns the printed length (PHP 4 >= 4.2.0, PHP 5)
  2934. int pg_field_size(resource result, int field_number) |Returns the internal storage size of the named field (PHP 4 >= 4.2.0, PHP 5)
  2935. int pg_field_type_oid(resource result, int field_number) |Returns the type ID (OID) for the corresponding field number (PHP 5 >= 5.1.0RC1)
  2936. string pg_field_type(resource result, int field_number) |Returns the type name for the corresponding field number (PHP 4 >= 4.2.0, PHP 5)
  2937. bool pg_free_result(resource result) |Free result memory (PHP 4 >= 4.2.0, PHP 5)
  2938. array pg_get_notify(resource connection [, int result_type]) |Gets SQL NOTIFY message (PHP 4 >= 4.3.0, PHP 5)
  2939. int pg_get_pid(resource connection) |Gets the backend's process ID (PHP 4 >= 4.3.0, PHP 5)
  2940. resource pg_get_result([resource connection]) |Get asynchronous query result (PHP 4 >= 4.2.0, PHP 5)
  2941. string pg_host([resource connection]) |Returns the host name associated with the connection (PHP 3, PHP 4, PHP 5)
  2942. mixed pg_insert(resource connection, string table_name, array assoc_array [, int options]) |Insert array into table (PHP 4 >= 4.3.0, PHP 5)
  2943. string pg_last_error([resource connection]) |Get the last error message string of a connection (PHP 4 >= 4.2.0, PHP 5)
  2944. string pg_last_notice(resource connection) |Returns the last notice message from PostgreSQL server (PHP 4 >= 4.0.6, PHP 5)
  2945. string pg_last_oid(resource result) |Returns the last row's OID (PHP 4 >= 4.2.0, PHP 5)
  2946. bool pg_lo_close(resource large_object) |Close a large object (PHP 4 >= 4.2.0, PHP 5)
  2947. int pg_lo_create([resource connection]) |Create a large object (PHP 4 >= 4.2.0, PHP 5)
  2948. bool pg_lo_export(resource connection, int oid, string pathname) |Export a large object to file (PHP 4 >= 4.2.0, PHP 5)
  2949. int pg_lo_import(resource connection, string pathname) |Import a large object from file (PHP 4 >= 4.2.0, PHP 5)
  2950. resource pg_lo_open(resource connection, int oid, string mode) |Open a large object (PHP 4 >= 4.2.0, PHP 5)
  2951. int pg_lo_read_all(resource large_object) |Reads an entire large object and send straight to browser (PHP 4 >= 4.2.0, PHP 5)
  2952. string pg_lo_read(resource large_object [, int len]) |Read a large object (PHP 4 >= 4.2.0, PHP 5)
  2953. bool pg_lo_seek(resource large_object, int offset [, int whence]) |Seeks position within a large object (PHP 4 >= 4.2.0, PHP 5)
  2954. int pg_lo_tell(resource large_object) |Returns current seek position a of large object (PHP 4 >= 4.2.0, PHP 5)
  2955. bool pg_lo_unlink(resource connection, int oid) |Delete a large object (PHP 4 >= 4.2.0, PHP 5)
  2956. int pg_lo_write(resource large_object, string data [, int len]) |Write to a large object (PHP 4 >= 4.2.0, PHP 5)
  2957. array pg_meta_data(resource connection, string table_name) |Get meta data for table (PHP 4 >= 4.3.0, PHP 5)
  2958. int pg_num_fields(resource result) |Returns the number of fields in a result (PHP 4 >= 4.2.0, PHP 5)
  2959. int pg_num_rows(resource result) |Returns the number of rows in a result (PHP 4 >= 4.2.0, PHP 5)
  2960. string pg_options([resource connection]) |Get the options associated with the connection (PHP 3, PHP 4, PHP 5)
  2961. string pg_parameter_status(resource connection, string param_name) |Looks up a current parameter setting of the server. (PHP 5)
  2962. resource pg_pconnect(string connection_string [, int connect_type]) |Open a persistent PostgreSQL connection (PHP 3, PHP 4, PHP 5)
  2963. bool pg_ping([resource connection]) |Ping database connection (PHP 4 >= 4.3.0, PHP 5)
  2964. int pg_port([resource connection]) |Return the port number associated with the connection (PHP 3, PHP 4, PHP 5)
  2965. resource pg_prepare(resource connection, string stmtname, string query) |Submits a request to create a prepared statement with the given parameters, and waits for completion. (PHP 5 >= 5.1.0RC1)
  2966. bool pg_put_line(string data) |Send a NULL-terminated string to PostgreSQL backend (PHP 4 >= 4.0.3, PHP 5)
  2967. resource pg_query_params(resource connection, string query, array params) |Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text. (PHP 5 >= 5.1.0RC1)
  2968. resource pg_query(string query) |Execute a query (PHP 4 >= 4.2.0, PHP 5)
  2969. string pg_result_error_field(resource result, int fieldcode) |Returns an individual field of an error report. (PHP 5 >= 5.1.0RC1)
  2970. string pg_result_error(resource result) |Get error message associated with result (PHP 4 >= 4.2.0, PHP 5)
  2971. bool pg_result_seek(resource result, int offset) |Set internal row offset in result resource (PHP 4 >= 4.3.0, PHP 5)
  2972. mixed pg_result_status(resource result [, int type]) |Get status of query result (PHP 4 >= 4.2.0, PHP 5)
  2973. mixed pg_select(resource connection, string table_name, array assoc_array [, int options]) |Select records (PHP 4 >= 4.3.0, PHP 5)
  2974. bool pg_send_execute(resource connection, string stmtname, array params) |Sends a request to execute a prepared statement with given parameters, without waiting for the result(s). (PHP 5 >= 5.1.0RC1)
  2975. bool pg_send_prepare(resource connection, string stmtname, string query) |Sends a request to create a prepared statement with the given parameters, without waiting for completion. (PHP 5 >= 5.1.0RC1)
  2976. bool pg_send_query_params(resource connection, string query, array params) |Submits a command and separate parameters to the server without waiting for the result(s). (PHP 5 >= 5.1.0RC1)
  2977. bool pg_send_query(resource connection, string query) |Sends asynchronous query (PHP 4 >= 4.2.0, PHP 5)
  2978. int pg_set_client_encoding(string encoding) |Set the client encoding (PHP 3 CVS only, PHP 4 >= 4.0.3, PHP 5)
  2979. int pg_set_error_verbosity(resource connection, int verbosity) |Determines the verbosity of messages returned by pg_last_error and pg_result_error. (PHP 5 >= 5.1.0RC1)
  2980. bool pg_trace(string pathname [, string mode [, resource connection]]) |Enable tracing a PostgreSQL connection (PHP 4 >= 4.0.1, PHP 5)
  2981. int pg_transaction_status(resource connection) |Returns the current in-transaction status of the server. (PHP 5 >= 5.1.0RC1)
  2982. string pg_tty([resource connection]) |Return the TTY name associated with the connection (PHP 3, PHP 4, PHP 5)
  2983. string pg_unescape_bytea(string data) |Unescape binary for bytea type (PHP 4 >= 4.3.0, PHP 5)
  2984. bool pg_untrace([resource connection]) |Disable tracing of a PostgreSQL connection (PHP 4 >= 4.0.1, PHP 5)
  2985. mixed pg_update(resource connection, string table_name, array data, array condition [, int options]) |Update table (PHP 4 >= 4.3.0, PHP 5)
  2986. array pg_version([resource connection]) |Returns an array with client, protocol and server version (when available) (PHP 5)
  2987. bool php_check_syntax(string file_name [, string &error_message]) |Check the PHP syntax of (and execute) the specified file (PHP 5 <= 5.0.4)
  2988. string php_ini_scanned_files() |Return a list of .ini files parsed from the additional ini dir (PHP 4 >= 4.3.0, PHP 5)
  2989. string php_logo_guid() |Gets the logo guid (PHP 4, PHP 5)
  2990. string php_sapi_name() |Returns the type of interface between web server and PHP (PHP 4 >= 4.0.1, PHP 5)
  2991. string php_strip_whitespace(string filename) |Return source with stripped comments and whitespace (PHP 5)
  2992. string php_uname([string mode]) |Returns information about the operating system PHP is running on (PHP 4 >= 4.0.2, PHP 5)
  2993. bool phpcredits([int flag]) |Prints out the credits for PHP (PHP 4, PHP 5)
  2994. bool phpinfo([int what]) |Outputs lots of PHP information (PHP 3, PHP 4, PHP 5)
  2995. string phpversion([string extension]) |Gets the current PHP version (PHP 3, PHP 4, PHP 5)
  2996. float pi() |Get value of pi (PHP 3, PHP 4, PHP 5)
  2997. int png2wbmp(string pngname, string wbmpname, int d_height, int d_width, int threshold) |Convert PNG image file to WBMP image file (PHP 4 >= 4.0.5, PHP 5)
  2998. resource popen(string command, string mode) |Opens process file pointer (PHP 3, PHP 4, PHP 5)
  2999. mixed ArrayIterator::pos() |Return pos array entry
  3000. bool posix_access(string file [, int mode]) |Determine accessibility of a file (PHP 5 >= 5.1.0RC1)
  3001. string posix_ctermid() |Get path name of controlling terminal (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3002. int posix_get_last_error() |Retrieve the error number set by the last posix function that failed (PHP 4 >= 4.2.0, PHP 5)
  3003. string posix_getcwd() |Pathname of current directory (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3004. int posix_getegid() |Return the effective group ID of the current process (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3005. int posix_geteuid() |Return the effective user ID of the current process (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3006. int posix_getgid() |Return the real group ID of the current process (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3007. array posix_getgrgid(int gid) |Return info about a group by group id (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3008. array posix_getgrnam(string name) |Return info about a group by name (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3009. array posix_getgroups() |Return the group set of the current process (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3010. string posix_getlogin() |Return login name (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3011. int posix_getpgid(int pid) |Get process group id for job control (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3012. int posix_getpgrp() |Return the current process group identifier (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3013. int posix_getpid() |Return the current process identifier (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3014. int posix_getppid() |Return the parent process identifier (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3015. array posix_getpwnam(string username) |Return info about a user by username (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3016. array posix_getpwuid(int uid) |Return info about a user by user id (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3017. array posix_getrlimit() |Return info about system resource limits (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3018. int posix_getsid(int pid) |Get the current sid of the process (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3019. int posix_getuid() |Return the real user ID of the current process (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3020. bool posix_isatty(int fd) |Determine if a file descriptor is an interactive terminal (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3021. bool posix_kill(int pid, int sig) |Send a signal to a process (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3022. bool posix_mkfifo(string pathname, int mode) |Create a fifo special file (a named pipe) (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3023. bool posix_mknod(string pathname, int mode [, int major [, int minor]]) |Create a special or ordinary file (POSIX.1) (PHP 5 >= 5.1.0RC1)
  3024. bool posix_setegid(int gid) |Set the effective GID of the current process (PHP 4 >= 4.0.2, PHP 5)
  3025. bool posix_seteuid(int uid) |Set the effective UID of the current process (PHP 4 >= 4.0.2, PHP 5)
  3026. bool posix_setgid(int gid) |Set the GID of the current process (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3027. bool posix_setpgid(int pid, int pgid) |Set process group id for job control (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3028. int posix_setsid() |Make the current process a session leader (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3029. bool posix_setuid(int uid) |Set the UID of the current process (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3030. string posix_strerror(int errno) |Retrieve the system error message associated with the given errno (PHP 4 >= 4.2.0, PHP 5)
  3031. array posix_times() |Get process times (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3032. string posix_ttyname(int fd) |Determine terminal device name (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3033. array posix_uname() |Get system name (PHP 3 >= 3.0.10, PHP 4, PHP 5)
  3034. number pow(number base, number exp) |Exponential expression (PHP 3, PHP 4, PHP 5)
  3035. array preg_grep(string pattern, array input [, int flags]) |Return array entries that match the pattern (PHP 4, PHP 5)
  3036. int preg_match_all(string pattern, string subject, array &matches [, int flags [, int offset]]) |Perform a global regular expression match (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  3037. int preg_match(string pattern, string subject [, array &matches [, int flags [, int offset]]]) |Perform a regular expression match (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  3038. string preg_quote(string str [, string delimiter]) |Quote regular expression characters (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  3039. mixed preg_replace_callback(mixed pattern, callback callback, mixed subject [, int limit [, int &count]]) |Perform a regular expression search and replace using a callback (PHP 4 >= 4.0.5, PHP 5)
  3040. mixed preg_replace(mixed pattern, mixed replacement, mixed subject [, int limit [, int &count]]) |Perform a regular expression search and replace (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  3041. array preg_split(string pattern, string subject [, int limit [, int flags]]) |Split string by a regular expression (PHP 3 >= 3.0.9, PHP 4, PHP 5)
  3042. mixed prev(array &array) |Rewind the internal array pointer (PHP 3, PHP 4, PHP 5)
  3043. bool print_r(mixed expression [, bool return]) |Prints human-readable information about a variable (PHP 4, PHP 5)
  3044. int print(string arg) |Output a string (PHP 3, PHP 4, PHP 5)
  3045. void printer_abort(resource handle) |Deletes the printer's spool file (PECL)
  3046. void printer_close(resource handle) |Close an open printer connection (PECL)
  3047. resource printer_create_brush(int style, string color) |Create a new brush (PECL)
  3048. void printer_create_dc(resource handle) |Create a new device context (PECL)
  3049. resource printer_create_font(string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation) |Create a new font (PECL)
  3050. resource printer_create_pen(int style, int width, string color) |Create a new pen (PECL)
  3051. void printer_delete_brush(resource handle) |Delete a brush (PECL)
  3052. bool printer_delete_dc(resource handle) |Delete a device context (PECL)
  3053. void printer_delete_font(resource handle) |Delete a font (PECL)
  3054. void printer_delete_pen(resource handle) |Delete a pen (PECL)
  3055. bool printer_draw_bmp(resource handle, string filename, int x, int y [, int width, int height]) |Draw a bmp (PECL)
  3056. void printer_draw_chord(resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1) |Draw a chord (PECL)
  3057. void printer_draw_elipse(resource handle, int ul_x, int ul_y, int lr_x, int lr_y) |Draw an ellipse (PECL)
  3058. void printer_draw_line(resource printer_handle, int from_x, int from_y, int to_x, int to_y) |Draw a line (PECL)
  3059. void printer_draw_pie(resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y) |Draw a pie (PECL)
  3060. void printer_draw_rectangle(resource handle, int ul_x, int ul_y, int lr_x, int lr_y) |Draw a rectangle (PECL)
  3061. void printer_draw_roundrect(resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height) |Draw a rectangle with rounded corners (PECL)
  3062. void printer_draw_text(resource printer_handle, string text, int x, int y) |Draw text (PECL)
  3063. bool printer_end_doc(resource handle) |Close document (PECL)
  3064. bool printer_end_page(resource handle) |Close active page (PECL)
  3065. mixed printer_get_option(resource handle, string option) |Retrieve printer configuration data (PECL)
  3066. array printer_list(int enumtype [, string name [, int level]]) |Return an array of printers attached to the server (PECL)
  3067. int printer_logical_fontheight(resource handle, int height) |Get logical font height (PECL)
  3068. resource printer_open([string devicename]) |Open connection to a printer (PECL)
  3069. void printer_select_brush(resource printer_handle, resource brush_handle) |Select a brush (PECL)
  3070. void printer_select_font(resource printer_handle, resource font_handle) |Select a font (PECL)
  3071. void printer_select_pen(resource printer_handle, resource pen_handle) |Select a pen (PECL)
  3072. bool printer_set_option(resource handle, int option, mixed value) |Configure the printer connection (PECL)
  3073. bool printer_start_doc(resource handle [, string document]) |Start a new document (PECL)
  3074. bool printer_start_page(resource handle) |Start a new page (PECL)
  3075. bool printer_write(resource handle, string content) |Write data to the printer (PECL)
  3076. int printf(string format [, mixed args [, mixed ...]]) |Output a formatted string (PHP 3, PHP 4, PHP 5)
  3077. int proc_close(resource process) |Close a process opened by proc_open and return the exit code of that process. (PHP 4 >= 4.3.0, PHP 5)
  3078. array proc_get_status(resource process) |Get information about a process opened by proc_open (PHP 5)
  3079. bool proc_nice(int increment) |Change the priority of the current process (PHP 5)
  3080. resource proc_open(string cmd, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]]) |Execute a command and open file pointers for input/output (PHP 4 >= 4.3.0, PHP 5)
  3081. int proc_terminate(resource process [, int signal]) |kills a process opened by proc_open (PHP 5)
  3082. bool property_exists(mixed class, string property) |Checks if the object or class has a property (PHP 5 >= 5.1.0RC1)
  3083. int ps_add_bookmark(resource psdoc, string text [, int parent [, int open]]) |Add bookmark to current page (PECL)
  3084. bool ps_add_launchlink(resource psdoc, float llx, float lly, float urx, float ury, string filename) |Adds link which launches file (PECL)
  3085. bool ps_add_locallink(resource psdoc, float llx, float lly, float urx, float ury, int page, string dest) |Adds link to a page in the same document (PECL)
  3086. bool ps_add_note(resource psdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open) |Adds note to current page (PECL)
  3087. bool ps_add_pdflink(resource psdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest) |Adds link to a page in a second pdf document (PECL)
  3088. bool ps_add_weblink(resource psdoc, float llx, float lly, float urx, float ury, string url) |Adds link to a web location (PECL)
  3089. bool ps_arc(resource psdoc, float x, float y, float radius, float alpha, float beta) |Draws an arc counterclockwise (PECL)
  3090. bool ps_arcn(resource psdoc, float x, float y, float radius, float alpha, float beta) |Draws an arc clockwise
  3091. bool ps_begin_page(resource psdoc, float width, float height) |Start a new page (PECL)
  3092. bool ps_begin_pattern(resource psdoc, float width, float height, float xstep, float ystep, int painttype) |Start a new pattern (PECL)
  3093. bool ps_begin_template(resource psdoc, float width, float height) |Start a new template (PECL)
  3094. bool ps_circle(resource psdoc, float x, float y, float radius) |Draws a circle (PECL)
  3095. bool ps_clip(resource psdoc) |Clips drawing to current path (PECL)
  3096. void ps_close_image(resource psdoc, int imageid) |Closes image and frees memory (PECL)
  3097. bool ps_close(resource psdoc) |Closes a PostScript document (PECL)
  3098. bool ps_closepath_stroke(resource psdoc) |Closes and strokes path (PECL)
  3099. bool ps_closepath(resource psdoc) |Closes path (PECL)
  3100. bool ps_continue_text(resource psdoc, string text) |Continue text in next line (PECL)
  3101. bool ps_curveto(resource psdoc, float x1, float y1, float x2, float y2, float x3, float y3) |Draws a curve (PECL)
  3102. bool ps_delete(resource psdoc) |Deletes all resources of a PostScript document (PECL)
  3103. bool ps_end_page(resource psdoc) |End a page (PECL)
  3104. bool ps_end_pattern(resource psdoc) |End a pattern (PECL)
  3105. bool ps_end_template(resource psdoc) |End a template (PECL)
  3106. bool ps_fill_stroke(resource psdoc) |Fills and strokes the current path (PECL)
  3107. bool ps_fill(resource psdoc) |Fills the current path (PECL)
  3108. int ps_findfont(resource psdoc, string fontname, string encoding [, bool embed]) |Loads a font (PECL)
  3109. string ps_get_buffer(resource psdoc) |Fetches the full buffer containig the generated PS data (PECL)
  3110. string ps_get_parameter(resource psdoc, string name [, float modifier]) |Gets certain parameters (PECL)
  3111. float ps_get_value(resource psdoc, string name [, float modifier]) |Gets certain values (PECL)
  3112. array ps_hyphenate(resource psdoc, string text) |Hyphenates a word (PECL)
  3113. bool ps_lineto(resource psdoc, float x, float y) |Draws a line (PECL)
  3114. int ps_makespotcolor(resource psdoc, string name [, float reserved]) |Create spot color (PECL)
  3115. bool ps_moveto(resource psdoc, float x, float y) |Sets current point (PECL)
  3116. resource ps_new() |Creates a new PostScript document object (PECL)
  3117. bool ps_open_file(resource psdoc [, string filename]) |Opens a file for output (PECL)
  3118. int ps_open_image_file(resource psdoc, string type, string filename [, string stringparam [, int intparam]]) |Opens image from file (PECL)
  3119. int ps_open_image(resource psdoc, string type, string source, string data, int lenght, int width, int height, int components, int bpc, string params) |Reads an image for later placement (PECL)
  3120. bool ps_place_image(resource psdoc, int imageid, float x, float y, float scale) |Places image on the page (PECL)
  3121. bool ps_rect(resource psdoc, float x, float y, float width, float height) |Draws a rectangle (PECL)
  3122. bool ps_restore(resource psdoc) |Restore previously save context (PECL)
  3123. bool ps_rotate(resource psdoc, float rot) |Sets rotation factor (PECL)
  3124. bool ps_save(resource psdoc) |Save current context (PECL)
  3125. bool ps_scale(resource psdoc, float x, float y) |Sets scaling factor (PECL)
  3126. bool ps_set_border_color(resource psdoc, float red, float green, float blue) |Sets color of border for annotations (PECL)
  3127. bool ps_set_border_dash(resource psdoc, float black, float white) |Sets length of dashes for border of annotations (PECL)
  3128. bool ps_set_border_style(resource psdoc, string style, float width) |Sets border style of annotations (PECL)
  3129. bool ps_set_info(resource p, string key, string val) |Sets information fields of document (PECL)
  3130. bool ps_set_parameter(resource psdoc, string name, string value) |Sets certain parameters (PECL)
  3131. bool ps_set_text_pos(resource psdoc, float x, float y) |Sets position for text output (PECL)
  3132. bool ps_set_value(resource psdoc, string name, float value) |Sets certain values (PECL)
  3133. bool ps_setcolor(resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4) |Sets current color (PECL)
  3134. bool ps_setdash(resource psdoc, float on, float off) |Sets appearance of a dashed line (PECL)
  3135. bool ps_setflat(resource psdoc, float value) |Sets flatness (PECL)
  3136. bool ps_setfont(resource psdoc, int fontid, float size) |Sets font to use for following output (PECL)
  3137. bool ps_setgray(resource psdoc, float gray) |Sets gray value
  3138. bool ps_setlinecap(resource psdoc, int type) |Sets appearance of line ends (PECL)
  3139. bool ps_setlinejoin(resource psdoc, int type) |Sets how contected lines are joined (PECL)
  3140. bool ps_setlinewidth(resource psdoc, float width) |Sets width of a line (PECL)
  3141. bool ps_setmiterlimit(resource psdoc, float value) |Sets the miter limit (PECL)
  3142. bool ps_setpolydash(resource psdoc, float arr) |Sets appearance of a dashed line (PECL)
  3143. int ps_shading_pattern(resource psdoc, int shadingid, string optlist) |Creates a pattern based on a shading (PECL)
  3144. int ps_shading(resource psdoc, string type, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist) |Creates a shading for later use (PECL)
  3145. bool ps_shfill(resource psdoc, int shadingid) |Fills an area with a shading (PECL)
  3146. int ps_show_boxed(resource psdoc, string text, float left, float bottom, float width, float height, string hmode [, string feature]) |Output text in a box (PECL)
  3147. bool ps_show_xy(resource psdoc, string text, float x, float y) |Output text at given position (PECL)
  3148. bool ps_show(resource psdoc, string text) |Output text (PECL)
  3149. array ps_string_geometry(resource psdoc, string text [, int fontid [, float size]]) |Gets geometry of a string (PECL)
  3150. float ps_stringwidth(resource psdoc, string text [, int fontid [, float size]]) |Gets width of a string (PECL)
  3151. bool ps_stroke(resource psdoc) |Draws the current path (PECL)
  3152. string ps_symbol_name(resource psdoc, int ord [, int fontid]) |Gets name of a glyph (PECL)
  3153. float ps_symbol_width(resource psdoc, int ord [, int fontid [, float size]]) |Gets width of a glyph (PECL)
  3154. bool ps_symbol(resource psdoc, int ord) |Output a glyph (PECL)
  3155. bool ps_translate(resource psdoc, float x, float y) |Sets translation (PECL)
  3156. bool pspell_add_to_personal(int dictionary_link, string word) |Add the word to a personal wordlist (PHP 4 >= 4.0.2, PHP 5)
  3157. bool pspell_add_to_session(int dictionary_link, string word) |Add the word to the wordlist in the current session (PHP 4 >= 4.0.2, PHP 5)
  3158. bool pspell_check(int dictionary_link, string word) |Check a word (PHP 4 >= 4.0.2, PHP 5)
  3159. bool pspell_clear_session(int dictionary_link) |Clear the current session (PHP 4 >= 4.0.2, PHP 5)
  3160. int pspell_config_create(string language [, string spelling [, string jargon [, string encoding ]]]) |Create a config used to open a dictionary (PHP 4 >= 4.0.2, PHP 5)
  3161. bool pspell_config_data_dir(int conf, string directory) |location of language data files (PHP 5)
  3162. bool pspell_config_dict_dir(int conf, string directory) |Location of the main word list (PHP 5)
  3163. bool pspell_config_ignore(int dictionary_link, int n) |Ignore words less than N characters long (PHP 4 >= 4.0.2, PHP 5)
  3164. bool pspell_config_mode(int dictionary_link, int mode) |Change the mode number of suggestions returned (PHP 4 >= 4.0.2, PHP 5)
  3165. bool pspell_config_personal(int dictionary_link, string file) |Set a file that contains personal wordlist (PHP 4 >= 4.0.2, PHP 5)
  3166. bool pspell_config_repl(int dictionary_link, string file) |Set a file that contains replacement pairs (PHP 4 >= 4.0.2, PHP 5)
  3167. bool pspell_config_runtogether(int dictionary_link, bool flag) |Consider run-together words as valid compounds (PHP 4 >= 4.0.2, PHP 5)
  3168. bool pspell_config_save_repl(int dictionary_link, bool flag) |Determine whether to save a replacement pairs list along with the wordlist (PHP 4 >= 4.0.2, PHP 5)
  3169. int pspell_new_config(int config) |Load a new dictionary with settings based on a given config (PHP 4 >= 4.0.2, PHP 5)
  3170. int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode ]]]]) |Load a new dictionary with personal wordlist (PHP 4 >= 4.0.2, PHP 5)
  3171. int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode ]]]]) |Load a new dictionary (PHP 4 >= 4.0.2, PHP 5)
  3172. bool pspell_save_wordlist(int dictionary_link) |Save the personal wordlist to a file (PHP 4 >= 4.0.2, PHP 5)
  3173. bool pspell_store_replacement(int dictionary_link, string misspelled, string correct) |Store a replacement pair for a word (PHP 4 >= 4.0.2, PHP 5)
  3174. array pspell_suggest(int dictionary_link, string word) |Suggest spellings of a word (PHP 4 >= 4.0.2, PHP 5)
  3175. bool putenv(string setting) |Sets the value of an environment variable (PHP 3, PHP 4, PHP 5)
  3176. bool px_close(resource pxdoc) |Closes a paradox database (PECL)
  3177. bool px_create_fp(resource pxdoc, resource file, array fielddesc) |Create a new paradox database (PECL)
  3178. bool px_delete_record(resource pxdoc, int num) |Deletes record from paradox database (PECL)
  3179. bool px_delete(resource pxdoc) |Deletes resource of paradox database (PECL)
  3180. array px_get_field(resource pxdoc, int fieldno) |Returns the specification of a single field (PECL)
  3181. array px_get_info(resource pxdoc) |Return lots of information about a paradox file (PECL)
  3182. string px_get_parameter(resource pxdoc, string name) |Gets a parameter (PECL)
  3183. array px_get_record(resource pxdoc, int num [, int mode]) |Returns record of paradox database (PECL)
  3184. array px_get_schema(resource pxdoc [, int mode]) |Returns the database schema (PECL)
  3185. float px_get_value(resource pxdoc, string name) |Gets a value (PECL)
  3186. int px_insert_record(resource pxdoc, array data) |Inserts record into paradox database (PECL)
  3187. resource px_new() |Create a new paradox object (PECL)
  3188. int px_numfields(resource pxdoc) |Returns number of fields in a database (PECL)
  3189. int px_numrecords(resource pxdoc) |Returns number of records in a database (PECL)
  3190. bool px_open_fp(resource pxdoc, resource file) |Open paradox database (PECL)
  3191. bool px_put_record(resource pxdoc, array record [, int recpos]) |Stores record into paradox database (PECL)
  3192. array px_retrieve_record(resource pxdoc, int num [, int mode]) |Returns record of paradox database (PECL)
  3193. bool px_set_blob_file(resource pxdoc, string filename) |Sets the file where blobs are read from (PECL)
  3194. bool px_set_parameter(resource pxdoc, string name, string value) |Sets a parameter (PECL)
  3195. void px_set_tablename(resource pxdoc, string name) |Sets the name of a table (deprecated) (PECL)
  3196. bool px_set_targetencoding(resource pxdoc, string encoding) |Sets the encoding for character fields (deprecated) (PECL)
  3197. bool px_set_value(resource pxdoc, string name, float value) |Sets a value (PECL)
  3198. string px_timestamp2string(resource pxdoc, float value, string format) |Converts the timestamp into a string. (PECL)
  3199. bool px_update_record(resource pxdoc, array data, int num) |Updates record in paradox database (PECL)
  3200. string qdom_error() |Returns the error string from the last QDOM operation or FALSE if no errors occurred (PHP 4 >= 4.0.5, PECL)
  3201. QDomDocument qdom_tree(string doc) |Creates a tree of an XML string (PHP 4 >= 4.0.4, PECL)
  3202. string quoted_printable_decode(string str) |Convert a quoted-printable string to an 8 bit string (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3203. string quotemeta(string str) |Quote meta characters (PHP 3, PHP 4, PHP 5)
  3204. float rad2deg(float number) |Converts the radian number to the equivalent number in degrees (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  3205. resource radius_acct_open() |Creates a Radius handle for accounting (PECL)
  3206. bool radius_add_server(resource radius_handle, string hostname, int port, string secret, int timeout, int max_tries) |Adds a server (PECL)
  3207. resource radius_auth_open() |Creates a Radius handle for authentication (PECL)
  3208. bool radius_close(resource radius_handle) |Frees all ressources (PECL)
  3209. bool radius_config(resource radius_handle, string file) |Causes the library to read the given configuration file (PECL)
  3210. bool radius_create_request(resource radius_handle, int type) |Create accounting or authentication request (PECL)
  3211. string radius_cvt_addr(string data) |Converts raw data to IP-Address (PECL)
  3212. int radius_cvt_int(string data) |Converts raw data to integer (PECL)
  3213. string radius_cvt_string(string data) |Converts raw data to string (PECL)
  3214. string radius_demangle_mppe_key(resource radius_handle, string mangled) |Derives mppe-keys from mangled data (PECL)
  3215. string radius_demangle(resource radius_handle, string mangled) |Demangles data (PECL)
  3216. mixed radius_get_attr(resource radius_handle) |Extracts an attribute (PECL)
  3217. array radius_get_vendor_attr(string data) |Extracts a vendor specific attribute (PECL)
  3218. bool radius_put_addr(resource radius_handle, int type, string addr) |Attaches an IP-Address attribute (PECL)
  3219. bool radius_put_attr(resource radius_handle, int type, string value) |Attaches a binary attribute (PECL)
  3220. bool radius_put_int(resource radius_handle, int type, int value) |Attaches an integer attribute (PECL)
  3221. bool radius_put_string(resource radius_handle, int type, string value) |Attaches a string attribute (PECL)
  3222. bool radius_put_vendor_addr(resource radius_handle, int vendor, int type, string addr) |Attaches a vendor specific IP-Address attribute (PECL)
  3223. bool radius_put_vendor_attr(resource radius_handle, int vendor, int type, string value) |Attaches a vendor specific binary attribute (PECL)
  3224. bool radius_put_vendor_int(resource radius_handle, int vendor, int type, int value) |Attaches a vendor specific integer attribute (PECL)
  3225. bool radius_put_vendor_string(resource radius_handle, int vendor, int type, string value) |Attaches a vendor specific string attribute (PECL)
  3226. string radius_request_authenticator(resource radius_handle) |Returns the request authenticator (PECL)
  3227. int radius_send_request(resource radius_handle) |Sends the request and waites for a reply (PECL)
  3228. string radius_server_secret(resource radius_handle) |Returns the shared secret (PECL)
  3229. string radius_strerror(resource radius_handle) |Returns an error message (PECL)
  3230. int rand([int min, int max]) |Generate a random integer (PHP 3, PHP 4, PHP 5)
  3231. array range(mixed low, mixed high [, number step]) |Create an array containing a range of elements (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3232. bool rar_close(resource rar_file) |Close Rar archive and free all resources
  3233. RarEntry rar_entry_get(resource rar_file, string entry_name) |Get entry object from the Rar archive
  3234. bool Rar::extract(string dir [, string filepath]) |Extract entry from the archive
  3235. int Rar::getAttr() |Get attributes of the entry
  3236. int Rar::getCrc() |Get CRC of the entry
  3237. string Rar::getFileTime() |Get entry last modification time
  3238. int Rar::getHostOs() |Get entry host OS
  3239. int Rar::getMethod() |Get pack method of the entry
  3240. string Rar::getName() |Get name of the entry
  3241. int Rar::getPackedSize() |Get packed size of the entry
  3242. int Rar::getUnpackedSize() |Get unpacked size of the entry
  3243. int Rar::getVersion() |Get version of the archiver used to add the entry
  3244. array rar_list(resource rar_file) |Get entries list from the Rar archive
  3245. resource rar_open(string filename [, string password]) |Open Rar archive
  3246. string rawurldecode(string str) |Decode URL-encoded strings (PHP 3, PHP 4, PHP 5)
  3247. string rawurlencode(string str) |URL-encode according to RFC 1738 (PHP 3, PHP 4, PHP 5)
  3248. array read_exif_data(string filename [, string sections [, bool arrays [, bool thumbnail]]]) |Reads the EXIF headers from JPEG or TIFF (PHP 4 >= 4.2.0, PHP 5)
  3249. string readdir(resource dir_handle) |Read entry from directory handle (PHP 3, PHP 4, PHP 5)
  3250. int readfile(string filename [, bool use_include_path [, resource context]]) |Outputs a file (PHP 3, PHP 4, PHP 5)
  3251. int readgzfile(string filename [, int use_include_path]) |Output a gz-file (PHP 3, PHP 4, PHP 5)
  3252. bool readline_add_history(string line) |Adds a line to the history (PHP 4, PHP 5)
  3253. bool readline_callback_handler_install(string prompt, callback callback) |Initializes the readline callback interface and terminal, prints the prompt and returns immediately (PHP 5 >= 5.1.0RC1)
  3254. bool readline_callback_handler_remove() |Removes a previously installed callback handler and restores terminal settings (PHP 5 >= 5.1.0RC1)
  3255. void readline_callback_read_char() |Reads a character and informs the readline callback interface when a line is received (PHP 5 >= 5.1.0RC1)
  3256. bool readline_clear_history() |Clears the history (PHP 4, PHP 5)
  3257. bool readline_completion_function(callback function) |Registers a completion function (PHP 4, PHP 5)
  3258. mixed readline_info([string varname [, string newvalue]]) |Gets/sets various internal readline variables (PHP 4, PHP 5)
  3259. array readline_list_history() |Lists the history (PHP 4, PHP 5)
  3260. void readline_on_new_line() |Inform readline that the cursor has moved to a new line (PHP 5 >= 5.1.0RC1)
  3261. bool readline_read_history([string filename]) |Reads the history (PHP 4, PHP 5)
  3262. void readline_redisplay() |Ask readline to redraw the display (PHP 5 >= 5.1.0RC1)
  3263. bool readline_write_history([string filename]) |Writes the history (PHP 4, PHP 5)
  3264. string readline(string prompt) |Reads a line (PHP 4, PHP 5)
  3265. string readlink(string path) |Returns the target of a symbolic link (PHP 3, PHP 4, PHP 5)
  3266. string realpath(string path) |Returns canonicalized absolute pathname (PHP 4, PHP 5)
  3267. bool recode_file(string request, resource input, resource output) |Recode from file to file according to recode request (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3268. string recode_string(string request, string string) |Recode a string according to a recode request (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3269. string recode(string request, string string) |Recode a string according to a recode request (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3270. object RecursiveDirectoryIterator::getChildren() |Returns an iterator for the current entry if it is a directory
  3271. bool RecursiveDirectoryIterator::hasChildren([bool allow_links]) |Returns whether current entry is a directory and not '.' or '..'
  3272. string RecursiveDirectoryIterator::key() |Return path and filename of current dir entry
  3273. void RecursiveDirectoryIterator::next() |Move to next entry
  3274. void RecursiveDirectoryIterator::rewind() |Rewind dir back to the start
  3275. mixed RecursiveIteratorIterator::current() |Access the current element value
  3276. int RecursiveIteratorIterator::getDepth() |Get the current depth of the recursive iteration
  3277. RecursiveIterator RecursiveIteratorIterator::getSubIterator() |The current active sub iterator
  3278. mixed RecursiveIteratorIterator::key() |Access the current key
  3279. void RecursiveIteratorIterator::next() |Move forward to the next element
  3280. void RecursiveIteratorIterator::rewind() |Rewind the iterator to the first element of the top level inner iterator
  3281. bolean RecursiveIteratorIterator::valid() |Check whether the current position is valid
  3282. void register_shutdown_function(callback function [, mixed parameter [, mixed ...]]) |Register a function for execution on shutdown (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  3283. bool register_tick_function(callback function [, mixed arg [, mixed ...]]) |Register a function for execution on each tick (PHP 4 >= 4.0.3, PHP 5)
  3284. bool rename_function(string original_name, string new_name) |Renames orig_name to new_name in the global function_table (PECL)
  3285. bool rename(string oldname, string newname [, resource context]) |Renames a file or directory (PHP 3, PHP 4, PHP 5)
  3286. void require_once |
  3287. void require |
  3288. mixed reset(array &array) |Set the internal pointer of an array to its first element (PHP 3, PHP 4, PHP 5)
  3289. bool restore_error_handler() |Restores the previous error handler function (PHP 4 >= 4.0.1, PHP 5)
  3290. bool restore_exception_handler() |Restores the previously defined exception handler function (PHP 5)
  3291. void restore_include_path() |Restores the value of the include_path configuration option (PHP 4 >= 4.3.0, PHP 5)
  3292. void return |
  3293. bool rewind(resource handle) |Rewind the position of a file pointer (PHP 3, PHP 4, PHP 5)
  3294. void rewinddir(resource dir_handle) |Rewind directory handle (PHP 3, PHP 4, PHP 5)
  3295. bool rmdir(string dirname [, resource context]) |Removes directory (PHP 3, PHP 4, PHP 5)
  3296. float round(float val [, int precision]) |Rounds a float (PHP 3, PHP 4, PHP 5)
  3297. boolean rpm_close(resource rpmr) |Closes an RPM file
  3298. mixed rpm_get_tag(resource rpmr, int tagnum) |Retrieves a header tag from an RPM file
  3299. boolean rpm_is_valid(string filename) |Tests a filename for validity as an RPM file
  3300. resource rpm_open(string filename) |Opens an RPM file
  3301. string rpm_version() |Returns a string representing the current version of the rpmreader extension
  3302. bool rsort(array &array [, int sort_flags]) |Sort an array in reverse order (PHP 3, PHP 4, PHP 5)
  3303. string rtrim(string str [, string charlist]) |Strip whitespace (or other characters) from the end of a string (PHP 3, PHP 4, PHP 5)
  3304. bool runkit_class_adopt(string classname, string parentname) |Convert a base class to an inherited class, add ancestral methods when appropriate (PECL)
  3305. bool runkit_class_emancipate(string classname) |Convert an inherited class to a base class, removes any method whose scope is ancestral (PECL)
  3306. bool runkit_constant_add(string constname, mixed value) |Similar to define(), but allows defining in class definitions as well (PECL)
  3307. bool runkit_constant_redefine(string constname, mixed newvalue) |Redefine an already defined constant (PECL)
  3308. bool runkit_constant_remove(string constname) |Remove/Delete an already defined constant (PECL)
  3309. bool runkit_function_add(string funcname, string arglist, string code) |Add a new function, similar to create_function (PECL)
  3310. bool runkit_function_copy(string funcname, string targetname) |Copy a function to a new function name (PECL)
  3311. bool runkit_function_redefine(string funcname, string arglist, string code) |Replace a function definition with a new implementation (PECL)
  3312. bool runkit_function_remove(string funcname) |Remove a function definition (PECL)
  3313. bool runkit_function_rename(string funcname, string newname) |Change a function's name (PECL)
  3314. bool runkit_import(string filename [, int flags]) |Process a PHP file importing function and class definitions, overwriting where appropriate (PECL)
  3315. bool runkit_lint_file(string filename) |Check the PHP syntax of the specified file (PECL)
  3316. bool runkit_lint(string code) |Check the PHP syntax of the specified php code (PECL)
  3317. bool runkit_method_add(string classname, string methodname, string args, string code [, int flags]) |Dynamically adds a new method to a given class (PECL)
  3318. bool runkit_method_copy(string dClass, string dMethod, string sClass [, string sMethod]) |Copies a method from class to another (PECL)
  3319. bool runkit_method_redefine(string classname, string methodname, string args, string code [, int flags]) |Dynamically changes the code of the given method (PECL)
  3320. bool runkit_method_remove(string classname, string methodname) |Dynamically removes the given method (PECL)
  3321. bool runkit_method_rename(string classname, string methodname, string newname) |Dynamically changes the name of the given method (PECL)
  3322. bool runkit_return_value_used() |Determines if the current functions return value will be used
  3323. mixed runkit_sandbox_output_handler(object sandbox [, mixed callback]) |Specify a function to capture and/or process output from a runkit sandbox (PECL)
  3324. array runkit_superglobals() |Return numerically indexed array of registered superglobals (PECL)
  3325. bool satellite_caught_exception() |See if an exception was caught from the previous function (4.0.3 - 4.1.2 only, PECL)
  3326. string satellite_exception_id() |Get the repository id for the latest exception. (4.0.3 - 4.1.2 only, PECL)
  3327. OrbitStruct satellite_exception_value() |Get the exception struct for the latest exception (4.0.3 - 4.1.2 only, PECL)
  3328. int satellite_get_repository_id(object obj) |NOT IMPLEMENTED (4.0.3 - 4.1.2 only, PECL)
  3329. bool satellite_load_idl(string file) |Instruct the type manager to load an IDL file (4.0.3 - 4.1.2 only, PECL)
  3330. string satellite_object_to_string(object obj) |Convert an object to its string representation (4.1.0 - 4.1.2 only, PECL)
  3331. array scandir(string directory [, int sorting_order [, resource context]]) |List files and directories inside the specified path (PHP 5)
  3332. bool sem_acquire(resource sem_identifier) |Acquire a semaphore (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3333. resource sem_get(int key [, int max_acquire [, int perm [, int auto_release]]]) |Get a semaphore id (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3334. bool sem_release(resource sem_identifier) |Release a semaphore (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3335. bool sem_remove(resource sem_identifier) |Remove a semaphore (PHP 4 >= 4.1.0, PHP 5)
  3336. string serialize(mixed value) |Generates a storable representation of a value (PHP 3 >= 3.0.5, PHP 4, PHP 5)
  3337. int sesam_affected_rows(string result_id) |Get number of rows affected by an immediate query (PHP 3 CVS only)
  3338. bool sesam_commit() |Commit pending updates to the SESAM database (PHP 3 CVS only)
  3339. bool sesam_connect(string catalog, string schema, string user) |Open SESAM database connection (PHP 3 CVS only)
  3340. array sesam_diagnostic() |Return status information for last SESAM call (PHP 3 CVS only)
  3341. bool sesam_disconnect() |Detach from SESAM connection (PHP 3 CVS only)
  3342. string sesam_errormsg() |Returns error message of last SESAM call (PHP 3 CVS only)
  3343. string sesam_execimm(string query) |Execute an "immediate" SQL-statement (PHP 3 CVS only)
  3344. array sesam_fetch_array(string result_id [, int whence [, int offset]]) |Fetch one row as an associative array (PHP 3 CVS only)
  3345. mixed sesam_fetch_result(string result_id [, int max_rows]) |Return all or part of a query result (PHP 3 CVS only)
  3346. array sesam_fetch_row(string result_id [, int whence [, int offset]]) |Fetch one row as an array (PHP 3 CVS only)
  3347. array sesam_field_array(string result_id) |Return meta information about individual columns in a result (PHP 3 CVS only)
  3348. int sesam_field_name(string result_id, int index) |Return one column name of the result set (PHP 3 CVS only)
  3349. int sesam_free_result(string result_id) |Releases resources for the query (PHP 3 CVS only)
  3350. int sesam_num_fields(string result_id) |Return the number of fields/columns in a result set (PHP 3 CVS only)
  3351. string sesam_query(string query [, bool scrollable]) |Perform a SESAM SQL query and prepare the result (PHP 3 CVS only)
  3352. bool sesam_rollback() |Discard any pending updates to the SESAM database (PHP 3 CVS only)
  3353. bool sesam_seek_row(string result_id, int whence [, int offset]) |Set scrollable cursor mode for subsequent fetches (PHP 3 CVS only)
  3354. bool sesam_settransaction(int isolation_level, int read_only) |Set SESAM transaction parameters (PHP 3 CVS only)
  3355. int session_cache_expire([int new_cache_expire]) |Return current cache expire (PHP 4 >= 4.2.0, PHP 5)
  3356. string session_cache_limiter([string cache_limiter]) |Get and/or set the current cache limiter (PHP 4 >= 4.0.3, PHP 5)
  3357. void session_commit() |Write session data and end session (PHP 4 >= 4.0.4, PHP 5)
  3358. bool session_decode(string data) |Decodes session data from a string (PHP 4, PHP 5)
  3359. bool session_destroy() |Destroys all data registered to a session (PHP 4, PHP 5)
  3360. string session_encode() |Encodes the current session data as a string (PHP 4, PHP 5)
  3361. array session_get_cookie_params() |Get the session cookie parameters (PHP 4, PHP 5)
  3362. string session_id([string id]) |Get and/or set the current session id (PHP 4, PHP 5)
  3363. bool session_is_registered(string name) |Find out whether a global variable is registered in a session (PHP 4, PHP 5)
  3364. string session_module_name([string module]) |Get and/or set the current session module (PHP 4, PHP 5)
  3365. string session_name([string name]) |Get and/or set the current session name (PHP 4, PHP 5)
  3366. bool session_pgsql_add_error(int error_level [, string error_message]) |Increments error counts and sets last error message (PECL)
  3367. array session_pgsql_get_error([bool with_error_message]) |Returns number of errors and last error message (PECL)
  3368. string session_pgsql_get_field() |Get custom field value (PECL)
  3369. bool session_pgsql_reset() |Reset connection to session database servers (PECL)
  3370. bool session_pgsql_set_field(string value) |Set custom field value (PECL)
  3371. array session_pgsql_status() |Get current save handler status (PECL)
  3372. bool session_regenerate_id([bool delete_old_session]) |Update the current session id with a newly generated one (PHP 4 >= 4.3.2, PHP 5)
  3373. bool session_register(mixed name [, mixed ...]) |Register one or more global variables with the current session (PHP 4, PHP 5)
  3374. string session_save_path([string path]) |Get and/or set the current session save path (PHP 4, PHP 5)
  3375. void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure]]]) |Set the session cookie parameters (PHP 4, PHP 5)
  3376. bool session_set_save_handler(string open, string close, string read, string write, string destroy, string gc) |Sets user-level session storage functions (PHP 4, PHP 5)
  3377. bool session_start() |Initialize session data (PHP 4, PHP 5)
  3378. bool session_unregister(string name) |Unregister a global variable from the current session (PHP 4, PHP 5)
  3379. void session_unset() |Free all session variables (PHP 4, PHP 5)
  3380. void session_write_close() |Write session data and end session (PHP 4 >= 4.0.4, PHP 5)
  3381. mixed set_error_handler(callback error_handler [, int error_types]) |Sets a user-defined error handler function (PHP 4 >= 4.0.1, PHP 5)
  3382. string set_exception_handler(callback exception_handler) |Sets a user-defined exception handler function (PHP 5)
  3383. int set_file_buffer(resource stream, int buffer) |Sets file buffering on the given stream (PHP 4 >= 4.3.0, PHP 5)
  3384. string set_include_path(string new_include_path) |Sets the include_path configuration option (PHP 4 >= 4.3.0, PHP 5)
  3385. bool set_magic_quotes_runtime(int new_setting) |Sets the current active configuration setting of magic_quotes_runtime (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3386. void set_time_limit(int seconds) |Limits the maximum execution time (PHP 3, PHP 4, PHP 5)
  3387. bool setcookie(string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]]) |Send a cookie (PHP 3, PHP 4, PHP 5)
  3388. string setlocale(int category, string locale [, string ...]) |Set locale information (PHP 3, PHP 4, PHP 5)
  3389. bool setrawcookie(string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]]) |Send a cookie without urlencoding the cookie value (PHP 5)
  3390. bool settype(mixed &var, string type) |Set the type of a variable (PHP 3, PHP 4, PHP 5)
  3391. string sha1_file(string filename [, bool raw_output]) |Calculate the sha1 hash of a file (PHP 4 >= 4.3.0, PHP 5)
  3392. string sha1(string str [, bool raw_output]) |Calculate the sha1 hash of a string (PHP 4 >= 4.3.0, PHP 5)
  3393. string shell_exec(string cmd) |Execute command via shell and return the complete output as a string (PHP 4, PHP 5)
  3394. int shm_attach(int key [, int memsize [, int perm]]) |Creates or open a shared memory segment (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3395. bool shm_detach(int shm_identifier) |Disconnects from shared memory segment (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3396. mixed shm_get_var(int shm_identifier, int variable_key) |Returns a variable from shared memory (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3397. bool shm_put_var(int shm_identifier, int variable_key, mixed variable) |Inserts or updates a variable in shared memory (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3398. bool shm_remove_var(int shm_identifier, int variable_key) |Removes a variable from shared memory (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3399. bool shm_remove(int shm_identifier) |Removes shared memory from Unix systems (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3400. void shmop_close(int shmid) |Close shared memory block (PHP 4 >= 4.0.4, PHP 5)
  3401. bool shmop_delete(int shmid) |Delete shared memory block (PHP 4 >= 4.0.4, PHP 5)
  3402. int shmop_open(int key, string flags, int mode, int size) |Create or open shared memory block (PHP 4 >= 4.0.4, PHP 5)
  3403. string shmop_read(int shmid, int start, int count) |Read data from shared memory block (PHP 4 >= 4.0.4, PHP 5)
  3404. int shmop_size(int shmid) |Get size of shared memory block (PHP 4 >= 4.0.4, PHP 5)
  3405. int shmop_write(int shmid, string data, int offset) |Write data into shared memory block (PHP 4 >= 4.0.4, PHP 5)
  3406. mixed show_source(string filename [, bool return]) |Syntax highlighting of a file (PHP 4, PHP 5)
  3407. bool shuffle(array &array) |Shuffle an array (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3408. int similar_text(string first, string second [, float &percent]) |Calculate the similarity between two strings (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  3409. mixed SimpleXMLElement->asXML([string filename]) |Return a well-formed XML string based on SimpleXML element
  3410. SimpleXMLElement simplexml_element->attributes([string data]) |Identifies an element's attributes
  3411. SimpleXMLElement simplexml_element->children([string nsprefix]) |Finds children of given node
  3412. array SimpleXMLElement->xpath(string path) |Runs Xpath query on XML data
  3413. SimpleXMLElement simplexml_import_dom(DOMNode node [, string class_name]) |Get a SimpleXMLElement object from a DOM node. (PHP 5)
  3414. object simplexml_load_file(string filename [, string class_name [, int options]]) |Interprets an XML file into an object (PHP 5)
  3415. object simplexml_load_string(string data [, string class_name [, int options]]) |Interprets a string of XML into an object (PHP 5)
  3416. mixed SimpleXMLIterator::current() |Return current SimpleXML entry
  3417. object SimpleXMLIterator::getChildren() |Returns an iterator for the current entry if it is a SimpleXML object
  3418. bool SimpleXMLIterator::hasChildren() |Returns whether current entry is a SimpleXML object
  3419. mixed SimpleXMLIterator::key() |Return current SimpleXML key
  3420. void SimpleXMLIterator::next() |Move to next entry
  3421. void SimpleXMLIterator::rewind() |Rewind SimpleXML back to the start
  3422. bool SimpleXMLIterator::valid() |Check whether SimpleXML contains more entries
  3423. float sin(float arg) |Sine (PHP 3, PHP 4, PHP 5)
  3424. float sinh(float arg) |Hyperbolic sine (PHP 4 >= 4.1.0, PHP 5)
  3425. array array_sizeof_values(array input) |Counts all the values of an array (PHP 4, PHP 5)
  3426. int sleep(int seconds) |Delay execution (PHP 3, PHP 4, PHP 5)
  3427. bool snmp_get_quick_print() |Fetches the current value of the UCD library's quick_print setting (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3428. int snmp_get_valueretrieval() |Return the method how the SNMP values will be returned (PHP 4 >= 4.3.3, PHP 5)
  3429. bool snmp_read_mib(string filename) |Reads and parses a MIB file into the active MIB tree (PHP 5)
  3430. void snmp_set_enum_print(int enum_print) |Return all values that are enums with their enum value instead of the raw integer (PHP 4 >= 4.3.0, PHP 5)
  3431. void snmp_set_oid_numeric_print(int oid_numeric_print) |Return all objects including their respective object id within the specified one (PHP 4 >= 4.3.0, PHP 5)
  3432. void snmp_set_quick_print(bool quick_print) |Set the value of quick_print within the UCD SNMP library (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3433. void snmp_set_valueretrieval(int method) |Specify the method how the SNMP values will be returned (PHP 4 >= 4.3.3, PHP 5)
  3434. string snmpget(string hostname, string community, string object_id [, int timeout [, int retries]]) |Fetch an SNMP object (PHP 3, PHP 4, PHP 5)
  3435. string snmpgetnext(string host, string community, string object_id [, int timeout [, int retries]]) |Fetch a SNMP object (PHP 5)
  3436. array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]]) |Return all objects including their respective object ID within the specified one (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3437. bool snmpset(string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]]) |Set an SNMP object (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  3438. array snmpwalk(string hostname, string community, string object_id [, int timeout [, int retries]]) |Fetch all the SNMP objects from an agent (PHP 3, PHP 4, PHP 5)
  3439. array snmpwalkoid(string hostname, string community, string object_id [, int timeout [, int retries]]) |Query for a tree of information about a network entity (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3440. resource socket_accept(resource socket) |Accepts a connection on a socket (PHP 4 >= 4.1.0, PHP 5)
  3441. bool socket_bind(resource socket, string address [, int port]) |Binds a name to a socket (PHP 4 >= 4.1.0, PHP 5)
  3442. void socket_clear_error([resource socket]) |Clears the error on the socket or the last error code (PHP 4 >= 4.2.0, PHP 5)
  3443. void socket_close(resource socket) |Closes a socket resource (PHP 4 >= 4.1.0, PHP 5)
  3444. bool socket_connect(resource socket, string address [, int port]) |Initiates a connection on a socket (PHP 4 >= 4.1.0, PHP 5)
  3445. resource socket_create_listen(int port [, int backlog]) |Opens a socket on port to accept connections (PHP 4 >= 4.1.0, PHP 5)
  3446. bool socket_create_pair(int domain, int type, int protocol, array &fd) |Creates a pair of indistinguishable sockets and stores them in an array (PHP 4 >= 4.1.0, PHP 5)
  3447. resource socket_create(int domain, int type, int protocol) |Create a socket (endpoint for communication) (PHP 4 >= 4.1.0, PHP 5)
  3448. mixed socket_get_option(resource socket, int level, int optname) |Gets socket options for the socket (PHP 4 >= 4.3.0, PHP 5)
  3449. array socket_get_status(resource stream) |Retrieves header/meta data from streams/file pointers (PHP 4 >= 4.3.0, PHP 5)
  3450. bool socket_getpeername(resource socket, string &addr [, int &port]) |Queries the remote side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type (PHP 4 >= 4.1.0, PHP 5)
  3451. bool socket_getsockname(resource socket, string &addr [, int &port]) |Queries the local side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type (PHP 4 >= 4.1.0, PHP 5)
  3452. int socket_last_error([resource socket]) |Returns the last error on the socket (PHP 4 >= 4.1.0, PHP 5)
  3453. bool socket_listen(resource socket [, int backlog]) |Listens for a connection on a socket (PHP 4 >= 4.1.0, PHP 5)
  3454. string socket_read(resource socket, int length [, int type]) |Reads a maximum of length bytes from a socket (PHP 4 >= 4.1.0, PHP 5)
  3455. int socket_recv(resource socket, string &buf, int len, int flags) |Receives data from a connected socket (PHP 4 >= 4.1.0, PHP 5)
  3456. int socket_recvfrom(resource socket, string &buf, int len, int flags, string &name [, int &port]) |Receives data from a socket, connected or not (PHP 4 >= 4.1.0, PHP 5)
  3457. int socket_select(array &read, array &write, array &except, int tv_sec [, int tv_usec]) |Runs the select() system call on the given arrays of sockets with a specified timeout (PHP 4 >= 4.1.0, PHP 5)
  3458. int socket_send(resource socket, string buf, int len, int flags) |Sends data to a connected socket (PHP 4 >= 4.1.0, PHP 5)
  3459. int socket_sendto(resource socket, string buf, int len, int flags, string addr [, int port]) |Sends a message to a socket, whether it is connected or not (PHP 4 >= 4.1.0, PHP 5)
  3460. bool socket_set_block(resource socket) |Sets blocking mode on a socket resource (PHP 4 >= 4.2.0, PHP 5)
  3461. bool socket_set_blocking(resource stream, int mode) |Set blocking/non-blocking mode on a stream (PHP 4 >= 4.3.0, PHP 5)
  3462. bool socket_set_nonblock(resource socket) |Sets nonblocking mode for file descriptor fd (PHP 4 >= 4.1.0, PHP 5)
  3463. bool socket_set_option(resource socket, int level, int optname, mixed optval) |Sets socket options for the socket (PHP 4 >= 4.3.0, PHP 5)
  3464. bool socket_set_timeout(resource stream, int seconds [, int microseconds]) |Set timeout period on a stream (PHP 4 >= 4.3.0, PHP 5)
  3465. bool socket_shutdown(resource socket [, int how]) |Shuts down a socket for receiving, sending, or both (PHP 4 >= 4.1.0, PHP 5)
  3466. string socket_strerror(int errno) |Return a string describing a socket error (PHP 4 >= 4.1.0, PHP 5)
  3467. int socket_write(resource socket, string buffer [, int length]) |Write to a socket (PHP 4 >= 4.1.0, PHP 5)
  3468. bool sort(array &array [, int sort_flags]) |Sort an array (PHP 3, PHP 4, PHP 5)
  3469. string soundex(string str) |Calculate the soundex key of a string (PHP 3, PHP 4, PHP 5)
  3470. array spl_classes() |Return available SPL classes (PHP 5)
  3471. array split(string pattern, string string [, int limit]) |Split string into array by regular expression (PHP 3, PHP 4, PHP 5)
  3472. array spliti(string pattern, string string [, int limit]) |Split string into array by regular expression case insensitive (PHP 4 >= 4.0.1, PHP 5)
  3473. string sprintf(string format [, mixed args [, mixed ...]]) |Return a formatted string (PHP 3, PHP 4, PHP 5)
  3474. string sql_regcase(string string) |Make regular expression for case insensitive match (PHP 3, PHP 4, PHP 5)
  3475. array sqlite_array_query(resource dbhandle, string query [, int result_type [, bool decode_binary]]) |Execute a query against a given database and returns an array (PHP 5)
  3476. void sqlite_busy_timeout(resource dbhandle, int milliseconds) |Set busy timeout duration, or disable busy handlers (PHP 5)
  3477. int sqlite_changes(resource dbhandle) |Returns the number of rows that were changed by the most recent SQL statement (PHP 5)
  3478. void sqlite_close(resource dbhandle) |Closes an open SQLite database (PHP 5)
  3479. mixed sqlite_column(resource result, mixed index_or_name [, bool decode_binary]) |Fetches a column from the current row of a result set (PHP 5)
  3480. void sqlite_create_aggregate(resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args]) |Register an aggregating UDF for use in SQL statements (PHP 5)
  3481. void sqlite_create_function(resource dbhandle, string function_name, callback callback [, int num_args]) |Registers a "regular" User Defined Function for use in SQL statements (PHP 5)
  3482. array sqlite_current(resource result [, int result_type [, bool decode_binary]]) |Fetches the current row from a result set as an array (PHP 5)
  3483. string sqlite_error_string(int error_code) |Returns the textual description of an error code (PHP 5)
  3484. string sqlite_escape_string(string item) |Escapes a string for use as a query parameter (PHP 5)
  3485. bool sqlite_exec(resource dbhandle, string query [, string &error_msg]) |Executes a result-less query against a given database (PHP 5)
  3486. SQLiteDatabase sqlite_factory(string filename [, int mode [, string &error_message]]) |Opens a SQLite database and returns a SQLiteDatabase object (PHP 5)
  3487. array sqlite_fetch_all(resource result [, int result_type [, bool decode_binary]]) |Fetches all rows from a result set as an array of arrays (PHP 5)
  3488. array sqlite_fetch_array(resource result [, int result_type [, bool decode_binary]]) |Fetches the next row from a result set as an array (PHP 5)
  3489. array sqlite_fetch_column_types(string table_name, resource dbhandle [, int result_type]) |Return an array of column types from a particular table (PHP 5)
  3490. object sqlite_fetch_object(resource result [, string class_name [, array ctor_params [, bool decode_binary]]]) |Fetches the next row from a result set as an object (PHP 5)
  3491. string sqlite_fetch_single(resource result [, bool decode_binary]) |Fetches the first column of a result set as a string (PHP 5)
  3492. string sqlite_fetch_string(resource result [, bool decode_binary]) |Fetches the first column of a result set as a string (PHP 5)
  3493. string sqlite_field_name(resource result, int field_index) |Returns the name of a particular field (PHP 5)
  3494. bool sqlite_has_more(resource result) |Finds whether or not more rows are available (PHP 5)
  3495. bool sqlite_has_prev(resource result) |Returns whether or not a previous row is available (PHP 5)
  3496. int sqlite_key(resource result) |Returns the current row index
  3497. int sqlite_last_error(resource dbhandle) |Returns the error code of the last error for a database (PHP 5)
  3498. int sqlite_last_insert_rowid(resource dbhandle) |Returns the rowid of the most recently inserted row (PHP 5)
  3499. string sqlite_libencoding() |Returns the encoding of the linked SQLite library (PHP 5)
  3500. string sqlite_libversion() |Returns the version of the linked SQLite library (PHP 5)
  3501. bool sqlite_next(resource result) |Seek to the next row number (PHP 5)
  3502. int sqlite_num_fields(resource result) |Returns the number of fields in a result set (PHP 5)
  3503. int sqlite_num_rows(resource result) |Returns the number of rows in a buffered result set (PHP 5)
  3504. resource sqlite_open(string filename [, int mode [, string &error_message]]) |Opens a SQLite database and create the database if it does not exist (PHP 5)
  3505. resource sqlite_popen(string filename [, int mode [, string &error_message]]) |Opens a persistent handle to an SQLite database and create the database if it does not exist (PHP 5)
  3506. bool sqlite_prev(resource result) |Seek to the previous row number of a result set (PHP 5)
  3507. resource sqlite_query(resource dbhandle, string query [, int result_type [, string &error_msg]]) |Executes a query against a given database and returns a result handle (PHP 5)
  3508. bool sqlite_rewind(resource result) |Seek to the first row number (PHP 5)
  3509. bool sqlite_seek(resource result, int rownum) |Seek to a particular row number of a buffered result set (PHP 5)
  3510. array sqlite_single_query(resource db, string query [, bool first_row_only [, bool decode_binary]]) |Executes a query and returns either an array for one single column or the value of the first row (PHP 5)
  3511. string sqlite_udf_decode_binary(string data) |Decode binary data passed as parameters to an UDF (PHP 5)
  3512. string sqlite_udf_encode_binary(string data) |Encode binary data before returning it from an UDF (PHP 5)
  3513. resource sqlite_unbuffered_query(resource dbhandle, string query [, int result_type [, string &error_msg]]) |Execute a query that does not prefetch and buffer all data (PHP 5)
  3514. bool sqlite_valid(resource result) |Returns whether more rows are available (PHP 5)
  3515. float sqrt(float arg) |Square root (PHP 3, PHP 4, PHP 5)
  3516. void srand([int seed]) |Seed the random number generator (PHP 3, PHP 4, PHP 5)
  3517. mixed sscanf(string str, string format [, mixed &...]) |Parses input from a string according to a format (PHP 4 >= 4.0.1, PHP 5)
  3518. bool ssh2_auth_hostbased_file(resource session, string username, string hostname, string pubkeyfile, string privkeyfile [, string passphrase [, string local_username]]) |Authenticate using a public hostkey (PECL)
  3519. mixed ssh2_auth_none(resource session, string username) |Authenticate as "none" (PECL)
  3520. bool ssh2_auth_password(resource session, string username, string password) |Authenticate over SSH using a plain password (PECL)
  3521. bool ssh2_auth_pubkey_file(resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase]) |Authenticate using a public key (PECL)
  3522. resource ssh2_connect(string host [, int port [, array methods [, array callbacks]]]) |Connect to an SSH server (PECL)
  3523. resource ssh2_exec(resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]]) |Execute a command on a remote server (PECL)
  3524. resource ssh2_fetch_stream(resource channel, int streamid) |Fetch an extended data stream (PECL)
  3525. string ssh2_fingerprint(resource session [, int flags]) |Retreive fingerprint of remote server (PECL)
  3526. array ssh2_methods_negotiated(resource session) |Return list of negotiated methods (PECL)
  3527. bool ssh2_publickey_add(resource pkey, string algoname, string blob [, bool overwrite [, array attributes]]) |Add an authorized publickey (PECL)
  3528. resource ssh2_publickey_init(resource session) |Initialize Publickey subsystem (PECL)
  3529. array ssh2_publickey_list(resource pkey) |List currently authorized publickeys (PECL)
  3530. bool ssh2_publickey_remove(resource pkey, string algoname, string blob) |Remove an authorized publickey (PECL)
  3531. bool ssh2_scp_recv(resource session, string remote_file, string local_file) |Request a file via SCP (PECL)
  3532. bool ssh2_scp_send(resource session, string local_file, string remote_file [, int create_mode]) |Send a file via SCP (PECL)
  3533. array ssh2_sftp_lstat(resource sftp, string path) |Stat a symbolic link (PECL)
  3534. bool ssh2_sftp_mkdir(resource sftp, string dirname [, int mode [, bool recursive]]) |Create a directory (PECL)
  3535. string ssh2_sftp_readlink(resource sftp, string link) |Return the target of a symbolic link (PECL)
  3536. string ssh2_sftp_realpath(resource sftp, string filename) |Resolve the realpath of a provided path string (PECL)
  3537. bool ssh2_sftp_rename(resource sftp, string from, string to) |Rename a remote file (PECL)
  3538. bool ssh2_sftp_rmdir(resource sftp, string dirname) |Remove a directory (PECL)
  3539. array ssh2_sftp_stat(resource sftp, string path) |Stat a file on a remote filesystem (PECL)
  3540. bool ssh2_sftp_symlink(resource sftp, string target, string link) |Create a symlink (PECL)
  3541. bool ssh2_sftp_unlink(resource sftp, string filename) |Delete a file (PECL)
  3542. resource ssh2_sftp(resource session) |Initialize SFTP subsystem (PECL)
  3543. resource ssh2_shell(resource session [, string term_type [, array env [, int width [, int height [, int width_height_type]]]]]) |Request an interactive shell (PECL)
  3544. resource ssh2_tunnel(resource session, string host, int port) |Open a tunnel through a remote server (PECL)
  3545. array stat(string filename) |Gives information about a file (PHP 3, PHP 4, PHP 5)
  3546. float stats_absolute_deviation(array a) |Returns the absolute deviation of an array of values (PECL)
  3547. float stats_cdf_beta(float par1, float par2, float par3, int which) |CDF function for BETA Distribution. Calculates any one parameter of the beta distribution given values for the others. (PECL)
  3548. float stats_cdf_binomial(float par1, float par2, float par3, int which) |Calculates any one parameter of the binomial distribution given values for the others. (PECL)
  3549. float stats_cdf_cauchy(float par1, float par2, float par3, int which) |Not documented (PECL)
  3550. float stats_cdf_chisquare(float par1, float par2, int which) |Calculates any one parameter of the chi-square distribution given values for the others. (PECL)
  3551. float stats_cdf_exponential(float par1, float par2, int which) |Not documented (PECL)
  3552. float stats_cdf_f(float par1, float par2, float par3, int which) |Calculates any one parameter of the F distribution given values for the others. (PECL)
  3553. float stats_cdf_gamma(float par1, float par2, float par3, int which) |Calculates any one parameter of the gamma distribution given values for the others. (PECL)
  3554. float stats_cdf_laplace(float par1, float par2, float par3, int which) |Not documented (PECL)
  3555. float stats_cdf_logistic(float par1, float par2, float par3, int which) |Not documented (PECL)
  3556. float stats_cdf_negative_binomial(float par1, float par2, float par3, int which) |Calculates any one parameter of the negative binomial distribution given values for the others. (PECL)
  3557. float stats_cdf_noncentral_chisquare(float par1, float par2, float par3, int which) |Calculates any one parameter of the non-central chi-square distribution given values for the others. (PECL)
  3558. float stats_cdf_noncentral_f(float par1, float par2, float par3, float par4, int which) |Calculates any one parameter of the Non-central F distribution given values for the others. (PECL)
  3559. float stats_cdf_poisson(float par1, float par2, int which) |Calculates any one parameter of the Poisson distribution given values for the others. (PECL)
  3560. float stats_cdf_t(float par1, float par2, int which) |Calculates any one parameter of the T distribution given values for the others. (PECL)
  3561. float stats_cdf_uniform(float par1, float par2, float par3, int which) |Not documented (PECL)
  3562. float stats_cdf_weibull(float par1, float par2, float par3, int which) |Not documented (PECL)
  3563. float stats_covariance(array a, array b) |Computes the covariance of two data sets (PECL)
  3564. float stats_den_uniform(float x, float a, float b) |Not documented
  3565. float stats_dens_beta(float x, float a, float b) |Not documented (PECL)
  3566. float stats_dens_cauchy(float x, float ave, float stdev) |Not documented (PECL)
  3567. float stats_dens_chisquare(float x, float dfr) |Not documented (PECL)
  3568. float stats_dens_exponential(float x, float scale) |Not documented (PECL)
  3569. float stats_dens_f(float x, float dfr1, float dfr2) |(PECL)
  3570. float stats_dens_gamma(float x, float shape, float scale) |Not documented (PECL)
  3571. float stats_dens_laplace(float x, float ave, float stdev) |Not documented (PECL)
  3572. float stats_dens_logistic(float x, float ave, float stdev) |Not documented (PECL)
  3573. float stats_dens_negative_binomial(float x, float n, float pi) |Not documented
  3574. float stats_dens_normal(float x, float ave, float stdev) |Not documented (PECL)
  3575. float stats_dens_pmf_binomial(float x, float n, float pi) |Not documented (PECL)
  3576. float stats_dens_pmf_hypergeometric(float n1, float n2, float N1, float N2) |(PECL)
  3577. float stats_dens_pmf_poisson(float x, float lb) |Not documented (PECL)
  3578. float stats_dens_t(float x, float dfr) |Not documented (PECL)
  3579. float stats_dens_weibull(float x, float a, float b) |Not documented (PECL)
  3580. number stats_harmonic_mean(array a) |Returns the harmonic mean of an array of values (PECL)
  3581. float stats_kurtosis(array a) |Computes the kurtosis of the data in the array (PECL)
  3582. float stats_rand_gen_beta(float a, float b) |Generates beta random deviate (PECL)
  3583. float stats_rand_gen_chisquare(float df) |Generates random deviate from the distribution of a chisquare with "df" degrees of freedom random variable. (PECL)
  3584. float stats_rand_gen_exponential(float av) |Generates a single random deviate from an exponential distribution with mean "av" (PECL)
  3585. float stats_rand_gen_f(float dfn, float dfd) |Generates a random deviate from the F (variance ratio) distribution with "dfn" degrees of freedom in the numerator and "dfd" degrees of freedom in the denominator. Method : directly generates ratio of chisquare variates (PECL)
  3586. float stats_rand_gen_funiform(float low, float high) |Generates uniform float between low (exclusive) and high (exclusive) (PECL)
  3587. float stats_rand_gen_gamma(float a, float r) |Generates random deviates from a gamma distribution (PECL)
  3588. int stats_rand_gen_ibinomial_negative(int n, float p) |Generates a single random deviate from a negative binomial distribution. Arguments : n - the number of trials in the negative binomial distribution from which a random deviate is to be generated (n > 0), p - the probability of an event (0 < p < 1)).
  3589. int stats_rand_gen_ibinomial(int n, float pp) |Generates a single random deviate from a binomial distribution whose number of trials is "n" (n >= 0) and whose probability of an event in each trial is "pp" ([0;1]). Method : algorithm BTPE
  3590. int stats_rand_gen_int() |Generates random integer between 1 and 2147483562
  3591. int stats_rand_gen_ipoisson(float mu) |Generates a single random deviate from a Poisson distribution with mean "mu" (mu >= 0.0). (PECL)
  3592. int stats_rand_gen_iuniform(int low, int high) |Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive) (PECL)
  3593. float stats_rand_gen_noncenral_chisquare(float df, float xnonc) |Generates random deviate from the distribution of a noncentral chisquare with "df" degrees of freedom and noncentrality parameter "xnonc". d must be >= 1.0, xnonc must >= 0.0
  3594. float stats_rand_gen_noncentral_f(float dfn, float dfd, float xnonc) |Generates a random deviate from the noncentral F (variance ratio) distribution with "dfn" degrees of freedom in the numerator, and "dfd" degrees of freedom in the denominator, and noncentrality parameter "xnonc". Method : directly generates ratio of noncentral numerator chisquare variate to central denominator chisquare variate.
  3595. float stats_rand_gen_noncentral_t(float df, float xnonc) |Generates a single random deviate from a noncentral T distribution (PECL)
  3596. float stats_rand_gen_normal(float av, float sd) |Generates a single random deviate from a normal distribution with mean, av, and standard deviation, sd (sd >= 0). Method : Renames SNORM from TOMS as slightly modified by BWB to use RANF instead of SUNIF. (PECL)
  3597. float stats_rand_gen_t(float df) |Generates a single random deviate from a T distribution (PECL)
  3598. array stats_rand_get_seeds() |Not documented
  3599. array stats_rand_phrase_to_seeds(string phrase) |generate two seeds for the RGN random number generator (PECL)
  3600. float stats_rand_ranf() |Returns a random floating point number from a uniform distribution over 0 - 1 (endpoints of this interval are not returned) using the current generator (PECL)
  3601. void stats_rand_setall(int iseed1, int iseed2) |Not documented (PECL)
  3602. float stats_skew(array a) |Computes the skewness of the data in the array (PECL)
  3603. float stats_standard_deviation(array a [, bool sample]) |Returns the standard deviation (PECL)
  3604. float stats_stat_binomial_coef(int x, int n) |Not documented (PECL)
  3605. float stats_stat_correlation(array arr1, array arr2) |Not documented (PECL)
  3606. float stats_stat_gennch(int n) |Not documented
  3607. float stats_stat_independent_t(array arr1, array arr2) |Not documented (PECL)
  3608. float stats_stat_innerproduct(array arr1, array arr2) |(PECL)
  3609. float stats_stat_noncentral_t(float par1, float par2, float par3, int which) |Calculates any one parameter of the noncentral t distribution give values for the others.
  3610. float stats_stat_paired_t(array arr1, array arr2) |Not documented (PECL)
  3611. float stats_stat_percentile(float df, float xnonc) |Not documented (PECL)
  3612. float stats_stat_powersum(array arr, float power) |Not documented (PECL)
  3613. float stats_variance(array a [, bool sample]) |Returns the population variance (PECL)
  3614. mixed str_ireplace(mixed search, mixed replace, mixed subject [, int &count]) |Case-insensitive version of str_replace. (PHP 5)
  3615. string str_pad(string input, int pad_length [, string pad_string [, int pad_type]]) |Pad a string to a certain length with another string (PHP 4 >= 4.0.1, PHP 5)
  3616. string str_repeat(string input, int multiplier) |Repeat a string (PHP 4, PHP 5)
  3617. mixed str_replace(mixed search, mixed replace, mixed subject [, int &count]) |Replace all occurrences of the search string with the replacement string (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3618. string str_rot13(string str) |Perform the rot13 transform on a string (PHP 4 >= 4.2.0, PHP 5)
  3619. string str_shuffle(string str) |Randomly shuffles a string (PHP 4 >= 4.3.0, PHP 5)
  3620. array str_split(string string [, int split_length]) |Convert a string to an array (PHP 5)
  3621. mixed str_word_count(string string [, int format [, string charlist]]) |Return information about words used in a string (PHP 4 >= 4.3.0, PHP 5)
  3622. int strcasecmp(string str1, string str2) |Binary safe case-insensitive string comparison (PHP 3 >= 3.0.2, PHP 4, PHP 5)
  3623. string strchr(string haystack, string needle) |Find first occurrence of a string (PHP 3, PHP 4, PHP 5)
  3624. int strcmp(string str1, string str2) |Binary safe string comparison (PHP 3, PHP 4, PHP 5)
  3625. int strcoll(string str1, string str2) |Locale based string comparison (PHP 4 >= 4.0.5, PHP 5)
  3626. int strcspn(string str1, string str2 [, int start [, int length]]) |Find length of initial segment not matching mask (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  3627. void stream_bucket_append(resource brigade, resource bucket) |Append bucket to brigade (PHP 5)
  3628. object stream_bucket_make_writeable(resource brigade) |Return a bucket object from the brigade for operating on (PHP 5)
  3629. object stream_bucket_new(resource stream, string buffer) |Create a new bucket for use on the current stream (PHP 5)
  3630. void stream_bucket_prepend(resource brigade, resource bucket) |Prepend bucket to brigade (PHP 5)
  3631. resource stream_context_create([array options]) |Create a streams context (PHP 4 >= 4.3.0, PHP 5)
  3632. resource stream_context_get_default([array options]) |Retreive the default streams context (PHP 5 >= 5.1.0RC1)
  3633. array stream_context_get_options(resource stream_or_context) |Retrieve options for a stream/wrapper/context (PHP 4 >= 4.3.0, PHP 5)
  3634. bool stream_context_set_option(resource stream_or_context, string wrapper, string option, mixed value) |Sets an option for a stream/wrapper/context (PHP 4 >= 4.3.0, PHP 5)
  3635. bool stream_context_set_params(resource stream_or_context, array params) |Set parameters for a stream/wrapper/context (PHP 4 >= 4.3.0, PHP 5)
  3636. int stream_copy_to_stream(resource source, resource dest [, int maxlength [, int offset]]) |Copies data from one stream to another (PHP 5)
  3637. resource stream_filter_append(resource stream, string filtername [, int read_write [, mixed params]]) |Attach a filter to a stream (PHP 4 >= 4.3.0, PHP 5)
  3638. resource stream_filter_prepend(resource stream, string filtername [, int read_write [, mixed params]]) |Attach a filter to a stream (PHP 4 >= 4.3.0, PHP 5)
  3639. bool stream_filter_register(string filtername, string classname) |Register a stream filter implemented as a PHP class derived from php_user_filter (PHP 5)
  3640. bool stream_filter_remove(resource stream_filter) |Remove a filter from a stream (PHP 5 >= 5.1.0RC1)
  3641. string stream_get_contents(resource handle [, int maxlength [, int offset]]) |Reads remainder of a stream into a string (PHP 5)
  3642. array stream_get_filters() |Retrieve list of registered filters (PHP 5)
  3643. string stream_get_line(resource handle, int length [, string ending]) |Gets line from stream resource up to a given delimiter (PHP 5)
  3644. array stream_get_meta_data(resource stream) |Retrieves header/meta data from streams/file pointers (PHP 4 >= 4.3.0, PHP 5)
  3645. array stream_get_transports() |Retrieve list of registered socket transports (PHP 5)
  3646. array stream_get_wrappers() |Retrieve list of registered streams (PHP 5)
  3647. bool stream_register_wrapper(string protocol, string classname) |Register a URL wrapper implemented as a PHP class (PHP 4 >= 4.3.2, PHP 5)
  3648. int stream_select(array &read, array &write, array &except, int tv_sec [, int tv_usec]) |Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec (PHP 4 >= 4.3.0, PHP 5)
  3649. bool stream_set_blocking(resource stream, int mode) |Set blocking/non-blocking mode on a stream (PHP 4 >= 4.3.0, PHP 5)
  3650. bool stream_set_timeout(resource stream, int seconds [, int microseconds]) |Set timeout period on a stream (PHP 4 >= 4.3.0, PHP 5)
  3651. int stream_set_write_buffer(resource stream, int buffer) |Sets file buffering on the given stream (PHP 4 >= 4.3.0, PHP 5)
  3652. resource stream_socket_accept(resource server_socket [, float timeout [, string &peername]]) |Accept a connection on a socket created by stream_socket_server (PHP 5)
  3653. resource stream_socket_client(string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context]]]]]) |Open Internet or Unix domain socket connection (PHP 5)
  3654. mixed stream_socket_enable_crypto(resource stream, bool enable [, int crypto_type [, resource session_stream]]) |Turns encryption on/off on an already connected socket (PHP 5 >= 5.1.0RC1)
  3655. string stream_socket_get_name(resource handle, bool want_peer) |Retrieve the name of the local or remote sockets (PHP 5)
  3656. array stream_socket_pair(int domain, int type, int protocol) |Creates a pair of connected, indistinguishable socket streams (PHP 5 >= 5.1.0RC1)
  3657. string stream_socket_recvfrom(resource socket, int length [, int flags [, string &address]]) |Receives data from a socket, connected or not (PHP 5)
  3658. int stream_socket_sendto(resource socket, string data [, int flags [, string address]]) |Sends a message to a socket, whether it is connected or not (PHP 5)
  3659. resource stream_socket_server(string local_socket [, int &errno [, string &errstr [, int flags [, resource context]]]]) |Create an Internet or Unix domain server socket (PHP 5)
  3660. bool stream_wrapper_register(string protocol, string classname) |Register a URL wrapper implemented as a PHP class (PHP 4 >= 4.3.2, PHP 5)
  3661. bool stream_wrapper_restore(string protocol) |Restores a previously unregistered built-in wrapper (PHP 5 >= 5.1.0RC1)
  3662. bool stream_wrapper_unregister(string protocol) |Unregister a URL wrapper (PHP 5 >= 5.1.0RC1)
  3663. string strftime(string format [, int timestamp]) |Format a local time/date according to locale settings (PHP 3, PHP 4, PHP 5)
  3664. string strip_tags(string str [, string allowable_tags]) |Strip HTML and PHP tags from a string (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  3665. string stripcslashes(string str) |Un-quote string quoted with addcslashes (PHP 4, PHP 5)
  3666. int stripos(string haystack, string needle [, int offset]) |Find position of first occurrence of a case-insensitive string (PHP 5)
  3667. string stripslashes(string str) |Un-quote string quoted with addslashes (PHP 3, PHP 4, PHP 5)
  3668. string stristr(string haystack, string needle) |Case-insensitive strstr (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3669. int strlen(string string) |Get string length (PHP 3, PHP 4, PHP 5)
  3670. int strnatcasecmp(string str1, string str2) |Case insensitive string comparisons using a "natural order" algorithm (PHP 4, PHP 5)
  3671. int strnatcmp(string str1, string str2) |String comparisons using a "natural order" algorithm (PHP 4, PHP 5)
  3672. int strncasecmp(string str1, string str2, int len) |Binary safe case-insensitive string comparison of the first n characters (PHP 4 >= 4.0.2, PHP 5)
  3673. int strncmp(string str1, string str2, int len) |Binary safe string comparison of the first n characters (PHP 4, PHP 5)
  3674. string strpbrk(string haystack, string char_list) |Search a string for any of a set of characters (PHP 5)
  3675. int strpos(string haystack, mixed needle [, int offset]) |Find position of first occurrence of a string (PHP 3, PHP 4, PHP 5)
  3676. array strptime(string date, string format) |Parse a time/date generated with strftime (PHP 5 >= 5.1.0RC1)
  3677. string strrchr(string haystack, string needle) |Find the last occurrence of a character in a string (PHP 3, PHP 4, PHP 5)
  3678. string strrev(string string) |Reverse a string (PHP 3, PHP 4, PHP 5)
  3679. int strripos(string haystack, string needle [, int offset]) |Find position of last occurrence of a case-insensitive string in a string (PHP 5)
  3680. int strrpos(string haystack, string needle [, int offset]) |Find position of last occurrence of a char in a string (PHP 3, PHP 4, PHP 5)
  3681. int strspn(string str1, string str2 [, int start [, int length]]) |Find length of initial segment matching mask (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  3682. string strstr(string haystack, string needle) |Find first occurrence of a string (PHP 3, PHP 4, PHP 5)
  3683. string strtok(string str, string token) |Tokenize string (PHP 3, PHP 4, PHP 5)
  3684. string strtolower(string str) |Make a string lowercase (PHP 3, PHP 4, PHP 5)
  3685. int strtotime(string time [, int now]) |Parse about any English textual datetime description into a Unix timestamp (PHP 3 >= 3.0.12, PHP 4, PHP 5)
  3686. string strtoupper(string string) |Make a string uppercase (PHP 3, PHP 4, PHP 5)
  3687. string strtr(string str, string from, string to) |Translate certain characters (PHP 3, PHP 4, PHP 5)
  3688. string strval(mixed var) |Get string value of a variable (PHP 3, PHP 4, PHP 5)
  3689. int substr_compare(string main_str, string str, int offset [, int length [, bool case_insensitivity]]) |Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters (PHP 5)
  3690. int substr_count(string haystack, string needle [, int offset [, int length]]) |Count the number of substring occurrences (PHP 4, PHP 5)
  3691. mixed substr_replace(mixed string, string replacement, int start [, int length]) |Replace text within a portion of a string (PHP 4, PHP 5)
  3692. string substr(string string, int start [, int length]) |Return part of a string (PHP 3, PHP 4, PHP 5)
  3693. void swf_actiongeturl(string url, string target) |Get a URL from a Shockwave Flash movie (PHP 4, PECL)
  3694. void swf_actiongotoframe(int framenumber) |Play a frame and then stop (PHP 4, PECL)
  3695. void swf_actiongotolabel(string label) |Display a frame with the specified label (PHP 4, PECL)
  3696. void swf_actionnextframe() |Go forward one frame (PHP 4, PECL)
  3697. void swf_actionplay() |Start playing the flash movie from the current frame (PHP 4, PECL)
  3698. void swf_actionprevframe() |Go backwards one frame (PHP 4, PECL)
  3699. void swf_actionsettarget(string target) |Set the context for actions (PHP 4, PECL)
  3700. void swf_actionstop() |Stop playing the flash movie at the current frame (PHP 4, PECL)
  3701. void swf_actiontogglequality() |Toggle between low and high quality (PHP 4, PECL)
  3702. void swf_actionwaitforframe(int framenumber, int skipcount) |Skip actions if a frame has not been loaded (PHP 4, PECL)
  3703. void swf_addbuttonrecord(int states, int shapeid, int depth) |Controls location, appearance and active area of the current button (PHP 4, PECL)
  3704. void swf_addcolor(float r, float g, float b, float a) |Set the global add color to the rgba value specified (PHP 4, PECL)
  3705. void swf_closefile([int return_file ]) |Close the current Shockwave Flash file (PHP 4, PECL)
  3706. void swf_definebitmap(int objid, string image_name) |Define a bitmap (PHP 4, PECL)
  3707. void swf_definefont(int fontid, string fontname) |Defines a font (PHP 4, PECL)
  3708. void swf_defineline(int objid, float x1, float y1, float x2, float y2, float width) |Define a line (PHP 4, PECL)
  3709. void swf_definepoly(int objid, array coords, int npoints, float width) |Define a polygon (PHP 4, PECL)
  3710. void swf_definerect(int objid, float x1, float y1, float x2, float y2, float width) |Define a rectangle (PHP 4, PECL)
  3711. void swf_definetext(int objid, string str, int docenter) |Define a text string (PHP 4, PECL)
  3712. void swf_endbutton() |End the definition of the current button (PHP 4, PECL)
  3713. void swf_enddoaction() |End the current action (PHP 4, PECL)
  3714. void swf_endshape() |Completes the definition of the current shape (PHP 4, PECL)
  3715. void swf_endsymbol() |End the definition of a symbol (PHP 4, PECL)
  3716. void swf_fontsize(float size) |Change the font size (PHP 4, PECL)
  3717. void swf_fontslant(float slant) |Set the font slant (PHP 4, PECL)
  3718. void swf_fonttracking(float tracking) |Set the current font tracking (PHP 4, PECL)
  3719. array swf_getbitmapinfo(int bitmapid) |Get information about a bitmap (PHP 4, PECL)
  3720. array swf_getfontinfo() |The height in pixels of a capital A and a lowercase x (PHP 4, PECL)
  3721. int swf_getframe() |Get the frame number of the current frame (PHP 4, PECL)
  3722. void swf_labelframe(string name) |Label the current frame (PHP 4, PECL)
  3723. void swf_lookat(float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist) |Define a viewing transformation (PHP 4, PECL)
  3724. void swf_modifyobject(int depth, int how) |Modify an object (PHP 4, PECL)
  3725. void swf_mulcolor(float r, float g, float b, float a) |Sets the global multiply color to the rgba value specified (PHP 4, PECL)
  3726. int swf_nextid() |Returns the next free object id (PHP 4, PECL)
  3727. void swf_oncondition(int transition) |Describe a transition used to trigger an action list (PHP 4, PECL)
  3728. void swf_openfile(string filename, float width, float height, float framerate, float r, float g, float b) |Open a new Shockwave Flash file (PHP 4, PECL)
  3729. void swf_ortho(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax) |Defines an orthographic mapping of user coordinates onto the current viewport (PHP 4 >= 4.0.1, PECL)
  3730. void swf_ortho2(float xmin, float xmax, float ymin, float ymax) |Defines 2D orthographic mapping of user coordinates onto the current viewport (PHP 4, PECL)
  3731. void swf_perspective(float fovy, float aspect, float near, float far) |Define a perspective projection transformation (PHP 4, PECL)
  3732. void swf_placeobject(int objid, int depth) |Place an object onto the screen (PHP 4, PECL)
  3733. void swf_polarview(float dist, float azimuth, float incidence, float twist) |Define the viewer's position with polar coordinates (PHP 4, PECL)
  3734. void swf_popmatrix() |Restore a previous transformation matrix (PHP 4, PECL)
  3735. void swf_posround(int round) |Enables or Disables the rounding of the translation when objects are placed or moved (PHP 4, PECL)
  3736. void swf_pushmatrix() |Push the current transformation matrix back unto the stack (PHP 4, PECL)
  3737. void swf_removeobject(int depth) |Remove an object (PHP 4, PECL)
  3738. void swf_rotate(float angle, string axis) |Rotate the current transformation (PHP 4, PECL)
  3739. void swf_scale(float x, float y, float z) |Scale the current transformation (PHP 4, PECL)
  3740. void swf_setfont(int fontid) |Change the current font (PHP 4, PECL)
  3741. void swf_setframe(int framenumber) |Switch to a specified frame (PHP 4, PECL)
  3742. void swf_shapearc(float x, float y, float r, float ang1, float ang2) |Draw a circular arc (PHP 4, PECL)
  3743. void swf_shapecurveto(float x1, float y1, float x2, float y2) |Draw a quadratic bezier curve between two points (PHP 4, PECL)
  3744. void swf_shapecurveto3(float x1, float y1, float x2, float y2, float x3, float y3) |Draw a cubic bezier curve (PHP 4, PECL)
  3745. void swf_shapefillbitmapclip(int bitmapid) |Set current fill mode to clipped bitmap (PHP 4, PECL)
  3746. void swf_shapefillbitmaptile(int bitmapid) |Set current fill mode to tiled bitmap (PHP 4, PECL)
  3747. void swf_shapefilloff() |Turns off filling (PHP 4, PECL)
  3748. void swf_shapefillsolid(float r, float g, float b, float a) |Set the current fill style to the specified color (PHP 4, PECL)
  3749. void swf_shapelinesolid(float r, float g, float b, float a, float width) |Set the current line style (PHP 4, PECL)
  3750. void swf_shapelineto(float x, float y) |Draw a line (PHP 4, PECL)
  3751. void swf_shapemoveto(float x, float y) |Move the current position (PHP 4, PECL)
  3752. void swf_showframe() |Display the current frame (PHP 4, PECL)
  3753. void swf_startbutton(int objid, int type) |Start the definition of a button (PHP 4, PECL)
  3754. void swf_startdoaction() |Start a description of an action list for the current frame (PHP 4, PECL)
  3755. void swf_startshape(int objid) |Start a complex shape (PHP 4, PECL)
  3756. void swf_startsymbol(int objid) |Define a symbol (PHP 4, PECL)
  3757. float swf_textwidth(string str) |Get the width of a string (PHP 4, PECL)
  3758. void swf_translate(float x, float y, float z) |Translate the current transformations (PHP 4, PECL)
  3759. void swf_viewport(float xmin, float xmax, float ymin, float ymax) |Select an area for future drawing (PHP 4, PECL)
  3760. SWFAction swfaction(string script) |Creates a new Action
  3761. float swfbitmap->getheight() |Returns the bitmap's height
  3762. float swfbitmap->getwidth() |Returns the bitmap's width
  3763. SWFBitmap swfbitmap(mixed file [, mixed alphafile]) |Loads Bitmap object
  3764. void swfbutton->addaction(resource action, int flags) |Adds an action
  3765. SWFSoundInstance SWFButton::addASound(SWFSound sound, int flags) |Associates a sound with a button transition
  3766. void swfbutton->addshape(resource shape, int flags) |Adds a shape to a button
  3767. SWFButton swfbutton() |Creates a new Button
  3768. void swfbutton->setaction(resource action) |Sets the action
  3769. void swfbutton->addshape(resource shape, int flags) |Adds a shape to a button
  3770. void swfbutton->addshape(resource shape, int flags) |Adds a shape to a button
  3771. void SWFButton::setMenu(int flag) |enable track as menu button behaviour
  3772. void swfbutton->addshape(resource shape, int flags) |Adds a shape to a button
  3773. void swfbutton->addshape(resource shape, int flags) |Adds a shape to a button
  3774. void SWFDisplayItem::addAction(SWFAction action, int flags) |Adds this SWFAction to the given SWFSprite instance
  3775. void swfdisplayitem->addcolor(int red, int green, int blue [, int a]) |Adds the given color to this item's color transform
  3776. void SWFDisplayItem::endMask() |Another way of defining a MASK layer
  3777. float SWFDisplayItem::getRot() |
  3778. float SWFDisplayItem::getX() |
  3779. float SWFDisplayItem::getXScale() |
  3780. float SWFDisplayItem::getXSkew() |
  3781. float SWFDisplayItem::getY() |
  3782. float SWFDisplayItem::getYScale() |
  3783. float SWFDisplayItem::getYSkew() |
  3784. void swfdisplayitem->move(int dx, int dy) |Moves object in relative coordinates
  3785. void swfdisplayitem->moveto(int x, int y) |Moves object in global coordinates
  3786. void swfdisplayitem->multcolor(int red, int green, int blue [, int a]) |Multiplies the item's color transform
  3787. void swfdisplayitem->remove() |Removes the object from the movie
  3788. void swfdisplayitem->rotate(float ddegrees) |Rotates in relative coordinates
  3789. void swfdisplayitem->rotateto(float degrees) |Rotates the object in global coordinates
  3790. void swfdisplayitem->scale(int dx, int dy) |Scales the object in relative coordinates
  3791. void swfdisplayitem->scaleto(int x [, int y]) |Scales the object in global coordinates
  3792. void swfdisplayitem->setdepth(float depth) |Sets z-order
  3793. void SWFDisplayItem::setMaskLevel(int level) |Defines a MASK layer at level
  3794. void SWFDisplayItem::setMatrix(float a, float b, float c, float d, float x, float y) |Sets the item's transform matrix
  3795. void swfdisplayitem->setname(string name) |Sets the object's name
  3796. void swfdisplayitem->setratio(float ratio) |Sets the object's ratio
  3797. void swfdisplayitem->skewx(float ddegrees) |Sets the X-skew
  3798. void swfdisplayitem->skewxto(float degrees) |Sets the X-skew
  3799. void swfdisplayitem->skewy(float ddegrees) |Sets the Y-skew
  3800. void swfdisplayitem->skewyto(float degrees) |Sets the Y-skew
  3801. SWFFill swffill() |Loads SWFFill object
  3802. void swffill->moveto(int x, int y) |Moves fill origin
  3803. void swffill->rotateto(float degrees) |Sets fill's rotation
  3804. void swffill->scaleto(int x [, int y]) |Sets fill's scale
  3805. void swffill->skewxto(float x) |Sets fill x-skew
  3806. void swffill->skewyto(float y) |Sets fill y-skew
  3807. float SWFFont::getAscent() |Returns the ascent of the font, or 0 if not available
  3808. float SWFFont::getDescent() |Returns the descent of the font, or 0 if not available
  3809. float SWFFont::getLeading() |Returns the leading of the font, or 0 if not available
  3810. string SWFFont::getShape(int code) |Returns the glyph shape of a char as a text string
  3811. float SWFFont::getUTF8Width(string string) |Calculates the width of the given string in this font at full height
  3812. float swffont->getwidth(string string) |Returns the string's width
  3813. SWFFont swffont(string filename) |Loads a font definition
  3814. void SWFFontChar::addChars(string char) |Adds characters to a font for exporting font
  3815. void SWFFontChar::addUTF8Chars(string char) |Adds characters to a font for exporting font
  3816. void swfgradient->addentry(float ratio, int red, int green, int blue [, int a]) |Adds an entry to the gradient list
  3817. SWFGradient swfgradient() |Creates a gradient object
  3818. mixed swfmorph->getshape1() |Gets a handle to the starting shape
  3819. mixed swfmorph->getshape2() |Gets a handle to the ending shape
  3820. SWFMorph swfmorph() |Creates a new SWFMorph object
  3821. void swfmovie->add(resource instance) |Adds any type of data to a movie
  3822. void SWFMovie::addExport(SWFCharacter char, string name) |
  3823. SWFFontChar SWFMovie::addFont(SWFFont font) |
  3824. SWFMovie swfmovie() |Creates a new movie object, representing an SWF version 4 movie
  3825. SWFSprite SWFMovie::importChar(string libswf, string name) |
  3826. SWFFontChar SWFMovie::importFont(string libswf, string name) |
  3827. void SWFMovie::labelFrame(string label) |Labels frame
  3828. void swfmovie->nextframe() |Moves to the next frame of the animation
  3829. int swfmovie->output([int compression]) |Dumps your lovingly prepared movie out
  3830. void swfmovie->remove(resource instance) |Removes the object instance from the display list
  3831. int swfmovie->save(string filename [, int compression]) |Saves your movie in a file
  3832. int SWFMovie::saveToFile(stream x [, int compression]) |
  3833. void swfmovie->setbackground(int red, int green, int blue) |Sets the background color
  3834. void swfmovie->setdimension(int width, int height) |Sets the movie's width and height
  3835. void swfmovie->setframes(string numberofframes) |Sets the total number of frames in the animation
  3836. void swfmovie->setrate(int rate) |Sets the animation's frame rate
  3837. SWFSoundInstance SWFMovie::startSound(SWFSound sound) |
  3838. void SWFMovie::stopSound(SWFSound sound) |
  3839. void swfmovie->streammp3(mixed mp3File) |Streams a MP3 file
  3840. void SWFMovie::writeExports() |
  3841. SWFPrebuiltClip SWFPrebuiltClip([string file]) |Returns a SWFPrebuiltClip object
  3842. SWFFill SWFShape->addFill(int red, int green, int blue [, int a]) |Adds a solid fill to the shape
  3843. void SWFShape::drawArc(float r, float startAngle, float endAngle) |Draws an arc of radius r centered at the current location, from angle startAngle to angle endAngle measured clockwise from 12 o'clock
  3844. void SWFShape::drawCircle(float r) |Draws a circle of radius r centered at the current location, in a counter-clockwise fashion
  3845. int SWFShape::drawCubic(float bx, float by, float cx, float cy, float dx, float dy) |Draws a cubic bezier curve using the current position and the three given points as control points
  3846. int SWFShape::drawCubicTo(float bx, float by, float cx, float cy, float dx, float dy) |Draws a cubic bezier curve using the current position and the three given points as control points
  3847. int swfshape->drawcurve(int controldx, int controldy, int anchordx, int anchordy [, int targetdx, int targetdy]) |Draws a curve (relative)
  3848. int swfshape->drawcurveto(int controlx, int controly, int anchorx, int anchory [, int targetx, int targety]) |Draws a curve
  3849. void SWFShape::drawGlyph(SWFFont font, string character [, int size]) |Draws the first character in the given string into the shape using the glyph definition from the given font
  3850. void swfshape->drawline(int dx, int dy) |Draws a line (relative)
  3851. void swfshape->drawlineto(int x, int y) |Draws a line
  3852. SWFShape swfshape() |Creates a new shape object
  3853. void swfshape->movepen(int dx, int dy) |Moves the shape's pen (relative)
  3854. void swfshape->movepento(int x, int y) |Moves the shape's pen
  3855. void swfshape->setleftfill(swfgradient fill) |Sets left rasterizing color
  3856. void swfshape->setline(swfshape shape) |Sets the shape's line style
  3857. void swfshape->setrightfill(swfgradient fill) |Sets right rasterizing color
  3858. SWFSound SWFSound(string filename, int flags) |Returns a new SWFSound object from given file
  3859. void SWFSoundInstance::loopCount(int point) |
  3860. void SWFSoundInstance::loopInPoint(int point) |
  3861. void SWFSoundInstance::loopOutPoint(int point) |
  3862. void SWFSoundInstance::noMultiple() |
  3863. void swfsprite->add(resource object) |Adds an object to a sprite
  3864. SWFSprite swfsprite() |Creates a movie clip (a sprite)
  3865. void SWFSprite::labelFrame(string label) |Labels frame
  3866. void swfsprite->nextframe() |Moves to the next frame of the animation
  3867. void swfsprite->remove(resource object) |Removes an object to a sprite
  3868. void swfsprite->setframes(int numberofframes) |Sets the total number of frames in the animation
  3869. SWFSoundInstance SWFSprite::startSound(SWFSound sound) |
  3870. void SWFSprite::stopSound(SWFSound sound) |
  3871. void swftext->addstring(string string) |Draws a string
  3872. void SWFText::addUTF8String(string text) |Writes the given text into this SWFText object at the current pen position, using the current font, height, spacing, and color
  3873. float SWFText::getAscent() |Returns the ascent of the current font at its current size, or 0 if not available
  3874. float SWFText::getDescent() |Returns the descent of the current font at its current size, or 0 if not available
  3875. float SWFText::getLeading() |Returns the leading of the current font at its current size, or 0 if not available
  3876. float SWFText::getUTF8Width(string string) |calculates the width of the given string in this text objects current font and size
  3877. float swftext->getwidth(string string) |Computes string's width
  3878. SWFText swftext() |Creates a new SWFText object
  3879. void swftext->moveto(int x, int y) |Moves the pen
  3880. void swftext->setcolor(int red, int green, int blue [, int a]) |Sets the current font color
  3881. void swftext->setfont(string font) |Sets the current font
  3882. void swftext->setheight(int height) |Sets the current font height
  3883. void swftext->setspacing(float spacing) |Sets the current font spacing
  3884. void SWFTextField::addChars(string chars) |adds characters to a font that will be available within a textfield
  3885. void swftextfield->addstring(string string) |Concatenates the given string to the text field
  3886. void swftextfield->align(int alignement) |Sets the text field alignment
  3887. SWFTextField swftextfield([int flags]) |Creates a text field object
  3888. void swftextfield->setbounds(int width, int height) |Sets the text field width and height
  3889. void swftextfield->setcolor(int red, int green, int blue [, int a]) |Sets the color of the text field
  3890. void swftextfield->setfont(string font) |Sets the text field font
  3891. void swftextfield->setheight(int height) |Sets the font height of this text field font
  3892. void swftextfield->setindentation(int width) |Sets the indentation of the first line
  3893. void swftextfield->setleftmargin(int width) |Sets the left margin width of the text field
  3894. void swftextfield->setlinespacing(int height) |Sets the line spacing of the text field
  3895. void swftextfield->setmargins(int left, int right) |Sets the margins width of the text field
  3896. void swftextfield->setname(string name) |Sets the variable name
  3897. void SWFTextField::setPadding(float padding) |Sets the padding of this textfield
  3898. void swftextfield->setrightmargin(int width) |Sets the right margin width of the text field
  3899. int SWFVideoStream::getNumFrames() |
  3900. SWFVideoStream SWFVideoStream([string file]) |Returns a SWFVideoStream object
  3901. void SWFVideoStream::setDimension(int x, int y) |
  3902. int sybase_affected_rows([resource link_identifier]) |Gets number of affected rows in last query (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  3903. bool sybase_close([resource link_identifier]) |Closes a Sybase connection (PHP 3, PHP 4, PHP 5)
  3904. resource sybase_connect([string servername [, string username [, string password [, string charset [, string appname]]]]]) |Opens a Sybase server connection (PHP 3, PHP 4, PHP 5)
  3905. bool sybase_data_seek(resource result_identifier, int row_number) |Moves internal row pointer (PHP 3, PHP 4, PHP 5)
  3906. void sybase_deadlock_retry_count(int retry_count) |Sets the deadlock retry count (PHP 4 >= 4.3.0, PHP 5)
  3907. array sybase_fetch_array(resource result) |Fetch row as array (PHP 3, PHP 4, PHP 5)
  3908. array sybase_fetch_assoc(resource result) |Fetch a result row as an associative array (PHP 4 >= 4.3.0, PHP 5)
  3909. object sybase_fetch_field(resource result [, int field_offset]) |Get field information from a result (PHP 3, PHP 4, PHP 5)
  3910. object sybase_fetch_object(resource result [, mixed object]) |Fetch a row as an object (PHP 3, PHP 4, PHP 5)
  3911. array sybase_fetch_row(resource result) |Get a result row as an enumerated array (PHP 3, PHP 4, PHP 5)
  3912. bool sybase_field_seek(resource result, int field_offset) |Sets field offset (PHP 3, PHP 4, PHP 5)
  3913. bool sybase_free_result(resource result) |Frees result memory (PHP 3, PHP 4, PHP 5)
  3914. string sybase_get_last_message() |Returns the last message from the server (PHP 3, PHP 4, PHP 5)
  3915. void sybase_min_client_severity(int severity) |Sets minimum client severity (PHP 3, PHP 4, PHP 5)
  3916. void sybase_min_error_severity(int severity) |Sets minimum error severity (PHP 3, PHP 4, PHP 5)
  3917. void sybase_min_message_severity(int severity) |Sets minimum message severity (PHP 3, PHP 4, PHP 5)
  3918. void sybase_min_server_severity(int severity) |Sets minimum server severity (PHP 3, PHP 4, PHP 5)
  3919. int sybase_num_fields(resource result) |Gets the number of fields in a result set (PHP 3, PHP 4, PHP 5)
  3920. int sybase_num_rows(resource result) |Get number of rows in a result set (PHP 3, PHP 4, PHP 5)
  3921. resource sybase_pconnect([string servername [, string username [, string password [, string charset [, string appname]]]]]) |Open persistent Sybase connection (PHP 3, PHP 4, PHP 5)
  3922. mixed sybase_query(string query [, resource link_identifier]) |Sends a Sybase query (PHP 3, PHP 4, PHP 5)
  3923. string sybase_result(resource result, int row, mixed field) |Get result data (PHP 3, PHP 4, PHP 5)
  3924. bool sybase_select_db(string database_name [, resource link_identifier]) |Selects a Sybase database (PHP 3, PHP 4, PHP 5)
  3925. bool sybase_set_message_handler(callback handler [, resource connection]) |Sets the handler called when a server message is raised (PHP 4 >= 4.3.0, PHP 5)
  3926. resource sybase_unbuffered_query(string query, resource link_identifier [, bool store_result]) |Send a Sybase query and do not block (PHP 4 >= 4.3.0, PHP 5)
  3927. bool symlink(string target, string link) |Creates a symbolic link (PHP 3, PHP 4, PHP 5)
  3928. bool syslog(int priority, string message) |Generate a system log message (PHP 3, PHP 4, PHP 5)
  3929. string system(string command [, int &return_var]) |Execute an external program and display the output (PHP 3, PHP 4, PHP 5)
  3930. float tan(float arg) |Tangent (PHP 3, PHP 4, PHP 5)
  3931. float tanh(float arg) |Hyperbolic tangent (PHP 4 >= 4.1.0, PHP 5)
  3932. bool tcpwrap_check(string daemon, string address [, string user [, bool nodns]]) |Performs a tcpwrap check (PECL)
  3933. string tempnam(string dir, string prefix) |Create file with unique file name (PHP 3, PHP 4, PHP 5)
  3934. string textdomain(string text_domain) |Sets the default domain (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  3935. int tidy_access_count(tidy object) |Returns the Number of Tidy accessibility warnings encountered for specified document (PHP 5)
  3936. bool tidy_clean_repair(tidy object) |Execute configured cleanup and repair operations on parsed markup (PHP 5)
  3937. int tidy_config_count(tidy object) |Returns the Number of Tidy configuration errors encountered for specified document (PHP 5)
  3938. tidy tidy::__construct([string filename [, mixed config [, string encoding [, bool use_include_path]]]]) |Constructs a new tidy object
  3939. bool tidy_diagnose(tidy object) |Run configured diagnostics on parsed and repaired markup (PHP 5)
  3940. int tidy_error_count(tidy object) |Returns the Number of Tidy errors encountered for specified document (PHP 5)
  3941. tidyNode tidy_get_body(tidy object) |Returns a tidyNode Object starting from the <body> tag of the tidy parse tree (PHP 5)
  3942. array tidy_get_config(tidy object) |Get current Tidy configuration (PHP 5)
  3943. string tidy_get_error_buffer(tidy object) |Return warnings and errors which occurred parsing the specified document (PHP 5)
  3944. tidyNode tidy_get_head(tidy object) |Returns a tidyNode Object starting from the <head> tag of the tidy parse tree (PHP 5)
  3945. int tidy_get_html_ver(tidy object) |Get the Detected HTML version for the specified document (PHP 5)
  3946. tidyNode tidy_get_html(tidy object) |Returns a tidyNode Object starting from the <html> tag of the tidy parse tree (PHP 5)
  3947. string tidy_get_opt_doc(tidy object, string optname) |Returns the documentation for the given option name (PHP 5 >= 5.1.0RC1)
  3948. string tidy_get_output(tidy object) |Return a string representing the parsed tidy markup (PHP 5)
  3949. string tidy_get_release() |Get release date (version) for Tidy library (PHP 5)
  3950. tidyNode tidy_get_root(tidy object) |Returns a tidyNode object representing the root of the tidy parse tree (PHP 5)
  3951. int tidy_get_status(tidy object) |Get status of specified document (PHP 5)
  3952. mixed tidy_getopt(tidy object, string option) |Returns the value of the specified configuration option for the tidy document (PHP 5)
  3953. bool tidy_is_xhtml(tidy object) |Indicates if the document is a XHTML document (PHP 5)
  3954. bool tidy_is_xml(tidy object) |Indicates if the document is a generic (non HTML/XHTML) XML document (PHP 5)
  3955. void tidy_load_config(string filename, string encoding) |Load an ASCII Tidy configuration file with the specified encoding
  3956. tidy_attr tidy_node->get_attr(int attrib_id) |Return the attribute with the provided attribute id
  3957. array tidy_node->get_nodes(int node_id) |Return an array of nodes under this node with the specified id
  3958. tidy_node tidy_node->next() |Returns the next sibling to this node
  3959. tidy_node tidy_node->prev() |Returns the previous sibling to this node
  3960. tidy tidy_parse_file(string filename [, mixed config [, string encoding [, bool use_include_path]]]) |Parse markup in file or URI (PHP 5)
  3961. tidy tidy_parse_string(string input [, mixed config [, string encoding]]) |Parse a document stored in a string (PHP 5)
  3962. string tidy_repair_file(string filename [, mixed config [, string encoding [, bool use_include_path]]]) |Repair a file and return it as a string (PHP 5)
  3963. string tidy_repair_string(string data [, mixed config [, string encoding]]) |Repair a string using an optionally provided configuration file (PHP 5)
  3964. bool tidy_reset_config() |Restore Tidy configuration to default values
  3965. bool tidy_save_config(string filename) |Save current settings to named file
  3966. bool tidy_set_encoding(string encoding) |Set the input/output character encoding for parsing markup
  3967. bool tidy_setopt(string option, mixed value) |Updates the configuration settings for the specified tidy document
  3968. int tidy_warning_count(tidy object) |Returns the Number of Tidy warnings encountered for specified document (PHP 5)
  3969. bool tidyNode->hasChildren() |Returns true if this node has children
  3970. bool tidyNode->hasSiblings() |Returns true if this node has siblings
  3971. bool tidyNode->isAsp() |Returns true if this node is ASP
  3972. bool tidyNode->isComment() |Returns true if this node represents a comment
  3973. bool tidyNode->isHtml() |Returns true if this node is part of a HTML document
  3974. bool tidyNode->isJste() |Returns true if this node is JSTE
  3975. bool tidyNode->isPhp() |Returns true if this node is PHP
  3976. bool tidyNode->isText() |Returns true if this node represents text (no markup)
  3977. mixed time_nanosleep(int seconds, int nanoseconds) |Delay for a number of seconds and nanoseconds (PHP 5)
  3978. bool time_sleep_until(float timestamp) |Make the script sleep until the specified time (PHP 5 >= 5.1.0RC1)
  3979. int time() |Return current Unix timestamp (PHP 3, PHP 4, PHP 5)
  3980. resource tmpfile() |Creates a temporary file (PHP 3 >= 3.0.13, PHP 4, PHP 5)
  3981. array token_get_all(string source) |Split given source into PHP tokens (PHP 4 >= 4.2.0, PHP 5)
  3982. string token_name(int token) |Get the symbolic name of a given PHP token (PHP 4 >= 4.2.0, PHP 5)
  3983. bool touch(string filename [, int time [, int atime]]) |Sets access and modification time of file (PHP 3, PHP 4, PHP 5)
  3984. bool trigger_error(string error_msg [, int error_type]) |Generates a user-level error/warning/notice message (PHP 4 >= 4.0.1, PHP 5)
  3985. string trim(string str [, string charlist]) |Strip whitespace (or other characters) from the beginning and end of a string (PHP 3, PHP 4, PHP 5)
  3986. bool uasort(array &array, callback cmp_function) |Sort an array with a user-defined comparison function and maintain index association (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  3987. string ucfirst(string str) |Make a string's first character uppercase (PHP 3, PHP 4, PHP 5)
  3988. string ucwords(string str) |Uppercase the first character of each word in a string (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  3989. bool udm_add_search_limit(resource agent, int var, string val) |Add various search limits (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  3990. resource udm_alloc_agent_array(array databases) |Allocate mnoGoSearch session (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  3991. resource udm_alloc_agent(string dbaddr [, string dbmode]) |Allocate mnoGoSearch session (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  3992. int udm_api_version() |Get mnoGoSearch API version (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  3993. array udm_cat_list(resource agent, string category) |Get all the categories on the same level with the current one (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  3994. array udm_cat_path(resource agent, string category) |Get the path to the current category (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  3995. bool udm_check_charset(resource agent, string charset) |Check if the given charset is known to mnogosearch (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  3996. int udm_check_stored(resource agent, int link, string doc_id) |Check connection to stored (PHP 4 >= 4.2.0)
  3997. bool udm_clear_search_limits(resource agent) |Clear all mnoGoSearch search restrictions (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  3998. int udm_close_stored(resource agent, int link) |Close connection to stored (PHP 4 >= 4.2.0)
  3999. int udm_crc32(resource agent, string str) |Return CRC32 checksum of given string (PHP 4 >= 4.2.0, PHP 5 <= 5.0.4)
  4000. int udm_errno(resource agent) |Get mnoGoSearch error number (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4001. string udm_error(resource agent) |Get mnoGoSearch error message (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4002. resource udm_find(resource agent, string query) |Perform search (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4003. int udm_free_agent(resource agent) |Free mnoGoSearch session (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4004. bool udm_free_ispell_data(int agent) |Free memory allocated for ispell data (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4005. bool udm_free_res(resource res) |Free mnoGoSearch result (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4006. int udm_get_doc_count(resource agent) |Get total number of documents in database (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4007. string udm_get_res_field(resource res, int row, int field) |Fetch mnoGoSearch result field (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4008. string udm_get_res_param(resource res, int param) |Get mnoGoSearch result parameters (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4009. int udm_hash32(resource agent, string str) |Return Hash32 checksum of gived string (PHP 4 >= 4.3.3, PHP 5 <= 5.0.4)
  4010. bool udm_load_ispell_data(resource agent, int var, string val1, string val2, int flag) |Load ispell data (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4011. int udm_open_stored(resource agent, string storedaddr) |Open connection to stored (PHP 4 >= 4.2.0)
  4012. bool udm_set_agent_param(resource agent, int var, string val) |Set mnoGoSearch agent session parameters (PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)
  4013. bool uksort(array &array, callback cmp_function) |Sort an array by keys using a user-defined comparison function (PHP 3 >= 3.0.4, PHP 4, PHP 5)
  4014. int umask([int mask]) |Changes the current umask (PHP 3, PHP 4, PHP 5)
  4015. string unicode_encode(unicode input, string encoding) |Takes a unicode string and converts it to a string in the specified encoding (PHP 5 CVS only)
  4016. string uniqid([string prefix [, bool more_entropy]]) |Generate a unique ID (PHP 3, PHP 4, PHP 5)
  4017. int unixtojd([int timestamp]) |Convert Unix timestamp to Julian Day (PHP 4, PHP 5)
  4018. bool unlink(string filename [, resource context]) |Deletes a file (PHP 3, PHP 4, PHP 5)
  4019. array unpack(string format, string data) |Unpack data from binary string (PHP 3, PHP 4, PHP 5)
  4020. void unregister_tick_function(string function_name) |De-register a function for execution on each tick (PHP 4 >= 4.0.3, PHP 5)
  4021. mixed unserialize(string str) |Creates a PHP value from a stored representation (PHP 3 >= 3.0.5, PHP 4, PHP 5)
  4022. void unset(mixed var [, mixed var [, mixed ...]]) |Unset a given variable (PHP 3, PHP 4, PHP 5)
  4023. string urldecode(string str) |Decodes URL-encoded string (PHP 3, PHP 4, PHP 5)
  4024. string urlencode(string str) |URL-encodes string (PHP 3, PHP 4, PHP 5)
  4025. bool use_soap_error_handler([bool handler]) |Set whether to use the SOAP error handler and return the former value (PHP 5)
  4026. bool user_error(string error_msg [, int error_type]) |Generates a user-level error/warning/notice message (PHP 4 >= 4.0.1, PHP 5)
  4027. void usleep(int micro_seconds) |Delay execution in microseconds (PHP 3, PHP 4, PHP 5)
  4028. bool usort(array &array, callback cmp_function) |Sort an array by values using a user-defined comparison function (PHP 3 >= 3.0.3, PHP 4, PHP 5)
  4029. string utf8_decode(string data) |Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1 (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4030. string utf8_encode(string data) |Encodes an ISO-8859-1 string to UTF-8 (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4031. void var_dump(mixed expression [, mixed expression [, ...]]) |Dumps information about a variable (PHP 3 >= 3.0.5, PHP 4, PHP 5)
  4032. mixed var_export(mixed expression [, bool return]) |Outputs or returns a parsable string representation of a variable (PHP 4 >= 4.2.0, PHP 5)
  4033. mixed variant_abs(mixed val) |Returns the absolute value of a variant (PHP 5)
  4034. mixed variant_add(mixed left, mixed right) |"Adds" two variant values together and returns the result (PHP 5)
  4035. mixed variant_and(mixed left, mixed right) |performs a bitwise AND operation between two variants and returns the result (PHP 5)
  4036. variant variant_cast(variant variant, int type) |Convert a variant into a new variant object of another type (PHP 5)
  4037. mixed variant_cat(mixed left, mixed right) |concatenates two variant values together and returns the result (PHP 5)
  4038. int variant_cmp(mixed left, mixed right [, int lcid [, int flags]]) |Compares two variants (PHP 5)
  4039. variant variant_date_from_timestamp(int timestamp) |Returns a variant date representation of a unix timestamp (PHP 5)
  4040. int variant_date_to_timestamp(variant variant) |Converts a variant date/time value to unix timestamp (PHP 5)
  4041. mixed variant_div(mixed left, mixed right) |Returns the result from dividing two variants (PHP 5)
  4042. mixed variant_eqv(mixed left, mixed right) |Performs a bitwise equivalence on two variants (PHP 5)
  4043. mixed variant_fix(mixed variant) |Returns the integer portion ? of a variant (PHP 5)
  4044. int variant_get_type(variant variant) |Returns the type of a variant object (PHP 5)
  4045. mixed variant_idiv(mixed left, mixed right) |Converts variants to integers and then returns the result from dividing them (PHP 5)
  4046. mixed variant_imp(mixed left, mixed right) |Performs a bitwise implication on two variants (PHP 5)
  4047. mixed variant_int(mixed variant) |Returns the integer portion of a variant (PHP 5)
  4048. mixed variant_mod(mixed left, mixed right) |Divides two variants and returns only the remainder (PHP 5)
  4049. mixed variant_mul(mixed left, mixed right) |multiplies the values of the two variants and returns the result (PHP 5)
  4050. mixed variant_neg(mixed variant) |Performs logical negation on a variant (PHP 5)
  4051. mixed variant_not(mixed variant) |Performs bitwise not negation on a variant (PHP 5)
  4052. mixed variant_or(mixed left, mixed right) |Performs a logical disjunction on two variants (PHP 5)
  4053. mixed variant_pow(mixed left, mixed right) |Returns the result of performing the power function with two variants (PHP 5)
  4054. mixed variant_round(mixed variant, int decimals) |Rounds a variant to the specified number of decimal places (PHP 5)
  4055. void variant_set_type(variant variant, int type) |Convert a variant into another type "in-place" (PHP 5)
  4056. void variant_set(variant variant, mixed value) |Assigns a new value for a variant object (PHP 5)
  4057. mixed variant_sub(mixed left, mixed right) |subtracts the value of the right variant from the left variant value and returns the result (PHP 5)
  4058. mixed variant_xor(mixed left, mixed right) |Performs a logical exclusion on two variants (PHP 5)
  4059. mixed version_compare(string version1, string version2 [, string operator ]) |Compares two "PHP-standardized" version number strings (PHP 4 >= 4.1.0, PHP 5)
  4060. int vfprintf(resource handle, string format, array args) |Write a formatted string to a stream (PHP 5)
  4061. bool virtual(string filename) |Perform an Apache sub-request (PHP 3, PHP 4, PHP 5)
  4062. bool vpopmail_add_alias_domain_ex(string olddomain, string newdomain) |Add alias to an existing virtual domain (4.0.5 - 4.2.3 only, PECL)
  4063. number vpopmail_add_alias_domainbs(mixed number) |Absolute vvpopmail_add_alias_domainlue (PHP 3, PHP 4, PHP 5)
  4064. bool vpopmail_add_domain_ex(string domain, string passwd [, string quota [, string bounce [, bool apop]]]) |Add a new virtual domain (4.0.5 - 4.2.3 only, PECL)
  4065. bool vpopmail_add_domain(string domain, string dir, int uid, int gid) |Add a new virtual domain (4.0.5 - 4.2.3 only, PECL)
  4066. bool vpopmail_add_user(string user, string domain, string password [, string gecos [, bool apop]]) |Add a new user to the specified virtual domain (4.0.5 - 4.2.3 only, PECL)
  4067. bool vpopmail_alias_add(string user, string domain, string alias) |Insert a virtual alias (4.1.0 - 4.2.3 only, PECL)
  4068. bool vpopmail_alias_del_domain(string domain) |Deletes all virtual aliases of a domain (4.1.0 - 4.2.3 only, PECL)
  4069. bool vpopmail_alias_del(string user, string domain) |Deletes all virtual aliases of a user (4.1.0 - 4.2.3 only, PECL)
  4070. number vpopmail_alias_get_allbs(mixed number) |Absolute vvpopmail_alias_get_alllue (PHP 3, PHP 4, PHP 5)
  4071. number vpopmail_alias_getbs(mixed number) |Absolute vvpopmail_alias_getlue (PHP 3, PHP 4, PHP 5)
  4072. bool vpopmail_auth_user(string user, string domain, string password [, string apop]) |Attempt to validate a username/domain/password (4.0.5 - 4.2.3 only, PECL)
  4073. bool vpopmail_del_domain_ex(string domain) |Delete a virtual domain (4.0.5 - 4.2.3 only, PECL)
  4074. bool vpopmail_del_domain(string domain) |Delete a virtual domain (4.0.5 - 4.2.3 only, PECL)
  4075. bool vpopmail_del_user(string user, string domain) |Delete a user from a virtual domain (4.0.5 - 4.2.3 only, PECL)
  4076. string vpopmail_error() |Get text message for last vpopmail error (4.0.5 - 4.2.3 only, PECL)
  4077. bool vpopmail_passwd(string user, string domain, string password [, bool apop]) |Change a virtual user's password (4.0.5 - 4.2.3 only, PECL)
  4078. bool vpopmail_set_user_quota(string user, string domain, string quota) |Sets a virtual user's quota (4.0.5 - 4.2.3 only, PECL)
  4079. int vprintf(string format, array args) |Output a formatted string (PHP 4 >= 4.1.0, PHP 5)
  4080. string vsprintf(string format, array args) |Return a formatted string (PHP 4 >= 4.1.0, PHP 5)
  4081. bool w32api_deftype(string typename, string member1_type, string member1_name [, string ... [, string ...]]) |Defines a type for use with other w32api_functions (4.2.0 - 4.2.3 only)
  4082. resource w32api_init_dtype(string typename, mixed value [, mixed ...]) |Creates an instance of the data type typename and fills it with the values passed (4.2.0 - 4.2.3 only)
  4083. mixed w32api_invoke_function(string funcname, mixed argument [, mixed ...]) |Invokes function funcname with the arguments passed after the function name (4.2.0 - 4.2.3 only)
  4084. bool w32api_register_function(string library, string function_name, string return_type) |Registers function function_name from library with PHP (4.2.0 - 4.2.3 only)
  4085. void w32api_set_call_method(int method) |Sets the calling method used (4.2.0 - 4.2.3 only)
  4086. bool wddx_add_vars(int packet_id, mixed name_var [, mixed ...]) |Add variables to a WDDX packet with the specified ID (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  4087. mixed wddx_deserialize(string packet) |Unserializes a WDDX packet (PHP 3 >= 3.0.7, PHP 5 CVS only)
  4088. string wddx_packet_end(resource packet_id) |Ends a WDDX packet with the specified ID (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  4089. resource wddx_packet_start([string comment]) |Starts a new WDDX packet with structure inside it (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  4090. string wddx_serialize_value(mixed var [, string comment]) |Serialize a single value into a WDDX packet (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  4091. string wddx_serialize_vars(mixed var_name [, mixed ...]) |Serialize variables into a WDDX packet (PHP 3 >= 3.0.7, PHP 4, PHP 5)
  4092. mixed wddx_unserialize(string packet) |Unserializes a WDDX packet (PHP 3 >= 3.0.7, PHP 5 CVS only)
  4093. int win32_create_service(array details [, string machine]) |Creates a new service entry in the SCM database (PECL)
  4094. int win32_delete_service(string servicename [, string machine]) |Deletes a service entry from the SCM database (PECL)
  4095. int win32_get_last_control_message() |Returns the last control message that was sent to this service (PECL)
  4096. array win32_ps_list_procs() |List running processes
  4097. array win32_ps_stat_mem() |Stat memory utilization
  4098. array win32_ps_stat_proc([int pid]) |Stat process
  4099. mixed win32_query_service_status(string servicename [, string machine]) |Queries the status of a service (PECL)
  4100. bool win32_set_service_status(int status) |Update the service status (PECL)
  4101. bool win32_start_service_ctrl_dispatcher(string name) |Registers the script with the SCM, so that it can act as the service with the given name (PECL)
  4102. int win32_start_service(string servicename [, string machine]) |Starts a service (PECL)
  4103. int win32_stop_service(string servicename [, string machine]) |Stops a service (PECL)
  4104. string wordwrap(string str [, int width [, string break [, bool cut]]]) |Wraps a string to a given number of characters using a string break character (PHP 4 >= 4.0.2, PHP 5)
  4105. string xattr_get(string filename, string name [, int flags]) |Get an extended attribute (PECL)
  4106. array xattr_list(string filename [, int flags]) |Get a list of extended attributes (PECL)
  4107. bool xattr_remove(string filename, string name [, int flags]) |Remove an extended attribute (PECL)
  4108. bool xattr_set(string filename, string name, string value [, int flags]) |Set an extended attribute (PECL)
  4109. bool xattr_supported(string filename [, int flags]) |Check if filesystem supports extended attributes (PECL)
  4110. bool xdiff_file_diff_binary(string file1, string file2, string dest) |Make binary diff of two files (PECL)
  4111. bool xdiff_file_diff(string file1, string file2, string dest [, int context [, bool minimal]]) |Make unified diff of two files (PECL)
  4112. mixed xdiff_file_merge3(string file1, string file2, string file3, string dest) |Merge 3 files into one (PECL)
  4113. bool xdiff_file_patch_binary(string file, string patch, string dest) |Patch a file with a binary diff (PECL)
  4114. mixed xdiff_file_patch(string file, string patch, string dest [, int flags]) |Patch a file with an unified diff (PECL)
  4115. string xdiff_string_diff_binary(string str1, string str2) |Make binary diff of two strings (PECL)
  4116. string xdiff_string_diff(string str1, string str2 [, int context [, bool minimal]]) |Make unified diff of two strings (PECL)
  4117. mixed xdiff_string_merge3(string str1, string str2, string str3 [, string &error]) |Merge 3 strings into one (PECL)
  4118. string xdiff_string_patch_binary(string str, string patch) |Patch a string with a binary diff (PECL)
  4119. string xdiff_string_patch(string str, string patch [, int flags [, string &error]]) |Patch a string with an unified diff (PECL)
  4120. string xml_error_string(int code) |Get XML parser error string (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4121. int xml_get_current_byte_index(resource parser) |Get current byte index for an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4122. int xml_get_current_column_number(resource parser) |Get current column number for an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4123. int xml_get_current_line_number(resource parser) |Get current line number for an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4124. int xml_get_error_code(resource parser) |Get XML parser error code (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4125. int xml_parse_into_struct(resource parser, string data, array &values [, array &index]) |Parse XML data into an array structure (PHP 3 >= 3.0.8, PHP 4, PHP 5)
  4126. int xml_parse(resource parser, string data [, bool is_final]) |Start parsing an XML document (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4127. resource xml_parser_create_ns([string encoding [, string separator]]) |Create an XML parser with namespace support (PHP 4 >= 4.0.5, PHP 5)
  4128. resource xml_parser_create([string encoding]) |Create an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4129. bool xml_parser_free(resource parser) |Free an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4130. mixed xml_parser_get_option(resource parser, int option) |Get options from an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4131. bool xml_parser_set_option(resource parser, int option, mixed value) |Set options in an XML parser (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4132. bool xml_set_character_data_handler(resource parser, callback handler) |Set up character data handler (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4133. bool xml_set_default_handler(resource parser, callback handler) |Set up default handler (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4134. bool xml_set_element_handler(resource parser, callback start_element_handler, callback end_element_handler) |Set up start and end element handlers (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4135. bool xml_set_end_namespace_decl_handler(resource parser, callback handler) |Set up end namespace declaration handler (PHP 4 >= 4.0.5, PHP 5)
  4136. bool xml_set_external_entity_ref_handler(resource parser, callback handler) |Set up external entity reference handler (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4137. bool xml_set_notation_decl_handler(resource parser, callback handler) |Set up notation declaration handler (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4138. bool xml_set_object(resource parser, object &object) |Use XML Parser within an object (PHP 4, PHP 5)
  4139. bool xml_set_processing_instruction_handler(resource parser, callback handler) |Set up processing instruction (PI) handler (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4140. bool xml_set_start_namespace_decl_handler(resource parser, callback handler) |Set up start namespace declaration handler (PHP 4 >= 4.0.5, PHP 5)
  4141. bool xml_set_unparsed_entity_decl_handler(resource parser, callback handler) |Set up unparsed entity declaration handler (PHP 3 >= 3.0.6, PHP 4, PHP 5)
  4142. array xmlrpc_decode_request(string xml, string &method [, string encoding]) |Decodes XML into native PHP types (PHP 4 >= 4.1.0, PHP 5)
  4143. array xmlrpc_decode(string xml [, string encoding]) |Decodes XML into native PHP types (PHP 4 >= 4.1.0, PHP 5)
  4144. string xmlrpc_encode_request(string method, mixed params [, array output_options]) |Generates XML for a method request (PHP 4 >= 4.1.0, PHP 5)
  4145. string xmlrpc_encode(mixed value) |Generates XML for a PHP value (PHP 4 >= 4.1.0, PHP 5)
  4146. string xmlrpc_get_type(mixed value) |Gets xmlrpc type for a PHP value (PHP 4 >= 4.1.0, PHP 5)
  4147. bool xmlrpc_is_fault(array arg) |Determines if an array value represents an XMLRPC fault (PHP 4 >= 4.3.0, PHP 5)
  4148. array xmlrpc_parse_method_descriptions(string xml) |Decodes XML into a list of method descriptions (PHP 4 >= 4.1.0, PHP 5)
  4149. int xmlrpc_server_add_introspection_data(resource server, array desc) |Adds introspection documentation (PHP 4 >= 4.1.0, PHP 5)
  4150. string xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options]) |Parses XML requests and call methods (PHP 4 >= 4.1.0, PHP 5)
  4151. resource xmlrpc_server_create() |Creates an xmlrpc server (PHP 4 >= 4.1.0, PHP 5)
  4152. int xmlrpc_server_destroy(resource server) |Destroys server resources (PHP 4 >= 4.1.0, PHP 5)
  4153. bool xmlrpc_server_register_introspection_callback(resource server, string function) |Register a PHP function to generate documentation (PHP 4 >= 4.1.0, PHP 5)
  4154. bool xmlrpc_server_register_method(resource server, string method_name, string function) |Register a PHP function to resource method matching method_name (PHP 4 >= 4.1.0, PHP 5)
  4155. bool xmlrpc_set_type(string &value, string type) |Sets xmlrpc type, base64 or datetime, for a PHP string value (PHP 4 >= 4.1.0, PHP 5)
  4156. bool xmlwriter_end_attribute(resource xmlwriter) |End attribute - returns FALSE on error (PECL)
  4157. bool xmlwriter_end_cdata(resource xmlwriter) |End current CDATA - returns FALSE on error (PECL)
  4158. bool xmlwriter_end_comment(resource xmlwriter) |Create end comment - returns FALSE on error (PECL)
  4159. bool xmlwriter_end_document(resource xmlwriter) |End current document - returns FALSE on error (PECL)
  4160. bool xmlwriter_end_dtd_attlist(resource xmlwriter) |End current DTD AttList - returns FALSE on error
  4161. bool xmlwriter_end_dtd_element(resource xmlwriter) |End current DTD element - returns FALSE on error (PECL)
  4162. bool xmlwriter_end_dtd_entity(resource xmlwriter) |End current DTD Entity - returns FALSE on error
  4163. bool xmlwriter_end_dtd(resource xmlwriter) |End current DTD - returns FALSE on error (PECL)
  4164. bool xmlwriter_end_element(resource xmlwriter) |End current element - returns FALSE on error (PECL)
  4165. bool xmlwriter_end_pi(resource xmlwriter) |End current PI - returns FALSE on error (PECL)
  4166. mixed xmlwriter_flush(resource xmlwriter [, bool empty]) |Output current buffer (PECL)
  4167. bool xmlwriter_full_end_element(resource xmlwriter) |End current element - returns FALSE on error
  4168. resource xmlwriter_open_memory() |Create new xmlwriter using memory for string output (PECL)
  4169. resource xmlwriter_open_uri(string source) |Create new xmlwriter using source uri for output (PECL)
  4170. string xmlwriter_output_memory(resource xmlwriter [, bool flush]) |Output current buffer as string (PECL)
  4171. bool xmlwriter_set_indent_string(resource xmlwriter, string indentString) |Set string used for indenting - returns FALSE on error (PECL)
  4172. bool xmlwriter_set_indent(resource xmlwriter, bool indent) |Toggle indentation on/off - returns FALSE on error (PECL)
  4173. bool xmlwriter_start_attribute_ns(resource xmlwriter, string prefix, string name, string uri) |Create start namespaced attribute - returns FALSE on error (PECL)
  4174. bool xmlwriter_start_attribute(resource xmlwriter, string name) |Create start attribute - returns FALSE on error (PECL)
  4175. bool xmlwriter_start_cdata(resource xmlwriter) |Create start CDATA tag - returns FALSE on error (PECL)
  4176. bool xmlwriter_start_comment(resource xmlwriter) |Create start comment - returns FALSE on error (PECL)
  4177. bool xmlwriter_start_document(resource xmlwriter [, string version [, string encoding [, string standalone]]]) |Create document tag - returns FALSE on error (PECL)
  4178. bool xmlwriter_start_dtd_attlist(resource xmlwriter, string name) |Create start DTD AttList - returns FALSE on error
  4179. bool xmlwriter_start_dtd_element(resource xmlwriter, string name) |Create start DTD element - returns FALSE on error (PECL)
  4180. bool xmlwriter_start_dtd_entity(resource xmlwriter, string name, bool isparam) |Create start DTD Entity - returns FALSE on error
  4181. bool xmlwriter_start_dtd(resource xmlwriter, string name [, string pubid [, string sysid]]) |Create start DTD tag - returns FALSE on error (PECL)
  4182. bool xmlwriter_start_element_ns(resource xmlwriter, string prefix, string name, string uri) |Create start namespaced element tag - returns FALSE on error (PECL)
  4183. bool xmlwriter_start_element(resource xmlwriter, string name) |Create start element tag - returns FALSE on error (PECL)
  4184. bool xmlwriter_start_pi(resource xmlwriter, string target) |Create start PI tag - returns FALSE on error (PECL)
  4185. bool xmlwriter_text(resource xmlwriter, string content) |Write text - returns FALSE on error (PECL)
  4186. bool xmlwriter_write_attribute_ns(resource xmlwriter, string prefix, string name, string uri, string content) |Write full namespaced attribute - returns FALSE on error
  4187. bool xmlwriter_write_attribute(resource xmlwriter, string name, string content) |Write full attribute - returns FALSE on error (PECL)
  4188. bool xmlwriter_write_cdata(resource xmlwriter, string content) |Write full CDATA tag - returns FALSE on error (PECL)
  4189. bool xmlwriter_write_comment(resource xmlwriter, string content) |Write full comment tag - returns FALSE on error (PECL)
  4190. bool xmlwriter_write_dtd_attlist(resource xmlwriter, string name, string content) |Write full DTD AttList tag - returns FALSE on error
  4191. bool xmlwriter_write_dtd_element(resource xmlwriter, string name, string content) |Write full DTD element tag - returns FALSE on error
  4192. bool xmlwriter_write_dtd_entity(resource xmlwriter, string name, string content) |Write full DTD Entity tag - returns FALSE on error
  4193. bool xmlwriter_write_dtd(resource xmlwriter, string name [, string pubid [, string sysid [, string subset]]]) |Write full DTD tag - returns FALSE on error (PECL)
  4194. bool xmlwriter_write_element_ns(resource xmlwriter, string prefix, string name, string uri, string content) |Write full namesapced element tag - returns FALSE on error (PECL)
  4195. bool xmlwriter_write_element(resource xmlwriter, string name, string content) |Write full element tag - returns FALSE on error (PECL)
  4196. bool xmlwriter_write_pi(resource xmlwriter, string target, string content) |Write full PI tag - returns FALSE on error (PECL)
  4197. bool xmlwriter_write_raw(resource xmlwriter, string content) |Write text - returns FALSE on error
  4198. XPathObject xpath_eval_expression(XPathContext xpath_context, string expression [, domnode contextnode]) |Evaluates the XPath Location Path in the given string (PHP 4 >= 4.0.4, PECL)
  4199. XPathObject xpath_eval(XPathContext xpath_context, string xpath_expression [, domnode contextnode]) |Evaluates the XPath Location Path in the given string (PHP 4 >= 4.0.4, PECL)
  4200. XPathContext xpath_new_context(domdocument dom_document) |Creates new xpath context (PHP 4 >= 4.0.4, PECL)
  4201. bool xpath_register_ns_auto(XPathContext xpath_context [, object context_node]) |Register the given namespace in the passed XPath context (PECL)
  4202. bool xpath_register_ns(XPathContext xpath_context, string prefix, string uri) |Register the given namespace in the passed XPath context (PHP 4 >= 4.2.0, PECL)
  4203. int xptr_eval(XPathContext xpath_context, string eval_str [, domnode contextnode]) |Evaluate the XPtr Location Path in the given string (PHP 4 >= 4.0.4, PECL)
  4204. XPathContext xptr_new_context() |Create new XPath Context (PHP 4 >= 4.0.4, PECL)
  4205. string xslt_backend_info() |Returns the information on the compilation settings of the backend (PHP 4 >= 4.3.0, PECL)
  4206. string xslt_backend_name() |Returns the name of the backend (PHP 4 >= 4.3.0, PECL)
  4207. string xslt_backend_version() |Returns the version number of Sablotron (PHP 4 >= 4.3.0, PECL)
  4208. resource xslt_create() |Create a new XSLT processor (PHP 4 >= 4.0.3, PECL)
  4209. int xslt_errno(resource xh) |Returns an error number (PHP 4 >= 4.0.3, PECL)
  4210. string xslt_error(resource xh) |Returns an error string (PHP 4 >= 4.0.3, PECL)
  4211. void xslt_free(resource xh) |Free XSLT processor (PHP 4 >= 4.0.3, PECL)
  4212. int xslt_getopt(resource processor) |Get options on a given xsl processor (PHP 4 >= 4.3.0, PECL)
  4213. mixed xslt_process(resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]]) |Perform an XSLT transformation (PHP 4 >= 4.0.3, PECL)
  4214. void xslt_set_base(resource xh, string uri) |Set the base URI for all XSLT transformations (PHP 4 >= 4.0.5, PECL)
  4215. void xslt_set_encoding(resource xh, string encoding) |Set the encoding for the parsing of XML documents (PHP 4 >= 4.0.5, PECL)
  4216. void xslt_set_error_handler(resource xh, mixed handler) |Set an error handler for a XSLT processor (PHP 4 >= 4.0.4, PECL)
  4217. void xslt_set_log(resource xh [, mixed log]) |Set the log file to write log messages to (PHP 4 >= 4.0.6, PECL)
  4218. bool xslt_set_object(resource processor, object &obj) |Sets the object in which to resolve callback functions (PHP 4 >= 4.3.0, PECL)
  4219. void xslt_set_sax_handler(resource xh, array handlers) |Set SAX handlers for a XSLT processor (4.0.3 - 4.0.6 only)
  4220. void xslt_set_sax_handlers(resource processor, array handlers) |Set the SAX handlers to be called when the XML document gets processed (PHP 4 >= 4.0.6, PECL)
  4221. void xslt_set_scheme_handler(resource xh, array handlers) |Set Scheme handlers for a XSLT processor (4.0.5 - 4.0.6 only)
  4222. void xslt_set_scheme_handlers(resource processor, array handlers) |Set the scheme handlers for the XSLT processor (PHP 4 >= 4.0.6, PECL)
  4223. mixed xslt_setopt(resource processor, int newmask) |Set options on a given xsl processor (PHP 4 >= 4.3.0, PECL)
  4224. string yaz_addinfo(resource id) |Returns additional error information (PHP 4 >= 4.0.1, PECL)
  4225. void yaz_ccl_conf(resource id, array config) |Configure CCL parser (PHP 4 >= 4.0.5, PECL)
  4226. bool yaz_ccl_parse(resource id, string query, array &result) |Invoke CCL Parser (PHP 4 >= 4.0.5, PECL)
  4227. bool yaz_close(resource id) |Close YAZ connection (PHP 4 >= 4.0.1, PECL)
  4228. mixed yaz_connect(string zurl [, mixed options]) |Prepares for a connection to a Z39.50 server (PHP 4 >= 4.0.1, PECL)
  4229. bool yaz_database(resource id, string databases) |Specifies the databases within a session (PHP 4 >= 4.0.6, PECL)
  4230. bool yaz_element(resource id, string elementset) |Specifies Element-Set Name for retrieval (PHP 4 >= 4.0.1, PECL)
  4231. int yaz_errno(resource id) |Returns error number (PHP 4 >= 4.0.1, PECL)
  4232. string yaz_error(resource id) |Returns error description (PHP 4 >= 4.0.1, PECL)
  4233. array yaz_es_result(resource id) |Inspects Extended Services Result (PHP 4 >= 4.2.0, PECL)
  4234. string yaz_get_option(resource id, string name) |Returns value of option for connection (PECL)
  4235. int yaz_hits(resource id [, array searchresult]) |Returns number of hits for last search (PHP 4 >= 4.0.1, PECL)
  4236. void yaz_itemorder(resource id, array args) |Prepares for Z39.50 Item Order with an ILL-Request package (PHP 4 >= 4.0.5, PECL)
  4237. bool yaz_present(resource id) |Prepares for retrieval (Z39.50 present) (PHP 4 >= 4.0.5, PECL)
  4238. void yaz_range(resource id, int start, int number) |Specifies a range of records to retrieve (PHP 4 >= 4.0.1, PECL)
  4239. string yaz_record(resource id, int pos, string type) |Returns a record (PHP 4 >= 4.0.1, PECL)
  4240. array yaz_scan_result(resource id [, array &result]) |Returns Scan Response result (PHP 4 >= 4.0.5, PECL)
  4241. void yaz_scan(resource id, string type, string startterm [, array flags]) |Prepares for a scan (PHP 4 >= 4.0.5, PECL)
  4242. void yaz_schema(resource id, string schema) |Specifies schema for retrieval (PHP 4 >= 4.2.0, PECL)
  4243. bool yaz_search(resource id, string type, string query) |Prepares for a search (PHP 4 >= 4.0.1, PECL)
  4244. void yaz_set_option(resource id, string name, string value) |Sets one or more options for connection (PECL)
  4245. void yaz_sort(resource id, string criteria) |Sets sorting criteria (PHP 4 >= 4.1.0, PECL)
  4246. void yaz_syntax(resource id, string syntax) |Specifies the preferred record syntax for retrieval (PHP 4 >= 4.0.1, PECL)
  4247. mixed yaz_wait([array &options]) |Wait for Z39.50 requests to complete (PHP 4 >= 4.0.1, PECL)
  4248. void yp_all(string domain, string map, string callback) |Traverse the map and call a function on each entry (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  4249. array yp_cat(string domain, string map) |Return an array containing the entire map (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  4250. string yp_err_string(int errorcode) |Returns the error string associated with the given error code (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  4251. int yp_errno() |Returns the error code of the previous operation (PHP 4 >= 4.0.6, PHP 5 <= 5.0.4)
  4252. array yp_first(string domain, string map) |Returns the first key-value pair from the named map (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4)
  4253. string yp_get_default_domain() |Fetches the machine's default NIS domain (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4)
  4254. string yp_master(string domain, string map) |Returns the machine name of the master NIS server for a map (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4)
  4255. string yp_match(string domain, string map, string key) |Returns the matched line (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4)
  4256. array yp_next(string domain, string map, string key) |Returns the next key-value pair in the named map (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4)
  4257. int yp_order(string domain, string map) |Returns the order number for a map (PHP 3 >= 3.0.7, PHP 4, PHP 5 <= 5.0.4)
  4258. string zend_logo_guid() |Gets the Zend guid (PHP 4, PHP 5)
  4259. string zend_version() |Gets the version of the current Zend engine (PHP 4, PHP 5)
  4260. void zip_close(resource zip) |Close a ZIP file archive (PHP 4 >= 4.1.0, PECL)
  4261. void zip_entry_close(resource zip_entry) |Close a directory entry (PHP 4 >= 4.1.0, PECL)
  4262. int zip_entry_compressedsize(resource zip_entry) |Retrieve the compressed size of a directory entry (PHP 4 >= 4.1.0, PECL)
  4263. string zip_entry_compressionmethod(resource zip_entry) |Retrieve the compression method of a directory entry (PHP 4 >= 4.1.0, PECL)
  4264. int zip_entry_filesize(resource zip_entry) |Retrieve the actual file size of a directory entry (PHP 4 >= 4.1.0, PECL)
  4265. string zip_entry_name(resource zip_entry) |Retrieve the name of a directory entry (PHP 4 >= 4.1.0, PECL)
  4266. bool zip_entry_open(resource zip, resource zip_entry [, string mode]) |Open a directory entry for reading (PHP 4 >= 4.1.0, PECL)
  4267. string zip_entry_read(resource zip_entry [, int length]) |Read from an open directory entry (PHP 4 >= 4.1.0, PECL)
  4268. resource zip_open(string filename) |Open a ZIP file archive (PHP 4 >= 4.1.0, PECL)
  4269. resource zip_read(resource zip) |Read next entry in a ZIP file archive (PHP 4 >= 4.1.0, PECL)
  4270. string zlib_get_coding_type() |Returns the coding type used for output compression (PHP 4 >= 4.3.2, PHP 5)
  4271.