fix some navigation action labels
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / syntax.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpstandardsyntax>
4 <s f="class_exists" u="bool class_exists(string classname [, bool autoload])">Checks if the class exists</s>
5 <s f="create_function" u="string create_function(string args, string code)">Creates an anonymous function, and returns its name (funny, eh?)</s>
6 <s f="debug_backtrace" u="array debug_backtrace(void)">Return backtrace as array</s>
7 <s f="debug_print_backtrace" u="void debug_print_backtrace(void)"/>
8 <s f="define" u="bool define(string constant_name, mixed value, case_sensitive=true)">Define a new constant</s>
9 <s f="defined" u="bool defined(string constant_name)">Check whether a constant exists</s>
10 <s f="each" u="array each(array arr)">Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element</s>
11 <s f="error_reporting" u="int error_reporting(int new_error_level=null)">Return the current error_reporting level, and if an argument was passed - change to the new level</s>
12 <s f="extension_loaded" u="bool extension_loaded(string extension_name)">Returns true if the named extension is loaded</s>
13 <s f="func_get_arg" u="mixed func_get_arg(int arg_num)">Get the $arg_num'th argument that was passed to the function</s>
14 <s f="func_get_args" u="array func_get_args()">Get an array of the arguments that were passed to the function</s>
15 <s f="func_num_args" u="int func_num_args(void)">Get the number of arguments that were passed to the function</s>
16 <s f="function_exists" u="bool function_exists(string function_name)">Checks if the function exists</s>
17 <s f="get_class" u="string get_class([object object])">Retrieves the class name</s>
18 <s f="get_class_methods" u="array get_class_methods(mixed class)">Returns an array of method names for class or class instance.</s>
19 <s f="get_class_vars" u="array get_class_vars(string class_name)">Returns an array of default properties of the class</s>
20 <s f="get_declared_classes" u="array get_declared_classes()">Returns an array of all declared classes.</s>
21 <s f="get_declared_interfaces" u="array get_declared_interfaces()">Returns an array of all declared interfaces.</s>
22 <s f="get_defined_constants" u="array get_defined_constants(void)">Return an array containing the names and values of all defined constants</s>
23 <s f="get_defined_functions" u="array get_defined_functions(void)">Returns an array of all defined functions</s>
24 <s f="get_defined_vars" u="array get_defined_vars(void)">Returns an associative array of names and values of all currently defined variable names (variables in the current scope)</s>
25 <s f="get_extension_funcs" u="array get_extension_funcs(string extension_name)">Returns an array with the names of functions belonging to the named extension</s>
26 <s f="get_included_files" u="array get_included_files(void)">Returns an array with the file names that were include_once()'d</s>
27 <s f="get_loaded_extensions" u="array get_loaded_extensions(void)">Return an array containing names of loaded extensions</s>
28 <s f="get_object_vars" u="array get_object_vars(object obj)">Returns an array of object properties</s>
29 <s f="get_parent_class" u="string get_parent_class(mixed object)">Retrieves the parent class name for object or class.</s>
30 <s f="get_resource_type" u="string get_resource_type(resource res)">Get the resource type name for a given resource</s>
31 <s f="is_a" u="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</s>
32 <s f="is_subclass_of" u="bool is_subclass_of(object object, string class_name)">Returns true if the object has this class as one of its parents</s>
33 <s f="leak" u="void leak(int num_bytes=3)">Cause an intentional memory leak, for testing/debugging purposes</s>
34 <s f="method_exists" u="bool method_exists(object object, string method)">Checks if the class method exists</s>
35 <s f="restore_error_handler" u="void restore_error_handler(void)">Restores the previously defined error handler function</s>
36 <s f="restore_exception_handler" u="void restore_exception_handler(void)">Restores the previously defined exception handler function</s>
37 <s f="set_error_handler" u="string set_error_handler(string error_handler [, int error_types])">Sets a user-defined error handler function.  Returns the previously defined error handler, or false on error</s>
38 <s f="set_exception_handler" u="string set_exception_handler(callable exception_handler)">Sets a user-defined exception handler function.  Returns the previously defined exception handler, or false on error</s>
39 <s f="strcasecmp" u="int strcasecmp(string str1, string str2)">Binary safe case-insensitive string comparison</s>
40 <s f="strcmp" u="int strcmp(string str1, string str2)">Binary safe string comparison</s>
41 <s f="strlen" u="int strlen(string str)">Get string length</s>
42 <s f="strncasecmp" u="int strncasecmp(string str1, string str2, int len)">Binary safe string comparison</s>
43 <s f="strncmp" u="int strncmp(string str1, string str2, int len)">Binary safe string comparison</s>
44 <s f="trigger_error" u="void trigger_error(string messsage [, int error_type])">Generates a user-level error/warning/notice message</s>
45 <s f="zend_version" u="string zend_version(void)">Get the version of the Zend Engine</s>
46 <s f="bcadd" u="string bcadd(string left_operand, string right_operand [, int scale])">Returns the sum of two arbitrary precision numbers</s>
47 <s f="bccomp" u="int bccomp(string left_operand, string right_operand [, int scale])">Compares two arbitrary precision numbers</s>
48 <s f="bcdiv" u="string bcdiv(string left_operand, string right_operand [, int scale])">Returns the quotient of two arbitrary precision numbers (division)</s>
49 <s f="bcmod" u="string bcmod(string left_operand, string right_operand)">Returns the modulus of the two arbitrary precision operands</s>
50 <s f="bcmul" u="string bcmul(string left_operand, string right_operand [, int scale])">Returns the multiplication of two arbitrary precision numbers</s>
51 <s f="bcpow" u="string bcpow(string x, string y [, int scale])">Returns the value of an arbitrary precision number raised to the power of another</s>
52 <s f="bcpowmod" u="string bcpowmod(string x, string y, string mod [, int scale])">Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous</s>
53 <s f="bcscale" u="bool bcscale(int scale)">Sets default scale parameter for all bc math functions</s>
54 <s f="bcsqrt" u="string bcsqrt(string operand [, int scale])">Returns the square root of an arbitray precision number</s>
55 <s f="bcsub" u="string bcsub(string left_operand, string right_operand [, int scale])">Returns the difference between two arbitrary precision numbers</s>
56 <s f="bzcompress" u="string bzcompress(string source [, int blocksize100k [, int workfactor]])">Compresses a string into BZip2 encoded data</s>
57 <s f="bzdecompress" u="string bzdecompress(string source [, int small])">Decompresses BZip2 compressed data</s>
58 <s f="bzerrno" u="int bzerrno(resource bz)">Returns the error number</s>
59 <s f="bzerror" u="array bzerror(resource bz)">Returns the error number and error string in an associative array</s>
60 <s f="bzerrstr" u="string bzerrstr(resource bz)">Returns the error string</s>
61 <s f="bzopen" u="resource bzopen(string|int file|fp, string mode)">Opens a new BZip2 stream</s>
62 <s f="bzread" u="string bzread(int bz[, int length])">Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified</s>
63 <s f="jdtounix" u="int jdtounix(int jday)">Convert Julian Day to UNIX timestamp</s>
64 <s f="unixtojd" u="int unixtojd([int timestamp])">Convert UNIX timestamp to Julian Day</s>
65 <s f="cal_days_in_month" u="int cal_days_in_month(int calendar, int month, int year)">Returns the number of days in a month for a given year and calendar</s>
66 <s f="cal_from_jd" u="array cal_from_jd(int jd, int calendar)">Converts from Julian Day Count to a supported calendar and return extended information</s>
67 <s f="cal_info" u="array cal_info(int calendar)">Returns information about a particular calendar</s>
68 <s f="cal_to_jd" u="int cal_to_jd(int calendar, int month, int day, int year)">Converts from a supported calendar to Julian Day Count</s>
69 <s f="frenchtojd" u="int frenchtojd(int month, int day, int year)">Converts a french republic calendar date to julian day count</s>
70 <s f="gregoriantojd" u="int gregoriantojd(int month, int day, int year)">Converts a gregorian calendar date to julian day count</s>
71 <s f="jddayofweek" u="mixed jddayofweek(int juliandaycount [, int mode])">Returns name or number of day of week from julian day count</s>
72 <s f="jdmonthname" u="string jdmonthname(int juliandaycount, int mode)">Returns name of month for julian day count</s>
73 <s f="jdtofrench" u="string jdtofrench(int juliandaycount)">Converts a julian day count to a french republic calendar date</s>
74 <s f="jdtogregorian" u="string jdtogregorian(int juliandaycount)">Converts a julian day count to a gregorian calendar date</s>
75 <s f="jdtojewish" u="string jdtojewish(int juliandaycount [, bool hebrew [, int fl]])">Converts a julian day count to a jewish calendar date</s>
76 <s f="jdtojulian" u="string jdtojulian(int juliandaycount)">Convert a julian day count to a julian calendar date</s>
77 <s f="jewishtojd" u="int jewishtojd(int month, int day, int year)">Converts a jewish calendar date to a julian day count</s>
78 <s f="juliantojd" u="int juliantojd(int month, int day, int year)">Converts a julian calendar date to julian day count</s>
79 <s f="easter_date" u="int easter_date([int year])">Return the timestamp of midnight on Easter of a given year (defaults to current year)</s>
80 <s f="easter_days" u="int easter_days([int year, [int method]])">Return the number of days after March 21 that Easter falls on for a given year (defaults to current year)</s>
81 <s f="com_create_guid" u="string com_create_guid()">Generate a globally unique identifier (GUID)</s>
82 <s f="com_event_sink" u="bool com_event_sink(object comobject, object sinkobject [, mixed sinkinterface])">Connect events from a COM object to a PHP object</s>
83 <s f="com_load_typelib" u="bool com_load_typelib(string typelib_name [, int case_insensitive])">Loads a Typelibrary and registers its constants</s>
84 <s f="com_message_pump" u="bool com_message_pump([int timeoutms])">Process COM messages, sleeping for up to timeoutms milliseconds</s>
85 <s f="com_print_typeinfo" u="bool com_print_typeinfo(object comobject | string typelib, string dispinterface, bool wantsink)">Print out a PHP class definition for a dispatchable interface</s>
86 <s f="variant_abs" u="mixed variant_abs(mixed left)">Returns the absolute value of a variant</s>
87 <s f="variant_add" u="mixed variant_add(mixed left, mixed right)">"Adds" two variant values together and returns the result</s>
88 <s f="variant_and" u="mixed variant_and(mixed left, mixed right)">performs a bitwise AND operation between two variants and returns the result</s>
89 <s f="variant_cast" u="object variant_cast(object variant, int type)">Convert a variant into a new variant object of another type</s>
90 <s f="variant_cat" u="mixed variant_cat(mixed left, mixed right)">concatenates two variant values together and returns the result</s>
91 <s f="variant_cmp" u="int variant_cmp(mixed left, mixed right [, int lcid [, int flags]])">Compares two variants</s>
92 <s f="variant_date_from_timestamp" u="object variant_date_from_timestamp(int timestamp)">Returns a variant date representation of a unix timestamp</s>
93 <s f="variant_date_to_timestamp" u="int variant_date_to_timestamp(object variant)">Converts a variant date/time value to unix timestamp</s>
94 <s f="variant_div" u="mixed variant_div(mixed left, mixed right)">Returns the result from dividing two variants</s>
95 <s f="variant_eqv" u="mixed variant_eqv(mixed left, mixed right)">Performs a bitwise equivalence on two variants</s>
96 <s f="variant_fix" u="mixed variant_fix(mixed left)">Returns the ? of a variant</s>
97 <s f="variant_get_type" u="int variant_get_type(object variant)">Returns the VT_XXX type code for a variant</s>
98 <s f="variant_idiv" u="mixed variant_idiv(mixed left, mixed right)">Converts variants to operands and then returns the result from dividing them</s>
99 <s f="variant_imp" u="mixed variant_imp(mixed left, mixed right)">Performs a bitwise implication on two variants</s>
100 <s f="variant_index_get" u="mixed variant_index_get(object variant, mixed index1 [, mixed index2 [, ...]])">Get the value of a multi dimensional array property</s>
101 <s f="variant_int" u="mixed variant_int(mixed left)">Returns the integer portion of a variant</s>
102 <s f="variant_mod" u="mixed variant_mod(mixed left, mixed right)">Divides two variants and returns only the remainder</s>
103 <s f="variant_mul" u="mixed variant_mul(mixed left, mixed right)">multiplies the values of the two variants and returns the result</s>
104 <s f="variant_neg" u="mixed variant_neg(mixed left)">Performs logical negation on a variant</s>
105 <s f="variant_not" u="mixed variant_not(mixed left)">Performs bitwise not negation on a variant</s>
106 <s f="variant_or" u="mixed variant_or(mixed left, mixed right)">Performs a logical disjunction on two variants</s>
107 <s f="variant_pow" u="mixed variant_pow(mixed left, mixed right)">Returns the result of performing the power function with two variants</s>
108 <s f="variant_round" u="mixed variant_round(mixed left, int decimals)">Rounds a variant to the specified number of decimal places</s>
109 <s f="variant_set" u="void variant_set(object variant, mixed value)">Assigns a new value for a variant object (like "set" in VB)</s>
110 <s f="variant_set_type" u="void variant_set_type(object variant, int type)">Convert a variant into another type.  Variant is modified "in-place"</s>
111 <s f="variant_sub" u="mixed variant_sub(mixed left, mixed right)">subjects the value of the right variant from the left variant value and returns the result</s>
112 <s f="variant_xor" u="mixed variant_xor(mixed left, mixed right)">Performs a logical exclusion on two variants</s>
113 <s f="cpdf_add_annotation" u="bool cpdf_add_annotation(int pdfdoc, float xll, float yll, float xur, float xur, string title, string text [, int mode])">Sets annotation</s>
114 <s f="cpdf_add_outline" u="int cpdf_add_outline(int pdfdoc, int lastoutline, int sublevel, int open, int pagenr, string title)">Adds outline</s>
115 <s f="cpdf_arc" u="bool cpdf_arc(int pdfdoc, float x, float y, float radius, float start, float end [, int mode])">Draws an arc</s>
116 <s f="cpdf_begin_text" u="bool cpdf_begin_text(int pdfdoc)">Starts text section</s>
117 <s f="cpdf_circle" u="bool cpdf_circle(int pdfdoc, float x, float y, float radius [, int mode])">Draws a circle</s>
118 <s f="cpdf_clip" u="bool cpdf_clip(int pdfdoc)">Clips to current path</s>
119 <s f="cpdf_close" u="bool cpdf_close(int pdfdoc)">Closes the pdf document</s>
120 <s f="cpdf_closepath" u="bool cpdf_closepath(int pdfdoc)">Close path</s>
121 <s f="cpdf_closepath_fill_stroke" u="bool cpdf_closepath_fill_stroke(int pdfdoc)">Close, fill and stroke current path</s>
122 <s f="cpdf_closepath_stroke" u="bool cpdf_closepath_stroke(int pdfdoc)">Close path and draw line along path</s>
123 <s f="cpdf_continue_text" u="bool cpdf_continue_text(int pdfdoc, string text)">Outputs text in next line</s>
124 <s f="cpdf_curveto" u="bool cpdf_curveto(int pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode])">Draws a curve</s>
125 <s f="cpdf_end_text" u="bool cpdf_end_text(int pdfdoc)">Ends text section</s>
126 <s f="cpdf_fill" u="bool cpdf_fill(int pdfdoc)">Fills current path</s>
127 <s f="cpdf_fill_stroke" u="bool cpdf_fill_stroke(int pdfdoc)">Fills and stroke current path</s>
128 <s f="cpdf_finalize" u="bool cpdf_finalize(int pdfdoc)">Creates PDF doc in memory</s>
129 <s f="cpdf_finalize_page" u="bool cpdf_finalize_page(int pdfdoc, int pagenr)">Ends the page to save memory</s>
130 <s f="cpdf_global_set_document_limits" u="bool cpdf_global_set_document_limits(int maxPages, int maxFonts, int maxImages, int maxAnnots, int maxObjects)">Sets document settings for all documents</s>
131 <s f="cpdf_import_jpeg" u="bool cpdf_import_jpeg(int pdfdoc, string filename, float x, float y, float angle, float width, float height, float x_scale, float y_scale, int gsave [, int mode])">Includes JPEG image</s>
132 <s f="cpdf_lineto" u="bool cpdf_lineto(int pdfdoc, float x, float y [, int mode])">Draws a line</s>
133 <s f="cpdf_moveto" u="bool cpdf_moveto(int pdfdoc, float x, float y [, int mode])">Sets current point</s>
134 <s f="cpdf_newpath" u="bool cpdf_newpath(int pdfdoc)">Starts new path</s>
135 <s f="cpdf_open" u="int cpdf_open(int compression [, string filename [, array doc_limits]])">Opens a new pdf document</s>
136 <s f="cpdf_output_buffer" u="bool cpdf_output_buffer(int pdfdoc)">Returns the internal memory stream as string</s>
137 <s f="cpdf_page_init" u="bool cpdf_page_init(int pdfdoc, int pagenr, int orientation, int height, int width [, float unit])">Starts page</s>
138 <s f="cpdf_place_inline_image" u="bool cpdf_place_inline_image(int pdfdoc, int gdimage, float x, float y, float angle, fload width, float height, int gsave [, int mode])">Includes image</s>
139 <s f="cpdf_rect" u="bool cpdf_rect(int pdfdoc, float x, float y, float width, float height [, int mode])">Draws a rectangle</s>
140 <s f="cpdf_restore" u="bool cpdf_restore(int pdfdoc)">Restores formerly saved enviroment</s>
141 <s f="cpdf_rlineto" u="bool cpdf_rlineto(int pdfdoc, float x, float y [, int mode])">Draws a line relative to current point</s>
142 <s f="cpdf_rmoveto" u="bool cpdf_rmoveto(int pdfdoc, float x, float y [, int mode])">Sets current point</s>
143 <s f="cpdf_rotate" u="bool cpdf_rotate(int pdfdoc, float angle)">Sets rotation</s>
144 <s f="cpdf_rotate_text" u="bool cpdf_rotate_text(int pdfdoc, float angle)">Sets text rotation angle</s>
145 <s f="cpdf_save" u="bool cpdf_save(int pdfdoc)">Saves current enviroment</s>
146 <s f="cpdf_save_to_file" u="bool cpdf_save_to_file(int pdfdoc, string filename)">Saves the internal memory stream to a file</s>
147 <s f="cpdf_scale" u="bool cpdf_scale(int pdfdoc, float x_scale, float y_scale)">Sets scaling</s>
148 <s f="cpdf_set_action_url" u="bool cpdf_set_action_url(int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode])">Sets hyperlink</s>
149 <s f="cpdf_set_char_spacing" u="bool cpdf_set_char_spacing(int pdfdoc, float space)">Sets character spacing</s>
150 <s f="cpdf_set_creator" u="bool cpdf_set_creator(int pdfdoc, string creator)">Sets the creator field</s>
151 <s f="cpdf_set_current_page" u="bool cpdf_set_current_page(int pdfdoc, int pagenr)">Sets page for output</s>
152 <s f="cpdf_set_font" u="bool cpdf_set_font(int pdfdoc, string font, float size, string encoding)">Selects the current font face, size and encoding</s>
153 <s f="cpdf_set_font_directories" u="bool cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir)">Sets directories to search when using external fonts</s>
154 <s f="cpdf_set_font_map_file" u="bool cpdf_set_font_map_file(int pdfdoc, string filename)">Sets fontname to filename translation map when using external fonts</s>
155 <s f="cpdf_set_horiz_scaling" u="bool cpdf_set_horiz_scaling(int pdfdoc, float scale)">Sets horizontal scaling of text</s>
156 <s f="cpdf_set_keywords" u="bool cpdf_set_keywords(int pdfptr, string keywords)">Fills the keywords field of the info structure</s>
157 <s f="cpdf_set_leading" u="bool cpdf_set_leading(int pdfdoc, float distance)">Sets distance between text lines</s>
158 <s f="cpdf_set_page_animation" u="bool cpdf_set_page_animation(int pdfdoc, int transition, float duration, float direction, int orientation, int inout)">Sets transition between pages</s>
159 <s f="cpdf_set_subject" u="bool cpdf_set_subject(int pdfptr, string subject)">Fills the subject field of the info structure</s>
160 <s f="cpdf_set_text_matrix" u="bool cpdf_set_text_matrix(int pdfdoc, arry matrix)">Sets the text matrix</s>
161 <s f="cpdf_set_text_pos" u="bool cpdf_set_text_pos(int pdfdoc, float x, float y [, int mode])">Sets the position of text for the next cpdf_show call</s>
162 <s f="cpdf_set_text_rendering" u="bool cpdf_set_text_rendering(int pdfdoc, int rendermode)">Determines how text is rendered</s>
163 <s f="cpdf_set_text_rise" u="bool cpdf_set_text_rise(int pdfdoc, float value)">Sets the text rise</s>
164 <s f="cpdf_set_title" u="bool cpdf_set_title(int pdfptr, string title)">Fills the title field of the info structure</s>
165 <s f="cpdf_set_viewer_preferences" u="bool cpdf_set_viewer_preferences(int pdfdoc, array preferences)">How to show the document in the viewer</s>
166 <s f="cpdf_set_word_spacing" u="bool cpdf_set_word_spacing(int pdfdoc, float space)">Sets spacing between words</s>
167 <s f="cpdf_setdash" u="bool cpdf_setdash(int pdfdoc, long white, long black)">Sets dash pattern</s>
168 <s f="cpdf_setflat" u="bool cpdf_setflat(int pdfdoc, float value)">Sets flatness</s>
169 <s f="cpdf_setgray" u="bool cpdf_setgray(int pdfdoc, float value)">Sets drawing and filling color to gray value</s>
170 <s f="cpdf_setgray_fill" u="bool cpdf_setgray_fill(int pdfdoc, float value)">Sets filling color to gray value</s>
171 <s f="cpdf_setgray_stroke" u="bool cpdf_setgray_stroke(int pdfdoc, float value)">Sets drawing color to gray value</s>
172 <s f="cpdf_setlinecap" u="bool cpdf_setlinecap(int pdfdoc, int value)">Sets linecap parameter</s>
173 <s f="cpdf_setlinejoin" u="bool cpdf_setlinejoin(int pdfdoc, int value)">Sets linejoin parameter</s>
174 <s f="cpdf_setlinewidth" u="bool cpdf_setlinewidth(int pdfdoc, float width)">Sets line width</s>
175 <s f="cpdf_setmiterlimit" u="bool cpdf_setmiterlimit(int pdfdoc, float value)">Sets miter limit</s>
176 <s f="cpdf_setrgbcolor" u="bool cpdf_setrgbcolor(int pdfdoc, float red, float green, float blue)">Sets drawing and filling color to RGB color value</s>
177 <s f="cpdf_setrgbcolor_fill" u="bool cpdf_setrgbcolor_fill(int pdfdoc, float red, float green, float blue)">Sets filling color to rgb color value</s>
178 <s f="cpdf_setrgbcolor_stroke" u="bool cpdf_setrgbcolor_stroke(int pdfdoc, float red, float green, float blue)">Sets drawing color to RGB color value</s>
179 <s f="cpdf_show" u="bool cpdf_show(int pdfdoc, string text)">Output text at current position</s>
180 <s f="cpdf_show_xy" u="bool cpdf_show_xy(int pdfdoc, string text, float x-koor, float y-koor [, int mode])">Output text at position</s>
181 <s f="cpdf_stringwidth" u="float cpdf_stringwidth(int pdfdoc, string text)">Returns width of text in current font</s>
182 <s f="cpdf_stroke" u="bool cpdf_stroke(int pdfdoc)">Draws line along path path</s>
183 <s f="cpdf_text" u="bool cpdf_text(int pdfdoc, string text [, float x-koor, float y-koor [, int mode [, float orientation [, int alignmode]]]])">Outputs text</s>
184 <s f="cpdf_translate" u="bool cpdf_translate(int pdfdoc, float x, float y)">Sets origin of coordinate system</s>
185 <s f="ctype_alnum" u="bool ctype_alnum(mixed c)">Checks for alphanumeric character(s)</s>
186 <s f="ctype_alpha" u="bool ctype_alpha(mixed c)">Checks for alphabetic character(s)</s>
187 <s f="ctype_cntrl" u="bool ctype_cntrl(mixed c)">Checks for control character(s)</s>
188 <s f="ctype_digit" u="bool ctype_digit(mixed c)">Checks for numeric character(s)</s>
189 <s f="ctype_graph" u="bool ctype_graph(mixed c)">Checks for any printable character(s) except space</s>
190 <s f="ctype_lower" u="bool ctype_lower(mixed c)">Checks for lowercase character(s)</s>
191 <s f="ctype_print" u="bool ctype_print(mixed c)">Checks for printable character(s)</s>
192 <s f="ctype_punct" u="bool ctype_punct(mixed c)">Checks for any printable character which is not whitespace or an alphanumeric character</s>
193 <s f="ctype_space" u="bool ctype_space(mixed c)">Checks for whitespace character(s)</s>
194 <s f="ctype_upper" u="bool ctype_upper(mixed c)">Checks for uppercase character(s)</s>
195 <s f="ctype_xdigit" u="bool ctype_xdigit(mixed c)">Checks for character(s) representing a hexadecimal digit</s>
196 <s f="curl_close" u="void curl_close(resource ch)">Close a CURL session</s>
197 <s f="curl_copy_handle" u="resource curl_copy_handle(resource ch)">Copy a cURL handle along with all of it's preferences</s>
198 <s f="curl_errno" u="int curl_errno(resource ch)">Return an integer containing the last error number</s>
199 <s f="curl_error" u="string curl_error(resource ch)">Return a string contain the last error for the current session</s>
200 <s f="curl_exec" u="bool curl_exec(resource ch)">Perform a CURL session</s>
201 <s f="curl_getinfo" u="mixed curl_getinfo(resource ch, int opt)">Get information regarding a specific transfer</s>
202 <s f="curl_init" u="resource curl_init([string url])">Initialize a CURL session</s>
203 <s f="curl_setopt" u="bool curl_setopt(resource ch, string option, mixed value)">Set an option for a CURL transfer</s>
204 <s f="curl_version" u="array curl_version([int version])">Return cURL version information.</s>
205 <s f="curl_multi_add_handle" u="int curl_multi_add_handle(resource multi, resource ch)">Add a normal cURL handle to a cURL multi handle</s>
206 <s f="curl_multi_close" u="void curl_multi_close(resource mh)">Close a set of cURL handles</s>
207 <s f="curl_multi_exec" u="int curl_multi_exec(resource mh, int &amp;still_running)">Run the sub-connections of the current cURL handle</s>
208 <s f="curl_multi_getcontent" u="string curl_multi_getcontent(resource ch)">Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set</s>
209 <s f="curl_multi_info_read" u="array curl_multi_info_read(resource mh)">Get information about the current transfers</s>
210 <s f="curl_multi_init" u="resource curl_multi_init(void)">Returns a new cURL multi handle</s>
211 <s f="curl_multi_remove_handle" u="int curl_multi_remove_handle(resource mh, resource ch)">Remove a multi handle from a set of cURL handles</s>
212 <s f="curl_multi_select" u="int curl_multi_select(resource mh[, double timeout])">Get all the sockets associated with the cURL extension, which can then be "selected"</s>
213 <s f="dba_close" u="void dba_close(resource handle)">Closes database</s>
214 <s f="dba_delete" u="bool dba_delete(string key, resource handle)">Deletes the entry associated with key     If inifile: remove all other key lines</s>
215 <s f="dba_exists" u="bool dba_exists(string key, resource handle)">Checks, if the specified key exists</s>
216 <s f="dba_fetch" u="string dba_fetch(string key, [int skip ,] resource handle)">Fetches the data associated with key</s>
217 <s f="dba_firstkey" u="string dba_firstkey(resource handle)">Resets the internal key pointer and returns the first key</s>
218 <s f="dba_handlers" u="array dba_handlers([bool full_info])">List configured database handlers</s>
219 <s f="dba_insert" u="bool dba_insert(string key, string value, resource handle)">If not inifile: Insert value as key, return false, if key exists already      If inifile: Add vakue as key (next instance of key)</s>
220 <s f="dba_list" u="array dba_list()">List opened databases</s>
221 <s f="dba_nextkey" u="string dba_nextkey(resource handle)">Returns the next key</s>
222 <s f="dba_open" u="resource dba_open(string path, string mode [, string handlername, string ...])">Opens path using the specified handler in mode</s>
223 <s f="dba_optimize" u="bool dba_optimize(resource handle)">Optimizes (e.g. clean up, vacuum) database</s>
224 <s f="dba_popen" u="resource dba_popen(string path, string mode [, string handlername, string ...])">Opens path using the specified handler in mode persistently</s>
225 <s f="dba_replace" u="bool dba_replace(string key, string value, resource handle)">Inserts value as key, replaces key, if key exists already     If inifile: remove all other key lines</s>
226 <s f="dba_sync" u="bool dba_sync(resource handle)">Synchronizes database</s>
227 <s f="dbase_add_record" u="bool dbase_add_record(int identifier, array data)">Adds a record to the database</s>
228 <s f="dbase_close" u="bool dbase_close(int identifier)">Closes an open dBase-format database file</s>
229 <s f="dbase_create" u="bool dbase_create(string filename, array fields)">Creates a new dBase-format database file</s>
230 <s f="dbase_delete_record" u="bool dbase_delete_record(int identifier, int record)">Marks a record to be deleted</s>
231 <s f="dbase_get_header_info" u="array dbase_get_header_info(int database_handle)"/>
232 <s f="dbase_get_record" u="array dbase_get_record(int identifier, int record)">Returns an array representing a record from the database</s>
233 <s f="dbase_get_record_with_names" u="array dbase_get_record_with_names(int identifier, int record)">Returns an associative array representing a record from the database</s>
234 <s f="dbase_numfields" u="int dbase_numfields(int identifier)">Returns the number of fields (columns) in the database</s>
235 <s f="dbase_numrecords" u="int dbase_numrecords(int identifier)">Returns the number of records in the database</s>
236 <s f="dbase_open" u="int dbase_open(string name, int mode)">Opens a dBase-format database file</s>
237 <s f="dbase_pack" u="bool dbase_pack(int identifier)">Packs the database (deletes records marked for deletion)</s>
238 <s f="dbase_replace_record" u="bool dbase_replace_record(int identifier, array data, int recnum)">Replaces a record to the database</s>
239 <s f="dbx_close" u="int dbx_close(dbx_link_object dbx_link)">Returns success or failure</s>
240 <s f="dbx_compare" u="int dbx_compare(array row_x, array row_y, string columnname [, int flags])">Returns row_y[columnname] - row_x[columnname], converted to -1, 0 or 1</s>
241 <s f="dbx_connect" u="dbx_link_object dbx_connect(string module_name, string host, string db, string username, string password [, bool persistent])">Returns a dbx_link_object on success and returns 0 on failure</s>
242 <s f="dbx_error" u="string dbx_error(dbx_link_object dbx_link)">Returns success or failure</s>
243 <s f="dbx_escape_string" u="string dbx_escape_string(dbx_link_object dbx_link, string sz)">Returns escaped string or NULL on error</s>
244 <s f="dbx_fetch_row" u="dbx_row dbx_fetch_row(dbx_query_object dbx_q)">Returns a row (index and assoc based on query) on success and returns 0 on failure or no more rows</s>
245 <s f="dbx_query" u="dbx_result_object dbx_query(dbx_link_object dbx_link, string sql_statement [, int flags])">Returns a dbx_link_object on success and returns 0 on failure</s>
246 <s f="dbx_sort" u="int dbx_sort(object dbx_result, string compare_function_name)">Returns 0 on failure, 1 on success</s>
247 <s f="dio_close" u="void dio_close(resource fd)">Close the file descriptor given by fd</s>
248 <s f="dio_fcntl" u="mixed dio_fcntl(resource fd, int cmd[, mixed arg])">Perform a c library fcntl on fd</s>
249 <s f="dio_open" u="resource dio_open(string filename, int flags[, int mode])">Open a new filename with specified permissions of flags and creation permissions of mode</s>
250 <s f="dio_read" u="string dio_read(resource fd[, int n])">Read n bytes from fd and return them, if n is not specified, read 1k</s>
251 <s f="dio_seek" u="int dio_seek(resource fd, int pos, int whence)">Seek to pos on fd from whence</s>
252 <s f="dio_stat" u="array dio_stat(resource fd)">Get stat information about the file descriptor fd</s>
253 <s f="dio_tcsetattr" u="mixed dio_tcsetattr(resource fd,  array args )">Perform a c library tcsetattr on fd</s>
254 <s f="dio_truncate" u="bool dio_truncate(resource fd, int offset)">Truncate file descriptor fd to offset bytes</s>
255 <s f="dio_write" u="int dio_write(resource fd, string data[, int len])">Write data to fd with optional truncation at length</s>
256 <s f="dom_document_xinclude" u="int dom_document_xinclude()">Substitutues xincludes in a DomDocument</s>
257 <s f="dom_import_simplexml" u="somNode dom_import_simplexml(sxeobject node)">Get a simplexml_element object from dom to allow for processing</s>
258 <s f="exif_imagetype" u="int exif_imagetype(string imagefile)">Get the type of an image</s>
259 <s f="exif_read_data" u="array exif_read_data(string filename [, sections_needed [, sub_arrays[, read_thumbnail]]])">Reads header data from the JPEG/TIFF image filename and optionally reads the internal thumbnails</s>
260 <s f="exif_tagname" u="string exif_tagname(index)">Get headername for index or false if not defined</s>
261 <s f="exif_thumbnail" u="string exif_thumbnail(string filename [, &amp;width, &amp;height [, &amp;imagetype]])">Reads the embedded thumbnail</s>
262 <s f="fam_cancel_monitor" u="bool fam_cancel_monitor(resource id, resource monitor_id)">Terminate monitoring</s>
263 <s f="fam_close" u="void fam_close(resource id)">Close FAM connection</s>
264 <s f="fam_monitor_collection" u="resource fam_monitor_collection(resource id, string dirname, int depth, string mask)">Monitor a collection of files in a directory for changes</s>
265 <s f="fam_monitor_directory" u="resource fam_monitor_directory(resource id, string dirname)">Monitor a directory for changes</s>
266 <s f="fam_monitor_file" u="resource fam_monitor_file(resource id, string filename)">Monitor a regular file for changes</s>
267 <s f="fam_next_event" u="array fam_next_event(resource id)">Get next pending FAM event</s>
268 <s f="fam_open" u="resource fam_open([string appname])">Open FAM connection</s>
269 <s f="fam_pending" u="int fam_pending(resource id)">Check for pending FAM events</s>
270 <s f="fam_resume_monitor" u="bool fam_resume_monitor(resource id, resource monitor_id)">Resume suspended monitoring</s>
271 <s f="fam_suspend_monitor" u="bool fam_suspend_monitor(resource id, resource monitor_id)">Temporary suspend monitoring</s>
272 <s f="fbsql_affected_rows" u="int fbsql_affected_rows([resource link_identifier])">Get the number of rows affected by the last statement</s>
273 <s f="fbsql_autocommit" u="bool fbsql_autocommit(resource link_identifier [, bool OnOff])">Turns on auto-commit</s>
274 <s f="fbsql_blob_size" u="int fbsql_blob_size(string blob_handle [, resource link_identifier])">Get the size of a BLOB identified by blob_handle</s>
275 <s f="fbsql_change_user" u="int fbsql_change_user(string user, string password [, string database [, resource link_identifier]])">Change the user for a session</s>
276 <s f="fbsql_clob_size" u="int fbsql_clob_size(string clob_handle [, resource link_identifier])">Get the size of a CLOB identified by clob_handle</s>
277 <s f="fbsql_close" u="bool fbsql_close([resource link_identifier])">Close a connection to a database server</s>
278 <s f="fbsql_commit" u="bool fbsql_commit([resource link_identifier])">Commit the transaction</s>
279 <s f="fbsql_connect" u="resource fbsql_connect([string hostname [, string username [, string password]]])">Create a connection to a database server</s>
280 <s f="fbsql_create_blob" u="string fbsql_create_blob(string blob_data [, resource link_identifier])">Create a BLOB in the database for use with an insert or update statement</s>
281 <s f="fbsql_create_clob" u="string fbsql_create_clob(string clob_data [, resource link_identifier])">Create a CLOB in the database for use with an insert or update statement</s>
282 <s f="fbsql_create_db" u="bool fbsql_create_db(string database_name [, resource link_identifier])">Create a new database on the server</s>
283 <s f="fbsql_data_seek" u="bool fbsql_data_seek(int result, int row_number)">Move the internal row counter to the specified row_number</s>
284 <s f="fbsql_database" u="string fbsql_database(resource link_identifier [, string database])">Get or set the database name used with a connection</s>
285 <s f="fbsql_database_password" u="string fbsql_database_password(resource link_identifier [, string database_password])">Get or set the databsae password used with a connection</s>
286 <s f="fbsql_db_query" u="resource fbsql_db_query(string database_name, string query [, resource link_identifier])">Send one or more SQL statements to a specified database on the server</s>
287 <s f="fbsql_db_status" u="int fbsql_db_status(string database_name [, resource link_identifier])">Gets the status (Stopped, Starting, Running, Stopping) for a given database</s>
288 <s f="fbsql_drop_db" u="int fbsql_drop_db(string database_name [, resource link_identifier])">Drop a database on the server</s>
289 <s f="fbsql_errno" u="int fbsql_errno([resource link_identifier])">Returns the last error code</s>
290 <s f="fbsql_error" u="string fbsql_error([resource link_identifier])">Returns the last error string</s>
291 <s f="fbsql_fetch_array" u="array fbsql_fetch_array(resource result [, int result_type])">Fetches a result row as an array (associative, numeric or both)</s>
292 <s f="fbsql_fetch_assoc" u="object fbsql_fetch_assoc(resource result)">Detch a row of data. Returns an assoc array</s>
293 <s f="fbsql_fetch_field" u="object fbsql_fetch_field(int result [, int field_index])">Get the field properties for a specified field_index</s>
294 <s f="fbsql_fetch_lengths" u="array fbsql_fetch_lengths(int result)">Returns an array of the lengths of each column in the result set</s>
295 <s f="fbsql_fetch_object" u="object fbsql_fetch_object(resource result [, int result_type])">Fetch a row of data. Returns an object</s>
296 <s f="fbsql_fetch_row" u="array fbsql_fetch_row(resource result)">Fetch a row of data. Returns an indexed array</s>
297 <s f="fbsql_field_flags" u="string fbsql_field_flags(int result [, int field_index])">???</s>
298 <s f="fbsql_field_len" u="mixed fbsql_field_len(int result [, int field_index])">Get the column length for a specified field_index</s>
299 <s f="fbsql_field_name" u="string fbsql_field_name(int result [, int field_index])">Get the column name for a specified field_index</s>
300 <s f="fbsql_field_seek" u="bool fbsql_field_seek(int result [, int field_index])">???</s>
301 <s f="fbsql_field_table" u="string fbsql_field_table(int result [, int field_index])">Get the table name for a specified field_index</s>
302 <s f="fbsql_field_type" u="string fbsql_field_type(int result [, int field_index])">Get the field type for a specified field_index</s>
303 <s f="fbsql_free_result" u="bool fbsql_free_result(resource result)">free the memory used to store a result</s>
304 <s f="fbsql_get_autostart_info" u="array fbsql_get_autostart_info([resource link_identifier])">???</s>
305 <s f="fbsql_hostname" u="string fbsql_hostname(resource link_identifier [, string host_name])">Get or set the host name used with a connection</s>
306 <s f="fbsql_insert_id" u="int fbsql_insert_id([resource link_identifier])">Get the internal index for the last insert statement</s>
307 <s f="fbsql_list_dbs" u="resource fbsql_list_dbs([resource link_identifier])">Retreive a list of all databases on the server</s>
308 <s f="fbsql_list_fields" u="resource fbsql_list_fields(string database_name, string table_name [, resource link_identifier])">Retrieve a list of all fields for the specified database.table</s>
309 <s f="fbsql_list_tables" u="resource fbsql_list_tables(string database [, int link_identifier])">Retreive a list of all tables from the specifoied database</s>
310 <s f="fbsql_next_result" u="bool fbsql_next_result(int result)">Switch to the next result if multiple results are available</s>
311 <s f="fbsql_num_fields" u="int fbsql_num_fields(int result)">Get number of fields in the result set</s>
312 <s f="fbsql_num_rows" u="int fbsql_num_rows(int result)">Get number of rows</s>
313 <s f="fbsql_password" u="string fbsql_password(resource link_identifier [, string password])">Get or set the user password used with a connection</s>
314 <s f="fbsql_pconnect" u="resource fbsql_pconnect([string hostname [, string username [, string password]]])">Create a persistant connection to a database server</s>
315 <s f="fbsql_query" u="resource fbsql_query(string query [, resource link_identifier])">Send one or more SQL statements to the server and execute them</s>
316 <s f="fbsql_read_blob" u="string fbsql_read_blob(string blob_handle [, resource link_identifier])">Read the BLOB data identified by blob_handle</s>
317 <s f="fbsql_read_clob" u="string fbsql_read_clob(string clob_handle [, resource link_identifier])">Read the CLOB data identified by clob_handle</s>
318 <s f="fbsql_result" u="mixed fbsql_result(int result [, int row [, mixed field]])">???</s>
319 <s f="fbsql_rollback" u="bool fbsql_rollback([resource link_identifier])">Rollback all statments since last commit</s>
320 <s f="fbsql_select_db" u="bool fbsql_select_db([string database_name [, resource link_identifier]])">Select the database to open</s>
321 <s f="fbsql_set_lob_mode" u="bool fbsql_set_lob_mode(resource result, int lob_mode)">Sets the mode for how LOB data re retreived (actual data or a handle)</s>
322 <s f="fbsql_set_password" u="bool fbsql_set_password(resource link_identifier, string user, string password, string old_password)">Change the password for a given user</s>
323 <s f="fbsql_set_transaction" u="void fbsql_set_transaction(resource link_identifier, int locking, int isolation)">Sets the transaction locking and isolation</s>
324 <s f="fbsql_start_db" u="bool fbsql_start_db(string database_name [, resource link_identifier])">Start a database on the server</s>
325 <s f="fbsql_stop_db" u="bool fbsql_stop_db(string database_name [, resource link_identifier])">Stop a database on the server</s>
326 <s f="fbsql_table_name" u="string fbsql_table_name(resource result, int index)">Retreive the table name for index after a call to fbsql_list_tables()</s>
327 <s f="fbsql_username" u="string fbsql_username(resource link_identifier [, string username])">Get or set the host user used with a connection</s>
328 <s f="fbsql_warnings" u="bool fbsql_warnings([int flag])">Enable or disable FrontBase warnings</s>
329 <s f="fdf_add_doc_javascript" u="bool fdf_add_doc_javascript(resource fdfdoc, string scriptname, string script)">Add javascript code to the fdf file</s>
330 <s f="fdf_add_template" u="bool fdf_add_template(resource fdfdoc, int newpage, string filename, string template, int rename)">Adds a template into the FDF document</s>
331 <s f="fdf_close" u="void fdf_close(resource fdfdoc)">Closes the FDF document</s>
332 <s f="fdf_create" u="resource fdf_create(void)">Creates a new FDF document</s>
333 <s f="fdf_enum_values" u="bool fdf_enum_values(resource fdfdoc, callback function [, mixed userdata])">Call a user defined function for each document value</s>
334 <s f="fdf_errno" u="int fdf_errno(void)">Gets error code for last operation</s>
335 <s f="fdf_error" u="string fdf_error([int errno])">Gets error description for error code</s>
336 <s f="fdf_get_ap" u="bool fdf_get_ap(resource fdfdoc, string fieldname, int face, string filename)">Gets the appearance of a field and creates a PDF document out of it.</s>
337 <s f="fdf_get_attachment" u="array fdf_get_attachment(resource fdfdoc, string fieldname, string savepath)">Get attached uploaded file</s>
338 <s f="fdf_get_encoding" u="string fdf_get_encoding(resource fdf)">Gets FDF file encoding scheme</s>
339 <s f="fdf_get_file" u="string fdf_get_file(resource fdfdoc)">Gets the value of /F key</s>
340 <s f="fdf_get_flags" u="int fdf_get_flags(resorce fdfdoc, string fieldname, int whichflags)">Gets the flags of a field</s>
341 <s f="fdf_get_opt" u="mixed fdf_get_opt(resource fdfdof, string fieldname [, int element])">Gets a value from the opt array of a field</s>
342 <s f="fdf_get_status" u="string fdf_get_status(resource fdfdoc)">Gets the value of /Status key</s>
343 <s f="fdf_get_value" u="string fdf_get_value(resource fdfdoc, string fieldname [, int which])">Gets the value of a field as string</s>
344 <s f="fdf_get_version" u="string fdf_get_version([resource fdfdoc])">Gets version number for FDF api or file</s>
345 <s f="fdf_header" u="void fdf_header(void)">Set FDF specific HTTP headers</s>
346 <s f="fdf_next_field_name" u="string fdf_next_field_name(resource fdfdoc [, string fieldname])">Gets the name of the next field name or the first field name</s>
347 <s f="fdf_open" u="resource fdf_open(string filename)">Opens a new FDF document</s>
348 <s f="fdf_open_string" u="resource fdf_open_string(string fdf_data)">Opens a new FDF document from string</s>
349 <s f="fdf_remove_item" u="bool fdf_remove_item(resource fdfdoc, string fieldname, int item)">Sets target frame for form</s>
350 <s f="fdf_save" u="bool fdf_save(resource fdfdoc [, string filename])">Writes out the FDF file</s>
351 <s f="fdf_save_string" u="string fdf_save_string(resource fdfdoc)">Returns the FDF file as a string</s>
352 <s f="fdf_set_ap" u="bool fdf_set_ap(resource fdfdoc, string fieldname, int face, string filename, int pagenr)">Sets the appearence of a field</s>
353 <s f="fdf_set_encoding" u="bool fdf_set_encoding(resource fdf_document, string encoding)">Sets FDF encoding (either "Shift-JIS" or "Unicode")</s>
354 <s f="fdf_set_file" u="bool fdf_set_file(resource fdfdoc, string filename [, string target_frame])">Sets the value of /F key</s>
355 <s f="fdf_set_flags" u="bool fdf_set_flags(resource fdfdoc, string fieldname, int whichflags, int newflags)">Sets flags for a field in the FDF document</s>
356 <s f="fdf_set_javascript_action" u="bool fdf_set_javascript_action(resource fdfdoc, string fieldname, int whichtrigger, string script)">Sets the javascript action for a field</s>
357 <s f="fdf_set_on_import_javascript" u="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</s>
358 <s f="fdf_set_opt" u="bool fdf_set_opt(resource fdfdoc, string fieldname, int element, string value, string name)">Sets a value in the opt array for a field</s>
359 <s f="fdf_set_status" u="bool fdf_set_status(resource fdfdoc, string status)">Sets the value of /Status key</s>
360 <s f="fdf_set_submit_form_action" u="bool fdf_set_submit_form_action(resource fdfdoc, string fieldname, int whichtrigger, string url, int flags)">Sets the submit form action for a field</s>
361 <s f="fdf_set_target_frame" u="bool fdf_set_target_frame(resource fdfdoc, string target)">Sets target frame for form</s>
362 <s f="fdf_set_value" u="bool fdf_set_value(resource fdfdoc, string fieldname, mixed value [, int isname])">Sets the value of a field</s>
363 <s f="fdf_set_version" u="bool fdf_set_version(resourece fdfdoc, string version)">Sets FDF version for a file</s>
364 <s f="filepro" u="bool filepro(string directory)">Read and verify the map file</s>
365 <s f="filepro_fieldcount" u="int filepro_fieldcount(void)">Find out how many fields are in a filePro database</s>
366 <s f="filepro_fieldname" u="string filepro_fieldname(int fieldnumber)">Gets the name of a field</s>
367 <s f="filepro_fieldtype" u="string filepro_fieldtype(int field_number)">Gets the type of a field</s>
368 <s f="filepro_fieldwidth" u="int filepro_fieldwidth(int field_number)">Gets the width of a field</s>
369 <s f="filepro_retrieve" u="string filepro_retrieve(int row_number, int field_number)">Retrieves data from a filePro database</s>
370 <s f="filepro_rowcount" u="int filepro_rowcount(void)">Find out how many rows are in a filePro database</s>
371 <s f="ftp_alloc" u="bool ftp_alloc(resource stream, int size[, &amp;response])">Attempt to allocate space on the remote FTP server</s>
372 <s f="ftp_cdup" u="bool ftp_cdup(resource stream)">Changes to the parent directory</s>
373 <s f="ftp_chdir" u="bool ftp_chdir(resource stream, string directory)">Changes directories</s>
374 <s f="ftp_chmod" u="int ftp_chmod(resource stream, int mode, string filename)">Sets permissions on a file</s>
375 <s f="ftp_close" u="bool ftp_close(resource stream)">Closes the FTP stream</s>
376 <s f="ftp_connect" u="resource ftp_connect(string host [, int port [, int timeout]])">Opens a FTP stream</s>
377 <s f="ftp_delete" u="bool ftp_delete(resource stream, string file)">Deletes a file</s>
378 <s f="ftp_exec" u="bool ftp_exec(resource stream, string command)">Requests execution of a program on the FTP server</s>
379 <s f="ftp_fget" u="bool ftp_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])">Retrieves a file from the FTP server and writes it to an open file</s>
380 <s f="ftp_fput" u="bool ftp_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])">Stores a file from an open file to the FTP server</s>
381 <s f="ftp_get" u="bool ftp_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])">Retrieves a file from the FTP server and writes it to a local file</s>
382 <s f="ftp_get_option" u="mixed ftp_get_option(resource stream, int option)">Gets an FTP option</s>
383 <s f="ftp_login" u="bool ftp_login(resource stream, string username, string password)">Logs into the FTP server</s>
384 <s f="ftp_mdtm" u="int ftp_mdtm(resource stream, string filename)">Returns the last modification time of the file, or -1 on error</s>
385 <s f="ftp_mkdir" u="string ftp_mkdir(resource stream, string directory)">Creates a directory and returns the absolute path for the new directory or false on error</s>
386 <s f="ftp_nb_continue" u="int ftp_nb_continue(resource stream)">Continues retrieving/sending a file nbronously</s>
387 <s f="ftp_nb_fget" u="int ftp_nb_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])">Retrieves a file from the FTP server asynchronly and writes it to an open file</s>
388 <s f="ftp_nb_fput" u="int ftp_nb_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])">Stores a file from an open file to the FTP server nbronly</s>
389 <s f="ftp_nb_get" u="int ftp_nb_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])">Retrieves a file from the FTP server nbhronly and writes it to a local file</s>
390 <s f="ftp_nb_put" u="int ftp_nb_put(resource stream, string remote_file, string local_file, int mode[, int startpos])">Stores a file on the FTP server</s>
391 <s f="ftp_nlist" u="array ftp_nlist(resource stream, string directory)">Returns an array of filenames in the given directory</s>
392 <s f="ftp_pasv" u="bool ftp_pasv(resource stream, bool pasv)">Turns passive mode on or off</s>
393 <s f="ftp_put" u="bool ftp_put(resource stream, string remote_file, string local_file, int mode[, int startpos])">Stores a file on the FTP server</s>
394 <s f="ftp_pwd" u="string ftp_pwd(resource stream)">Returns the present working directory</s>
395 <s f="ftp_raw" u="array ftp_raw(resource stream, string command)">Sends a literal command to the FTP server</s>
396 <s f="ftp_rawlist" u="array ftp_rawlist(resource stream, string directory [, bool recursive])">Returns a detailed listing of a directory as an array of output lines</s>
397 <s f="ftp_rename" u="bool ftp_rename(resource stream, string src, string dest)">Renames the given file to a new path</s>
398 <s f="ftp_rmdir" u="bool ftp_rmdir(resource stream, string directory)">Removes a directory</s>
399 <s f="ftp_set_option" u="bool ftp_set_option(resource stream, int option, mixed value)">Sets an FTP option</s>
400 <s f="ftp_site" u="bool ftp_site(resource stream, string cmd)">Sends a SITE command to the server</s>
401 <s f="ftp_size" u="int ftp_size(resource stream, string filename)">Returns the size of the file, or -1 on error</s>
402 <s f="ftp_ssl_connect" u="resource ftp_ssl_connect(string host [, int port [, int timeout]])">Opens a FTP-SSL stream</s>
403 <s f="ftp_systype" u="string ftp_systype(resource stream)">Returns the system type identifier</s>
404 <s f="gd_info" u="array gd_info()"/>
405 <s f="imagealphablending" u="bool imagealphablending(resource im, bool on)">Turn alpha blending mode on or off for the given image</s>
406 <s f="imageantialias" u="bool imageantialias(resource im, bool on)">Should antialiased functions used or not</s>
407 <s f="imagearc" u="bool imagearc(resource im, int cx, int cy, int w, int h, int s, int e, int col)">Draw a partial ellipse</s>
408 <s f="imagechar" u="bool imagechar(resource im, int font, int x, int y, string c, int col)">Draw a character</s>
409 <s f="imagecharup" u="bool imagecharup(resource im, int font, int x, int y, string c, int col)">Draw a character rotated 90 degrees counter-clockwise</s>
410 <s f="imagecolorallocate" u="int imagecolorallocate(resource im, int red, int green, int blue)">Allocate a color for an image</s>
411 <s f="imagecolorallocatealpha" u="int imagecolorallocatealpha(resource im, int red, int green, int blue, int alpha)">Allocate a color with an alpha level.  Works for true color and palette based images</s>
412 <s f="imagecolorat" u="int imagecolorat(resource im, int x, int y)">Get the index of the color of a pixel</s>
413 <s f="imagecolorclosest" u="int imagecolorclosest(resource im, int red, int green, int blue)">Get the index of the closest color to the specified color</s>
414 <s f="imagecolorclosestalpha" u="int imagecolorclosestalpha(resource im, int red, int green, int blue, int alpha)">Find the closest matching colour with alpha transparency</s>
415 <s f="imagecolorclosesthwb" u="int imagecolorclosesthwb(resource im, int red, int green, int blue)">Get the index of the color which has the hue, white and blackness nearest to the given color</s>
416 <s f="imagecolordeallocate" u="bool imagecolordeallocate(resource im, int index)">De-allocate a color for an image</s>
417 <s f="imagecolorexact" u="int imagecolorexact(resource im, int red, int green, int blue)">Get the index of the specified color</s>
418 <s f="imagecolorexactalpha" u="int imagecolorexactalpha(resource im, int red, int green, int blue, int alpha)">Find exact match for colour with transparency</s>
419 <s f="imagecolormatch" u="bool imagecolormatch(resource im1, resource im2)">Makes the colors of the palette version of an image more closely match the true color version</s>
420 <s f="imagecolorresolve" u="int imagecolorresolve(resource im, int red, int green, int blue)">Get the index of the specified color or its closest possible alternative</s>
421 <s f="imagecolorresolvealpha" u="int imagecolorresolvealpha(resource im, int red, int green, int blue, int alpha)">Resolve/Allocate a colour with an alpha level.  Works for true colour and palette based images</s>
422 <s f="imagecolorset" u="void imagecolorset(resource im, int col, int red, int green, int blue)">Set the color for the specified palette index</s>
423 <s f="imagecolorsforindex" u="array imagecolorsforindex(resource im, int col)">Get the colors for an index</s>
424 <s f="imagecolorstotal" u="int imagecolorstotal(resource im)">Find out the number of colors in an image's palette</s>
425 <s f="imagecolortransparent" u="int imagecolortransparent(resource im [, int col])">Define a color as transparent</s>
426 <s f="imagecopy" u="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</s>
427 <s f="imagecopymerge" u="bool imagecopymerge(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)">Merge one part of an image with another</s>
428 <s f="imagecopymergegray" u="bool imagecopymergegray(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)">Merge one part of an image with another</s>
429 <s f="imagecopyresampled" u="bool imagecopyresampled(resource dst_im, resource src_im, 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 using resampling to help ensure clarity</s>
430 <s f="imagecopyresized" u="bool imagecopyresized(resource dst_im, resource src_im, 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</s>
431 <s f="imagecreate" u="resource imagecreate(int x_size, int y_size)">Create a new image</s>
432 <s f="imagecreatefromgd" u="resource imagecreatefromgd(string filename)">Create a new image from GD file or URL</s>
433 <s f="imagecreatefromgif" u="resource imagecreatefromgif(string filename)">Create a new image from GIF file or URL</s>
434 <s f="imagecreatefromjpeg" u="resource imagecreatefromjpeg(string filename)">Create a new image from JPEG file or URL</s>
435 <s f="imagecreatefrompng" u="resource imagecreatefrompng(string filename)">Create a new image from PNG file or URL</s>
436 <s f="imagecreatefromstring" u="resource imagecreatefromstring(string image)">Create a new image from the image stream in the string</s>
437 <s f="imagecreatefromwbmp" u="resource imagecreatefromwbmp(string filename)">Create a new image from WBMP file or URL</s>
438 <s f="imagecreatefromxbm" u="resource imagecreatefromxbm(string filename)">Create a new image from XBM file or URL</s>
439 <s f="imagecreatefromxpm" u="resource imagecreatefromxpm(string filename)">Create a new image from XPM file or URL</s>
440 <s f="imagecreatetruecolor" u="resource imagecreatetruecolor(int x_size, int y_size)">Create a new true color image</s>
441 <s f="imagedashedline" u="bool imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)">Draw a dashed line</s>
442 <s f="imagedestroy" u="bool imagedestroy(resource im)">Destroy an image</s>
443 <s f="imageellipse" u="bool imageellipse(resource im, int cx, int cy, int w, int h, int color)">Draw an ellipse</s>
444 <s f="imagefill" u="bool imagefill(resource im, int x, int y, int col)">Flood fill</s>
445 <s f="imagefilledarc" u="bool imagefilledarc(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style)">Draw a filled partial ellipse</s>
446 <s f="imagefilledellipse" u="bool imagefilledellipse(resource im, int cx, int cy, int w, int h, int color)">Draw an ellipse</s>
447 <s f="imagefilledpolygon" u="bool imagefilledpolygon(resource im, array point, int num_points, int col)">Draw a filled polygon</s>
448 <s f="imagefilledrectangle" u="bool imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)">Draw a filled rectangle</s>
449 <s f="imagefilltoborder" u="bool imagefilltoborder(resource im, int x, int y, int border, int col)">Flood fill to specific color</s>
450 <s f="imagefilter" u="bool imagefilter(resource src_im, int filtertype, [args] )">Applies Filter an image using a custom angle</s>
451 <s f="imagefontheight" u="int imagefontheight(int font)">Get font height</s>
452 <s f="imagefontwidth" u="int imagefontwidth(int font)">Get font width</s>
453 <s f="imageftbbox" u="array imageftbbox(int size, int angle, string font_file, string text[, array extrainfo])">Give the bounding box of a text using fonts via freetype2</s>
454 <s f="imagefttext" u="array imagefttext(resource im, int size, int angle, int x, int y, int col, string font_file, string text, [array extrainfo])">Write text to the image using fonts via freetype2</s>
455 <s f="imagegammacorrect" u="bool imagegammacorrect(resource im, float inputgamma, float outputgamma)">Apply a gamma correction to a GD image</s>
456 <s f="imagegd" u="bool imagegd(resource im [, string filename])">Output GD image to browser or file</s>
457 <s f="imagegif" u="bool imagegif(resource im [, string filename])">Output GIF image to browser or file</s>
458 <s f="imageinterlace" u="int imageinterlace(resource im [, int interlace])">Enable or disable interlace</s>
459 <s f="imageistruecolor" u="bool imageistruecolor(resource im)">return true if the image uses truecolor</s>
460 <s f="imagejpeg" u="bool imagejpeg(resource im [, string filename [, int quality]])">Output JPEG image to browser or file</s>
461 <s f="imagelayereffect" u="bool imagelayereffect(resource im, int effect)">Set the alpha blending flag to use the bundled libgd layering effects</s>
462 <s f="imageline" u="bool imageline(resource im, int x1, int y1, int x2, int y2, int col)">Draw a line</s>
463 <s f="imageloadfont" u="int imageloadfont(string filename)">Load a new font</s>
464 <s f="imagepalettecopy" u="void imagepalettecopy(resource dst, resource src)">Copy the palette from the src image onto the dst image</s>
465 <s f="imagepng" u="bool imagepng(resource im [, string filename])">Output PNG image to browser or file</s>
466 <s f="imagepolygon" u="bool imagepolygon(resource im, array point, int num_points, int col)">Draw a polygon</s>
467 <s f="imagepsbbox" u="array imagepsbbox(string text, resource font, int size [, int space, int tightness, int angle])">Return the bounding box needed by a string if rasterized</s>
468 <s f="imagepscopyfont" u="int imagepscopyfont(int font_index)">Make a copy of a font for purposes like extending or reenconding</s>
469 <s f="imagepsencodefont" u="bool imagepsencodefont(resource font_index, string filename)">To change a fonts character encoding vector</s>
470 <s f="imagepsextendfont" u="bool imagepsextendfont(resource font_index, float extend)">Extend or or condense (if extend &lt; 1) a font</s>
471 <s f="imagepsfreefont" u="bool imagepsfreefont(resource font_index)">Free memory used by a font</s>
472 <s f="imagepsloadfont" u="resource imagepsloadfont(string pathname)">Load a new font from specified file</s>
473 <s f="imagepsslantfont" u="bool imagepsslantfont(resource font_index, float slant)">Slant a font</s>
474 <s f="imagepstext" u="array imagepstext(resource image, string text, resource font, int size, int xcoord, int ycoord [, int space, int tightness, float angle, int antialias])">Rasterize a string over an image</s>
475 <s f="imagerectangle" u="bool imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)">Draw a rectangle</s>
476 <s f="imagerotate" u="resource imagerotate(resource src_im, float angle, int bgdcolor)">Rotate an image using a custom angle</s>
477 <s f="imagesavealpha" u="bool imagesavealpha(resource im, bool on)">Include alpha channel to a saved image</s>
478 <s f="imagesetbrush" u="bool imagesetbrush(resource image, resource brush)">Set the brush image to $brush when filling $image with the "IMG_COLOR_BRUSHED" color</s>
479 <s f="imagesetpixel" u="bool imagesetpixel(resource im, int x, int y, int col)">Set a single pixel</s>
480 <s f="imagesetstyle" u="bool imagesetstyle(resource im, array styles)">Set the line drawing styles for use with imageline and IMG_COLOR_STYLED.</s>
481 <s f="imagesetthickness" u="bool imagesetthickness(resource im, int thickness)">Set line thickness for drawing lines, ellipses, rectangles, polygons etc.</s>
482 <s f="imagesettile" u="bool imagesettile(resource image, resource tile)">Set the tile image to $tile when filling $image with the "IMG_COLOR_TILED" color</s>
483 <s f="imagestring" u="bool imagestring(resource im, int font, int x, int y, string str, int col)">Draw a string horizontally</s>
484 <s f="imagestringup" u="bool imagestringup(resource im, int font, int x, int y, string str, int col)">Draw a string vertically - rotated 90 degrees counter-clockwise</s>
485 <s f="imagesx" u="int imagesx(resource im)">Get image width</s>
486 <s f="imagesy" u="int imagesy(resource im)">Get image height</s>
487 <s f="imagetruecolortopalette" u="void imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted)">Convert a true colour image to a palette based image with a number of colours, optionally using dithering.</s>
488 <s f="imagettfbbox" u="array imagettfbbox(int size, int angle, string font_file, string text)">Give the bounding box of a text using TrueType fonts</s>
489 <s f="imagettftext" u="array imagettftext(resource im, int size, int angle, int x, int y, int col, string font_file, string text)">Write text to the image using a TrueType font</s>
490 <s f="imagetypes" u="int imagetypes(void)">Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM</s>
491 <s f="imagewbmp" u="bool imagewbmp(resource im [, string filename, [, int foreground]])">Output WBMP image to browser or file</s>
492 <s f="imagexbm" u="int imagexbm(int im, string filename [, int foreground])">Output XBM image to browser or file</s>
493 <s f="bindtextdomain" u="string bindtextdomain(string domain_name, string dir)">Bind to the text domain domain_name, looking for translations in dir. Returns the current domain</s>
494 <s f="dcgettext" u="string dcgettext(string domain_name, string msgid, long category)">Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist</s>
495 <s f="dgettext" u="string dgettext(string domain_name, string msgid)">Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist</s>
496 <s f="gettext" u="string gettext(string msgid)">Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist</s>
497 <s f="ngettext" u="string ngettext(string MSGID1, string MSGID2, int N)">Plural version of gettext()</s>
498 <s f="textdomain" u="string textdomain(string domain)">Set the textdomain to "domain". Returns the current domain</s>
499 <s f="gmp_abs" u="resource gmp_abs(resource a)">Calculates absolute value</s>
500 <s f="gmp_add" u="resource gmp_add(resource a, resource b)">Add a and b</s>
501 <s f="gmp_and" u="resource gmp_and(resource a, resource b)">Calculates logical AND of a and b</s>
502 <s f="gmp_clrbit" u="void gmp_clrbit(resource &amp;a, int index)">Clears bit in a</s>
503 <s f="gmp_cmp" u="int gmp_cmp(resource a, resource b)">Compares two numbers</s>
504 <s f="gmp_com" u="resource gmp_com(resource a)">Calculates one's complement of a</s>
505 <s f="gmp_div_q" u="resource gmp_div_q(resource a, resource b [, int round])">Divide a by b, returns quotient only</s>
506 <s f="gmp_div_qr" u="array gmp_div_qr(resource a, resource b [, int round])">Divide a by b, returns quotient and reminder</s>
507 <s f="gmp_div_r" u="resource gmp_div_r(resource a, resource b [, int round])">Divide a by b, returns reminder only</s>
508 <s f="gmp_divexact" u="resource gmp_divexact(resource a, resource b)">Divide a by b using exact division algorithm</s>
509 <s f="gmp_fact" u="resource gmp_fact(int a)">Calculates factorial function</s>
510 <s f="gmp_gcd" u="resource gmp_gcd(resource a, resource b)">Computes greatest common denominator (gcd) of a and b</s>
511 <s f="gmp_gcdext" u="array gmp_gcdext(resource a, resource b)">Computes G, S, and T, such that AS      BT = G = `gcd' (A, B)</s>
512 <s f="gmp_hamdist" u="int gmp_hamdist(resource a, resource b)">Calculates hamming distance between a and b</s>
513 <s f="gmp_init" u="resource gmp_init(mixed number [, int base])">Initializes GMP number</s>
514 <s f="gmp_intval" u="int gmp_intval(resource gmpnumber)">Gets signed long value of GMP number</s>
515 <s f="gmp_invert" u="resource gmp_invert(resource a, resource b)">Computes the inverse of a modulo b</s>
516 <s f="gmp_jacobi" u="int gmp_jacobi(resource a, resource b)">Computes Jacobi symbol</s>
517 <s f="gmp_legendre" u="int gmp_legendre(resource a, resource b)">Computes Legendre symbol</s>
518 <s f="gmp_mod" u="resource gmp_mod(resource a, resource b)">Computes a modulo b</s>
519 <s f="gmp_mul" u="resource gmp_mul(resource a, resource b)">Multiply a and b</s>
520 <s f="gmp_neg" u="resource gmp_neg(resource a)">Negates a number</s>
521 <s f="gmp_or" u="resource gmp_or(resource a, resource b)">Calculates logical OR of a and b</s>
522 <s f="gmp_perfect_square" u="bool gmp_perfect_square(resource a)">Checks if a is an exact square</s>
523 <s f="gmp_popcount" u="int gmp_popcount(resource a)">Calculates the population count of a</s>
524 <s f="gmp_pow" u="resource gmp_pow(resource base, int exp)">Raise base to power exp</s>
525 <s f="gmp_powm" u="resource gmp_powm(resource base, resource exp, resource mod)">Raise base to power exp and take result modulo mod</s>
526 <s f="gmp_prob_prime" u="int gmp_prob_prime(resource a[, int reps])">Checks if a is "probably prime"</s>
527 <s f="gmp_random" u="resource gmp_random([int limiter])">Gets random number</s>
528 <s f="gmp_setbit" u="void gmp_setbit(resource &amp;a, int index[, bool set_clear])">Sets or clear bit in a</s>
529 <s f="gmp_sign" u="int gmp_sign(resource a)">Gets the sign of the number</s>
530 <s f="gmp_sqrt" u="resource gmp_sqrt(resource a)">Takes integer part of square root of a</s>
531 <s f="gmp_sqrtrem" u="array gmp_sqrtrem(resource a)">Square root with remainder</s>
532 <s f="gmp_strval" u="string gmp_strval(resource gmpnumber [, int base])">Gets string representation of GMP number</s>
533 <s f="gmp_sub" u="resource gmp_sub(resource a, resource b)">Subtract b from a</s>
534 <s f="gmp_xor" u="resource gmp_xor(resource a, resource b)">Calculates logical exclusive OR of a and b</s>
535 <s f="iconv" u="string iconv(string in_charset, string out_charset, string str)">Returns str converted to the out_charset character set</s>
536 <s f="iconv_get_encoding" u="mixed iconv_get_encoding([string type])">Get internal encoding and output encoding for ob_iconv_handler()</s>
537 <s f="iconv_mime_decode" u="string iconv_mime_decode(string encoded_string [, int mode, string charset])">Decodes a mime header field</s>
538 <s f="iconv_mime_decode_headers" u="array iconv_mime_decode_headers(string headers [, int mode, string charset])">Decodes multiple mime header fields</s>
539 <s f="iconv_mime_encode" u="string iconv_mime_encode(string field_name, string field_value, [, array preference])">Composes a mime header field with field_name and field_value in a specified scheme</s>
540 <s f="iconv_set_encoding" u="bool iconv_set_encoding(string type, string charset)">Sets internal encoding and output encoding for ob_iconv_handler()</s>
541 <s f="iconv_strlen" u="int iconv_strlen(string str [, string charset])">Returns the character count of str</s>
542 <s f="iconv_strpos" u="int iconv_strpos(string haystack, string needle, int offset [, string charset])">Finds position of first occurrence of needle within part of haystack beginning with offset</s>
543 <s f="iconv_strrpos" u="int iconv_strrpos(string haystack, string needle [, string charset])">Finds position of last occurrence of needle within part of haystack beginning with offset</s>
544 <s f="iconv_substr" u="string iconv_substr(string str, int offset, [int length, string charset])">Returns specified part of a string</s>
545 <s f="ob_iconv_handler" u="string ob_iconv_handler(string contents, int status)">Returns str in output buffer converted to the iconv.output_encoding character set</s>
546 <s f="imap_alerts" u="array imap_alerts(void)">Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called.</s>
547 <s f="imap_append" u="bool imap_append(resource stream_id, string folder, string message [, string options])">Append a new message to a specified mailbox</s>
548 <s f="imap_binary" u="string imap_binary(string text)">Convert an 8bit string to a base64 string</s>
549 <s f="imap_body" u="string imap_body(resource stream_id, int msg_no [, int options])">Read the message body</s>
550 <s f="imap_bodystruct" u="object imap_bodystruct(resource stream_id, int msg_no, int section)">Read the structure of a specified body section of a specific message</s>
551 <s f="imap_check" u="object imap_check(resource stream_id)">Get mailbox properties</s>
552 <s f="imap_clearflag_full" u="bool imap_clearflag_full(resource stream_id, string sequence, string flag [, int options])">Clears flags on messages</s>
553 <s f="imap_close" u="bool imap_close(resource stream_id [, int options])">Close an IMAP stream</s>
554 <s f="imap_createmailbox" u="bool imap_createmailbox(resource stream_id, string mailbox)">Create a new mailbox</s>
555 <s f="imap_delete" u="bool imap_delete(resource stream_id, int msg_no [, int options])">Mark a message for deletion</s>
556 <s f="imap_deletemailbox" u="bool imap_deletemailbox(resource stream_id, string mailbox)">Delete a mailbox</s>
557 <s f="imap_errors" u="array imap_errors(void)">Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called.</s>
558 <s f="imap_expunge" u="bool imap_expunge(resource stream_id)">Permanently delete all messages marked for deletion</s>
559 <s f="imap_fetch_overview" u="array imap_fetch_overview(resource stream_id, int msg_no [, int options])">Read an overview of the information in the headers of the given message sequence</s>
560 <s f="imap_fetchbody" u="string imap_fetchbody(resource stream_id, int msg_no, int section [, int options])">Get a specific body section</s>
561 <s f="imap_fetchheader" u="string imap_fetchheader(resource stream_id, int msg_no [, int options])">Get the full unfiltered header for a message</s>
562 <s f="imap_fetchstructure" u="object imap_fetchstructure(resource stream_id, int msg_no [, int options])">Read the full structure of a message</s>
563 <s f="imap_get_quota" u="array imap_get_quota(resource stream_id, string qroot)">Returns the quota set to the mailbox account qroot</s>
564 <s f="imap_get_quotaroot" u="array imap_get_quotaroot(resource stream_id, string mbox)">Returns the quota set to the mailbox account mbox</s>
565 <s f="imap_getacl" u="array imap_getacl(resource stream_id, string mailbox)">Gets the ACL for a given mailbox</s>
566 <s f="imap_getmailboxes" u="array imap_getmailboxes(resource stream_id, string ref, string pattern)">Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter</s>
567 <s f="imap_getsubscribed" u="array imap_getsubscribed(resource stream_id, string ref, string pattern)">Return a list of subscribed mailboxes, in the same format as imap_getmailboxes()</s>
568 <s f="imap_headerinfo" u="object imap_headerinfo(resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]])">Read the headers of the message</s>
569 <s f="imap_headers" u="array imap_headers(resource stream_id)">Returns headers for all messages in a mailbox</s>
570 <s f="imap_last_error" u="string imap_last_error(void)">Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call.</s>
571 <s f="imap_list" u="array imap_list(resource stream_id, string ref, string pattern)">Read the list of mailboxes</s>
572 <s f="imap_lsub" u="array imap_lsub(resource stream_id, string ref, string pattern)">Return a list of subscribed mailboxes</s>
573 <s f="imap_mail" u="bool imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])">Send an email message</s>
574 <s f="imap_mail_compose" u="string imap_mail_compose(array envelope, array body)">Create a MIME message based on given envelope and body sections</s>
575 <s f="imap_mail_copy" u="bool imap_mail_copy(resource stream_id, int msg_no, string mailbox [, int options])">Copy specified message to a mailbox</s>
576 <s f="imap_mail_move" u="bool imap_mail_move(resource stream_id, int msg_no, string mailbox [, int options])">Move specified message to a mailbox</s>
577 <s f="imap_mailboxmsginfo" u="object imap_mailboxmsginfo(resource stream_id)">Returns info about the current mailbox</s>
578 <s f="imap_mime_header_decode" u="array imap_mime_header_decode(string str)">Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text'</s>
579 <s f="imap_msgno" u="int imap_msgno(resource stream_id, int unique_msg_id)">Get the sequence number associated with a UID</s>
580 <s f="imap_num_msg" u="int imap_num_msg(resource stream_id)">Gives the number of messages in the current mailbox</s>
581 <s f="imap_num_recent" u="int imap_num_recent(resource stream_id)">Gives the number of recent messages in current mailbox</s>
582 <s f="imap_open" u="resource imap_open(string mailbox, string user, string password [, int options])">Open an IMAP stream to a mailbox</s>
583 <s f="imap_ping" u="bool imap_ping(resource stream_id)">Check if the IMAP stream is still active</s>
584 <s f="imap_qprint" u="string imap_qprint(string text)">Convert a quoted-printable string to an 8-bit string</s>
585 <s f="imap_renamemailbox" u="bool imap_renamemailbox(resource stream_id, string old_name, string new_name)">Rename a mailbox</s>
586 <s f="imap_reopen" u="bool imap_reopen(resource stream_id, string mailbox [, int options])">Reopen an IMAP stream to a new mailbox</s>
587 <s f="imap_scan" u="array imap_scan(resource stream_id, string ref, string pattern, string content)">Read list of mailboxes containing a certain string</s>
588 <s f="imap_search" u="array imap_search(resource stream_id, string criteria [, int options [, string charset]])">Return a list of messages matching the given criteria</s>
589 <s f="imap_set_quota" u="bool imap_set_quota(resource stream_id, string qroot, int mailbox_size)">Will set the quota for qroot mailbox</s>
590 <s f="imap_setacl" u="bool imap_setacl(resource stream_id, string mailbox, string id, string rights)">Sets the ACL for a given mailbox</s>
591 <s f="imap_setflag_full" u="bool imap_setflag_full(resource stream_id, string sequence, string flag [, int options])">Sets flags on messages</s>
592 <s f="imap_sort" u="array imap_sort(resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]])">Sort an array of message headers, optionally including only messages that meet specified criteria.</s>
593 <s f="imap_status" u="object imap_status(resource stream_id, string mailbox, int options)">Get status info from a mailbox</s>
594 <s f="imap_subscribe" u="bool imap_subscribe(resource stream_id, string mailbox)">Subscribe to a mailbox</s>
595 <s f="imap_thread" u="array imap_thread(resource stream_id [, int options])">Return threaded by REFERENCES tree</s>
596 <s f="imap_timeout" u="mixed imap_timeout(int timeout_type [, int timeout])">Set or fetch imap timeout</s>
597 <s f="imap_uid" u="int imap_uid(resource stream_id, int msg_no)">Get the unique message id associated with a standard sequential message number</s>
598 <s f="imap_undelete" u="bool imap_undelete(resource stream_id, int msg_no)">Remove the delete flag from a message</s>
599 <s f="imap_unsubscribe" u="bool imap_unsubscribe(resource stream_id, string mailbox)">Unsubscribe from a mailbox</s>
600 <s f="ifx_affected_rows" u="int ifx_affected_rows(resource resultid)">Returns the number of rows affected by query identified by resultid</s>
601 <s f="ifx_blobinfile_mode" u="bool ifx_blobinfile_mode(int mode)">Sets the default blob-mode for all select-queries</s>
602 <s f="ifx_byteasvarchar" u="bool ifx_byteasvarchar(int mode)">Sets the default byte-mode for all select-queries</s>
603 <s f="ifx_close" u="bool ifx_close([resource connid])">Close informix connection</s>
604 <s f="ifx_connect" u="resource ifx_connect([string database [, string userid [, string password]]])">Connects to database using userid/password, returns connection id</s>
605 <s f="ifx_copy_blob" u="int ifx_copy_blob(int bid)">Duplicates the given blob-object</s>
606 <s f="ifx_create_blob" u="int ifx_create_blob(int type, int mode, string param)">Creates a blob-object</s>
607 <s f="ifx_create_char" u="int ifx_create_char(string param)">Creates a char-object</s>
608 <s f="ifx_do" u="bool ifx_do(resource resultid)">Executes a previously prepared query or opens a cursor for it</s>
609 <s f="ifx_error" u="string ifx_error([resource connection_id])">Returns the Informix error codes (SQLSTATE &amp; SQLCODE)</s>
610 <s f="ifx_errormsg" u="string ifx_errormsg([int errorcode])">Returns the Informix errormessage associated with</s>
611 <s f="ifx_fetch_row" u="array ifx_fetch_row(resource resultid [, mixed position])">Fetches the next row or &lt;position&gt; row if using a scroll cursor</s>
612 <s f="ifx_fieldproperties" u="array ifx_fieldproperties(resource resultid)">Returns an associative for query &lt;resultid&gt; array with fieldnames as key</s>
613 <s f="ifx_fieldtypes" u="array ifx_fieldtypes(resource resultid)">Returns an associative array with fieldnames as key for query &lt;resultid&gt;</s>
614 <s f="ifx_free_blob" u="int ifx_free_blob(int bid)">Deletes the blob-object</s>
615 <s f="ifx_free_char" u="bool ifx_free_char(int bid)">Deletes the char-object</s>
616 <s f="ifx_free_result" u="bool ifx_free_result(resource resultid)">Releases resources for query associated with resultid</s>
617 <s f="ifx_get_blob" u="string ifx_get_blob(int bid)">Returns the content of the blob-object</s>
618 <s f="ifx_get_char" u="string ifx_get_char(int bid)">Returns the content of the char-object</s>
619 <s f="ifx_getsqlca" u="array ifx_getsqlca(resource resultid)">Returns the sqlerrd[] fields of the sqlca struct for query resultid</s>
620 <s f="ifx_htmltbl_result" u="int ifx_htmltbl_result(resource resultid [, string htmltableoptions])">Formats all rows of the resultid query into a html table</s>
621 <s f="ifx_nullformat" u="bool ifx_nullformat(int mode)">Sets the default return value of a NULL-value on a fetch-row</s>
622 <s f="ifx_num_fields" u="int ifx_num_fields(resource resultid)">Returns the number of columns in query resultid</s>
623 <s f="ifx_num_rows" u="int ifx_num_rows(resource resultid)">Returns the number of rows already fetched for query identified by resultid</s>
624 <s f="ifx_pconnect" u="resource ifx_pconnect([string database [, string userid [, string password]]])">Connects to database using userid/password, returns connection id</s>
625 <s f="ifx_prepare" u="resource ifx_prepare(string query, resource connid [, int cursortype] [, array idarray])">Prepare a query on a given connection</s>
626 <s f="ifx_query" u="resource ifx_query(string query, resource connid [, int cursortype] [, array idarray])">Perform a query on a given connection</s>
627 <s f="ifx_textasvarchar" u="bool ifx_textasvarchar(int mode)">Sets the default text-mode for all select-queries</s>
628 <s f="ifx_update_blob" u="int ifx_update_blob(int bid, string content)">Updates the content of the blob-object</s>
629 <s f="ifx_update_char" u="bool ifx_update_char(int bid, string content)">Updates the content of the char-object</s>
630 <s f="ifxus_close_slob" u="bool ifxus_close_slob(int bid)">Deletes the slob-object</s>
631 <s f="ifxus_create_slob" u="int ifxus_create_slob(int mode)">Creates a slob-object and opens it</s>
632 <s f="ifxus_free_slob" u="bool ifxus_free_slob(int bid)">Deletes the slob-object</s>
633 <s f="ifxus_open_slob" u="int ifxus_open_slob(int bid, int mode)">Opens an slob-object</s>
634 <s f="ifxus_read_slob" u="string ifxus_read_slob(int bid, int nbytes)">Reads nbytes of the slob-object</s>
635 <s f="ifxus_seek_slob" u="int ifxus_seek_slob(int bid, int mode, long offset)">Sets the current file or seek position of an open slob-object</s>
636 <s f="ifxus_tell_slob" u="int ifxus_tell_slob(int bid)">Returns the current file or seek position of an open slob-object</s>
637 <s f="ifxus_write_slob" u="int ifxus_write_slob(int bid, string content)">Writes a string into the slob-object</s>
638 <s f="ingres_autocommit" u="bool ingres_autocommit([resource link])">Switch autocommit on or off</s>
639 <s f="ingres_close" u="bool ingres_close([resource link])">Close an Ingres II database connection</s>
640 <s f="ingres_commit" u="bool ingres_commit([resource link])">Commit a transaction</s>
641 <s f="ingres_connect" u="resource ingres_connect([string database [, string username [, string password]]])">Open a connection to an Ingres II database the syntax of database is [node_id::]dbname[/svr_class]</s>
642 <s f="ingres_fetch_array" u="array ingres_fetch_array([int result_type [, resource link]])">Fetch a row of result into an array result_type can be II_NUM for enumerated array, II_ASSOC for associative array, or II_BOTH (default)</s>
643 <s f="ingres_fetch_object" u="array ingres_fetch_object([int result_type [, resource link]])">Fetch a row of result into an object result_type can be II_NUM for enumerated object, II_ASSOC for associative object, or II_BOTH (default)</s>
644 <s f="ingres_fetch_row" u="array ingres_fetch_row([resource link])">Fetch a row of result into an enumerated array</s>
645 <s f="ingres_field_length" u="string ingres_field_length(int index [, resource link])">Return the length of a field in a query result index must be &gt;0 and &lt;= ingres_num_fields()</s>
646 <s f="ingres_field_name" u="string ingres_field_name(int index [, resource link])">Return the name of a field in a query result index must be &gt;0 and &lt;= ingres_num_fields()</s>
647 <s f="ingres_field_nullable" u="string ingres_field_nullable(int index [, resource link])">Return true if the field is nullable and false otherwise index must be &gt;0 and &lt;= ingres_num_fields()</s>
648 <s f="ingres_field_precision" u="string ingres_field_precision(int index [, resource link])">Return the precision of a field in a query result index must be &gt;0 and &lt;= ingres_num_fields()</s>
649 <s f="ingres_field_scale" u="string ingres_field_scale(int index [, resource link])">Return the scale of a field in a query result index must be &gt;0 and &lt;= ingres_num_fields()</s>
650 <s f="ingres_field_type" u="string ingres_field_type(int index [, resource link])">Return the type of a field in a query result index must be &gt;0 and &lt;= ingres_num_fields()</s>
651 <s f="ingres_num_fields" u="int ingres_num_fields([resource link])">Return the number of fields returned by the last query</s>
652 <s f="ingres_num_rows" u="int ingres_num_rows([resource link])">Return the number of rows affected/returned by the last query</s>
653 <s f="ingres_pconnect" u="resource ingres_pconnect([string database [, string username [, string password]]])">Open a persistent connection to an Ingres II database the syntax of database is [node_id::]dbname[/svr_class]</s>
654 <s f="ingres_query" u="bool ingres_query(string query [, resource link])">Send a SQL query to Ingres II</s>
655 <s f="ingres_rollback" u="bool ingres_rollback([resource link])">Roll back a transaction</s>
656 <s f="ibase_blob_add" u="bool ibase_blob_add(resource blob_handle, string data)">Add data into created blob</s>
657 <s f="ibase_blob_cancel" u="bool ibase_blob_cancel(resource blob_handle)">Cancel creating blob</s>
658 <s f="ibase_blob_close" u="string ibase_blob_close(resource blob_handle)">Close blob</s>
659 <s f="ibase_blob_create" u="resource ibase_blob_create([resource link_identifier])">Create blob for adding data</s>
660 <s f="ibase_blob_echo" u="bool ibase_blob_echo([ resource link_identifier, ] string blob_id)">Output blob contents to browser</s>
661 <s f="ibase_blob_get" u="string ibase_blob_get(resource blob_handle, int len)">Get len bytes data from open blob</s>
662 <s f="ibase_blob_import" u="string ibase_blob_import([ resource link_identifier, ] resource file)">Create blob, copy file in it, and close it</s>
663 <s f="ibase_blob_info" u="array ibase_blob_info([ resource link_identifier, ] string blob_id)">Return blob length and other useful info</s>
664 <s f="ibase_blob_open" u="resource ibase_blob_open([ resource link_identifier, ] string blob_id)">Open blob for retrieving data parts</s>
665 <s f="ibase_free_event_handler" u="bool ibase_free_event_handler(resource event)">Frees the event handler set by ibase_set_event_handler()</s>
666 <s f="ibase_set_event_handler" u="resource ibase_set_event_handler([resource link_identifier,] callback handler, string event [, string event [, ...]])">Register the callback for handling each of the named events</s>
667 <s f="ibase_wait_event" u="string ibase_wait_event([resource link_identifier,] string event [, string event [, ...]])">Waits for any one of the passed Interbase events to be posted by the database, and returns its name</s>
668 <s f="ibase_affected_rows" u="int ibase_affected_rows( [ resource link_identifier ] )">Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement</s>
669 <s f="ibase_execute" u="mixed ibase_execute(resource query [, mixed bind_arg [, mixed bind_arg [, ...]]])">Execute a previously prepared query</s>
670 <s f="ibase_fetch_assoc" u="array ibase_fetch_assoc(resource result [, int fetch_flags])">Fetch a row  from the results of a query</s>
671 <s f="ibase_fetch_object" u="object ibase_fetch_object(resource result [, int fetch_flags])">Fetch a object from the results of a query</s>
672 <s f="ibase_fetch_row" u="array ibase_fetch_row(resource result [, int fetch_flags])">Fetch a row  from the results of a query</s>
673 <s f="ibase_field_info" u="array ibase_field_info(resource query_result, int field_number)">Get information about a field</s>
674 <s f="ibase_free_query" u="bool ibase_free_query(resource query)">Free memory used by a query</s>
675 <s f="ibase_free_result" u="bool ibase_free_result(resource result)">Free the memory used by a result</s>
676 <s f="ibase_name_result" u="bool ibase_name_result(resource result, string name)">Assign a name to a result for use with ... WHERE CURRENT OF &lt;name&gt; statements</s>
677 <s f="ibase_num_fields" u="int ibase_num_fields(resource query_result)">Get the number of fields in result</s>
678 <s f="ibase_num_params" u="int ibase_num_params(resource query)">Get the number of params in a prepared query</s>
679 <s f="ibase_num_rows" u="int ibase_num_rows( resource result_identifier )">Return the number of rows that are available in a result</s>
680 <s f="ibase_param_info" u="array ibase_param_info(resource query, int field_number)">Get information about a parameter</s>
681 <s f="ibase_prepare" u="resource ibase_prepare([resource link_identifier, ] string query)">Prepare a query for later execution</s>
682 <s f="ibase_query" u="mixed ibase_query([resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]])">Execute a query</s>
683 <s f="ibase_add_user" u="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 security database</s>
684 <s f="ibase_backup" u="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</s>
685 <s f="ibase_db_info" u="string ibase_db_info(resource service_handle, string db, int action [, int argument])">Request statistics about a database</s>
686 <s f="ibase_delete_user" u="bool ibase_delete_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])">Delete a user from security database</s>
687 <s f="ibase_maintain_db" u="bool ibase_maintain_db(resource service_handle, string db, int action [, int argument])">Execute a maintenance command on the database server</s>
688 <s f="ibase_modify_user" u="bool ibase_modify_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])">Modify a user in security database</s>
689 <s f="ibase_restore" u="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</s>
690 <s f="ibase_server_info" u="string ibase_server_info(resource service_handle, int action)">Request information about a database server</s>
691 <s f="ibase_service_attach" u="resource ibase_service_attach(string host, string dba_username, string dba_password)">Connect to the service manager</s>
692 <s f="ibase_service_detach" u="bool ibase_service_detach(resource service_handle)">Disconnect from the service manager</s>
693 <s f="ibase_close" u="bool ibase_close([resource link_identifier])">Close an InterBase connection</s>
694 <s f="ibase_commit" u="bool ibase_commit( resource link_identifier )">Commit transaction</s>
695 <s f="ibase_commit_ret" u="bool ibase_commit_ret( resource link_identifier )">Commit transaction and retain the transaction context</s>
696 <s f="ibase_connect" u="resource ibase_connect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])">Open a connection to an InterBase database</s>
697 <s f="ibase_drop_db" u="bool ibase_drop_db([resource link_identifier])">Drop an InterBase database</s>
698 <s f="ibase_errcode" u="int ibase_errcode(void)">Return error code</s>
699 <s f="ibase_errmsg" u="string ibase_errmsg(void)">Return error message</s>
700 <s f="ibase_gen_id" u="int ibase_gen_id(string generator [, int increment [, resource link_identifier ]])">Increments the named generator and returns its new value</s>
701 <s f="ibase_pconnect" u="resource ibase_pconnect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])">Open a persistent connection to an InterBase database</s>
702 <s f="ibase_rollback" u="bool ibase_rollback( resource link_identifier )">Rollback transaction</s>
703 <s f="ibase_rollback_ret" u="bool ibase_rollback_ret( resource link_identifier )">Rollback transaction and retain the transaction context</s>
704 <s f="ibase_timefmt" u="bool ibase_timefmt(string format [, int type ])">Sets the format of timestamp, date and time columns returned from queries</s>
705 <s f="ibase_trans" u="resource ibase_trans([int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]])">Start a transaction over one or several databases</s>
706 <s f="ircg_channel_mode" u="bool ircg_channel_mode(int connection, string channel, string mode_spec, string nick)">Sets channel mode flags for user</s>
707 <s f="ircg_disconnect" u="bool ircg_disconnect(int connection, string reason)">Terminate IRC connection</s>
708 <s f="ircg_eval_ecmascript_params" u="array ircg_eval_ecmascript_params(string params)">Decodes a list of JS-encoded parameters into a native array</s>
709 <s f="ircg_fetch_error_msg" u="array ircg_fetch_error_msg(int connection)">Returns the error from previous ircg operation</s>
710 <s f="ircg_get_username" u="string ircg_get_username(int connection)">Gets username for connection</s>
711 <s f="ircg_html_encode" u="string ircg_html_encode(string html_text)">Encodes HTML preserving output</s>
712 <s f="ircg_ignore_add" u="bool ircg_ignore_add(resource connection, string nick)">Adds a user to your ignore list on a server</s>
713 <s f="ircg_ignore_del" u="bool ircg_ignore_del(int connection, string nick)">Removes a user from your ignore list</s>
714 <s f="ircg_invite" u="bool ircg_invite(int connection, string channel, string nickname)">INVITEs nickname to channel</s>
715 <s f="ircg_is_conn_alive" u="bool ircg_is_conn_alive(int connection)">Checks connection status</s>
716 <s f="ircg_join" u="bool ircg_join(int connection, string channel [, string chan-key])">Joins a channel on a connected server</s>
717 <s f="ircg_kick" u="bool ircg_kick(int connection, string channel, string nick, string reason)">Kicks user from channel</s>
718 <s f="ircg_list" u="bool ircg_list(int connection, string channel)">List topic/user count of channel(s)</s>
719 <s f="ircg_lookup_format_messages" u="bool ircg_lookup_format_messages(string name)">Selects a set of format strings for display of IRC messages</s>
720 <s f="ircg_lusers" u="bool ircg_lusers(int connection)">IRC network statistics</s>
721 <s f="ircg_msg" u="bool ircg_msg(int connection, string recipient, string message [,bool loop-suppress])">Delivers a message to the IRC network</s>
722 <s f="ircg_names" u="bool ircg_names( int connection, string channel [, string target])">Queries visible usernames</s>
723 <s f="ircg_nick" u="bool ircg_nick(int connection, string newnick)">Changes the nickname</s>
724 <s f="ircg_nickname_escape" u="string ircg_nickname_escape(string nick)">Escapes special characters in nickname to be IRC-compliant</s>
725 <s f="ircg_nickname_unescape" u="string ircg_nickname_unescape(string nick)">Decodes encoded nickname</s>
726 <s f="ircg_notice" u="bool ircg_notice(int connection, string recipient, string message)">Sends a one-way communication NOTICE to a target</s>
727 <s f="ircg_oper" u="bool ircg_oper(int connection, string name, string password)">Elevates privileges to IRC OPER</s>
728 <s f="ircg_part" u="bool ircg_part(int connection, string channel)">Leaves a channel</s>
729 <s f="ircg_pconnect" u="int ircg_pconnect(string username [, string server [, int port [, string format-msg-set-name [, array ctcp-set [, array user-details [, bool bailout-on-trivial]]]]]])">Create a persistent IRC connection</s>
730 <s f="ircg_register_format_messages" u="bool ircg_register_format_messages(string name, array messages)">Registers a set of format strings for display of IRC messages</s>
731 <s f="ircg_set_current" u="bool ircg_set_current(int connection)">Sets current connection for output</s>
732 <s f="ircg_set_file" u="bool ircg_set_file(int connection, string path)">Sets logfile for connection</s>
733 <s f="ircg_set_on_die" u="bool ircg_set_on_die(int connection, string host, int port, string data)">Sets hostaction to be executed when connection dies</s>
734 <s f="ircg_set_on_read_data" u="bool ircg_set_on_read_data(int connection, string host, int port, string data)">Set action to be executed when data is received from a HTTP client</s>
735 <s f="ircg_topic" u="bool ircg_topic(int connection, string channel, string topic)">Sets topic for channel</s>
736 <s f="ircg_who" u="bool ircg_who(int connection, string mask [, bool ops_only])">Queries server for WHO information</s>
737 <s f="ircg_whois" u="bool ircg_whois( int connection, string nick)">Queries user information for nick on server</s>
738 <s f="ldap_add" u="bool ldap_add(resource link, string dn, array entry)">Add entries to LDAP directory</s>
739 <s f="ldap_bind" u="bool ldap_bind(resource link [, string dn, string password])">Bind to LDAP directory</s>
740 <s f="ldap_compare" u="bool ldap_compare(resource link, string dn, string attr, string value)">Determine if an entry has a specific value for one of its attributes</s>
741 <s f="ldap_connect" u="resource ldap_connect([string host [, int port]])">Connect to an LDAP server</s>
742 <s f="ldap_count_entries" u="int ldap_count_entries(resource link, resource result)">Count the number of entries in a search result</s>
743 <s f="ldap_delete" u="bool ldap_delete(resource link, string dn)">Delete an entry from a directory</s>
744 <s f="ldap_errno" u="int ldap_errno(resource link)">Get the current ldap error number</s>
745 <s f="ldap_error" u="string ldap_error(resource link)">Get the current ldap error string</s>
746 <s f="ldap_explode_dn" u="array ldap_explode_dn(string dn, int with_attrib)">Splits DN into its component parts</s>
747 <s f="ldap_first_attribute" u="string ldap_first_attribute(resource link, resource result_entry, int ber)">Return first attribute</s>
748 <s f="ldap_first_entry" u="resource ldap_first_entry(resource link, resource result)">Return first result id</s>
749 <s f="ldap_first_reference" u="resource ldap_first_reference(resource link, resource result)">Return first reference</s>
750 <s f="ldap_free_result" u="bool ldap_free_result(resource result)">Free result memory</s>
751 <s f="ldap_get_attributes" u="array ldap_get_attributes(resource link, resource result_entry)">Get attributes from a search result entry</s>
752 <s f="ldap_get_dn" u="string ldap_get_dn(resource link, resource result_entry)">Get the DN of a result entry</s>
753 <s f="ldap_get_entries" u="array ldap_get_entries(resource link, resource result)">Get all result entries</s>
754 <s f="ldap_get_option" u="bool ldap_get_option(resource link, int option, mixed retval)">Get the current value of various session-wide parameters</s>
755 <s f="ldap_get_values" u="array ldap_get_values(resource link, resource result_entry, string attribute)">Get all values from a result entry</s>
756 <s f="ldap_get_values_len" u="array ldap_get_values_len(resource link, resource result_entry, string attribute)">Get all values with lengths from a result entry</s>
757 <s f="ldap_list" u="resource ldap_list(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])">Single-level search</s>
758 <s f="ldap_mod_add" u="bool ldap_mod_add(resource link, string dn, array entry)">Add attribute values to current</s>
759 <s f="ldap_mod_del" u="bool ldap_mod_del(resource link, string dn, array entry)">Delete attribute values</s>
760 <s f="ldap_mod_replace" u="bool ldap_mod_replace(resource link, string dn, array entry)">Replace attribute values with new ones</s>
761 <s f="ldap_next_attribute" u="string ldap_next_attribute(resource link, resource result_entry, resource ber)">Get the next attribute in result</s>
762 <s f="ldap_next_entry" u="resource ldap_next_entry(resource link, resource result_entry)">Get next result entry</s>
763 <s f="ldap_next_reference" u="resource ldap_next_reference(resource link, resource reference_entry)">Get next reference</s>
764 <s f="ldap_parse_reference" u="bool ldap_parse_reference(resource link, resource reference_entry, array referrals)">Extract information from reference entry</s>
765 <s f="ldap_parse_result" u="bool ldap_parse_result(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)">Extract information from result</s>
766 <s f="ldap_read" u="resource ldap_read(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])">Read an entry</s>
767 <s f="ldap_sasl_bind" u="bool ldap_sasl_bind(resource link)">Bind to LDAP directory using SASL</s>
768 <s f="ldap_search" u="resource ldap_search(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])">Search LDAP tree under base_dn</s>
769 <s f="ldap_set_option" u="bool ldap_set_option(resource link, int option, mixed newval)">Set the value of various session-wide parameters</s>
770 <s f="ldap_set_rebind_proc" u="bool ldap_set_rebind_proc(resource link, string callback)">Set a callback function to do re-binds on referral chasing.</s>
771 <s f="ldap_sort" u="bool ldap_sort(resource link, resource result, string sortfilter)">Sort LDAP result entries</s>
772 <s f="ldap_start_tls" u="bool ldap_start_tls(resource link)">Start TLS</s>
773 <s f="ldap_unbind" u="bool ldap_unbind(resource link)">Unbind from LDAP directory</s>
774 <s f="libxml_set_streams_context" u="void libxml_set_streams_context(resource streams_context)">Set the streams context for the next libxml document load or write</s>
775 <s f="mb_convert_case" u="string mb_convert_case(string sourcestring, int mode [, string encoding])">Returns a case-folded version of sourcestring</s>
776 <s f="mb_convert_encoding" u="string mb_convert_encoding(string str, string to-encoding [, mixed from-encoding])">Returns converted string in desired encoding</s>
777 <s f="mb_convert_kana" u="string mb_convert_kana(string str [, string option] [, string encoding])">Conversion between full-width character and half-width character (Japanese)</s>
778 <s f="mb_convert_variables" u="string mb_convert_variables(string to-encoding, mixed from-encoding [, mixed ...])">Converts the string resource in variables to desired encoding</s>
779 <s f="mb_decode_mimeheader" u="string mb_decode_mimeheader(string string)">Decodes the MIME "encoded-word" in the string</s>
780 <s f="mb_decode_numericentity" u="string mb_decode_numericentity(string string, array convmap [, string encoding])">Converts HTML numeric entities to character code</s>
781 <s f="mb_detect_encoding" u="string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])">Encodings of the given string is returned (as a string)</s>
782 <s f="mb_encode_mimeheader" u="string mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed]]])">Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded_string?=</s>
783 <s f="mb_encode_numericentity" u="string mb_encode_numericentity(string string, array convmap [, string encoding])">Converts specified characters to HTML numeric entities</s>
784 <s f="mb_get_info" u="string mb_get_info([string type])">Returns the current settings of mbstring</s>
785 <s f="mb_http_input" u="mixed mb_http_input([string type])">Returns the input encoding</s>
786 <s f="mb_http_output" u="string mb_http_output([string encoding])">Sets the current output_encoding or returns the current output_encoding as a string</s>
787 <s f="mb_internal_encoding" u="string mb_internal_encoding([string encoding])">Sets the current internal encoding or Returns the current internal encoding as a string</s>
788 <s f="mb_language" u="string mb_language([string language])">Sets the current language or Returns the current language as a string</s>
789 <s f="mb_list_encodings" u="array mb_list_encodings()">Returns an array of all supported encodings</s>
790 <s f="mb_output_handler" u="string mb_output_handler(string contents, int status)">Returns string in output buffer converted to the http_output encoding</s>
791 <s f="mb_parse_str" u="bool mb_parse_str(string encoded_string [, array result])">Parses GET/POST/COOKIE data and sets global variables</s>
792 <s f="mb_preferred_mime_name" u="string mb_preferred_mime_name(string encoding)">Return the preferred MIME name (charset) as a string</s>
793 <s f="mb_send_mail" u="int mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])">*  Sends an email message with MIME scheme</s>
794 <s f="mb_strcut" u="string mb_strcut(string str, int start [, int length [, string encoding]])">Returns part of a string</s>
795 <s f="mb_strimwidth" u="string mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]])">Trim the string in terminal width</s>
796 <s f="mb_strlen" u="int mb_strlen(string str [, string encoding])">Get character numbers of a string</s>
797 <s f="mb_strpos" u="int mb_strpos(string haystack, string needle [, int offset [, string encoding]])">Find position of first occurrence of a string within another</s>
798 <s f="mb_strrpos" u="int mb_strrpos(string haystack, string needle [, string encoding])">Find the last occurrence of a character in a string within another</s>
799 <s f="mb_strtolower" u="string mb_strtolower(string sourcestring [, string encoding])">*  Returns a lowercased version of sourcestring</s>
800 <s f="mb_strtoupper" u="string mb_strtoupper(string sourcestring [, string encoding])">*  Returns a uppercased version of sourcestring</s>
801 <s f="mb_strwidth" u="int mb_strwidth(string str [, string encoding])">Gets terminal width of a string</s>
802 <s f="mb_substitute_character" u="mixed mb_substitute_character([mixed substchar])">Sets the current substitute_character or returns the current substitute_character</s>
803 <s f="mb_substr" u="string mb_substr(string str, int start [, int length [, string encoding]])">Returns part of a string</s>
804 <s f="mb_substr_count" u="int mb_substr_count(string haystack, string needle [, string encoding])">Count the number of substring occurrences</s>
805 <s f="mb_ereg" u="int mb_ereg(string pattern, string string [, array registers])">Regular expression match for multibyte string</s>
806 <s f="mb_ereg_match" u="bool mb_ereg_match(string pattern, string string [,string option])">Regular expression match for multibyte string</s>
807 <s f="mb_ereg_replace" u="string mb_ereg_replace(string pattern, string replacement, string string [, string option])">Replace regular expression for multibyte string</s>
808 <s f="mb_ereg_search" u="bool mb_ereg_search([string pattern[, string option]])">Regular expression search for multibyte string</s>
809 <s f="mb_ereg_search_getpos" u="int mb_ereg_search_getpos(void)">Get search start position</s>
810 <s f="mb_ereg_search_getregs" u="array mb_ereg_search_getregs(void)">Get matched substring of the last time</s>
811 <s f="mb_ereg_search_init" u="bool mb_ereg_search_init(string string [, string pattern[, string option]])">Initialize string and regular expression for search.</s>
812 <s f="mb_ereg_search_pos" u="array mb_ereg_search_pos([string pattern[, string option]])">Regular expression search for multibyte string</s>
813 <s f="mb_ereg_search_regs" u="array mb_ereg_search_regs([string pattern[, string option]])">Regular expression search for multibyte string</s>
814 <s f="mb_ereg_search_setpos" u="bool mb_ereg_search_setpos(int position)">Set search start position</s>
815 <s f="mb_eregi" u="int mb_eregi(string pattern, string string [, array registers])">Case-insensitive regular expression match for multibyte string</s>
816 <s f="mb_eregi_replace" u="string mb_eregi_replace(string pattern, string replacement, string string)">Case insensitive replace regular expression for multibyte string</s>
817 <s f="mb_regex_encoding" u="string mb_regex_encoding([string encoding])">Returns the current encoding for regex as a string.</s>
818 <s f="mb_regex_set_options" u="string mb_regex_set_options([string options])">Set or get the default options for mbregex functions</s>
819 <s f="mb_split" u="array mb_split(string pattern, string string [, int limit])">split multibyte string into array by regular expression</s>
820 <s f="mcrypt_cbc" u="string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)">CBC crypt/decrypt data using key key with cipher cipher starting with iv</s>
821 <s f="mcrypt_cfb" u="string mcrypt_cfb(int cipher, string key, string data, int mode, string iv)">CFB crypt/decrypt data using key key with cipher cipher starting with iv</s>
822 <s f="mcrypt_create_iv" u="string mcrypt_create_iv(int size, int source)">Create an initialization vector (IV)</s>
823 <s f="mcrypt_decrypt" u="string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv)">OFB crypt/decrypt data using key key with cipher cipher starting with iv</s>
824 <s f="mcrypt_ecb" u="string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)">ECB crypt/decrypt data using key key with cipher cipher starting with iv</s>
825 <s f="mcrypt_enc_get_algorithms_name" u="string mcrypt_enc_get_algorithms_name(resource td)">Returns the name of the algorithm specified by the descriptor td</s>
826 <s f="mcrypt_enc_get_block_size" u="int mcrypt_enc_get_block_size(resource td)">Returns the block size of the cipher specified by the descriptor td</s>
827 <s f="mcrypt_enc_get_iv_size" u="int mcrypt_enc_get_iv_size(resource td)">Returns the size of the IV in bytes of the algorithm specified by the descriptor td</s>
828 <s f="mcrypt_enc_get_key_size" u="int mcrypt_enc_get_key_size(resource td)">Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td</s>
829 <s f="mcrypt_enc_get_modes_name" u="string mcrypt_enc_get_modes_name(resource td)">Returns the name of the mode specified by the descriptor td</s>
830 <s f="mcrypt_enc_get_supported_key_sizes" u="array mcrypt_enc_get_supported_key_sizes(resource td)">This function decrypts the crypttext</s>
831 <s f="mcrypt_enc_is_block_algorithm" u="bool mcrypt_enc_is_block_algorithm(resource td)">Returns TRUE if the alrogithm is a block algorithms</s>
832 <s f="mcrypt_enc_is_block_algorithm_mode" u="bool mcrypt_enc_is_block_algorithm_mode(resource td)">Returns TRUE if the mode is for use with block algorithms</s>
833 <s f="mcrypt_enc_is_block_mode" u="bool mcrypt_enc_is_block_mode(resource td)">Returns TRUE if the mode outputs blocks</s>
834 <s f="mcrypt_enc_self_test" u="int mcrypt_enc_self_test(resource td)">This function runs the self test on the algorithm specified by the descriptor td</s>
835 <s f="mcrypt_encrypt" u="string mcrypt_encrypt(string cipher, string key, string data, string mode, string iv)">OFB crypt/decrypt data using key key with cipher cipher starting with iv</s>
836 <s f="mcrypt_generic" u="string mcrypt_generic(resource td, string data)">This function encrypts the plaintext</s>
837 <s f="mcrypt_generic_deinit" u="bool mcrypt_generic_deinit(resource td)">This function terminates encrypt specified by the descriptor td</s>
838 <s f="mcrypt_generic_end" u="bool mcrypt_generic_end(resource td)">This function terminates encrypt specified by the descriptor td</s>
839 <s f="mcrypt_generic_init" u="int mcrypt_generic_init(resource td, string key, string iv)">This function initializes all buffers for the specific module</s>
840 <s f="mcrypt_get_block_size" u="int mcrypt_get_block_size(string cipher, string module)">Get the key size of cipher</s>
841 <s f="mcrypt_get_cipher_name" u="string mcrypt_get_cipher_name(string cipher)">Get the key size of cipher</s>
842 <s f="mcrypt_get_iv_size" u="int mcrypt_get_iv_size(string cipher, string module)">Get the IV size of cipher (Usually the same as the blocksize)</s>
843 <s f="mcrypt_get_key_size" u="int mcrypt_get_key_size(string cipher, string module)">Get the key size of cipher</s>
844 <s f="mcrypt_list_algorithms" u="array mcrypt_list_algorithms([string lib_dir])">List all algorithms in "module_dir"</s>
845 <s f="mcrypt_list_modes" u="array mcrypt_list_modes([string lib_dir])">List all modes "module_dir"</s>
846 <s f="mcrypt_module_close" u="bool mcrypt_module_close(resource td)">Free the descriptor td</s>
847 <s f="mcrypt_module_get_algo_block_size" u="int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir])">Returns the block size of the algorithm</s>
848 <s f="mcrypt_module_get_algo_key_size" u="int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir])">Returns the maximum supported key size of the algorithm</s>
849 <s f="mcrypt_module_get_supported_key_sizes" u="array mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir])">This function decrypts the crypttext</s>
850 <s f="mcrypt_module_is_block_algorithm" u="bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir])">Returns TRUE if the algorithm is a block algorithm</s>
851 <s f="mcrypt_module_is_block_algorithm_mode" u="bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir])">Returns TRUE if the mode is for use with block algorithms</s>
852 <s f="mcrypt_module_is_block_mode" u="bool mcrypt_module_is_block_mode(string mode [, string lib_dir])">Returns TRUE if the mode outputs blocks of bytes</s>
853 <s f="mcrypt_module_open" u="resource mcrypt_module_open(string cipher, string cipher_directory, string mode, string mode_directory)">Opens the module of the algorithm and the mode to be used</s>
854 <s f="mcrypt_module_self_test" u="bool mcrypt_module_self_test(string algorithm [, string lib_dir])">Does a self test of the module "module"</s>
855 <s f="mcrypt_ofb" u="string mcrypt_ofb(int cipher, string key, string data, int mode, string iv)">OFB crypt/decrypt data using key key with cipher cipher starting with iv</s>
856 <s f="mdecrypt_generic" u="string mdecrypt_generic(resource td, string data)">This function decrypts the plaintext</s>
857 <s f="mcve_adduser" u="int mcve_adduser(resource conn, string admin_password, int usersetup)">Add an MCVE user using usersetup structure</s>
858 <s f="mcve_adduserarg" u="int mcve_adduserarg(resource usersetup, int argtype, string argval)">Add a value to user configuration structure</s>
859 <s f="mcve_bt" u="int mcve_bt(resource conn, string username, string password)">Get unsettled batch totals</s>
860 <s f="mcve_checkstatus" u="int mcve_checkstatus(resource conn, int identifier)">Check to see if a transaction has completed</s>
861 <s f="mcve_chkpwd" u="int mcve_chkpwd(resource conn, string username, string password)">Verify Password</s>
862 <s f="mcve_chngpwd" u="int mcve_chngpwd(resource conn, string admin_password, string new_password)">Change the system administrator's password</s>
863 <s f="mcve_completeauthorizations" u="int mcve_completeauthorizations(resource conn, int &amp;array)">Number of complete authorizations in queue, returning an array of their identifiers</s>
864 <s f="mcve_connect" u="int mcve_connect(resource conn)">Establish the connection to MCVE</s>
865 <s f="mcve_connectionerror" u="string mcve_connectionerror(resource conn)">Get a textual representation of why a connection failed</s>
866 <s f="mcve_deleteresponse" u="bool mcve_deleteresponse(resource conn, int identifier)">Delete specified transaction from MCVE_CONN structure</s>
867 <s f="mcve_deletetrans" u="bool mcve_deletetrans(resource conn, int identifier)">Delete specified transaction from MCVE_CONN structure</s>
868 <s f="mcve_deleteusersetup" u="void mcve_deleteusersetup(resource usersetup)">Deallocate data associated with usersetup structure</s>
869 <s f="mcve_deluser" u="int mcve_deluser(resource conn, string admin_password, string username)">Delete an MCVE user account</s>
870 <s f="mcve_destroyconn" u="void mcve_destroyconn(resource conn)">Destroy the connection and MCVE_CONN structure</s>
871 <s f="mcve_destroyengine" u="void mcve_destroyengine(void)">Free memory associated with IP/SSL connectivity</s>
872 <s f="mcve_disableuser" u="int mcve_disableuser(resource conn, string admin_password, string username)">Disable an active MCVE user account</s>
873 <s f="mcve_edituser" u="int mcve_edituser(resource conn, string admin_password, int usersetup)">Edit MCVE user using usersetup structure</s>
874 <s f="mcve_enableuser" u="int mcve_enableuser(resource conn, string admin_password, string username)">Enable an inactive MCVE user account</s>
875 <s f="mcve_force" u="int mcve_force(resiurce conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum)">Send a FORCE to MCVE.  (typically, a phone-authorization)</s>
876 <s f="mcve_getcell" u="string mcve_getcell(resource conn, int identifier, string column, int row)">Get a specific cell from a comma delimited response by column name</s>
877 <s f="mcve_getcellbynum" u="string mcve_getcellbynum(resource conn, int identifier, int column, int row)">Get a specific cell from a comma delimited response by column number</s>
878 <s f="mcve_getcommadelimited" u="string mcve_getcommadelimited(resource conn, int identifier)">Get the RAW comma delimited data returned from MCVE</s>
879 <s f="mcve_getheader" u="string mcve_getheader(resource conn, int identifier, int column_num)">Get the name of the column in a comma-delimited response</s>
880 <s f="mcve_getuserarg" u="string mcve_getuserarg(resource usersetup, int argtype)">Grab a value from usersetup structure</s>
881 <s f="mcve_getuserparam" u="string mcve_getuserparam(resource conn, long identifier, int key)">Get a user response parameter</s>
882 <s f="mcve_gft" u="int mcve_gft(resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)">Audit MCVE for Failed transactions</s>
883 <s f="mcve_gl" u="int mcve_gl(int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)">Audit MCVE for settled transactions</s>
884 <s f="mcve_gut" u="int mcve_gut(resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)">Audit MCVE for Unsettled Transactions</s>
885 <s f="mcve_initconn" u="resource mcve_initconn(void)">Create and initialize an MCVE_CONN structure</s>
886 <s f="mcve_initengine" u="int mcve_initengine(string location)">Ready the client for IP/SSL Communication</s>
887 <s f="mcve_initusersetup" u="resource mcve_initusersetup(void)">Initialize structure to store user data</s>
888 <s f="mcve_iscommadelimited" u="int mcve_iscommadelimited(resource conn, int identifier)">Checks to see if response is comma delimited</s>
889 <s f="mcve_liststats" u="int mcve_liststats(resource conn, string admin_password)">List statistics for all users on MCVE system</s>
890 <s f="mcve_listusers" u="int mcve_listusers(resource conn, string admin_password)">List all users on MCVE system</s>
891 <s f="mcve_maxconntimeout" u="bool mcve_maxconntimeout(resource conn, int secs)">The maximum amount of time the API will attempt a connection to MCVE</s>
892 <s f="mcve_monitor" u="int mcve_monitor(resource conn)">Perform communication with MCVE (send/receive data)   Non-blocking</s>
893 <s f="mcve_numcolumns" u="int mcve_numcolumns(resource conn, int identifier)">Number of columns returned in a comma delimited response</s>
894 <s f="mcve_numrows" u="int mcve_numrows(resource conn, int identifier)">Number of rows returned in a comma delimited response</s>
895 <s f="mcve_override" u="int mcve_override(resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)">Send an OVERRIDE to MCVE</s>
896 <s f="mcve_parsecommadelimited" u="int mcve_parsecommadelimited(resource conn, int identifier)">Parse the comma delimited response so mcve_getcell, etc will work</s>
897 <s f="mcve_ping" u="int mcve_ping(resource conn)">Send a ping request to MCVE</s>
898 <s f="mcve_preauth" u="int mcve_preauth(resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)">Send a PREAUTHORIZATION to MCVE</s>
899 <s f="mcve_preauthcompletion" u="int mcve_preauthcompletion(resource conn, string username, string password, float finalamount, int sid, int ptrannum)">Complete a PREAUTHORIZATION... Ready it for settlement</s>
900 <s f="mcve_qc" u="int mcve_qc(resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum)">Audit MCVE for a list of transactions in the outgoing queue</s>
901 <s f="mcve_responseparam" u="string mcve_responseparam(resource conn, long identifier, string key)">Get a custom response parameter</s>
902 <s f="mcve_return" u="int mcve_return(int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum)">Issue a RETURN or CREDIT to MCVE</s>
903 <s f="mcve_returncode" u="int mcve_returncode(resource conn, int identifier)">Grab the exact return code from the transaction</s>
904 <s f="mcve_returnstatus" u="int mcve_returnstatus(resource conn, int identifier)">Check to see if the transaction was successful</s>
905 <s f="mcve_sale" u="int mcve_sale(resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)">Send a SALE to MCVE</s>
906 <s f="mcve_setblocking" u="int mcve_setblocking(resource conn, int tf)">Set blocking/non-blocking mode for connection</s>
907 <s f="mcve_setdropfile" u="int mcve_setdropfile(resource conn, string directory)">Set the connection method to Drop-File</s>
908 <s f="mcve_setip" u="int mcve_setip(resource conn, string host, int port)">Set the connection method to IP</s>
909 <s f="mcve_setssl" u="int mcve_setssl(resource conn, string host, int port)">Set the connection method to SSL</s>
910 <s f="mcve_setssl_files" u="int mcve_setssl_files(string sslkeyfile, string sslcertfile)">Set certificate key files and certificates if server requires client certificate     verification</s>
911 <s f="mcve_settimeout" u="int mcve_settimeout(resource conn, int seconds)">Set maximum transaction time (per trans)</s>
912 <s f="mcve_settle" u="int mcve_settle(resource conn, string username, string password, string batch)">Issue a settlement command to do a batch deposit</s>
913 <s f="mcve_text_avs" u="string mcve_text_avs(string code)">Get a textual representation of the return_avs</s>
914 <s f="mcve_text_code" u="string mcve_text_code(string code)">Get a textual representation of the return_code</s>
915 <s f="mcve_text_cv" u="string mcve_text_cv(int code)">Get a textual representation of the return_cv</s>
916 <s f="mcve_transactionauth" u="string mcve_transactionauth(resource conn, int identifier)">Get the authorization number returned for the transaction (alpha-numeric)</s>
917 <s f="mcve_transactionavs" u="int mcve_transactionavs(resource conn, int identifier)">Get the Address Verification return status</s>
918 <s f="mcve_transactionbatch" u="int mcve_transactionbatch(resource conn, int identifier)">Get the batch number associated with the transaction</s>
919 <s f="mcve_transactioncv" u="int mcve_transactioncv(resource conn, int identifier)">Get the CVC2/CVV2/CID return status</s>
920 <s f="mcve_transactionid" u="int mcve_transactionid(resource conn, int identifier)">Get the unique system id for the transaction</s>
921 <s f="mcve_transactionitem" u="int mcve_transactionitem(resource conn, int identifier)">Get the ITEM number in the associated batch for this transaction</s>
922 <s f="mcve_transactionssent" u="int mcve_transactionssent(resource conn)">Check to see if outgoing buffer is clear</s>
923 <s f="mcve_transactiontext" u="string mcve_transactiontext(resource conn, int identifier)">Get verbiage (text) return from MCVE or processing institution</s>
924 <s f="mcve_transinqueue" u="int mcve_transinqueue(resource conn)">Number of transactions in client-queue</s>
925 <s f="mcve_transnew" u="int mcve_transnew(resource conn)">Start a new transaction</s>
926 <s f="mcve_transparam" u="int mcve_transparam(resource conn, long identifier, int key, ...)">Add a parameter to a transaction</s>
927 <s f="mcve_transsend" u="int mcve_transsend(resource conn, long identifier)">Finalize and send the transaction</s>
928 <s f="mcve_ub" u="int mcve_ub(resource conn, string username, string password)">Get a list of all Unsettled batches</s>
929 <s f="mcve_uwait" u="int mcve_uwait(long microsecs)">Wait x microsecs</s>
930 <s f="mcve_verifyconnection" u="bool mcve_verifyconnection(resource conn, int tf)">Set whether or not to PING upon connect to verify connection</s>
931 <s f="mcve_verifysslcert" u="bool mcve_verifysslcert(resource conn, int tf)">Set whether or not to verify the server ssl certificate</s>
932 <s f="mcve_void" u="int mcve_void(resource conn, string username, string password, int sid, int ptrannum)">VOID a transaction in the settlement queue</s>
933 <s f="mhash" u="string mhash(int hash, string data [, string key])">Hash data with hash</s>
934 <s f="mhash_count" u="int mhash_count(void)">Gets the number of available hashes</s>
935 <s f="mhash_get_block_size" u="int mhash_get_block_size(int hash)">Gets the block size of hash</s>
936 <s f="mhash_get_hash_name" u="string mhash_get_hash_name(int hash)">Gets the name of hash</s>
937 <s f="mime_content_type" u="string mime_content_type(string filename|resource stream)">Return content-type for file</s>
938 <s f="ming_keypress" u="int ming_keypress(string str)">Returns the action flag for keyPress(char)</s>
939 <s f="ming_setscale" u="void ming_setscale(int scale)">Set scale (?)</s>
940 <s f="ming_useconstants" u="void ming_useconstants(int use)">Use constant pool (?)</s>
941 <s f="ming_useswfversion" u="void ming_useswfversion(int version)">Use SWF version (?)</s>
942 <s f="swfaction_init" u="object swfaction_init(string)">Returns a new SWFAction object, compiling the given script</s>
943 <s f="swfbitmap_init" u="class swfbitmap_init(mixed file [, mixed maskfile])">Returns a new SWFBitmap object from jpg (with optional mask) or dbl file</s>
944 <s f="swfbutton_init" u="object swfbutton_init(void)">Returns a new SWFButton object</s>
945 <s f="swfdisplayitem_move" u="void swfdisplayitem_move(float dx, float dy)">Displaces this SWFDisplayItem by (dx, dy) in movie coordinates</s>
946 <s f="swfdisplayitem_rotate" u="void swfdisplayitem_rotate(float degrees)">Rotates this SWFDisplayItem the given (clockwise) degrees from its current orientation</s>
947 <s f="swfdisplayitem_scale" u="void swfdisplayitem_scale(float xScale, float yScale)">Multiplies this SWFDisplayItem's current x scale by xScale, its y scale by yScale</s>
948 <s f="swffill_init" u="class swffill_init(void)">Returns a new SWFFill object</s>
949 <s f="swffont_init" u="object swffont_init(string filename)">Returns a new SWFFont object from given file</s>
950 <s f="swfgradient_init" u="class swfgradient_init(void)">Returns a new SWFGradient object</s>
951 <s f="swfmorph_init" u="object swfmorph_init(void)">Returns a new SWFMorph object</s>
952 <s f="swfmovie_add" u="object swfmovie_add(object SWFBlock)"/>
953 <s f="swfmovie_init" u="object swfmovie_init(int version)">Creates swfmovie object according to the passed version</s>
954 <s f="swfmovie_labelframe" u="void swfmovie_labelframe(object SWFBlock)"/>
955 <s f="swfmovie_labelframe" u="void swfmovie_labelframe(string label)">Labels frame</s>
956 <s f="swfmovie_nextframe" u="void swfmovie_nextframe(void)"/>
957 <s f="swfmovie_output" u="int swfmovie_output([int compression])"/>
958 <s f="swfmovie_save" u="int swfmovie_save(mixed where [, int compression])">Saves the movie. 'where' can be stream and the movie will be saved there otherwise it is treated as string and written in file with that name</s>
959 <s f="swfshape_addfill" u="object swfshape_addfill(mixed arg1, int arg2, [int b [, int a]])">Returns a fill object, for use with swfshape_setleftfill and swfshape_setrightfill. If 1 or 2 parameter(s) is (are) passed first should be object (from gradient class) and the second int (flags). Gradient fill is performed. If 3 or 4 parameters are passed : r, g, b [, a]. Solid fill is performed.</s>
960 <s f="swfshape_drawarc" u="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 counterclockwise from 12 o'clock</s>
961 <s f="swfshape_drawcircle" u="void swfshape_drawcircle(float r)">Draws a circle of radius r centered at the current location, in a counter-clockwise fashion</s>
962 <s f="swfshape_drawcubic" u="void 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</s>
963 <s f="swfshape_drawcubic" u="void 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</s>
964 <s f="swfshape_drawcurve" u="void swfshape_drawcurve(float adx, float ady, float bdx, float bdy [, float cdx, float cdy])">Draws a curve from the current pen position (x, y) to the point (x+bdx, y+bdy) in the current line style, using point (x+adx, y+ady) as a control point or draws a cubic bezier to point (x+cdx, x+cdy) with control points (x+adx, y+ady) and (x+bdx, y+bdy)</s>
965 <s f="swfshape_drawcurveto" u="void swfshape_drawcurveto(float ax, float ay, float bx, float by [, float dx, float dy])">Draws a curve from the current pen position (x,y) to the point (bx, by) in the current line style, using point (ax, ay) as a control point. Or draws a cubic bezier to point (dx, dy) with control points (ax, ay) and (bx, by)</s>
966 <s f="swfshape_drawglyph" u="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</s>
967 <s f="swfshape_drawline" u="void swfshape_drawline(float dx, float dy)">Draws a line from the current pen position (x, y) to the point (x+dx, y+dy) in the current line style</s>
968 <s f="swfshape_drawlineto" u="void swfshape_drawlineto(float x, float y)">Draws a line from the current pen position to shape coordinates (x, y) in the current line style</s>
969 <s f="swfshape_init" u="object swfshape_init(void)">Returns a new SWFShape object</s>
970 <s f="swfshape_movepen" u="void swfshape_movepen(float x, float y)">Moves the pen from its current location by vector (x, y)</s>
971 <s f="swfshape_movepento" u="void swfshape_movepento(float x, float y)">Moves the pen to shape coordinates (x, y)</s>
972 <s f="swfshape_setleftfill" u="void swfshape_setleftfill(int arg1 [, int g ,int b [,int a]])">Sets the left side fill style to fill in case only one parameter is passed. When 3 or 4 parameters are passed they are treated as : int r, int g, int b, int a . Solid fill is performed in this case before setting left side fill type.</s>
973 <s f="swfshape_setleftfill" u="void swfshape_setleftfill(int arg1 [, int g ,int b [,int a]])">Sets the right side fill style to fill in case only one parameter is passed. When 3 or 4 parameters are passed they are treated as : int r, int g, int b, int a . Solid fill is performed in this case before setting right side fill type.</s>
974 <s f="swfshape_setline" u="void swfshape_setline(int width, int r, int g, int b [, int a])">Sets the current line style for this SWFShape</s>
975 <s f="swfsound_init" u="class swfsound_init(string filename, int flags)">Returns a new SWFSound object from given file</s>
976 <s f="swfsprite_add" u="object swfsprite_add(object SWFCharacter)">Adds the character to the sprite, returns a displayitem object</s>
977 <s f="swfsprite_init" u="class swfsprite_init(void)">Returns a new SWFSprite object</s>
978 <s f="swfsprite_remove" u="void swfsprite_remove(object SWFDisplayItem)">Remove the named character from the sprite's display list</s>
979 <s f="swftext_init" u="class swftext_init(void)">Returns new SWFText object</s>
980 <s f="swftextfield_align" u="void swftextfield_align(int alignment)">Sets the alignment of this textfield</s>
981 <s f="swftextfield_init" u="object swftextfield_init([int flags])">Returns a new SWFTextField object</s>
982 <s f="udm_add_search_limit" u="int udm_add_search_limit(int agent, int var, string val)">Add mnoGoSearch search restrictions</s>
983 <s f="udm_alloc_agent" u="int udm_alloc_agent(string dbaddr [, string dbmode])">Allocate mnoGoSearch session</s>
984 <s f="udm_alloc_agent_array" u="int udm_alloc_agent_array(array dbaddr)">Allocate mnoGoSearch session</s>
985 <s f="udm_api_version" u="int udm_api_version()">Get mnoGoSearch API version</s>
986 <s f="udm_cat_list" u="array udm_cat_list(int agent, string category)">Get mnoGoSearch categories list with the same root</s>
987 <s f="udm_cat_path" u="array udm_cat_path(int agent, string category)">Get mnoGoSearch categories path from the root to the given catgory</s>
988 <s f="udm_check_charset" u="int udm_check_charset(int agent, string charset)">Check if the given charset is known to mnogosearch</s>
989 <s f="udm_check_stored" u="int udm_check_stored(int agent, int link, string doc_id)">Open connection to stored</s>
990 <s f="udm_clear_search_limits" u="int udm_clear_search_limits(int agent)">Clear all mnoGoSearch search restrictions</s>
991 <s f="udm_close_stored" u="int udm_close_stored(int agent, int link)">Open connection to stored</s>
992 <s f="udm_errno" u="int udm_errno(int agent)">Get mnoGoSearch error number</s>
993 <s f="udm_error" u="string udm_error(int agent)">Get mnoGoSearch error message</s>
994 <s f="udm_find" u="int udm_find(int agent, string query)">Perform search</s>
995 <s f="udm_free_agent" u="int udm_free_agent(int agent)">Free mnoGoSearch session</s>
996 <s f="udm_free_ispell_data" u="int udm_free_ispell_data(int agent)">Free memory allocated for ispell data</s>
997 <s f="udm_free_res" u="int udm_free_res(int res)">mnoGoSearch free result</s>
998 <s f="udm_get_doc_count" u="int udm_get_doc_count(int agent)">Get total number of documents in database</s>
999 <s f="udm_get_res_field" u="string udm_get_res_field(int res, int row, int field)">Fetch mnoGoSearch result field</s>
1000 <s f="udm_get_res_field_ex" u="string udm_get_res_field_ex(int res, int row, string field)">Fetch mnoGoSearch result field</s>
1001 <s f="udm_get_res_param" u="string udm_get_res_param(int res, int param)">Get mnoGoSearch result parameters</s>
1002 <s f="udm_load_ispell_data" u="int udm_load_ispell_data(int agent, int var, string val1, [string charset], string val2, int flag)">Load ispell data</s>
1003 <s f="udm_make_excerpt" u="int udm_make_excerpt(int agent, int res, int row)">Perform search</s>
1004 <s f="udm_open_stored" u="int udm_open_stored(int agent, string storedaddr)">Open connection to stored</s>
1005 <s f="udm_parse_query_string" u="int udm_parse_query_string(int agent, string str)">Parses query string, initialises variables and search limits taken from it</s>
1006 <s f="udm_set_agent_param" u="int udm_set_agent_param(int agent, int var, string val)">Set mnoGoSearch agent session parameters</s>
1007 <s f="udm_set_agent_param_ex" u="int udm_set_agent_param_ex(int agent, string var, string val)">Set mnoGoSearch agent session parameters extended</s>
1008 <s f="msession_call" u="string msession_call(string fn_name, [, string param1 ], ... [,string param4])">Call the plugin function named fn_name</s>
1009 <s f="msession_connect" u="bool msession_connect(string host, string port)">Connect to msession sever</s>
1010 <s f="msession_count" u="int msession_count(void)">Get session count</s>
1011 <s f="msession_create" u="bool msession_create(string session)">Create a session</s>
1012 <s f="msession_ctl" u="int msession_ctl(string name)">Lock a session</s>
1013 <s f="msession_destroy" u="bool msession_destroy(string name)">Destroy a session</s>
1014 <s f="msession_disconnect" u="void msession_disconnect(void)">Disconnect from msession server</s>
1015 <s f="msession_exec" u="string msession_exec(string cmdline)">executes a program on msession system</s>
1016 <s f="msession_find" u="array msession_find(string name, string value)">Find all sessions with name and value</s>
1017 <s f="msession_get" u="string msession_get(string session, string name, string default_value)">Get value from session</s>
1018 <s f="msession_get_array" u="array msession_get_array(string session)">Get array of msession variables</s>
1019 <s f="msession_get_data" u="string msession_get_data(string session)">Get data session unstructured data. (PHP sessions use this)</s>
1020 <s f="msession_inc" u="string msession_inc(string session, string name)">Increment value in session</s>
1021 <s f="msession_list" u="array msession_list(void)">List all sessions</s>
1022 <s f="msession_listvar" u="array msession_listvar(string name)">return associative array of value:session for all sessions with a variable named 'name'</s>
1023 <s f="msession_lock" u="int msession_lock(string name)">Lock a session</s>
1024 <s f="msession_ping" u="bool msession_ping(void)">returns non-zero if msession is alive</s>
1025 <s f="msession_plugin" u="string msession_plugin(string session, string val [, string param ])">Call the personality plugin escape function</s>
1026 <s f="msession_randstr" u="string msession_randstr(int num_chars)">Get random string</s>
1027 <s f="msession_set" u="bool msession_set(string session, string name, string value)">Set value in session</s>
1028 <s f="msession_set_array" u="bool msession_set_array(string session, array tuples)">Set msession variables from an array</s>
1029 <s f="msession_set_data" u="bool msession_set_data(string session, string value)">Set data session unstructured data. (PHP sessions use this)</s>
1030 <s f="msession_timeout" u="int msession_timeout(string session [, int param ])">Set/get session timeout</s>
1031 <s f="msession_uniq" u="string msession_uniq(int num_chars)">Get uniq id</s>
1032 <s f="msession_unlock" u="int msession_unlock(string session, int key)">Unlock a session</s>
1033 <s f="msql_affected_rows" u="int msql_affected_rows(resource query)">Return number of affected rows</s>
1034 <s f="msql_close" u="bool msql_close([resource link_identifier])">Close an mSQL connection</s>
1035 <s f="msql_connect" u="int msql_connect([string hostname[:port]] [, string username] [, string password])">Open a connection to an mSQL Server</s>
1036 <s f="msql_create_db" u="bool msql_create_db(string database_name [, resource link_identifier])">Create an mSQL database</s>
1037 <s f="msql_data_seek" u="bool msql_data_seek(resource query, int row_number)">Move internal result pointer</s>
1038 <s f="msql_db_query" u="resource msql_db_query(string database_name, string query [, resource link_identifier])">Send an SQL query to mSQL</s>
1039 <s f="msql_drop_db" u="bool msql_drop_db(string database_name [, resource link_identifier])">Drop (delete) an mSQL database</s>
1040 <s f="msql_error" u="string msql_error(void)">Returns the text of the error message from previous mSQL operation</s>
1041 <s f="msql_fetch_array" u="array msql_fetch_array(resource query [, int result_type])">Fetch a result row as an associative array</s>
1042 <s f="msql_fetch_field" u="object msql_fetch_field(resource query [, int field_offset])">Get column information from a result and return as an object</s>
1043 <s f="msql_fetch_object" u="object msql_fetch_object(resource query [, resource result_type])">Fetch a result row as an object</s>
1044 <s f="msql_fetch_row" u="array msql_fetch_row(resource query)">Get a result row as an enumerated array</s>
1045 <s f="msql_field_flags" u="string msql_field_flags(resource query, int field_offset)">Get the flags associated with the specified field in a result</s>
1046 <s f="msql_field_len" u="int msql_field_len(int query, int field_offet)">Returns the length of the specified field</s>
1047 <s f="msql_field_name" u="string msql_field_name(resource query, int field_index)">Get the name of the specified field in a result</s>
1048 <s f="msql_field_seek" u="bool msql_field_seek(resource query, int field_offset)">Set result pointer to a specific field offset</s>
1049 <s f="msql_field_table" u="string msql_field_table(resource query, int field_offset)">Get name of the table the specified field is in</s>
1050 <s f="msql_field_type" u="string msql_field_type(resource query, int field_offset)">Get the type of the specified field in a result</s>
1051 <s f="msql_free_result" u="bool msql_free_result(resource query)">Free result memory</s>
1052 <s f="msql_list_dbs" u="resource msql_list_dbs([resource link_identifier])">List databases available on an mSQL server</s>
1053 <s f="msql_list_fields" u="resource msql_list_fields(string database_name, string table_name [, resource link_identifier])">List mSQL result fields</s>
1054 <s f="msql_list_tables" u="resource msql_list_tables(string database_name [, resource link_identifier])">List tables in an mSQL database</s>
1055 <s f="msql_num_fields" u="int msql_num_fields(resource query)">Get number of fields in a result</s>
1056 <s f="msql_num_rows" u="int msql_num_rows(resource query)">Get number of rows in a result</s>
1057 <s f="msql_pconnect" u="int msql_pconnect([string hostname[:port]] [, string username] [, string password])">Open a persistent connection to an mSQL Server</s>
1058 <s f="msql_query" u="resource msql_query(string query [, resource link_identifier])">Send an SQL query to mSQL</s>
1059 <s f="msql_result" u="string msql_result(int query, int row [, mixed field])">Get result data</s>
1060 <s f="msql_select_db" u="bool msql_select_db(string database_name [, resource link_identifier])">Select an mSQL database</s>
1061 <s f="mssql_bind" u="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</s>
1062 <s f="mssql_close" u="bool mssql_close([resource conn_id])">Closes a connection to a MS-SQL server</s>
1063 <s f="mssql_connect" u="int mssql_connect([string servername [, string username [, string password]]])">Establishes a connection to a MS-SQL server</s>
1064 <s f="mssql_data_seek" u="bool mssql_data_seek(resource result_id, int offset)">Moves the internal row pointer of the MS-SQL result associated with the specified result identifier to pointer to the specified row number</s>
1065 <s f="mssql_execute" u="mixed mssql_execute(resource stmt [, bool skip_results = false])">Executes a stored procedure on a MS-SQL server database</s>
1066 <s f="mssql_fetch_array" u="array mssql_fetch_array(resource result_id [, int result_type])">Returns an associative array of the current row in the result set specified by result_id</s>
1067 <s f="mssql_fetch_assoc" u="array mssql_fetch_assoc(resource result_id)">Returns an associative array of the current row in the result set specified by result_id</s>
1068 <s f="mssql_fetch_batch" u="int mssql_fetch_batch(resource result_index)">Returns the next batch of records</s>
1069 <s f="mssql_fetch_field" u="object mssql_fetch_field(resource result_id [, int offset])">Gets information about certain fields in a query result</s>
1070 <s f="mssql_fetch_object" u="object mssql_fetch_object(resource result_id [, int result_type])">Returns a psuedo-object of the current row in the result set specified by result_id</s>
1071 <s f="mssql_fetch_row" u="array mssql_fetch_row(resource result_id)">Returns an array of the current row in the result set specified by result_id</s>
1072 <s f="mssql_field_length" u="int mssql_field_length(resource result_id [, int offset])">Get the length of a MS-SQL field</s>
1073 <s f="mssql_field_name" u="string mssql_field_name(resource result_id [, int offset])">Returns the name of the field given by offset in the result set given by result_id</s>
1074 <s f="mssql_field_seek" u="bool mssql_field_seek(int result_id, int offset)">Seeks to the specified field offset</s>
1075 <s f="mssql_field_type" u="string mssql_field_type(resource result_id [, int offset])">Returns the type of a field</s>
1076 <s f="mssql_free_result" u="bool mssql_free_result(resource result_index)">Free a MS-SQL result index</s>
1077 <s f="mssql_free_statement" u="bool mssql_free_statement(resource result_index)">Free a MS-SQL statement index</s>
1078 <s f="mssql_get_last_message" u="string mssql_get_last_message(void)">Gets the last message from the MS-SQL server</s>
1079 <s f="mssql_guid_string" u="string mssql_guid_string(string binary [,int short_format])">Converts a 16 byte binary GUID to a string</s>
1080 <s f="mssql_init" u="int mssql_init(string sp_name [, resource conn_id])">Initializes a stored procedure or a remote stored procedure</s>
1081 <s f="mssql_min_error_severity" u="void mssql_min_error_severity(int severity)">Sets the lower error severity</s>
1082 <s f="mssql_min_message_severity" u="void mssql_min_message_severity(int severity)">Sets the lower message severity</s>
1083 <s f="mssql_next_result" u="bool mssql_next_result(resource result_id)">Move the internal result pointer to the next result</s>
1084 <s f="mssql_num_fields" u="int mssql_num_fields(resource mssql_result_index)">Returns the number of fields fetched in from the result id specified</s>
1085 <s f="mssql_num_rows" u="int mssql_num_rows(resource mssql_result_index)">Returns the number of rows fetched in from the result id specified</s>
1086 <s f="mssql_pconnect" u="int mssql_pconnect([string servername [, string username [, string password]]])">Establishes a persistent connection to a MS-SQL server</s>
1087 <s f="mssql_query" u="resource mssql_query(string query [, resource conn_id [, int batch_size]])">Perform an SQL query on a MS-SQL server database</s>
1088 <s f="mssql_result" u="string mssql_result(resource result_id, int row, mixed field)">Returns the contents of one cell from a MS-SQL result set</s>
1089 <s f="mssql_rows_affected" u="int mssql_rows_affected(resource conn_id)">Returns the number of records affected by the query</s>
1090 <s f="mssql_select_db" u="bool mssql_select_db(string database_name [, resource conn_id])">Select a MS-SQL database</s>
1091 <s f="mysql_affected_rows" u="int mysql_affected_rows([int link_identifier])">Gets number of affected rows in previous MySQL operation</s>
1092 <s f="mysql_client_encoding" u="string mysql_client_encoding([int link_identifier])">Returns the default character set for the current connection</s>
1093 <s f="mysql_close" u="bool mysql_close([int link_identifier])">Close a MySQL connection</s>
1094 <s f="mysql_connect" u="resource mysql_connect([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]])">Opens a connection to a MySQL Server</s>
1095 <s f="mysql_create_db" u="bool mysql_create_db(string database_name [, int link_identifier])">Create a MySQL database</s>
1096 <s f="mysql_data_seek" u="bool mysql_data_seek(resource result, int row_number)">Move internal result pointer</s>
1097 <s f="mysql_db_query" u="resource mysql_db_query(string database_name, string query [, int link_identifier])">Sends an SQL query to MySQL</s>
1098 <s f="mysql_drop_db" u="bool mysql_drop_db(string database_name [, int link_identifier])">Drops (delete) a MySQL database</s>
1099 <s f="mysql_errno" u="int mysql_errno([int link_identifier])">Returns the number of the error message from previous MySQL operation</s>
1100 <s f="mysql_error" u="string mysql_error([int link_identifier])">Returns the text of the error message from previous MySQL operation</s>
1101 <s f="mysql_escape_string" u="string mysql_escape_string(string to_be_escaped)">Escape string for mysql query</s>
1102 <s f="mysql_fetch_array" u="array mysql_fetch_array(resource result [, int result_type])">Fetch a result row as an array (associative, numeric or both)</s>
1103 <s f="mysql_fetch_assoc" u="array mysql_fetch_assoc(resource result)">Fetch a result row as an associative array</s>
1104 <s f="mysql_fetch_field" u="object mysql_fetch_field(resource result [, int field_offset])">Gets column information from a result and return as an object</s>
1105 <s f="mysql_fetch_lengths" u="array mysql_fetch_lengths(resource result)">Gets max data size of each column in a result</s>
1106 <s f="mysql_fetch_object" u="object mysql_fetch_object(resource result [, string class_name [, NULL|array ctor_params]])">Fetch a result row as an object</s>
1107 <s f="mysql_fetch_row" u="array mysql_fetch_row(resource result)">Gets a result row as an enumerated array</s>
1108 <s f="mysql_field_flags" u="string mysql_field_flags(resource result, int field_offset)">Gets the flags associated with the specified field in a result</s>
1109 <s f="mysql_field_len" u="int mysql_field_len(resource result, int field_offset)">Returns the length of the specified field</s>
1110 <s f="mysql_field_name" u="string mysql_field_name(resource result, int field_index)">Gets the name of the specified field in a result</s>
1111 <s f="mysql_field_seek" u="bool mysql_field_seek(resource result, int field_offset)">Sets result pointer to a specific field offset</s>
1112 <s f="mysql_field_table" u="string mysql_field_table(resource result, int field_offset)">Gets name of the table the specified field is in</s>
1113 <s f="mysql_field_type" u="string mysql_field_type(resource result, int field_offset)">Gets the type of the specified field in a result</s>
1114 <s f="mysql_free_result" u="bool mysql_free_result(resource result)">Free result memory</s>
1115 <s f="mysql_get_client_info" u="string mysql_get_client_info(void)">Returns a string that represents the client library version</s>
1116 <s f="mysql_get_host_info" u="string mysql_get_host_info([int link_identifier])">Returns a string describing the type of connection in use, including the server host name</s>
1117 <s f="mysql_get_proto_info" u="int mysql_get_proto_info([int link_identifier])">Returns the protocol version used by current connection</s>
1118 <s f="mysql_get_server_info" u="string mysql_get_server_info([int link_identifier])">Returns a string that represents the server version number</s>
1119 <s f="mysql_info" u="string mysql_info([int link_identifier])">Returns a string containing information about the most recent query</s>
1120 <s f="mysql_insert_id" u="int mysql_insert_id([int link_identifier])">Gets the ID generated from the previous INSERT operation</s>
1121 <s f="mysql_list_dbs" u="resource mysql_list_dbs([int link_identifier])">List databases available on a MySQL server</s>
1122 <s f="mysql_list_fields" u="resource mysql_list_fields(string database_name, string table_name [, int link_identifier])">List MySQL result fields</s>
1123 <s f="mysql_list_processes" u="resource mysql_list_processes([int link_identifier])">Returns a result set describing the current server threads</s>
1124 <s f="mysql_list_tables" u="resource mysql_list_tables(string database_name [, int link_identifier])">List tables in a MySQL database</s>
1125 <s f="mysql_num_fields" u="int mysql_num_fields(resource result)">Gets number of fields in a result</s>
1126 <s f="mysql_num_rows" u="int mysql_num_rows(resource result)">Gets number of rows in a result</s>
1127 <s f="mysql_pconnect" u="resource mysql_pconnect([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])">Opens a persistent connection to a MySQL Server</s>
1128 <s f="mysql_ping" u="bool mysql_ping([int link_identifier])">Ping a server connection. If no connection then reconnect.</s>
1129 <s f="mysql_query" u="resource mysql_query(string query [, int link_identifier])">Sends an SQL query to MySQL</s>
1130 <s f="mysql_real_escape_string" u="string mysql_real_escape_string(string to_be_escaped [, int link_identifier])">Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection</s>
1131 <s f="mysql_result" u="mixed mysql_result(resource result, int row [, mixed field])">Gets result data</s>
1132 <s f="mysql_select_db" u="bool mysql_select_db(string database_name [, int link_identifier])">Selects a MySQL database</s>
1133 <s f="mysql_stat" u="string mysql_stat([int link_identifier])">Returns a string containing status information</s>
1134 <s f="mysql_thread_id" u="int mysql_thread_id([int link_identifier])">Returns the thread id of current connection</s>
1135 <s f="mysql_unbuffered_query" u="resource mysql_unbuffered_query(string query [, int link_identifier])">Sends an SQL query to MySQL, without fetching and buffering the result rows</s>
1136 <s f="mysqli_affected_rows" u="mixed mysqli_affected_rows(object link)">Get number of affected rows in previous MySQL operation</s>
1137 <s f="mysqli_autocommit" u="bool mysqli_autocommit(object link, bool mode)">Turn auto commit on or of</s>
1138 <s f="mysqli_change_user" u="bool mysqli_change_user(object link, string user, string password, string database)">Change logged-in user of the active connection</s>
1139 <s f="mysqli_character_set_name" u="string mysqli_character_set_name(object link)">Returns the name of the character set used for this connection</s>
1140 <s f="mysqli_close" u="bool mysqli_close(object link)">Close connection</s>
1141 <s f="mysqli_commit" u="bool mysqli_commit(object link)">Commit outstanding actions and close transaction</s>
1142 <s f="mysqli_data_seek" u="bool mysqli_data_seek(object result, int offset)">Move internal result pointer</s>
1143 <s f="mysqli_debug" u="void mysqli_debug(string debug)"/>
1144 <s f="mysqli_dump_debug_info" u="bool mysqli_dump_debug_info(object link)"/>
1145 <s f="mysqli_errno" u="int mysqli_errno(object link)">Returns the numerical value of the error message from previous MySQL operation</s>
1146 <s f="mysqli_error" u="string mysqli_error(object link)">Returns the text of the error message from previous MySQL operation</s>
1147 <s f="mysqli_field_count" u="int mysqli_field_count(object link)">Fetch the number of fields returned by the last query for the given link</s>
1148 <s f="mysqli_field_seek" u="int mysqli_field_seek(object result, int fieldnr)">Set result pointer to a specified field offset</s>
1149 <s f="mysqli_field_tell" u="int mysqli_field_tell(object result)">Get current field offset of result pointer</s>
1150 <s f="mysqli_free_result" u="void mysqli_free_result(object result)">Free query result memory for the given result handle</s>
1151 <s f="mysqli_get_client_info" u="string mysqli_get_client_info(void)">Get MySQL client info</s>
1152 <s f="mysqli_get_client_version" u="int mysqli_get_client_version(void)">Get MySQL client info</s>
1153 <s f="mysqli_get_proto_info" u="int mysqli_get_proto_info(object link)">Get MySQL protocol information</s>
1154 <s f="mysqli_get_server_info" u="string mysqli_get_server_info(object link)">Get MySQL server info</s>
1155 <s f="mysqli_get_server_version" u="int mysqli_get_server_version(object link)">Return the MySQL version for the server referenced by the given link</s>
1156 <s f="mysqli_info" u="string mysqli_info(object link)">Get information about the most recent query</s>
1157 <s f="mysqli_init" u="resource mysqli_init(void)">Initialize mysqli and return a resource for use with mysql_real_connect</s>
1158 <s f="mysqli_insert_id" u="mixed mysqli_insert_id(object link)">Get the ID generated from the previous INSERT operation</s>
1159 <s f="mysqli_kill" u="bool mysqli_kill(object link, int processid)">Kill a mysql process on the server</s>
1160 <s f="mysqli_more_results" u="bool mysqli_more_results(object link)">check if there any more query results from a multi query</s>
1161 <s f="mysqli_next_result" u="bool mysqli_next_result(object link)">read next result from multi_query</s>
1162 <s f="mysqli_num_fields" u="int mysqli_num_fields(object result)">Get number of fields in result</s>
1163 <s f="mysqli_num_rows" u="mixed mysqli_num_rows(object result)">Get number of rows in result</s>
1164 <s f="mysqli_options" u="bool mysqli_options(object link, int flags, mixed values)">Set options</s>
1165 <s f="mysqli_ping" u="bool mysqli_ping(object link)">Ping a server connection or reconnect if there is no connection</s>
1166 <s f="mysqli_prepare" u="mixed mysqli_prepare(object link, string query)">Prepare a SQL statement for execution</s>
1167 <s f="mysqli_real_connect" u="bool mysqli_real_connect(object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]])">Open a connection to a mysql server</s>
1168 <s f="mysqli_real_escape_string" u="string mysqli_real_escape_string(object link, string escapestr)">Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection</s>
1169 <s f="mysqli_real_query" u="bool mysqli_real_query(object link, string query)">Binary-safe version of mysql_query()</s>
1170 <s f="mysqli_rollback" u="bool mysqli_rollback(object link)">Undo actions from current transaction</s>
1171 <s f="mysqli_select_db" u="string mysqli_select_db(object link, string dbname)">Select a MySQL database</s>
1172 <s f="mysqli_send_long_data" u="bool mysqli_send_long_data(object stmt, int param_nr, string data)"/>
1173 <s f="mysqli_server_end" u="void mysqli_server_end(void)"/>
1174 <s f="mysqli_server_init" u="bool mysqli_server_init(void)">initialize embedded server</s>
1175 <s f="mysqli_sqlstate" u="string mysqli_sqlstate(object link)">Returns the SQLSTATE error from previous MySQL operation</s>
1176 <s f="mysqli_ssl_set" u="bool mysqli_ssl_set(object link ,string key ,string cert ,string ca ,string capath ,string cipher])"/>
1177 <s f="mysqli_stat" u="mixed mysqli_stat(object link)">Get current system status</s>
1178 <s f="mysqli_stmt_affected_rows" u="mixed mysqli_stmt_affected_rows(object stmt)">Return the number of rows affected in the last query for the given link</s>
1179 <s f="mysqli_stmt_bind_param" u="bool mysqli_stmt_bind_param(object stmt, string types, mixed variable [,mixed,....])">Bind variables to a prepared statement as parameters</s>
1180 <s f="mysqli_stmt_bind_result" u="bool mysqli_stmt_bind_result(object stmt, mixed var, [,mixed, ...])">Bind variables to a prepared statement for result storage</s>
1181 <s f="mysqli_stmt_close" u="bool mysqli_stmt_close(object stmt)">Close statement</s>
1182 <s f="mysqli_stmt_data_seek" u="void mysqli_stmt_data_seek(object stmt, int offset)">Move internal result pointer</s>
1183 <s f="mysqli_stmt_errno" u="int mysqli_stmt_errno(object stmt)"/>
1184 <s f="mysqli_stmt_error" u="string mysqli_stmt_error(object stmt)"/>
1185 <s f="mysqli_stmt_execute" u="bool mysqli_stmt_execute(object stmt)">Execute a prepared statement</s>
1186 <s f="mysqli_stmt_fetch" u="mixed mysqli_stmt_fetch(object stmt)">Fetch results from a prepared statement into the bound variables</s>
1187 <s f="mysqli_stmt_free_result" u="void mysqli_stmt_free_result(object stmt)">Free stored result memory for the given statement handle</s>
1188 <s f="mysqli_stmt_init" u="object mysqli_stmt_init(object link)">Initialize statement object</s>
1189 <s f="mysqli_stmt_num_rows" u="mixed mysqli_stmt_num_rows(object stmt)">Return the number of rows in statements result set</s>
1190 <s f="mysqli_stmt_prepare" u="bool mysqli_stmt_prepare(object link, string query)">prepare server side statement with query</s>
1191 <s f="mysqli_stmt_reset" u="void mysqli_stmt_reset(object stmt)">reset a prepared statement</s>
1192 <s f="mysqli_stmt_result_metadata" u="mixed mysqli_stmt_result_metadata(object stmt)">return result set from statement</s>
1193 <s f="mysqli_stmt_sqlstate" u="string mysqli_stmt_sqlstate(object stmt)"/>
1194 <s f="mysqli_stmt_store_result" u="bool mysqli_stmt_store_result(stmt)"/>
1195 <s f="mysqli_store_result" u="object mysqli_store_result(object link)">Buffer result set on client</s>
1196 <s f="mysqli_thread_id" u="int mysqli_thread_id(object link)">Return the current thread ID</s>
1197 <s f="mysqli_thread_safe" u="bool mysqli_thread_safe(void)">Return whether thread safety is given or not</s>
1198 <s f="mysqli_use_result" u="mixed mysqli_use_result(object link)">Directly retrieve query results - do not buffer results on client side</s>
1199 <s f="mysqli_connect" u="object mysqli_connect([string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]])">Open a connection to a mysql server</s>
1200 <s f="mysqli_connect_errno" u="int mysqli_connect_errno(void)">Returns the numerical value of the error message from last connect command</s>
1201 <s f="mysqli_connect_error" u="string mysqli_connect_error(void)">Returns the text of the error message from previous MySQL operation</s>
1202 <s f="mysqli_embedded_connect" u="object mysqli_embedded_connect(void)">Open a connection to a embedded mysql server</s>
1203 <s f="mysqli_multi_query" u="bool mysqli_multi_query(object link, string query)">Binary-safe version of mysql_query()</s>
1204 <s f="mysqli_query" u="mixed mysqli_query(object link, string query [,int resultmode])"/>
1205 <s f="mysqli_disable_reads_from_master" u="void mysqli_disable_reads_from_master(object link)"/>
1206 <s f="mysqli_disable_rpl_parse" u="void mysqli_disable_rpl_parse(object link)"/>
1207 <s f="mysqli_enable_reads_from_master" u="void mysqli_enable_reads_from_master(object link)"/>
1208 <s f="mysqli_enable_rpl_parse" u="void mysqli_enable_rpl_parse(object link)"/>
1209 <s f="mysqli_master_query" u="bool mysqli_master_query(object link, string query)">Enforce execution of a query on the master in a master/slave setup</s>
1210 <s f="mysqli_rpl_parse_enabled" u="int mysqli_rpl_parse_enabled(object link)"/>
1211 <s f="mysqli_rpl_probe" u="bool mysqli_rpl_probe(object link)"/>
1212 <s f="mysqli_rpl_query_type" u="int mysqli_rpl_query_type(string query)"/>
1213 <s f="mysqli_send_query" u="bool mysqli_send_query(object link, string query)"/>
1214 <s f="mysqli_slave_query" u="bool mysqli_slave_query(object link, string query)">Enforce execution of a query on a slave in a master/slave setup</s>
1215 <s f="ncurses_addch" u="int ncurses_addch(int ch)">Adds character at current position and advance cursor</s>
1216 <s f="ncurses_addchnstr" u="int ncurses_addchnstr(string s, int n)">Adds attributed string with specified length at current position</s>
1217 <s f="ncurses_addchstr" u="int ncurses_addchstr(string s)">Adds attributed string at current position</s>
1218 <s f="ncurses_addnstr" u="int ncurses_addnstr(string s, int n)">Adds string with specified length at current position</s>
1219 <s f="ncurses_addstr" u="int ncurses_addstr(string text)">Outputs text at current position</s>
1220 <s f="ncurses_assume_default_colors" u="int ncurses_assume_default_colors(int fg, int bg)">Defines default colors for color 0</s>
1221 <s f="ncurses_attroff" u="int ncurses_attroff(int attributes)">Turns off the given attributes</s>
1222 <s f="ncurses_attron" u="int ncurses_attron(int attributes)">Turns on the given attributes</s>
1223 <s f="ncurses_attrset" u="int ncurses_attrset(int attributes)">Sets given attributes</s>
1224 <s f="ncurses_baudrate" u="int ncurses_baudrate(void)">Returns baudrate of terminal</s>
1225 <s f="ncurses_beep" u="int ncurses_beep(void)">Let the terminal beep</s>
1226 <s f="ncurses_bkgd" u="int ncurses_bkgd(int attrchar)">Sets background property for terminal screen</s>
1227 <s f="ncurses_bkgdset" u="void ncurses_bkgdset(int attrchar)">Controls screen background</s>
1228 <s f="ncurses_border" u="int ncurses_border(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 screen using attributed characters</s>
1229 <s f="ncurses_bottom_panel" u="int ncurses_bottom_panel(resource panel)">Moves a visible panel to the bottom of the stack</s>
1230 <s f="ncurses_can_change_color" u="bool ncurses_can_change_color(void)">Checks if we can change terminals colors</s>
1231 <s f="ncurses_cbreak" u="bool ncurses_cbreak(void)">Switches of input buffering</s>
1232 <s f="ncurses_clear" u="bool ncurses_clear(void)">Clears screen</s>
1233 <s f="ncurses_clrtobot" u="bool ncurses_clrtobot(void)">Clears screen from current position to bottom</s>
1234 <s f="ncurses_clrtoeol" u="bool ncurses_clrtoeol(void)">Clears screen from current position to end of line</s>
1235 <s f="ncurses_color_content" u="int ncurses_color_content(int color, int &amp;r, int &amp;g, int &amp;b)">Gets the RGB value for color</s>
1236 <s f="ncurses_color_set" u="int ncurses_color_set(int pair)">Sets fore- and background color</s>
1237 <s f="ncurses_curs_set" u="int ncurses_curs_set(int visibility)">Sets cursor state</s>
1238 <s f="ncurses_def_prog_mode" u="int ncurses_def_prog_mode(void)">Saves terminals (program) mode</s>
1239 <s f="ncurses_def_shell_mode" u="int ncurses_def_shell_mode(void)">Saves terminal (shell) mode</s>
1240 <s f="ncurses_define_key" u="int ncurses_define_key(string definition, int keycode)">Defines a keycode</s>
1241 <s f="ncurses_del_panel" u="bool ncurses_del_panel(resource panel)">Remove panel from the stack and delete it (but not the associated window)</s>
1242 <s f="ncurses_delay_output" u="int ncurses_delay_output(int milliseconds)">Delays output on terminal using padding characters</s>
1243 <s f="ncurses_delch" u="int ncurses_delch(void)">Deletes character at current position, move rest of line left</s>
1244 <s f="ncurses_deleteln" u="int ncurses_deleteln(void)">Deletes line at current position, move rest of screen up</s>
1245 <s f="ncurses_delwin" u="int ncurses_delwin(resource window)">Deletes a ncurses window</s>
1246 <s f="ncurses_doupdate" u="int ncurses_doupdate(void)">Writes all prepared refreshes to terminal</s>
1247 <s f="ncurses_echo" u="int ncurses_echo(void)">Activates keyboard input echo</s>
1248 <s f="ncurses_echochar" u="int ncurses_echochar(int character)">Single character output including refresh</s>
1249 <s f="ncurses_end" u="int ncurses_end(void)">Stops using ncurses, clean up the screen</s>
1250 <s f="ncurses_erase" u="int ncurses_erase(void)">Erases terminal screen</s>
1251 <s f="ncurses_erasechar" u="string ncurses_erasechar(void)">Returns current erase character</s>
1252 <s f="ncurses_filter" u="void ncurses_filter(void)"/>
1253 <s f="ncurses_flash" u="int ncurses_flash(void)">Flashes terminal screen (visual bell)</s>
1254 <s f="ncurses_flushinp" u="int ncurses_flushinp(void)">Flushes keyboard input buffer</s>
1255 <s f="ncurses_getch" u="int ncurses_getch(void)">Reads a character from keyboard</s>
1256 <s f="ncurses_getmaxyx" u="void ncurses_getmaxyx(resource window, int &amp;y, int &amp;x)">Returns the size of a window</s>
1257 <s f="ncurses_getmouse" u="bool ncurses_getmouse(array &amp;mevent)">Reads mouse event from queue. The content of mevent is cleared before new data is added.</s>
1258 <s f="ncurses_getyx" u="void ncurses_getyx(resource window, int &amp;y, int &amp;x)">Returns the current cursor position for a window</s>
1259 <s f="ncurses_halfdelay" u="int ncurses_halfdelay(int tenth)">Puts terminal into halfdelay mode</s>
1260 <s f="ncurses_has_colors" u="bool ncurses_has_colors(void)">Checks if terminal has colors</s>
1261 <s f="ncurses_has_ic" u="int ncurses_has_ic(void)">Checks for insert- and delete-capabilities</s>
1262 <s f="ncurses_has_il" u="int ncurses_has_il(void)">Checks for line insert- and delete-capabilities</s>
1263 <s f="ncurses_has_key" u="int ncurses_has_key(int keycode)">Checks for presence of a function key on terminal keyboard</s>
1264 <s f="ncurses_hide_panel" u="int ncurses_hide_panel(resource panel)">Remove panel from the stack, making it invisible</s>
1265 <s f="ncurses_hline" u="int ncurses_hline(int charattr, int n)">Draws a horizontal line at current position using an attributed character and max. n characters long</s>
1266 <s f="ncurses_inch" u="string ncurses_inch(void)">Gets character and attribute at current position</s>
1267 <s f="ncurses_init" u="int ncurses_init(void)">Initializes ncurses</s>
1268 <s f="ncurses_init_color" u="int ncurses_init_color(int color, int r, int g, int b)">Sets new RGB value for color</s>
1269 <s f="ncurses_init_pair" u="int ncurses_init_pair(int pair, int fg, int bg)">Allocates a color pair</s>
1270 <s f="ncurses_insch" u="int ncurses_insch(int character)">Inserts character moving rest of line including character at current position</s>
1271 <s f="ncurses_insdelln" u="int ncurses_insdelln(int count)">Inserts lines before current line scrolling down (negative numbers delete and scroll up)</s>
1272 <s f="ncurses_insertln" u="int ncurses_insertln(void)">Inserts a line, move rest of screen down</s>
1273 <s f="ncurses_insstr" u="int ncurses_insstr(string text)">Inserts string at current position, moving rest of line right</s>
1274 <s f="ncurses_instr" u="int ncurses_instr(string &amp;buffer)">Reads string from terminal screen</s>
1275 <s f="ncurses_isendwin" u="int ncurses_isendwin(void)">Ncurses is in endwin mode, normal screen output may be performed</s>
1276 <s f="ncurses_keyok" u="int ncurses_keyok(int keycode, int enable)">Enables or disable a keycode</s>
1277 <s f="ncurses_keypad" u="int ncurses_keypad(resource window, bool bf)">Turns keypad on or off</s>
1278 <s f="ncurses_killchar" u="string ncurses_killchar(void)">Returns current line kill character</s>
1279 <s f="ncurses_longname" u="string ncurses_longname(void)">Returns terminal description</s>
1280 <s f="ncurses_meta" u="int ncurses_meta(resource window, bool 8bit)">Enables/Disable 8-bit meta key information</s>
1281 <s f="ncurses_mouse_trafo" u="bool ncurses_mouse_trafo(int &amp;y, int &amp;x, bool toscreen)">Transforms coordinates</s>
1282 <s f="ncurses_mouseinterval" u="int ncurses_mouseinterval(int milliseconds)">Sets timeout for mouse button clicks</s>
1283 <s f="ncurses_mousemask" u="int ncurses_mousemask(int newmask, int &amp;oldmask)">Returns and sets mouse options</s>
1284 <s f="ncurses_move" u="int ncurses_move(int y, int x)">Moves output position</s>
1285 <s f="ncurses_move_panel" u="int ncurses_move_panel(resource panel, int startx, int starty)">Moves a panel so that it's upper-left corner is at [startx, starty]</s>
1286 <s f="ncurses_mvaddch" u="int ncurses_mvaddch(int y, int x, int c)">Moves current position and add character</s>
1287 <s f="ncurses_mvaddchnstr" u="int ncurses_mvaddchnstr(int y, int x, string s, int n)">Moves position and add attrributed string with specified length</s>
1288 <s f="ncurses_mvaddchstr" u="int ncurses_mvaddchstr(int y, int x, string s)">Moves position and add attributed string</s>
1289 <s f="ncurses_mvaddnstr" u="int ncurses_mvaddnstr(int y, int x, string s, int n)">Moves position and add string with specified length</s>
1290 <s f="ncurses_mvaddstr" u="int ncurses_mvaddstr(int y, int x, string s)">Moves position and add string</s>
1291 <s f="ncurses_mvcur" u="int ncurses_mvcur(int old_y,int old_x, int new_y, int new_x)">Moves cursor immediately</s>
1292 <s f="ncurses_mvdelch" u="int ncurses_mvdelch(int y, int x)">Moves position and delete character, shift rest of line left</s>
1293 <s f="ncurses_mvgetch" u="int ncurses_mvgetch(int y, int x)">Moves position and get character at new position</s>
1294 <s f="ncurses_mvhline" u="int ncurses_mvhline(int y, int x, int attrchar, int n)">Sets new position and draw a horizontal line using an attributed character and max. n characters long</s>
1295 <s f="ncurses_mvinch" u="int ncurses_mvinch(int y, int x)">Moves position and get attributed character at new position</s>
1296 <s f="ncurses_mvvline" u="int ncurses_mvvline(int y, int x, int attrchar, int n)">Sets new position and draw a vertical line using an attributed character and max. n characters long</s>
1297 <s f="ncurses_mvwaddstr" u="int ncurses_mvwaddstr(resource window, int y, int x, string text)">Adds string at new position in window</s>
1298 <s f="ncurses_napms" u="int ncurses_napms(int milliseconds)">Sleep</s>
1299 <s f="ncurses_new_panel" u="resource ncurses_new_panel(resource window)">Create a new panel and associate it with window</s>
1300 <s f="ncurses_newpad" u="resource ncurses_newpad(int rows, int cols)">Creates a new pad (window)</s>
1301 <s f="ncurses_newwin" u="int ncurses_newwin(int rows, int cols, int y, int x)">Creates a new window</s>
1302 <s f="ncurses_nl" u="int ncurses_nl(void)">Translates newline and carriage return / line feed</s>
1303 <s f="ncurses_nocbreak" u="int ncurses_nocbreak(void)">Switches terminal to cooked mode</s>
1304 <s f="ncurses_noecho" u="int ncurses_noecho(void)">Switches off keyboard input echo</s>
1305 <s f="ncurses_nonl" u="int ncurses_nonl(void)">Do not ranslate newline and carriage return / line feed</s>
1306 <s f="ncurses_noqiflush" u="int ncurses_noqiflush(void)">Do not flush on signal characters</s>
1307 <s f="ncurses_noraw" u="bool ncurses_noraw(void)">Switches terminal out of raw mode</s>
1308 <s f="ncurses_pair_content" u="int ncurses_pair_content(int pair, int &amp;f, int &amp;b)">Gets the RGB value for color</s>
1309 <s f="ncurses_panel_above" u="resource ncurses_panel_above(resource panel)">Returns the panel above panel. If panel is null, returns the bottom panel in the stack</s>
1310 <s f="ncurses_panel_below" u="resource ncurses_panel_below(resource panel)">Returns the panel below panel. If panel is null, returns the top panel in the stack</s>
1311 <s f="ncurses_panel_window" u="resource ncurses_panel_window(resource panel)">Returns the window associated with panel</s>
1312 <s f="ncurses_pnoutrefresh" u="int ncurses_pnoutrefresh(resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)">Copys a region from a pad into the virtual screen</s>
1313 <s f="ncurses_prefresh" u="int ncurses_prefresh(resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)">Copys a region from a pad into the virtual screen</s>
1314 <s f="ncurses_putp" u="int ncurses_putp(string text)">???</s>
1315 <s f="ncurses_qiflush" u="void ncurses_qiflush(void)">Flushes on signal characters</s>
1316 <s f="ncurses_raw" u="int ncurses_raw(void)">Switches terminal into raw mode</s>
1317 <s f="ncurses_refresh" u="int ncurses_refresh(int ch)">Refresh screen</s>
1318 <s f="ncurses_replace_panel" u="int ncurses_replace_panel(resource panel, resource window)">Replaces the window associated with panel</s>
1319 <s f="ncurses_reset_prog_mode" u="int ncurses_reset_prog_mode(void)">Resets the prog mode saved by def_prog_mode</s>
1320 <s f="ncurses_reset_shell_mode" u="int ncurses_reset_shell_mode(void)">Resets the shell mode saved by def_shell_mode</s>
1321 <s f="ncurses_resetty" u="int ncurses_resetty(void)">Restores saved terminal state</s>
1322 <s f="ncurses_savetty" u="int ncurses_savetty(void)">Saves terminal state</s>
1323 <s f="ncurses_scr_dump" u="int ncurses_scr_dump(string filename)">Dumps screen content to file</s>
1324 <s f="ncurses_scr_init" u="int ncurses_scr_init(string filename)">Initializes screen from file dump</s>
1325 <s f="ncurses_scr_restore" u="int ncurses_scr_restore(string filename)">Restores screen from file dump</s>
1326 <s f="ncurses_scr_set" u="int ncurses_scr_set(string filename)">Inherits screen from file dump</s>
1327 <s f="ncurses_scrl" u="int ncurses_scrl(int count)">Scrolls window content up or down without changing current position</s>
1328 <s f="ncurses_show_panel" u="int ncurses_show_panel(resource panel)">Places an invisible panel on top of the stack, making it visible</s>
1329 <s f="ncurses_slk_attr" u="int ncurses_slk_attr(void)">Returns current soft label keys attribute</s>
1330 <s f="ncurses_slk_attroff" u="int ncurses_slk_attroff(int intarg)">???</s>
1331 <s f="ncurses_slk_attron" u="int ncurses_slk_attron(int intarg)">???</s>
1332 <s f="ncurses_slk_attrset" u="int ncurses_slk_attrset(int intarg)">???</s>
1333 <s f="ncurses_slk_clear" u="int ncurses_slk_clear(void)">Clears soft label keys from screen</s>
1334 <s f="ncurses_slk_color" u="int ncurses_slk_color(int intarg)">Sets color for soft label keys</s>
1335 <s f="ncurses_slk_init" u="int ncurses_slk_init(int intarg)">Inits soft label keys</s>
1336 <s f="ncurses_slk_noutrefresh" u="int ncurses_slk_noutrefresh(void)">Copies soft label keys to virtual screen</s>
1337 <s f="ncurses_slk_refresh" u="int ncurses_slk_refresh(void)">Copies soft label keys to screen</s>
1338 <s f="ncurses_slk_restore" u="int ncurses_slk_restore(void)">Restores soft label keys</s>
1339 <s f="ncurses_slk_set" u="bool ncurses_slk_set(int labelnr, string label, int format)">Sets function key labels</s>
1340 <s f="ncurses_slk_touch" u="int ncurses_slk_touch(void)">Forces output when ncurses_slk_noutrefresh is performed</s>
1341 <s f="ncurses_standend" u="int ncurses_standend(void)">Stops using 'standout' attribute</s>
1342 <s f="ncurses_standout" u="int ncurses_standout(void)">Starts using 'standout' attribute</s>
1343 <s f="ncurses_start_color" u="int ncurses_start_color(void)">Starts using colors</s>
1344 <s f="ncurses_termattrs" u="int ncurses_termattrs(void)">Returns a logical OR of all attribute flags supported by terminal</s>
1345 <s f="ncurses_termname" u="string ncurses_termname(void)">Returns terminal name</s>
1346 <s f="ncurses_timeout" u="void ncurses_timeout(int millisec)">Sets timeout for special key sequences</s>
1347 <s f="ncurses_top_panel" u="int ncurses_top_panel(resource panel)">Moves a visible panel to the top of the stack</s>
1348 <s f="ncurses_typeahead" u="int ncurses_typeahead(int fd)">Specifys different filedescriptor for typeahead checking</s>
1349 <s f="ncurses_ungetch" u="int ncurses_ungetch(int keycode)">Puts a character back into the input stream</s>
1350 <s f="ncurses_ungetmouse" u="int ncurses_ungetmouse(array mevent)">Pushes mouse event to queue</s>
1351 <s f="ncurses_update_panels" u="void ncurses_update_panels(void)">Refreshes the virtual screen to reflect the relations between panels in the stack.</s>
1352 <s f="ncurses_use_default_colors" u="int ncurses_use_default_colors(void)">Assigns terminal default colors to color id -1</s>
1353 <s f="ncurses_use_env" u="void ncurses_use_env(int flag)">Controls use of environment information about terminal size</s>
1354 <s f="ncurses_use_extended_names" u="int ncurses_use_extended_names(bool flag)">Controls use of extended names in terminfo descriptions</s>
1355 <s f="ncurses_vidattr" u="int ncurses_vidattr(int intarg)">???</s>
1356 <s f="ncurses_vline" u="int ncurses_vline(int charattr, int n)">Draws a vertical line at current position using an attributed character and max. n characters long</s>
1357 <s f="ncurses_waddch" u="int ncurses_waddch(resource window, int ch)">Adds character at current position in a window and advance cursor</s>
1358 <s f="ncurses_waddstr" u="int ncurses_waddstr(resource window, string str [, int n])">Outputs text at current postion in window</s>
1359 <s f="ncurses_wattroff" u="int ncurses_wattroff(resource window, int attrs)">Turns off attributes for a window</s>
1360 <s f="ncurses_wattron" u="int ncurses_wattron(resource window, int attrs)">Turns on attributes for a window</s>
1361 <s f="ncurses_wattrset" u="int ncurses_wattrset(resource window, int attrs)">Set the attributes for a window</s>
1362 <s f="ncurses_wborder" u="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</s>
1363 <s f="ncurses_wclear" u="int ncurses_wclear(resource window)">Clears window</s>
1364 <s f="ncurses_wcolor_set" u="int ncurses_wcolor_set(resource window, int color_pair)">Sets windows color pairings</s>
1365 <s f="ncurses_werase" u="int ncurses_werase(resource window)">Erase window contents</s>
1366 <s f="ncurses_wgetch" u="int ncurses_wgetch(resource window)">Reads a character from keyboard (window)</s>
1367 <s f="ncurses_whline" u="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</s>
1368 <s f="ncurses_wmouse_trafo" u="bool ncurses_wmouse_trafo(resource window, int &amp;y, int &amp;x, bool toscreen)">Transforms window/stdscr coordinates</s>
1369 <s f="ncurses_wmove" u="int ncurses_wmove(resource window, int y, int x)">Moves windows output position</s>
1370 <s f="ncurses_wnoutrefresh" u="int ncurses_wnoutrefresh(resource window)">Copies window to virtual screen</s>
1371 <s f="ncurses_wrefresh" u="int ncurses_wrefresh(resource window)">Refreshes window on terminal screen</s>
1372 <s f="ncurses_wstandend" u="int ncurses_wstandend(resource window)">End standout mode for a window</s>
1373 <s f="ncurses_wstandout" u="int ncurses_wstandout(resource window)">Enter standout mode for a window</s>
1374 <s f="ncurses_wvline" u="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</s>
1375 <s f="oci_bind_by_name" u="bool oci_bind_by_name(resource stmt, string name, mixed &amp;var, [, int maxlength [, int type]])">Bind a PHP variable to an Oracle placeholder by name</s>
1376 <s f="oci_cancel" u="bool oci_cancel(resource stmt)">Cancel reading from a cursor</s>
1377 <s f="oci_close" u="bool oci_close(resource conn)">Disconnect from database</s>
1378 <s f="oci_collection_append" u="bool oci_collection_append(string value)">Append an object to the collection</s>
1379 <s f="oci_collection_assign" u="bool oci_collection_assign(object from)">Assign a collection from another existing collection</s>
1380 <s f="oci_collection_element_assign" u="bool oci_collection_element_assign(int index, string val)">Assign element val to collection at index ndx</s>
1381 <s f="oci_collection_element_get" u="string oci_collection_element_get(int ndx)">Retrieve the value at collection index ndx</s>
1382 <s f="oci_collection_max" u="int oci_collection_max()">Return the max value of a collection. For a varray this is the maximum length of the array</s>
1383 <s f="oci_collection_size" u="int oci_collection_size()">Return the size of a collection</s>
1384 <s f="oci_collection_trim" u="bool oci_collection_trim(int num)">Trim num elements from the end of a collection</s>
1385 <s f="oci_commit" u="bool oci_commit(resource conn)">Commit the current context</s>
1386 <s f="oci_connect" u="resource oci_connect(string user, string pass [, string db])">Connect to an Oracle database and log on. Returns a new session.</s>
1387 <s f="oci_define_by_name" u="bool oci_define_by_name(resource stmt, string name, mixed &amp;var [, int type])">Define a PHP variable to an Oracle column by name</s>
1388 <s f="oci_error" u="array oci_error([resource stmt|conn|global])">Return the last error of stmt|conn|global. If no error happened returns false.</s>
1389 <s f="oci_execute" u="bool oci_execute(resource stmt [, int mode])">Execute a parsed statement</s>
1390 <s f="oci_fetch" u="bool oci_fetch(resource stmt)">Prepare a new row of data for reading</s>
1391 <s f="oci_fetch_all" u="int oci_fetch_all(resource stmt, array &amp;output[, int skip[, int maxrows[, int flags]]])">Fetch all rows of result data into an array</s>
1392 <s f="oci_fetch_array" u="array oci_fetch_array( resource stmt [, int mode ])">Fetch a result row as an array</s>
1393 <s f="oci_fetch_assoc" u="array oci_fetch_assoc( resource stmt )">Fetch a result row as an associative array</s>
1394 <s f="oci_fetch_object" u="object oci_fetch_object( resource stmt )">Fetch a result row as an object</s>
1395 <s f="oci_fetch_row" u="array oci_fetch_row( resource stmt )">Fetch a result row as an enumerated array</s>
1396 <s f="oci_field_is_null" u="bool oci_field_is_null(resource stmt, int col)">Tell whether a column is NULL</s>
1397 <s f="oci_field_name" u="string oci_field_name(resource stmt, int col)">Tell the name of a column</s>
1398 <s f="oci_field_precision" u="int oci_field_precision(resource stmt, int col)">Tell the precision of a column</s>
1399 <s f="oci_field_scale" u="int oci_field_scale(resource stmt, int col)">Tell the scale of a column</s>
1400 <s f="oci_field_size" u="int oci_field_size(resource stmt, int col)">Tell the maximum data size of a column</s>
1401 <s f="oci_field_type" u="mixed oci_field_type(resource stmt, int col)">Tell the data type of a column</s>
1402 <s f="oci_field_type_raw" u="int oci_field_type_raw(resource stmt, int col)">Tell the raw oracle data type of a column</s>
1403 <s f="oci_free_collection" u="bool oci_free_collection()">Deletes collection object</s>
1404 <s f="oci_free_descriptor" u="bool oci_free_descriptor()">Deletes large object description</s>
1405 <s f="oci_free_statement" u="bool oci_free_statement(resource stmt)">Free all resources associated with a statement</s>
1406 <s f="oci_internal_debug" u="void oci_internal_debug(int onoff)">Toggle internal debugging output for the OCI extension</s>
1407 <s f="oci_lob_append" u="bool oci_lob_append( object lob )">Appends data from a LOB to another LOB</s>
1408 <s f="oci_lob_close" u="bool oci_lob_close()">Closes lob descriptor</s>
1409 <s f="oci_lob_copy" u="bool oci_lob_copy( object lob_to, object lob_from [, int length ] )">Copies data from a LOB to another LOB</s>
1410 <s f="oci_lob_eof" u="bool oci_lob_eof()">Checks if EOF is reached</s>
1411 <s f="oci_lob_erase" u="int oci_lob_erase( [ int offset [, int length ] ] )">Erases a specified portion of the internal LOB, starting at a specified offset</s>
1412 <s f="oci_lob_export" u="bool oci_lob_export([string filename [, int start [, int length]]])">Writes a large object into a file</s>
1413 <s f="oci_lob_flush" u="bool oci_lob_flush( [ int flag ] )">Flushes the LOB buffer</s>
1414 <s f="oci_lob_import" u="bool oci_lob_import( string filename )">Saves a large object to file</s>
1415 <s f="oci_lob_is_equal" u="bool oci_lob_is_equal( object lob1, object lob2 )">Tests to see if two LOB/FILE locators are equal</s>
1416 <s f="oci_lob_load" u="string oci_lob_load()">Loads a large object</s>
1417 <s f="oci_lob_read" u="string oci_lob_read( int length )">Reads particular part of a large object</s>
1418 <s f="oci_lob_rewind" u="bool oci_lob_rewind()">Rewind pointer of a LOB</s>
1419 <s f="oci_lob_save" u="bool oci_lob_save( string data [, int offset ])">Saves a large object</s>
1420 <s f="oci_lob_seek" u="bool oci_lob_seek( int offset [, int whence ])">Moves the pointer of a LOB</s>
1421 <s f="oci_lob_size" u="int oci_lob_size()">Returns size of a large object</s>
1422 <s f="oci_lob_tell" u="int oci_lob_tell()">Tells LOB pointer position</s>
1423 <s f="oci_lob_truncate" u="bool oci_lob_truncate( [ int length ])">Truncates a LOB</s>
1424 <s f="oci_lob_write" u="int oci_lob_write( string string [, int length ])">Writes data to current position of a LOB</s>
1425 <s f="oci_lob_write_temporary" u="bool oci_lob_write_temporary(string var [, int lob_type])">Writes temporary blob</s>
1426 <s f="oci_new_collection" u="object oci_new_collection(resource connection, string tdo [, string schema])">Initialize a new collection</s>
1427 <s f="oci_new_connect" u="resource oci_new_connect(string user, string pass [, string db])">Connect to an Oracle database and log on. Returns a new session.</s>
1428 <s f="oci_new_cursor" u="resource oci_new_cursor(resource conn)">Return a new cursor (Statement-Handle) - use this to bind ref-cursors!</s>
1429 <s f="oci_new_descriptor" u="object oci_new_descriptor(resource connection [, int type])">Initialize a new empty descriptor LOB/FILE (LOB is default)</s>
1430 <s f="oci_num_fields" u="int oci_num_fields(resource stmt)">Return the number of result columns in a statement</s>
1431 <s f="oci_num_rows" u="int oci_num_rows(resource stmt)">Return the row count of an OCI statement</s>
1432 <s f="oci_parse" u="resource oci_parse(resource conn, string query)">Parse a query and return a statement</s>
1433 <s f="oci_password_change" u="bool oci_password_change(resource conn, string username, string old_password, string new_password)">Changes the password of an account</s>
1434 <s f="oci_pconnect" u="resource oci_pconnect(string user, string pass [, string db])">Connect to an Oracle database using a persistent connection and log on. Returns a new session.</s>
1435 <s f="oci_result" u="string oci_result(resource stmt, mixed column)">Return a single column of result data</s>
1436 <s f="oci_rollback" u="bool oci_rollback(resource conn)">Rollback the current context</s>
1437 <s f="oci_server_version" u="string oci_server_version(resource conn)">Return a string containing server version information</s>
1438 <s f="oci_set_prefetch" u="bool oci_set_prefetch(resource stmt, int prefetch_rows)">Sets the number of rows to be prefetched on execute to prefetch_rows for stmt</s>
1439 <s f="oci_statement_type" u="string oci_statement_type(resource stmt)">Return the query type of an OCI statement</s>
1440 <s f="ocifetchinto" u="int ocifetchinto(resource stmt, array &amp;output [, int mode])">Fetch a row of result data into an array</s>
1441 <s f="ocigetbufferinglob" u="bool ocigetbufferinglob()">Returns current state of buffering for a LOB</s>
1442 <s f="ocisetbufferinglob" u="bool ocisetbufferinglob( boolean flag )">Enables/disables buffering for a LOB</s>
1443 <s f="birdstep_autocommit" u="bool birdstep_autocommit(int index)"/>
1444 <s f="birdstep_close" u="bool birdstep_close(int id)"/>
1445 <s f="birdstep_commit" u="bool birdstep_commit(int index)"/>
1446 <s f="birdstep_connect" u="int birdstep_connect(string server, string user, string pass)"/>
1447 <s f="birdstep_exec" u="int birdstep_exec(int index, string exec_str)"/>
1448 <s f="birdstep_fetch" u="bool birdstep_fetch(int index)"/>
1449 <s f="birdstep_fieldname" u="string birdstep_fieldname(int index, int col)"/>
1450 <s f="birdstep_fieldnum" u="int birdstep_fieldnum(int index)"/>
1451 <s f="birdstep_freeresult" u="bool birdstep_freeresult(int index)"/>
1452 <s f="birdstep_off_autocommit" u="bool birdstep_off_autocommit(int index)"/>
1453 <s f="birdstep_result" u="mixed birdstep_result(int index, int col)"/>
1454 <s f="birdstep_rollback" u="bool birdstep_rollback(int index)"/>
1455 <s f="odbc_autocommit" u="mixed odbc_autocommit(resource connection_id [, int OnOff])">Toggle autocommit mode or get status</s>
1456 <s f="odbc_binmode" u="bool odbc_binmode(int result_id, int mode)">Handle binary column data</s>
1457 <s f="odbc_close" u="void odbc_close(resource connection_id)">Close an ODBC connection</s>
1458 <s f="odbc_close_all" u="void odbc_close_all(void)">Close all ODBC connections</s>
1459 <s f="odbc_columnprivileges" u="resource odbc_columnprivileges(resource connection_id, string catalog, string schema, string table, string column)">Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table</s>
1460 <s f="odbc_columns" u="resource odbc_columns(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 column names in specified tables</s>
1461 <s f="odbc_commit" u="bool odbc_commit(resource connection_id)">Commit an ODBC transaction</s>
1462 <s f="odbc_connect" u="resource odbc_connect(string DSN, string user, string password [, int cursor_option])">Connect to a datasource</s>
1463 <s f="odbc_cursor" u="string odbc_cursor(resource result_id)">Get cursor name</s>
1464 <s f="odbc_data_source" u="array odbc_data_source(resource connection_id, int fetch_type)">Return information about the currently connected data source</s>
1465 <s f="odbc_error" u="string odbc_error([resource connection_id])">Get the last error code</s>
1466 <s f="odbc_errormsg" u="string odbc_errormsg([resource connection_id])">Get the last error message</s>
1467 <s f="odbc_exec" u="resource odbc_exec(resource connection_id, string query [, int flags])">Prepare and execute an SQL statement</s>
1468 <s f="odbc_execute" u="bool odbc_execute(resource result_id [, array parameters_array])">Execute a prepared statement</s>
1469 <s f="odbc_fetch_array" u="array odbc_fetch_array(int result [, int rownumber])">Fetch a result row as an associative array</s>
1470 <s f="odbc_fetch_into" u="int odbc_fetch_into(resource result_id, array result_array, [, int rownumber])">Fetch one result row into an array</s>
1471 <s f="odbc_fetch_object" u="object odbc_fetch_object(int result [, int rownumber])">Fetch a result row as an object</s>
1472 <s f="odbc_fetch_row" u="bool odbc_fetch_row(resource result_id [, int row_number])">Fetch a row</s>
1473 <s f="odbc_field_len" u="int odbc_field_len(resource result_id, int field_number)">Get the length (precision) of a column</s>
1474 <s f="odbc_field_name" u="string odbc_field_name(resource result_id, int field_number)">Get a column name</s>
1475 <s f="odbc_field_num" u="int odbc_field_num(resource result_id, string field_name)">Return column number</s>
1476 <s f="odbc_field_scale" u="int odbc_field_scale(resource result_id, int field_number)">Get the scale of a column</s>
1477 <s f="odbc_field_type" u="string odbc_field_type(resource result_id, int field_number)">Get the datatype of a column</s>
1478 <s f="odbc_foreignkeys" u="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 result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table</s>
1479 <s f="odbc_free_result" u="bool odbc_free_result(resource result_id)">Free resources associated with a result</s>
1480 <s f="odbc_gettypeinfo" u="resource odbc_gettypeinfo(resource connection_id [, int data_type])">Returns a result identifier containing information about data types supported by the data source</s>
1481 <s f="odbc_longreadlen" u="bool odbc_longreadlen(int result_id, int length)">Handle LONG columns</s>
1482 <s f="odbc_next_result" u="bool odbc_next_result(resource result_id)">Checks if multiple results are avaiable</s>
1483 <s f="odbc_num_fields" u="int odbc_num_fields(resource result_id)">Get number of columns in a result</s>
1484 <s f="odbc_num_rows" u="int odbc_num_rows(resource result_id)">Get number of rows in a result</s>
1485 <s f="odbc_pconnect" u="resource odbc_pconnect(string DSN, string user, string password [, int cursor_option])">Establish a persistent connection to a datasource</s>
1486 <s f="odbc_prepare" u="resource odbc_prepare(resource connection_id, string query)">Prepares a statement for execution</s>
1487 <s f="odbc_primarykeys" u="resource odbc_primarykeys(resource connection_id, string qualifier, string owner, string table)">Returns a result identifier listing the column names that comprise the primary key for a table</s>
1488 <s f="odbc_procedurecolumns" u="resource odbc_procedurecolumns(resource connection_id [, string qualifier, string owner, string proc, string column])">Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures</s>
1489 <s f="odbc_procedures" u="resource odbc_procedures(resource connection_id [, string qualifier, string owner, string name])">Returns a result identifier containg the list of procedure names in a datasource</s>
1490 <s f="odbc_result" u="mixed odbc_result(resource result_id, mixed field)">Get result data</s>
1491 <s f="odbc_result_all" u="int odbc_result_all(resource result_id [, string format])">Print result as HTML table</s>
1492 <s f="odbc_rollback" u="bool odbc_rollback(resource connection_id)">Rollback a transaction</s>
1493 <s f="odbc_setoption" u="bool odbc_setoption(resource conn_id|result_id, int which, int option, int value)">Sets connection or statement options</s>
1494 <s f="odbc_specialcolumns" u="resource odbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)">Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction</s>
1495 <s f="odbc_statistics" u="resource odbc_statistics(resource connection_id, string qualifier, string owner, string name, int unique, int accuracy)">Returns a result identifier that contains statistics about a single table and the indexes associated with the table</s>
1496 <s f="odbc_tableprivileges" u="resource odbc_tableprivileges(resource connection_id, string qualifier, string owner, string name)">Returns a result identifier containing a list of tables and the privileges associated with each table</s>
1497 <s f="odbc_tables" u="resource odbc_tables(resource connection_id [, string qualifier, string owner, string name, string table_types])">Call the SQLTables function</s>
1498 <s f="solid_fetch_prev" u="bool solid_fetch_prev(resource result_id)"/>
1499 <s f="openssl_csr_export" u="bool openssl_csr_export(resource csr, string &amp;out [, bool notext=true])">Exports a CSR to file or a var</s>
1500 <s f="openssl_csr_export_to_file" u="bool openssl_csr_export_to_file(resource csr, string outfilename [, bool notext=true])">Exports a CSR to file</s>
1501 <s f="openssl_csr_new" u="bool openssl_csr_new(array dn, resource &amp;privkey [, array configargs, array extraattribs])">Generates a privkey and CSR</s>
1502 <s f="openssl_csr_sign" u="resource openssl_csr_sign(mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]])">Signs a cert with another CERT</s>
1503 <s f="openssl_error_string" u="mixed openssl_error_string(void)">Returns a description of the last error, and alters the index of the error messages. Returns false when the are no more messages</s>
1504 <s f="openssl_open" u="bool openssl_open(string data, &amp;string opendata, string ekey, mixed privkey)">Opens data</s>
1505 <s f="openssl_pkey_export" u="bool openssl_pkey_export(mixed key, &amp;mixed out [, string passphrase [, array config_args]])">Gets an exportable representation of a key into a string or file</s>
1506 <s f="openssl_pkey_export_to_file" u="bool openssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase, array config_args)">Gets an exportable representation of a key into a file</s>
1507 <s f="openssl_pkey_free" u="void openssl_pkey_free(int key)">Frees a key</s>
1508 <s f="openssl_pkey_get_private" u="int openssl_pkey_get_private(string key [, string passphrase])">Gets private keys</s>
1509 <s f="openssl_pkey_get_public" u="int openssl_pkey_get_public(mixed cert)">Gets public key from X.509 certificate</s>
1510 <s f="openssl_pkey_new" u="resource openssl_pkey_new([array configargs])">Generates a new private key</s>
1511 <s f="openssl_private_decrypt" u="bool openssl_private_decrypt(string data, string decrypted, mixed key [, int padding])">Decrypts data with private key</s>
1512 <s f="openssl_private_encrypt" u="bool openssl_private_encrypt(string data, string crypted, mixed key [, int padding])">Encrypts data with private key</s>
1513 <s f="openssl_public_decrypt" u="bool openssl_public_decrypt(string data, string crypted, resource key [, int padding])">Decrypts data with public key</s>
1514 <s f="openssl_public_encrypt" u="bool openssl_public_encrypt(string data, string crypted, mixed key [, int padding])">Encrypts data with public key</s>
1515 <s f="openssl_seal" u="int openssl_seal(string data, &amp;string sealdata, &amp;array ekeys, array pubkeys)">Seals data</s>
1516 <s f="openssl_sign" u="bool openssl_sign(string data, &amp;string signature, mixed key)">Signs data</s>
1517 <s f="openssl_verify" u="int openssl_verify(string data, string signature, mixed key)">Verifys data</s>
1518 <s f="ora_bind" u="bool ora_bind(resource cursor, string php_variable_name, string sql_parameter_name, int length [, int type])">Bind a PHP variable to an Oracle parameter</s>
1519 <s f="ora_close" u="bool ora_close(resource cursor)">Close an Oracle cursor</s>
1520 <s f="ora_columnname" u="string ora_columnname(resource cursor, int column)">Get the name of an Oracle result column</s>
1521 <s f="ora_columnsize" u="int ora_columnsize(int cursor, int column)">Return the size of the column</s>
1522 <s f="ora_columntype" u="string ora_columntype(resource cursor, int column)">Get the type of an Oracle result column</s>
1523 <s f="ora_commit" u="bool ora_commit(resource connection)">Commit an Oracle transaction</s>
1524 <s f="ora_commitoff" u="bool ora_commitoff(resource connection)">Disable automatic commit</s>
1525 <s f="ora_commiton" u="bool ora_commiton(resource connection)">Enable automatic commit</s>
1526 <s f="ora_do" u="resource ora_do(resource connection, resource cursor)">Parse and execute a statement and fetch first result row</s>
1527 <s f="ora_error" u="string ora_error(resource cursor_or_connection)">Get an Oracle error message</s>
1528 <s f="ora_errorcode" u="int ora_errorcode(resource cursor_or_connection)">Get an Oracle error code</s>
1529 <s f="ora_exec" u="bool ora_exec(resource cursor)">Execute a parsed statement</s>
1530 <s f="ora_fetch" u="bool ora_fetch(resource cursor)">Fetch a row of result data from a cursor</s>
1531 <s f="ora_fetch_into" u="int ora_fetch_into(resource cursor, array result [, int flags])">Fetch a row into the specified result array</s>
1532 <s f="ora_getcolumn" u="mixed ora_getcolumn(resource cursor, int column)">Get data from a fetched row</s>
1533 <s f="ora_logoff" u="bool ora_logoff(resource connection)">Close an Oracle connection</s>
1534 <s f="ora_logon" u="resource ora_logon(string user, string password)">Open an Oracle connection</s>
1535 <s f="ora_numcols" u="int ora_numcols(resource cursor)">Returns the numbers of columns in a result</s>
1536 <s f="ora_numrows" u="int ora_numrows(resource cursor)">Returns the number of rows in a result</s>
1537 <s f="ora_open" u="resource ora_open(resource connection)">Open an Oracle cursor</s>
1538 <s f="ora_parse" u="bool ora_parse(resource cursor, string sql_statement [, int defer])">Parse an Oracle SQL statement</s>
1539 <s f="ora_plogon" u="resource ora_plogon(string user, string password)">Open a persistent Oracle connection</s>
1540 <s f="ora_rollback" u="bool ora_rollback(resource connection)">Roll back an Oracle transaction</s>
1541 <s f="ovrimos_autocommit" u="int ovrimos_autocommit(int connection_id, int OnOff)">Toggle autocommit mode     There can be problems with pconnections!</s>
1542 <s f="ovrimos_close" u="void ovrimos_close(int connection)">Close a connection</s>
1543 <s f="ovrimos_commit" u="bool ovrimos_commit(int connection_id)">Commit an ovrimos transaction</s>
1544 <s f="ovrimos_connect" u="int ovrimos_connect(string host, string db, string user, string password)">Connect to an Ovrimos database</s>
1545 <s f="ovrimos_cursor" u="string ovrimos_cursor(int result_id)">Get cursor name</s>
1546 <s f="ovrimos_exec" u="int ovrimos_exec(int connection_id, string query)">Prepare and execute an SQL statement</s>
1547 <s f="ovrimos_execute" u="bool ovrimos_execute(int result_id [, array parameters_array])">Execute a prepared statement</s>
1548 <s f="ovrimos_fetch_into" u="bool ovrimos_fetch_into(int result_id, array result_array [, string how [, int rownumber]])">Fetch one result row into an array     how: 'Next' (default), 'Prev', 'First', 'Last', 'Absolute'</s>
1549 <s f="ovrimos_fetch_row" u="bool ovrimos_fetch_row(int result_id [, int how [, int row_number]])">how: 'Next' (default), 'Prev', 'First', 'Last', 'Absolute'     Fetch a row</s>
1550 <s f="ovrimos_field_len" u="int ovrimos_field_len(int result_id, int field_number)">Get the length of a column</s>
1551 <s f="ovrimos_field_name" u="string ovrimos_field_name(int result_id, int field_number)">Get a column name</s>
1552 <s f="ovrimos_field_num" u="int ovrimos_field_num(int result_id, string field_name)">Return column number</s>
1553 <s f="ovrimos_field_type" u="int ovrimos_field_type(int result_id, int field_number)">Get the datatype of a column</s>
1554 <s f="ovrimos_free_result" u="bool ovrimos_free_result(int result_id)">Free resources associated with a result</s>
1555 <s f="ovrimos_longreadlen" u="bool ovrimos_longreadlen(int result_id, int length)">Handle LONG columns</s>
1556 <s f="ovrimos_num_fields" u="int ovrimos_num_fields(int result_id)">Get number of columns in a result</s>
1557 <s f="ovrimos_num_rows" u="int ovrimos_num_rows(int result_id)">Get number of rows in a result</s>
1558 <s f="ovrimos_prepare" u="int ovrimos_prepare(int connection_id, string query)">Prepares a statement for execution</s>
1559 <s f="ovrimos_result" u="string ovrimos_result(int result_id, mixed field)">Get result data</s>
1560 <s f="ovrimos_result_all" u="int ovrimos_result_all(int result_id [, string format])">Print result as HTML table</s>
1561 <s f="ovrimos_rollback" u="bool ovrimos_rollback(int connection_id)">Rollback a transaction</s>
1562 <s f="ovrimos_setoption" u="int ovrimos_setoption(int conn_id|result_id, int which, int option, int value)">Sets connection or statement options</s>
1563 <s f="pcntl_alarm" u="int pcntl_alarm(int seconds)">Set an alarm clock for delivery of a signal</s>
1564 <s f="pcntl_exec" u="bool pcntl_exec(string path [, array args [, array envs]])">Executes specified program in current process space as defined by exec(2)</s>
1565 <s f="pcntl_fork" u="int pcntl_fork(void)">Forks the currently running process following the same behavior as the UNIX fork() system call</s>
1566 <s f="pcntl_getpriority" u="int pcntl_getpriority([int pid [, int process_identifier]])">Get the priority of any process</s>
1567 <s f="pcntl_setpriority" u="bool pcntl_setpriority(int priority [, int pid [, int process_identifier]])">Change the priority of any process</s>
1568 <s f="pcntl_signal" u="bool pcntl_signal(int signo, callback handle [, bool restart_syscalls])">Assigns a system signal handler to a PHP function</s>
1569 <s f="pcntl_wait" u="int pcntl_wait(int &amp;status)">Waits on or returns the status of a forked child as defined by the waitpid() system call</s>
1570 <s f="pcntl_waitpid" u="int pcntl_waitpid(int pid, int &amp;status, int options)">Waits on or returns the status of a forked child as defined by the waitpid() system call</s>
1571 <s f="pcntl_wexitstatus" u="int pcntl_wexitstatus(int status)">Returns the status code of a child's exit</s>
1572 <s f="pcntl_wifexited" u="bool pcntl_wifexited(int status)">Returns true if the child status code represents a successful exit</s>
1573 <s f="pcntl_wifsignaled" u="bool pcntl_wifsignaled(int status)">Returns true if the child status code represents a process that was terminated due to a signal</s>
1574 <s f="pcntl_wifstopped" u="bool pcntl_wifstopped(int status)">Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid)</s>
1575 <s f="pcntl_wstopsig" u="int pcntl_wstopsig(int status)">Returns the number of the signal that caused the process to stop who's status code is passed</s>
1576 <s f="pcntl_wtermsig" u="int pcntl_wtermsig(int status)">Returns the number of the signal that terminated the process who's status code is passed</s>
1577 <s f="preg_grep" u="array preg_grep(string regex, array input)">Searches array and returns entries which match regex</s>
1578 <s f="preg_match" u="int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int offset]]])">Perform a Perl-style regular expression match</s>
1579 <s f="preg_match_all" u="int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int offset]])">Perform a Perl-style global regular expression match</s>
1580 <s f="preg_quote" u="string preg_quote(string str, string delim_char)">Quote regular expression characters plus an optional character</s>
1581 <s f="preg_replace" u="string preg_replace(mixed regex, mixed replace, mixed subject [, int limit])">Perform Perl-style regular expression replacement.</s>
1582 <s f="preg_replace_callback" u="string preg_replace_callback(mixed regex, mixed callback, mixed subject [, int limit])">Perform Perl-style regular expression replacement using replacement callback.</s>
1583 <s f="preg_split" u="array preg_split(string pattern, string subject [, int limit [, int flags]])">Split string into an array using a perl-style regular expression as a delimiter</s>
1584 <s f="pdf_add_annotation" u="bool pdf_add_annotation(resource pdfdoc, float xll, float yll, float xur, float xur, string title, string text)">Sets annotation (depreciated use pdf_add_note instead)</s>
1585 <s f="pdf_add_bookmark" u="int pdf_add_bookmark(resource pdfdoc, string text [, int parent [, int open]])">Adds bookmark for current page</s>
1586 <s f="pdf_add_launchlink" u="bool pdf_add_launchlink(resource pdfdoc, float llx, float lly, float urx, float ury, string filename)">Adds link to web resource</s>
1587 <s f="pdf_add_locallink" u="bool pdf_add_locallink(resource pdfdoc, float llx, float lly, float urx, float ury, int page, string dest)">Adds link to local resource</s>
1588 <s f="pdf_add_note" u="bool pdf_add_note(resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open)">Sets annotation</s>
1589 <s f="pdf_add_pdflink" u="bool pdf_add_pdflink(resource pdfdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest)">Adds link to PDF document</s>
1590 <s f="pdf_add_weblink" u="bool pdf_add_weblink(resource pdfdoc, float llx, float lly, float urx, float ury, string url)">Adds link to web resource</s>
1591 <s f="pdf_arc" u="bool pdf_arc(resource pdfdoc, float x, float y, float radius, float start, float end)">Draws an arc</s>
1592 <s f="pdf_attach_file" u="bool pdf_attach_file(resource pdf, float lly, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon)">Adds a file attachment annotation at the rectangle specified by his lower left and upper right corners</s>
1593 <s f="pdf_begin_page" u="bool pdf_begin_page(resource pdfdoc, float width, float height)">Starts page</s>
1594 <s f="pdf_circle" u="bool pdf_circle(resource pdfdoc, float x, float y, float radius)">Draws a circle</s>
1595 <s f="pdf_clip" u="bool pdf_clip(resource pdfdoc)">Clips to current path</s>
1596 <s f="pdf_close" u="bool pdf_close(resource pdfdoc)">Closes the pdf document</s>
1597 <s f="pdf_close_image" u="void pdf_close_image(resource pdf, int pdfimage)">Closes the PDF image</s>
1598 <s f="pdf_closepath" u="bool pdf_closepath(resource pdfdoc)">Close path</s>
1599 <s f="pdf_closepath_fill_stroke" u="bool pdf_closepath_fill_stroke(resource pdfdoc)">Close, fill and stroke current path</s>
1600 <s f="pdf_closepath_stroke" u="bool pdf_closepath_stroke(resource pdfdoc)">Close path and draw line along path</s>
1601 <s f="pdf_concat" u="bool pdf_concat(resource pdf, float a, float b, float c, float d, float e, float f)">Concatenates a matrix to the current transformation matrix for text and graphics</s>
1602 <s f="pdf_continue_text" u="bool pdf_continue_text(resource pdfdoc, string text)">Output text in next line</s>
1603 <s f="pdf_curveto" u="bool pdf_curveto(resource pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3)">Draws a curve</s>
1604 <s f="pdf_delete" u="bool pdf_delete(resource pdfdoc)">Deletes the PDF object</s>
1605 <s f="pdf_end_page" u="bool pdf_end_page(resource pdfdoc)">Ends page</s>
1606 <s f="pdf_endpath" u="bool pdf_endpath(resource pdfdoc)">Ends current path</s>
1607 <s f="pdf_fill" u="bool pdf_fill(resource pdfdoc)">Fill current path</s>
1608 <s f="pdf_fill_stroke" u="bool pdf_fill_stroke(resource pdfdoc)">Fill and stroke current path</s>
1609 <s f="pdf_findfont" u="int pdf_findfont(resource pdfdoc, string fontname, string encoding [, int embed])">Prepares the font fontname for later use with pdf_setfont()</s>
1610 <s f="pdf_get_buffer" u="string pdf_get_buffer(resource pdfdoc)">Fetches the full buffer containig the generated PDF data</s>
1611 <s f="pdf_get_font" u="int pdf_get_font(resource pdfdoc)">Gets the current font</s>
1612 <s f="pdf_get_fontname" u="string pdf_get_fontname(resource pdfdoc)">Gets the current font name</s>
1613 <s f="pdf_get_fontsize" u="float pdf_get_fontsize(resource pdfdoc)">Gets the current font size</s>
1614 <s f="pdf_get_image_height" u="int pdf_get_image_height(resource pdf, int pdfimage)">Returns the height of an image</s>
1615 <s f="pdf_get_image_width" u="int pdf_get_image_width(resource pdf, int pdfimage)">Returns the width of an image</s>
1616 <s f="pdf_get_majorversion" u="int pdf_get_majorversion()">Returns the major version number of the PDFlib</s>
1617 <s f="pdf_get_minorversion" u="int pdf_get_minorversion()">Returns the minor version number of the PDFlib</s>
1618 <s f="pdf_get_parameter" u="string pdf_get_parameter(resource pdfdoc, string key, mixed modifier)">Gets arbitrary parameters</s>
1619 <s f="pdf_get_value" u="float pdf_get_value(resource pdfdoc, string key, float modifier)">Gets arbitrary value</s>
1620 <s f="pdf_lineto" u="bool pdf_lineto(resource pdfdoc, float x, float y)">Draws a line</s>
1621 <s f="pdf_moveto" u="bool pdf_moveto(resource pdfdoc, float x, float y)">Sets current point</s>
1622 <s f="pdf_new" u="resource pdf_new()">Creates a new PDF object</s>
1623 <s f="pdf_open" u="resource pdf_open([resource filedesc])">Opens a new pdf document. If filedesc is NULL, document is created in memory. This is the old interface, only for compatibility use pdf_new      pdf_open_file instead</s>
1624 <s f="pdf_open_ccitt" u="int pdf_open_ccitt(resource pdf, string filename, int width, int height, int bitreverse, int k, int blackls1)">Opens an image file with raw CCITT G3 or G4 compresed bitmap data</s>
1625 <s f="pdf_open_file" u="bool pdf_open_file(resource pdfdoc [, string filename])">Opens a new PDF document. If filename is NULL, document is created in memory. This is not yet fully supported</s>
1626 <s f="pdf_open_gif" u="int pdf_open_gif(resource pdf, string giffile)">Opens a GIF file and returns an image for placement in a pdf object</s>
1627 <s f="pdf_open_image" u="int pdf_open_image(resource pdf, string type, string source, string data, long length, int width, int height, int components, int bpc, string params)">Opens an image of the given type and returns an image for placement in a PDF document</s>
1628 <s f="pdf_open_image_file" u="int pdf_open_image_file(resource pdf, string type, string file [, string stringparam, int intparam])">Opens an image file of the given type and returns an image for placement in a PDF document</s>
1629 <s f="pdf_open_jpeg" u="int pdf_open_jpeg(resource pdf, string jpegfile)">Opens a JPEG file and returns an image for placement in a PDF document</s>
1630 <s f="pdf_open_memory_image" u="int pdf_open_memory_image(resource pdf, resource image)">Takes an GD image and returns an image for placement in a PDF document</s>
1631 <s f="pdf_open_png" u="int pdf_open_png(resource pdf, string pngfile)">Opens a PNG file and returns an image for placement in a PDF document</s>
1632 <s f="pdf_open_tiff" u="int pdf_open_tiff(resource pdf, string tifffile)">Opens a TIFF file and returns an image for placement in a PDF document</s>
1633 <s f="pdf_place_image" u="bool pdf_place_image(resource pdf, int pdfimage, float x, float y, float scale)">Places image in the PDF document</s>
1634 <s f="pdf_place_pdi_page" u="bool pdf_place_pdi_page(resource pdf, int page, float x, float y, float sx, float sy)">* Place a PDF page with the lower left corner at (x, y), and scale it.</s>
1635 <s f="pdf_rect" u="bool pdf_rect(resource pdfdoc, float x, float y, float width, float height)">Draws a rectangle</s>
1636 <s f="pdf_restore" u="bool pdf_restore(resource pdfdoc)">Restores formerly saved enviroment</s>
1637 <s f="pdf_rotate" u="bool pdf_rotate(resource pdfdoc, float angle)">Sets rotation</s>
1638 <s f="pdf_save" u="bool pdf_save(resource pdfdoc)">Saves current enviroment</s>
1639 <s f="pdf_scale" u="bool pdf_scale(resource pdfdoc, float x_scale, float y_scale)">Sets scaling</s>
1640 <s f="pdf_set_border_color" u="bool pdf_set_border_color(resource pdfdoc, float red, float green, float blue)">Sets color of box surounded all kinds of annotations and links</s>
1641 <s f="pdf_set_border_dash" u="bool pdf_set_border_dash(resource pdfdoc, float black, float white)">Sets the border dash style of all kinds of annotations and links</s>
1642 <s f="pdf_set_border_style" u="bool pdf_set_border_style(resource pdfdoc, string style, float width)">Sets style of box surounding all kinds of annotations and link</s>
1643 <s f="pdf_set_char_spacing" u="bool pdf_set_char_spacing(resource pdfdoc, float space)">Sets character spacing</s>
1644 <s f="pdf_set_duration" u="bool pdf_set_duration(resource pdfdoc, float duration)">Sets duration between pages</s>
1645 <s f="pdf_set_font" u="bool pdf_set_font(resource pdfdoc, string font, float size, string encoding [, int embed])">Select the current font face, size and encoding</s>
1646 <s f="pdf_set_horiz_scaling" u="bool pdf_set_horiz_scaling(resource pdfdoc, float scale)">Sets horizontal scaling of text</s>
1647 <s f="pdf_set_info" u="bool pdf_set_info(resource pdfdoc, string fieldname, string value)">Fills an info field of the document</s>
1648 <s f="pdf_set_info_author" u="bool pdf_set_info_author(resource pdfdoc, string author)">Fills the author field of the document</s>
1649 <s f="pdf_set_info_creator" u="bool pdf_set_info_creator(resource pdfdoc, string creator)">Fills the creator field of the document</s>
1650 <s f="pdf_set_info_keywords" u="bool pdf_set_info_keywords(resource pdfdoc, string keywords)">Fills the keywords field of the document</s>
1651 <s f="pdf_set_info_subject" u="bool pdf_set_info_subject(resource pdfdoc, string subject)">Fills the subject field of the document</s>
1652 <s f="pdf_set_info_title" u="bool pdf_set_info_title(resource pdfdoc, string title)">Fills the title field of the document</s>
1653 <s f="pdf_set_leading" u="bool pdf_set_leading(resource pdfdoc, float distance)">Sets distance between text lines</s>
1654 <s f="pdf_set_parameter" u="bool pdf_set_parameter(resource pdfdoc, string key, string value)">Sets arbitrary parameters</s>
1655 <s f="pdf_set_text_pos" u="bool pdf_set_text_pos(resource pdfdoc, float x, float y)">Sets the position of text for the next pdf_show call</s>
1656 <s f="pdf_set_text_rendering" u="bool pdf_set_text_rendering(resource pdfdoc, int mode)">Determines how text is rendered</s>
1657 <s f="pdf_set_text_rise" u="bool pdf_set_text_rise(resource pdfdoc, float value)">Sets the text rise</s>
1658 <s f="pdf_set_transition" u="bool pdf_set_transition(resource pdfdoc, int transition)">Sets transition between pages</s>
1659 <s f="pdf_set_value" u="bool pdf_set_value(resource pdfdoc, string key, float value)">Sets arbitrary value</s>
1660 <s f="pdf_set_word_spacing" u="bool pdf_set_word_spacing(resource pdfdoc, float space)">Sets spacing between words</s>
1661 <s f="pdf_setdash" u="bool pdf_setdash(resource pdfdoc, float black, float white)">Sets dash pattern</s>
1662 <s f="pdf_setflat" u="bool pdf_setflat(resource pdfdoc, float value)">Sets flatness</s>
1663 <s f="pdf_setfont" u="bool pdf_setfont(resource pdfdoc, int font, float fontsize)">Sets the current font in the fiven fontsize</s>
1664 <s f="pdf_setgray" u="bool pdf_setgray(resource pdfdoc, float value)">Sets drawing and filling color to gray value</s>
1665 <s f="pdf_setgray_fill" u="bool pdf_setgray_fill(resource pdfdoc, float value)">Sets filling color to gray value</s>
1666 <s f="pdf_setgray_stroke" u="bool pdf_setgray_stroke(resource pdfdoc, float value)">Sets drawing color to gray value</s>
1667 <s f="pdf_setlinecap" u="bool pdf_setlinecap(resource pdfdoc, int value)">Sets linecap parameter</s>
1668 <s f="pdf_setlinejoin" u="bool pdf_setlinejoin(resource pdfdoc, int value)">Sets linejoin parameter</s>
1669 <s f="pdf_setlinewidth" u="bool pdf_setlinewidth(resource pdfdoc, float width)">Sets line width</s>
1670 <s f="pdf_setmatrix" u="bool pdf_setmatrix(resource pdf, float a, float b, float c, float d, float e, float f)">Explicitly set the current transformation matrix.</s>
1671 <s f="pdf_setmiterlimit" u="bool pdf_setmiterlimit(resource pdfdoc, float value)">Sets miter limit</s>
1672 <s f="pdf_setpolydash" u="bool pdf_setpolydash(resource pdfdoc, float darray)">Sets more complicated dash pattern</s>
1673 <s f="pdf_setrgbcolor" u="bool pdf_setrgbcolor(resource pdfdoc, float red, float green, float blue)">Sets drawing and filling color to RGB color value</s>
1674 <s f="pdf_setrgbcolor_fill" u="bool pdf_setrgbcolor_fill(resource pdfdoc, float red, float green, float blue)">Sets filling color to RGB color value</s>
1675 <s f="pdf_setrgbcolor_stroke" u="bool pdf_setrgbcolor_stroke(resource pdfdoc, float red, float green, float blue)">Sets drawing color to RGB color value</s>
1676 <s f="pdf_show" u="bool pdf_show(resource pdfdoc, string text)">Output text at current position</s>
1677 <s f="pdf_show_boxed" u="int pdf_show_boxed(resource pdfdoc, string text, float x_koor, float y_koor, float width, float height, string mode [, string feature])">Output text formated in a boxed</s>
1678 <s f="pdf_show_xy" u="bool pdf_show_xy(resource pdfdoc, string text, float x_koor, float y_koor)">Output text at position</s>
1679 <s f="pdf_skew" u="bool pdf_skew(resource pdfdoc, float xangle, float yangle)">Skew the coordinate system</s>
1680 <s f="pdf_stringwidth" u="float pdf_stringwidth(resource pdfdoc, string text [, int font, float size])">Returns width of text in current font</s>
1681 <s f="pdf_stroke" u="bool pdf_stroke(resource pdfdoc)">Draw line along path path</s>
1682 <s f="pdf_translate" u="bool pdf_translate(resource pdfdoc, float x, float y)">Sets origin of coordinate system</s>
1683 <s f="pfpro_cleanup" u="bool pfpro_cleanup()">Shuts down the Payflow Pro library</s>
1684 <s f="pfpro_init" u="bool pfpro_init()">Initializes the Payflow Pro library</s>
1685 <s f="pfpro_process" u="array pfpro_process(array parmlist [, string hostaddress [, int port, [, int timeout [, string proxyAddress [, int proxyPort [, string proxyLogon [, string proxyPassword]]]]]]])">Payflow Pro transaction processing using arrays</s>
1686 <s f="pfpro_process_raw" u="string pfpro_process_raw(string parmlist [, string hostaddress [, int port, [, int timeout [, string proxyAddress [, int proxyPort [, string proxyLogon [, string proxyPassword]]]]]]])">Raw Payflow Pro transaction processing</s>
1687 <s f="pfpro_version" u="string pfpro_version()">Returns the version of the Payflow Pro library</s>
1688 <s f="pg_affected_rows" u="int pg_affected_rows(resource result)">Returns the number of affected tuples</s>
1689 <s f="pg_cancel_query" u="bool pg_cancel_query(resource connection)">Cancel request</s>
1690 <s f="pg_client_encoding" u="string pg_client_encoding([resource connection])">Get the current client encoding</s>
1691 <s f="pg_close" u="bool pg_close([resource connection])">Close a PostgreSQL connection</s>
1692 <s f="pg_connect" u="resource pg_connect(string connection_string[, int connect_type] | [string host, string port [, string options [, string tty,]]] string database)">Open a PostgreSQL connection</s>
1693 <s f="pg_connection_busy" u="bool pg_connection_busy(resource connection)">Get connection is busy or not</s>
1694 <s f="pg_connection_reset" u="bool pg_connection_reset(resource connection)">Reset connection (reconnect)</s>
1695 <s f="pg_connection_status" u="int pg_connection_status(resource connnection)">Get connection status</s>
1696 <s f="pg_convert" u="array pg_convert(resource db, string table, array values[, int options])">Check and convert values for PostgreSQL SQL statement</s>
1697 <s f="pg_copy_from" u="bool pg_copy_from(resource connection, string table_name , array rows [, string delimiter [, string null_as]])">Copy table from array</s>
1698 <s f="pg_copy_to" u="array pg_copy_to(resource connection, string table_name [, string delimiter [, string null_as]])">Copy table to array</s>
1699 <s f="pg_dbname" u="string pg_dbname([resource connection])">Get the database name</s>
1700 <s f="pg_delete" u="mixed pg_delete(resource db, string table, array ids[, int options])">Delete records has ids (id=>value)</s>
1701 <s f="pg_end_copy" u="bool pg_end_copy([resource connection])">Sync with backend. Completes the Copy command</s>
1702 <s f="pg_escape_bytea" u="string pg_escape_bytea(string data)">Escape binary for bytea type</s>
1703 <s f="pg_escape_string" u="string pg_escape_string(string data)">Escape string for text/char type</s>
1704 <s f="pg_fetch_all" u="array pg_fetch_all(resource result)">Fetch all rows into array</s>
1705 <s f="pg_fetch_array" u="array pg_fetch_array(resource result [, int row [, int result_type]])">Fetch a row as an array</s>
1706 <s f="pg_fetch_assoc" u="array pg_fetch_assoc(resource result [, int row])">Fetch a row as an assoc array</s>
1707 <s f="pg_fetch_object" u="object pg_fetch_object(resource result [, int row [, string class_name [, NULL|array ctor_params]]])">Fetch a row as an object</s>
1708 <s f="pg_fetch_result" u="mixed pg_fetch_result(resource result, [int row_number,] mixed field_name)">Returns values from a result identifier</s>
1709 <s f="pg_fetch_row" u="array pg_fetch_row(resource result [, int row [, int result_type]])">Get a row as an enumerated array</s>
1710 <s f="pg_field_is_null" u="int pg_field_is_null(resource result, [int row,] mixed field_name_or_number)">Test if a field is NULL</s>
1711 <s f="pg_field_name" u="string pg_field_name(resource result, int field_number)">Returns the name of the field</s>
1712 <s f="pg_field_num" u="int pg_field_num(resource result, string field_name)">Returns the field number of the named field</s>
1713 <s f="pg_field_prtlen" u="int pg_field_prtlen(resource result, [int row,] mixed field_name_or_number)">Returns the printed length</s>
1714 <s f="pg_field_size" u="int pg_field_size(resource result, int field_number)">Returns the internal size of the field</s>
1715 <s f="pg_field_type" u="string pg_field_type(resource result, int field_number)">Returns the type name for the given field</s>
1716 <s f="pg_free_result" u="bool pg_free_result(resource result)">Free result memory</s>
1717 <s f="pg_get_notify" u="array pg_get_notify([resource connection[, result_type]])">Get asynchronous notification</s>
1718 <s f="pg_get_pid" u="int pg_get_pid([resource connection)">Get backend(server) pid</s>
1719 <s f="pg_get_result" u="resource pg_get_result(resource connection)">Get asynchronous query result</s>
1720 <s f="pg_host" u="string pg_host([resource connection])">Returns the host name associated with the connection</s>
1721 <s f="pg_insert" u="mixed pg_insert(resource db, string table, array values[, int options])">Insert values (filed=>value) to table</s>
1722 <s f="pg_last_error" u="string pg_last_error([resource connection])">Get the error message string</s>
1723 <s f="pg_last_notice" u="string pg_last_notice(resource connection)">Returns the last notice set by the backend</s>
1724 <s f="pg_last_oid" u="string pg_last_oid(resource result)">Returns the last object identifier</s>
1725 <s f="pg_lo_close" u="bool pg_lo_close(resource large_object)">Close a large object</s>
1726 <s f="pg_lo_create" u="int pg_lo_create([resource connection])">Create a large object</s>
1727 <s f="pg_lo_export" u="bool pg_lo_export([resource connection, ] int objoid, string filename)">Export large object direct to filesystem</s>
1728 <s f="pg_lo_import" u="int pg_lo_import([resource connection, ] string filename)">Import large object direct from filesystem</s>
1729 <s f="pg_lo_open" u="resource pg_lo_open([resource connection,] int large_object_oid, string mode)">Open a large object and return fd</s>
1730 <s f="pg_lo_read" u="string pg_lo_read(resource large_object [, int len])">Read a large object</s>
1731 <s f="pg_lo_read_all" u="int pg_lo_read_all(resource large_object)">Read a large object and send straight to browser</s>
1732 <s f="pg_lo_seek" u="bool pg_lo_seek(resource large_object, int offset [, int whence])">Seeks position of large object</s>
1733 <s f="pg_lo_tell" u="int pg_lo_tell(resource large_object)">Returns current position of large object</s>
1734 <s f="pg_lo_unlink" u="bool pg_lo_unlink([resource connection,] string large_object_oid)">Delete a large object</s>
1735 <s f="pg_lo_write" u="int pg_lo_write(resource large_object, string buf [, int len])">Write a large object</s>
1736 <s f="pg_meta_data" u="array pg_meta_data(resource db, string table)">Get meta_data</s>
1737 <s f="pg_num_fields" u="int pg_num_fields(resource result)">Return the number of fields in the result</s>
1738 <s f="pg_num_rows" u="int pg_num_rows(resource result)">Return the number of rows in the result</s>
1739 <s f="pg_options" u="string pg_options([resource connection])">Get the options associated with the connection</s>
1740 <s f="pg_pconnect" u="resource pg_pconnect(string connection_string | [string host, string port [, string options [, string tty,]]] string database)">Open a persistent PostgreSQL connection</s>
1741 <s f="pg_ping" u="bool pg_ping([resource connection])">Ping database. If connection is bad, try to reconnect.</s>
1742 <s f="pg_port" u="int pg_port([resource connection])">Return the port number associated with the connection</s>
1743 <s f="pg_put_line" u="bool pg_put_line([resource connection,] string query)">Send null-terminated string to backend server</s>
1744 <s f="pg_query" u="resource pg_query([resource connection,] string query)">Execute a query</s>
1745 <s f="pg_result_error" u="string pg_result_error(resource result)">Get error message associated with result</s>
1746 <s f="pg_result_seek" u="bool pg_result_seek(resource result, int offset)">Set internal row offset</s>
1747 <s f="pg_result_status" u="mixed pg_result_status(resource result[, long result_type])">Get status of query result</s>
1748 <s f="pg_select" u="mixed pg_select(resource db, string table, array ids[, int options])">Select records that has ids (id=>value)</s>
1749 <s f="pg_send_query" u="bool pg_send_query(resource connection, string qeury)">Send asynchronous query</s>
1750 <s f="pg_set_client_encoding" u="int pg_set_client_encoding([resource connection,] string encoding)">Set client encoding</s>
1751 <s f="pg_trace" u="bool pg_trace(string filename [, string mode [, resource connection]])">Enable tracing a PostgreSQL connection</s>
1752 <s f="pg_tty" u="string pg_tty([resource connection])">Return the tty name associated with the connection</s>
1753 <s f="pg_unescape_bytea" u="string pg_unescape_bytea(string data)">Unescape binary for bytea type</s>
1754 <s f="pg_untrace" u="bool pg_untrace([resource connection])">Disable tracing of a PostgreSQL connection</s>
1755 <s f="pg_update" u="mixed pg_update(resource db, string table, array fields, array ids[, int options])">Update table using values (field=>value) and ids (id=>value)</s>
1756 <s f="pg_version" u="array pg_version([resource connection])">Returns an array with client, protocol and server version (when available)</s>
1757 <s f="posix_ctermid" u="string posix_ctermid(void)">Generate terminal path name (POSIX.1, 4.7.1)</s>
1758 <s f="posix_get_last_error" u="int posix_get_last_error(void)">Retrieve the error number set by the last posix function which failed.</s>
1759 <s f="posix_getcwd" u="string posix_getcwd(void)">Get working directory pathname (POSIX.1, 5.2.2)</s>
1760 <s f="posix_getegid" u="int posix_getegid(void)">Get the current effective group id (POSIX.1, 4.2.1)</s>
1761 <s f="posix_geteuid" u="int posix_geteuid(void)">Get the current effective user id (POSIX.1, 4.2.1)</s>
1762 <s f="posix_getgid" u="int posix_getgid(void)">Get the current group id (POSIX.1, 4.2.1)</s>
1763 <s f="posix_getgrgid" u="array posix_getgrgid(long gid)">Group database access (POSIX.1, 9.2.1)</s>
1764 <s f="posix_getgrnam" u="array posix_getgrnam(string groupname)">Group database access (POSIX.1, 9.2.1)</s>
1765 <s f="posix_getgroups" u="array posix_getgroups(void)">Get supplementary group id's (POSIX.1, 4.2.3)</s>
1766 <s f="posix_getlogin" u="string posix_getlogin(void)">Get user name (POSIX.1, 4.2.4)</s>
1767 <s f="posix_getpgid" u="int posix_getpgid(void)">Get the process group id of the specified process (This is not a POSIX function, but a SVR4ism, so we compile conditionally)</s>
1768 <s f="posix_getpgrp" u="int posix_getpgrp(void)">Get current process group id (POSIX.1, 4.3.1)</s>
1769 <s f="posix_getpid" u="int posix_getpid(void)">Get the current process id (POSIX.1, 4.1.1)</s>
1770 <s f="posix_getppid" u="int posix_getppid(void)">Get the parent process id (POSIX.1, 4.1.1)</s>
1771 <s f="posix_getpwnam" u="array posix_getpwnam(string groupname)">User database access (POSIX.1, 9.2.2)</s>
1772 <s f="posix_getpwuid" u="array posix_getpwuid(long uid)">User database access (POSIX.1, 9.2.2)</s>
1773 <s f="posix_getrlimit" u="array posix_getrlimit(void)">Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally)</s>
1774 <s f="posix_getsid" u="int posix_getsid(void)">Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally)</s>
1775 <s f="posix_getuid" u="int posix_getuid(void)">Get the current user id (POSIX.1, 4.2.1)</s>
1776 <s f="posix_isatty" u="bool posix_isatty(int fd)">Determine if filedesc is a tty (POSIX.1, 4.7.1)</s>
1777 <s f="posix_kill" u="bool posix_kill(int pid, int sig)">Send a signal to a process (POSIX.1, 3.3.2)</s>
1778 <s f="posix_mkfifo" u="bool posix_mkfifo(string pathname, int mode)">Make a FIFO special file (POSIX.1, 5.4.2)</s>
1779 <s f="posix_setegid" u="bool posix_setegid(long uid)">Set effective group id</s>
1780 <s f="posix_seteuid" u="bool posix_seteuid(long uid)">Set effective user id</s>
1781 <s f="posix_setgid" u="bool posix_setgid(int uid)">Set group id (POSIX.1, 4.2.2)</s>
1782 <s f="posix_setpgid" u="bool posix_setpgid(int pid, int pgid)">Set process group id for job control (POSIX.1, 4.3.3)</s>
1783 <s f="posix_setsid" u="int posix_setsid(void)">Create session and set process group id (POSIX.1, 4.3.2)</s>
1784 <s f="posix_setuid" u="bool posix_setuid(long uid)">Set user id (POSIX.1, 4.2.2)</s>
1785 <s f="posix_strerror" u="string posix_strerror(int errno)">Retrieve the system error message associated with the given errno.</s>
1786 <s f="posix_times" u="array posix_times(void)">Get process times (POSIX.1, 4.5.2)</s>
1787 <s f="posix_ttyname" u="string posix_ttyname(int fd)">Determine terminal device name (POSIX.1, 4.7.2)</s>
1788 <s f="posix_uname" u="array posix_uname(void)">Get system name (POSIX.1, 4.4.1)</s>
1789 <s f="pspell_add_to_personal" u="bool pspell_add_to_personal(int pspell, string word)">Adds a word to a personal list</s>
1790 <s f="pspell_add_to_session" u="bool pspell_add_to_session(int pspell, string word)">Adds a word to the current session</s>
1791 <s f="pspell_check" u="bool pspell_check(int pspell, string word)">Returns true if word is valid</s>
1792 <s f="pspell_clear_session" u="bool pspell_clear_session(int pspell)">Clears the current session</s>
1793 <s f="pspell_config_create" u="int pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]])">Create a new config to be used later to create a manager</s>
1794 <s f="pspell_config_data_dir" u="bool pspell_config_data_dir(int conf, string directory)">location of language data files</s>
1795 <s f="pspell_config_dict_dir" u="bool pspell_config_dict_dir(int conf, string directory)">location of the main word list</s>
1796 <s f="pspell_config_ignore" u="bool pspell_config_ignore(int conf, int ignore)">Ignore words &lt;= n chars</s>
1797 <s f="pspell_config_mode" u="bool pspell_config_mode(int conf, long mode)">Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS)</s>
1798 <s f="pspell_config_personal" u="bool pspell_config_personal(int conf, string personal)">Use a personal dictionary for this config</s>
1799 <s f="pspell_config_repl" u="bool pspell_config_repl(int conf, string repl)">Use a personal dictionary with replacement pairs for this config</s>
1800 <s f="pspell_config_runtogether" u="bool pspell_config_runtogether(int conf, bool runtogether)">Consider run-together words as valid components</s>
1801 <s f="pspell_config_save_repl" u="bool pspell_config_save_repl(int conf, bool save)">Save replacement pairs when personal list is saved for this config</s>
1802 <s f="pspell_new" u="int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])">Load a dictionary</s>
1803 <s f="pspell_new_config" u="int pspell_new_config(int config)">Load a dictionary based on the given config</s>
1804 <s f="pspell_new_personal" u="int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])">Load a dictionary with a personal wordlist</s>
1805 <s f="pspell_save_wordlist" u="bool pspell_save_wordlist(int pspell)">Saves the current (personal) wordlist</s>
1806 <s f="pspell_store_replacement" u="bool pspell_store_replacement(int pspell, string misspell, string correct)">Notify the dictionary of a user-selected replacement</s>
1807 <s f="pspell_suggest" u="array pspell_suggest(int pspell, string word)">Returns array of suggestions</s>
1808 <s f="readline" u="string readline([string prompt])">Reads a line</s>
1809 <s f="readline_add_history" u="bool readline_add_history([string prompt])">Adds a line to the history</s>
1810 <s f="readline_clear_history" u="bool readline_clear_history(void)">Clears the history</s>
1811 <s f="readline_completion_function" u="bool readline_completion_function(string funcname)">Readline completion function?</s>
1812 <s f="readline_info" u="mixed readline_info([string varname] [, string newvalue])">Gets/sets various internal readline variables.</s>
1813 <s f="readline_list_history" u="array readline_list_history(void)">Lists the history</s>
1814 <s f="readline_read_history" u="bool readline_read_history([string filename] [, int from] [,int to])">Reads the history</s>
1815 <s f="readline_write_history" u="bool readline_write_history([string filename])">Writes the history</s>
1816 <s f="recode_file" u="bool recode_file(string request, resource input, resource output)">Recode file input into file output according to request</s>
1817 <s f="recode_string" u="string recode_string(string request, string str)">Recode string str according to request string</s>
1818 <s f="session_cache_expire" u="int session_cache_expire([int new_cache_expire])">Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expire</s>
1819 <s f="session_cache_limiter" u="string session_cache_limiter([string new_cache_limiter])">Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiter</s>
1820 <s f="session_decode" u="bool session_decode(string data)">Deserializes data and reinitializes the variables</s>
1821 <s f="session_destroy" u="bool session_destroy(void)">Destroy the current session and all data associated with it</s>
1822 <s f="session_encode" u="string session_encode(void)">Serializes the current setup and returns the serialized representation</s>
1823 <s f="session_get_cookie_params" u="array session_get_cookie_params(void)">Return the session cookie parameters</s>
1824 <s f="session_id" u="string session_id([string newid])">Return the current session id. If newid is given, the session id is replaced with newid</s>
1825 <s f="session_is_registered" u="bool session_is_registered(string varname)">Checks if a variable is registered in session</s>
1826 <s f="session_module_name" u="string session_module_name([string newname])">Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname</s>
1827 <s f="session_name" u="string session_name([string newname])">Return the current session name. If newname is given, the session name is replaced with newname</s>
1828 <s f="session_regenerate_id" u="bool session_regenerate_id()">Update the current session id with a newly generated one.</s>
1829 <s f="session_register" u="bool session_register(mixed var_names [, mixed ...])">Adds varname(s) to the list of variables which are freezed at the session end</s>
1830 <s f="session_save_path" u="string session_save_path([string newname])">Return the current save path passed to module_name. If newname is given, the save path is replaced with newname</s>
1831 <s f="session_set_cookie_params" u="void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure]]])">Set session cookie parameters</s>
1832 <s f="session_set_save_handler" u="void session_set_save_handler(string open, string close, string read, string write, string destroy, string gc)">Sets user-level functions</s>
1833 <s f="session_start" u="bool session_start(void)">Begin session - reinitializes freezed variables, registers browsers etc</s>
1834 <s f="session_unregister" u="bool session_unregister(string varname)">Removes varname from the list of variables which are freezed at the session end</s>
1835 <s f="session_unset" u="void session_unset(void)">Unset all registered variables</s>
1836 <s f="session_write_close" u="void session_write_close(void)">Write session data and end session</s>
1837 <s f="simplexml_import_dom" u="simplemxml_element simplexml_import_dom(domNode node [, string class_name])">Get a simplexml_element object from dom to allow for processing</s>
1838 <s f="simplexml_load_file" u="simplemxml_element simplexml_load_file(string filename [, string class_name])">Load a filename and return a simplexml_element object to allow for processing</s>
1839 <s f="simplexml_load_string" u="simplemxml_element simplexml_load_string(string data [, string class_name])">Load a string and return a simplexml_element object to allow for processing</s>
1840 <s f="confirm_extname_compiled" u="string confirm_extname_compiled(string arg)">Return a string to confirm that the module is compiled in</s>
1841 <s f="snmp_get_quick_print" u="bool snmp_get_quick_print(void)">Return the current status of quick_print</s>
1842 <s f="snmp_get_valueretrieval" u="int snmp_get_valueretrieval()">Return the method how the SNMP values will be returned</s>
1843 <s f="snmp_read_mib" u="int snmp_read_mib(string filename)">Reads and parses a MIB file into the active MIB tree.</s>
1844 <s f="snmp_set_enum_print" u="void snmp_set_enum_print(int enum_print)">Return all values that are enums with their enum value instead of the raw integer</s>
1845 <s f="snmp_set_oid_numeric_print" u="void snmp_set_oid_numeric_print(int oid_numeric_print)">Return all objects including their respective object id withing the specified one</s>
1846 <s f="snmp_set_quick_print" u="void snmp_set_quick_print(int quick_print)">Return all objects including their respective object id withing the specified one</s>
1847 <s f="snmp_set_valueretrieval" u="int snmp_set_valueretrieval(int method)">Specify the method how the SNMP values will be returned</s>
1848 <s f="snmpget" u="string snmpget(string host, string community, string object_id [, int timeout [, int retries]])">Fetch a SNMP object</s>
1849 <s f="snmpgetnext" u="string snmpgetnext(string host, string community, string object_id [, int timeout [, int retries]])">Fetch a SNMP object</s>
1850 <s f="snmprealwalk" u="array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]])">Return all objects including their respective object id withing the specified one</s>
1851 <s f="snmpset" u="int snmpset(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])">Set the value of a SNMP object</s>
1852 <s f="snmpwalk" u="array snmpwalk(string host, string community, string object_id [, int timeout [, int retries]])">Return all objects under the specified object id</s>
1853 <s f="socket_accept" u="resource socket_accept(resource socket)">Accepts a connection on the listening socket fd</s>
1854 <s f="socket_bind" u="bool socket_bind(resource socket, string addr [, int port])">Binds an open socket to a listening port, port is only specified in AF_INET family.</s>
1855 <s f="socket_clear_error" u="void socket_clear_error([resource socket])">Clears the error on the socket or the last error code.</s>
1856 <s f="socket_close" u="void socket_close(resource socket)">Closes a file descriptor</s>
1857 <s f="socket_connect" u="bool socket_connect(resource socket, string addr [, int port])">Opens a connection to addr:port on the socket specified by socket</s>
1858 <s f="socket_create" u="resource socket_create(int domain, int type, int protocol)">Creates an endpoint for communication in the domain specified by domain, of type specified by type</s>
1859 <s f="socket_create_listen" u="resource socket_create_listen(int port[, int backlog])">Opens a socket on port to accept connections</s>
1860 <s f="socket_create_pair" u="bool socket_create_pair(int domain, int type, int protocol, array &amp;fd)">Creates a pair of indistinguishable sockets and stores them in fds.</s>
1861 <s f="socket_get_option" u="mixed socket_get_option(resource socket, int level, int optname)">Gets socket options for the socket</s>
1862 <s f="socket_getpeername" u="bool socket_getpeername(resource socket, string &amp;addr[, int &amp;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.</s>
1863 <s f="socket_getsockname" u="bool socket_getsockname(resource socket, string &amp;addr[, int &amp;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.</s>
1864 <s f="socket_last_error" u="int socket_last_error([resource socket])">Returns the last socket error (either the last used or the provided socket resource)</s>
1865 <s f="socket_listen" u="bool socket_listen(resource socket[, int backlog])">Sets the maximum number of connections allowed to be waited for on the socket specified by fd</s>
1866 <s f="socket_read" u="string socket_read(resource socket, int length [, int type])">Reads a maximum of length bytes from socket</s>
1867 <s f="socket_recv" u="int socket_recv(resource socket, string &amp;buf, int len, int flags)">Receives data from a connected socket</s>
1868 <s f="socket_recvfrom" u="int socket_recvfrom(resource socket, string &amp;buf, int len, int flags, string &amp;name [, int &amp;port])">Receives data from a socket, connected or not</s>
1869 <s f="socket_select" u="int socket_select(array &amp;read_fds, array &amp;write_fds, &amp;array except_fds, int tv_sec[, int tv_usec])">Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec</s>
1870 <s f="socket_send" u="int socket_send(resource socket, string buf, int len, int flags)">Sends data to a connected socket</s>
1871 <s f="socket_sendto" u="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</s>
1872 <s f="socket_set_block" u="bool socket_set_block(resource socket)">Sets blocking mode on a socket resource</s>
1873 <s f="socket_set_nonblock" u="bool socket_set_nonblock(resource socket)">Sets nonblocking mode on a socket resource</s>
1874 <s f="socket_set_option" u="bool socket_set_option(resource socket, int level, int optname, int|array optval)">Sets socket options for the socket</s>
1875 <s f="socket_shutdown" u="bool socket_shutdown(resource socket[, int how])">Shuts down a socket for receiving, sending, or both.</s>
1876 <s f="socket_strerror" u="string socket_strerror(int errno)">Returns a string describing an error</s>
1877 <s f="socket_write" u="int socket_write(resource socket, string buf[, int length])">Writes the buffer to the socket resource, length is optional</s>
1878 <s f="sqlite_array_query" u="array sqlite_array_query(resource db, string query [ , int result_type [, bool decode_binary]])">Executes a query against a given database and returns an array of arrays.</s>
1879 <s f="sqlite_busy_timeout" u="void sqlite_busy_timeout(resource db, int ms)">Set busy timeout duration. If ms &lt;= 0, all busy handlers are disabled.</s>
1880 <s f="sqlite_changes" u="int sqlite_changes(resource db)">Returns the number of rows that were changed by the most recent SQL statement.</s>
1881 <s f="sqlite_close" u="void sqlite_close(resource db)">Closes an open sqlite database.</s>
1882 <s f="sqlite_column" u="mixed sqlite_column(resource result, mixed index_or_name [, bool decode_binary])">Fetches a column from the current row of a result set.</s>
1883 <s f="sqlite_create_aggregate" u="bool sqlite_create_aggregate(resource db, string funcname, mixed step_func, mixed finalize_func[, long num_args])">Registers an aggregate function for queries.</s>
1884 <s f="sqlite_create_function" u="bool sqlite_create_function(resource db, string funcname, mixed callback[, long num_args])">Registers a "regular" function for queries.</s>
1885 <s f="sqlite_current" u="array sqlite_current(resource result [, int result_type [, bool decode_binary]])">Fetches the current row from a result set as an array.</s>
1886 <s f="sqlite_error_string" u="string sqlite_error_string(int error_code)">Returns the textual description of an error code.</s>
1887 <s f="sqlite_escape_string" u="string sqlite_escape_string(string item)">Escapes a string for use as a query parameter.</s>
1888 <s f="sqlite_factory" u="object sqlite_factory(string filename [, int mode [, string &amp;error_message]])">Opens a SQLite database and creates an object for it. Will create the database if it does not exist.</s>
1889 <s f="sqlite_fetch_all" u="array sqlite_fetch_all(resource result [, int result_type [, bool decode_binary]])">Fetches all rows from a result set as an array of arrays.</s>
1890 <s f="sqlite_fetch_array" u="array sqlite_fetch_array(resource result [, int result_type [, bool decode_binary]])">Fetches the next row from a result set as an array.</s>
1891 <s f="sqlite_fetch_column_types" u="resource sqlite_fetch_column_types(string table_name, resource db)">Return an array of column types from a particular table.</s>
1892 <s f="sqlite_fetch_object" u="object sqlite_fetch_object(resource result [, string class_name [, NULL|array ctor_params [, bool decode_binary]]])">Fetches the next row from a result set as an object.</s>
1893 <s f="sqlite_fetch_single" u="string sqlite_fetch_single(resource result [, bool decode_binary])">Fetches the first column of a result set as a string.</s>
1894 <s f="sqlite_field_name" u="string sqlite_field_name(resource result, int field_index)">Returns the name of a particular field of a result set.</s>
1895 <s f="sqlite_has_prev" u="bool sqlite_has_prev(resource result)">* Returns whether a previous row is available.</s>
1896 <s f="sqlite_last_error" u="int sqlite_last_error(resource db)">Returns the error code of the last error for a database.</s>
1897 <s f="sqlite_last_insert_rowid" u="int sqlite_last_insert_rowid(resource db)">Returns the rowid of the most recently inserted row.</s>
1898 <s f="sqlite_libencoding" u="string sqlite_libencoding()">Returns the encoding (iso8859 or UTF-8) of the linked SQLite library.</s>
1899 <s f="sqlite_libversion" u="string sqlite_libversion()">Returns the version of the linked SQLite library.</s>
1900 <s f="sqlite_next" u="bool sqlite_next(resource result)">Seek to the next row number of a result set.</s>
1901 <s f="sqlite_num_fields" u="int sqlite_num_fields(resource result)">Returns the number of fields in a result set.</s>
1902 <s f="sqlite_num_rows" u="int sqlite_num_rows(resource result)">Returns the number of rows in a buffered result set.</s>
1903 <s f="sqlite_open" u="resource sqlite_open(string filename [, int mode [, string &amp;error_message]])">Opens a SQLite database. Will create the database if it does not exist.</s>
1904 <s f="sqlite_popen" u="resource sqlite_popen(string filename [, int mode [, string &amp;error_message]])">Opens a persistent handle to a SQLite database. Will create the database if it does not exist.</s>
1905 <s f="sqlite_prev" u="bool sqlite_prev(resource result)">* Seek to the previous row number of a result set.</s>
1906 <s f="sqlite_query" u="resource sqlite_query(string query, resource db [, int result_type ])">Executes a query against a given database and returns a result handle.</s>
1907 <s f="sqlite_rewind" u="bool sqlite_rewind(resource result)">Seek to the first row number of a buffered result set.</s>
1908 <s f="sqlite_seek" u="bool sqlite_seek(resource result, int row)">Seek to a particular row number of a buffered result set.</s>
1909 <s f="sqlite_single_query" u="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.</s>
1910 <s f="sqlite_udf_decode_binary" u="string sqlite_udf_decode_binary(string data)">Decode binary encoding on a string parameter passed to an UDF.</s>
1911 <s f="sqlite_udf_encode_binary" u="string sqlite_udf_encode_binary(string data)">Apply binary encoding (if required) to a string to return from an UDF.</s>
1912 <s f="sqlite_unbuffered_query" u="resource sqlite_unbuffered_query(string query, resource db [ , int result_type ])">Executes a query that does not prefetch and buffer all data.</s>
1913 <s f="sqlite_valid" u="bool sqlite_valid(resource result)">Returns whether more rows are available.</s>
1914 <s f="array_change_key_case" u="array array_change_key_case(array input [, int case=CASE_LOWER])">Retuns an array with all string keys lowercased [or uppercased]</s>
1915 <s f="array_chunk" u="array array_chunk(array input, int size [, bool preserve_keys])">Split array into chunks</s>
1916 <s f="array_combine" u="array array_combine(array keys, array values)">Creates an array by using the elements of the first parameter as keys and the elements of the second as correspoding keys</s>
1917 <s f="array_count_values" u="array array_count_values(array input)">Return the value as key and the frequency of that value in input as value</s>
1918 <s f="array_diff" u="array array_diff(array arr1, array arr2 [, array ...])">Returns the entries of arr1 that have values which are not present in any of the others arguments.</s>
1919 <s f="array_diff_assoc" u="array array_diff_assoc(array arr1, array arr2 [, array ...])">Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal</s>
1920 <s f="array_diff_uassoc" u="array array_diff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func)">Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Elements are compared by user supplied function.</s>
1921 <s f="array_fill" u="array array_fill(int start_key, int num, mixed val)">Create an array containing num elements starting with index start_key each initialized to val</s>
1922 <s f="array_filter" u="array array_filter(array input [, mixed callback])">Filters elements from the array via the callback.</s>
1923 <s f="array_flip" u="array array_flip(array input)">Return array with key &lt;-&gt; value flipped</s>
1924 <s f="array_intersect" u="array array_intersect(array arr1, array arr2 [, array ...])">Returns the entries of arr1 that have values which are present in all the other arguments</s>
1925 <s f="array_intersect_assoc" u="array array_intersect_assoc(array arr1, array arr2 [, array ...])">Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check</s>
1926 <s f="array_intersect_uassoc" u="array array_intersect_uassoc(array arr1, array arr2 [, array ...], callback key_compare_func)">Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using an user-supplied callback.</s>
1927 <s f="array_key_exists" u="bool array_key_exists(mixed key, array search)">Checks if the given key or index exists in the array</s>
1928 <s f="array_keys" u="array array_keys(array input [, mixed search_value[, bool strict]])">Return just the keys from the input array, optionally only for the specified search_value</s>
1929 <s f="array_map" u="array array_map(mixed callback, array input1 [, array input2 ,...])">Applies the callback to the elements in given arrays.</s>
1930 <s f="array_merge" u="array array_merge(array arr1, array arr2 [, array ...])">Merges elements from passed arrays into one array</s>
1931 <s f="array_merge_recursive" u="array array_merge_recursive(array arr1, array arr2 [, array ...])">Recursively merges elements from passed arrays into one array</s>
1932 <s f="array_multisort" u="bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])">Sort multiple arrays at once similar to how ORDER BY clause works in SQL</s>
1933 <s f="array_pad" u="array array_pad(array input, int pad_size, mixed pad_value)">Returns a copy of input array padded with pad_value to size pad_size</s>
1934 <s f="array_pop" u="mixed array_pop(array stack)">Pops an element off the end of the array</s>
1935 <s f="array_push" u="int array_push(array stack, mixed var [, mixed ...])">Pushes elements onto the end of the array</s>
1936 <s f="array_rand" u="mixed array_rand(array input [, int num_req])">Return key/keys for random entry/entries in the array</s>
1937 <s f="array_reduce" u="mixed array_reduce(array input, mixed callback [, int initial])">Iteratively reduce the array to a single value via the callback.</s>
1938 <s f="array_reverse" u="array array_reverse(array input [, bool preserve keys])">Return input as a new array with the order of the entries reversed</s>
1939 <s f="array_search" u="mixed array_search(mixed needle, array haystack [, bool strict])">Searches the array for a given value and returns the corresponding key if successful</s>
1940 <s f="array_shift" u="mixed array_shift(array stack)">Pops an element off the beginning of the array</s>
1941 <s f="array_slice" u="array array_slice(array input, int offset [, int length])">Returns elements specified by offset and length</s>
1942 <s f="array_splice" u="array array_splice(array input, int offset [, int length [, array replacement]])">Removes the elements designated by offset and length and replace them with supplied array</s>
1943 <s f="array_sum" u="mixed array_sum(array input)">Returns the sum of the array entries</s>
1944 <s f="array_udiff" u="array array_udiff(array arr1, array arr2 [, array ...], callback data_comp_func)">Returns the entries of arr1 that have values which are not present in any of the others arguments. Elements are compared by user supplied function.</s>
1945 <s f="array_udiff_assoc" u="array array_udiff_assoc(array arr1, array arr2 [, array ...], callback key_comp_func)">Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys are compared by user supplied function.</s>
1946 <s f="array_udiff_uassoc" u="array array_udiff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func)">Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys and elements are compared by user supplied functions.</s>
1947 <s f="array_uintersect" u="array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_func)">Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback.</s>
1948 <s f="array_uintersect_assoc" u="array array_uintersect_assoc(array arr1, array arr2 [, array ...], callback data_compare_func)">Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using an user-supplied callback.</s>
1949 <s f="array_uintersect_uassoc" u="array array_uintersect_uassoc(array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func)">Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Both data and keys are compared by using user-supplied callbacks.</s>
1950 <s f="array_unique" u="array array_unique(array input)">Removes duplicate values from array</s>
1951 <s f="array_unshift" u="int array_unshift(array stack, mixed var [, mixed ...])">Pushes elements onto the beginning of the array</s>
1952 <s f="array_values" u="array array_values(array input)">Return just the values from the input array</s>
1953 <s f="array_walk" u="bool array_walk(array input, string funcname [, mixed userdata])">Apply a user function to every member of an array</s>
1954 <s f="array_walk_recursive" u="bool array_walk_recursive(array input, string funcname [, mixed userdata])">Apply a user function recursively to every member of an array</s>
1955 <s f="arsort" u="bool arsort(array array_arg [, int sort_flags])">Sort an array in reverse order and maintain index association</s>
1956 <s f="asort" u="bool asort(array array_arg [, int sort_flags])">Sort an array and maintain index association</s>
1957 <s f="compact" u="array compact(mixed var_names [, mixed ...])">Creates a hash containing variables and their values</s>
1958 <s f="count" u="int count(mixed var [, int mode])">Count the number of elements in a variable (usually an array)</s>
1959 <s f="current" u="mixed current(array array_arg)">Return the element currently pointed to by the internal array pointer</s>
1960 <s f="end" u="mixed end(array array_arg)">Advances array argument's internal pointer to the last element and return it</s>
1961 <s f="extract" u="int extract(array var_array [, int extract_type [, string prefix]])">Imports variables into symbol table from an array</s>
1962 <s f="in_array" u="bool in_array(mixed needle, array haystack [, bool strict])">Checks if the given value exists in the array</s>
1963 <s f="key" u="mixed key(array array_arg)">Return the key of the element currently pointed to by the internal array pointer</s>
1964 <s f="krsort" u="bool krsort(array array_arg [, int sort_flags])">Sort an array by key value in reverse order</s>
1965 <s f="ksort" u="bool ksort(array array_arg [, int sort_flags])">Sort an array by key</s>
1966 <s f="max" u="mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])">Return the highest value in an array or a series of arguments</s>
1967 <s f="min" u="mixed min(mixed arg1 [, mixed arg2 [, mixed ...]])">Return the lowest value in an array or a series of arguments</s>
1968 <s f="natcasesort" u="void natcasesort(array array_arg)">Sort an array using case-insensitive natural sort</s>
1969 <s f="natsort" u="void natsort(array array_arg)">Sort an array using natural sort</s>
1970 <s f="next" u="mixed next(array array_arg)">Move array argument's internal pointer to the next element and return it</s>
1971 <s f="prev" u="mixed prev(array array_arg)">Move array argument's internal pointer to the previous element and return it</s>
1972 <s f="range" u="array range(mixed low, mixed high[, int step])">Create an array containing the range of integers or characters from low to high (inclusive)</s>
1973 <s f="reset" u="mixed reset(array array_arg)">Set array argument's internal pointer to the first element and return it</s>
1974 <s f="rsort" u="bool rsort(array array_arg [, int sort_flags])">Sort an array in reverse order</s>
1975 <s f="shuffle" u="bool shuffle(array array_arg)">Randomly shuffle the contents of an array</s>
1976 <s f="sort" u="bool sort(array array_arg [, int sort_flags])">Sort an array</s>
1977 <s f="uasort" u="bool uasort(array array_arg, string cmp_function)">Sort an array with a user-defined comparison function and maintain index association</s>
1978 <s f="uksort" u="bool uksort(array array_arg, string cmp_function)">Sort an array by keys using a user-defined comparison function</s>
1979 <s f="usort" u="bool usort(array array_arg, string cmp_function)">Sort an array by values using a user-defined comparison function</s>
1980 <s f="assert" u="int assert(string|bool assertion)">Checks if assertion is false</s>
1981 <s f="assert_options" u="mixed assert_options(int what [, mixed value])">Set/get the various assert flags</s>
1982 <s f="call_user_func" u="mixed call_user_func(string function_name [, mixed parmeter] [, mixed ...])">Call a user function which is the first parameter</s>
1983 <s f="call_user_func_array" u="mixed call_user_func_array(string function_name, array parameters)">Call a user function which is the first parameter with the arguments contained in array</s>
1984 <s f="call_user_method" u="mixed call_user_method(string method_name, mixed object [, mixed parameter] [, mixed ...])">Call a user method on a specific object or class</s>
1985 <s f="call_user_method_array" u="mixed call_user_method_array(string method_name, mixed object, array params)">Call a user method on a specific object or class using a parameter array</s>
1986 <s f="connection_aborted" u="int connection_aborted(void)">Returns true if client disconnected</s>
1987 <s f="connection_status" u="int connection_status(void)">Returns the connection status bitfield</s>
1988 <s f="constant" u="mixed constant(string const_name)">Given the name of a constant this function will return the constants associated value</s>
1989 <s f="error_log" u="bool error_log(string message [, int message_type [, string destination [, string extra_headers]]])">Send an error message somewhere</s>
1990 <s f="flush" u="void flush(void)">Flush the output buffer</s>
1991 <s f="get_cfg_var" u="string get_cfg_var(string option_name)">Get the value of a PHP configuration option</s>
1992 <s f="get_current_user" u="string get_current_user(void)">Get the name of the owner of the current PHP script</s>
1993 <s f="get_include_path" u="string get_include_path()">Get the current include_path configuration option</s>
1994 <s f="get_magic_quotes_gpc" u="int get_magic_quotes_gpc(void)">Get the current active configuration setting of magic_quotes_gpc</s>
1995 <s f="get_magic_quotes_runtime" u="int get_magic_quotes_runtime(void)">Get the current active configuration setting of magic_quotes_runtime</s>
1996 <s f="getenv" u="string getenv(string varname)">Get the value of an environment variable</s>
1997 <s f="getopt" u="array getopt(string options [, array longopts])">Get options from the command line argument list</s>
1998 <s f="getprotobyname" u="int getprotobyname(string name)">Returns protocol number associated with name as per /etc/protocols</s>
1999 <s f="getprotobynumber" u="string getprotobynumber(int proto)">Returns protocol name associated with protocol number proto</s>
2000 <s f="getservbyname" u="int getservbyname(string service, string protocol)">Returns port associated with service. Protocol must be "tcp" or "udp"</s>
2001 <s f="getservbyport" u="string getservbyport(int port, string protocol)">Returns service name associated with port. Protocol must be "tcp" or "udp"</s>
2002 <s f="highlight_file" u="bool highlight_file(string file_name [, bool return] )">Syntax highlight a source file</s>
2003 <s f="highlight_string" u="bool highlight_string(string string [, bool return] )">Syntax highlight a string or optionally return it</s>
2004 <s f="ignore_user_abort" u="int ignore_user_abort(bool value)">Set whether we want to ignore a user abort event or not</s>
2005 <s f="import_request_variables" u="bool import_request_variables(string types [, string prefix])">Import GET/POST/Cookie variables into the global scope</s>
2006 <s f="ini_get" u="string ini_get(string varname)">Get a configuration option</s>
2007 <s f="ini_get_all" u="array ini_get_all([string extension])">Get all configuration options</s>
2008 <s f="ini_restore" u="void ini_restore(string varname)">Restore the value of a configuration option specified by varname</s>
2009 <s f="ini_set" u="string ini_set(string varname, string newvalue)">Set a configuration option, returns false on error and the old value of the configuration option on success</s>
2010 <s f="is_uploaded_file" u="bool is_uploaded_file(string path)">Check if file was created by rfc1867 upload</s>
2011 <s f="move_uploaded_file" u="bool move_uploaded_file(string path, string new_path)">Move a file if and only if it was created by an upload</s>
2012 <s f="parse_ini_file" u="array parse_ini_file(string filename [, bool process_sections])">Parse configuration file</s>
2013 <s f="php_check_syntax" u="bool php_check_syntax(string file_name [, &amp;$error_message])">Check the syntax of the specified file.</s>
2014 <s f="php_strip_whitespace" u="string php_strip_whitespace(string file_name)">Return source with stripped comments and whitespace</s>
2015 <s f="print_r" u="mixed print_r(mixed var [, bool return])">Prints out or returns information about the specified variable</s>
2016 <s f="putenv" u="bool putenv(string setting)">Set the value of an environment variable</s>
2017 <s f="register_shutdown_function" u="void register_shutdown_function(string function_name)">Register a user-level function to be called on request termination</s>
2018 <s f="register_tick_function" u="bool register_tick_function(string function_name [, mixed arg [, mixed ... ]])">Registers a tick callback function</s>
2019 <s f="restore_include_path" u="void restore_include_path()">Restore the value of the include_path configuration option</s>
2020 <s f="set_include_path" u="string set_include_path(string varname, string newvalue)">Sets the include_path configuration option</s>
2021 <s f="set_magic_quotes_runtime" u="bool set_magic_quotes_runtime(int new_setting)">Set the current active configuration setting of magic_quotes_runtime and return previous</s>
2022 <s f="sleep" u="void sleep(int seconds)">Delay for a given number of seconds</s>
2023 <s f="time_nanosleep" u="mixed time_nanosleep(long seconds, long nanoseconds)">Delay for a number of seconds and nano seconds</s>
2024 <s f="unregister_tick_function" u="void unregister_tick_function(string function_name)">Unregisters a tick callback function</s>
2025 <s f="usleep" u="void usleep(int micro_seconds)">Delay for a given number of micro seconds</s>
2026 <s f="get_browser" u="mixed get_browser([string browser_name [, bool return_array]])">Get information about the capabilities of a browser. If browser_name is omitted     or null, HTTP_USER_AGENT is used. Returns an object by default; if return_array     is true, returns an array.</s>
2027 <s f="crypt" u="string crypt(string str [, string salt])">Encrypt a string</s>
2028 <s f="convert_cyr_string" u="string convert_cyr_string(string str, string from, string to)">Convert from one Cyrillic character set to another</s>
2029 <s f="checkdate" u="bool checkdate(int month, int day, int year)">Returns true(1) if it is a valid date in gregorian calendar</s>
2030 <s f="date" u="string date(string format [, int timestamp])">Format a local time/date</s>
2031 <s f="getdate" u="array getdate([int timestamp])">Get date/time information</s>
2032 <s f="gmdate" u="string gmdate(string format [, int timestamp])">Format a GMT/UTC date/time</s>
2033 <s f="gmmktime" u="int gmmktime(int hour, int min, int sec, int mon, int day, int year)">Get UNIX timestamp for a GMT date</s>
2034 <s f="gmstrftime" u="string gmstrftime(string format [, int timestamp])">Format a GMT/UCT time/date according to locale settings</s>
2035 <s f="idate" u="int idate(string format [, int timestamp])">Format a local time/date as integer</s>
2036 <s f="localtime" u="array localtime([int timestamp [, bool associative_array]])">Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array</s>
2037 <s f="mktime" u="int mktime(int hour, int min, int sec, int mon, int day, int year)">Get UNIX timestamp for a date</s>
2038 <s f="strftime" u="string strftime(string format [, int timestamp])">Format a local time/date according to locale settings</s>
2039 <s f="strtotime" u="int strtotime(string time, int now)">Convert string representation of date and time to a timestamp</s>
2040 <s f="time" u="int time(void)">Return current UNIX timestamp</s>
2041 <s f="chdir" u="bool chdir(string directory)">Change the current directory</s>
2042 <s f="chroot" u="bool chroot(string directory)">Change root directory</s>
2043 <s f="closedir" u="void closedir([resource dir_handle])">Close directory connection identified by the dir_handle</s>
2044 <s f="dir" u="object dir(string directory[, resource context])">Directory class with properties, handle and class and methods read, rewind and close</s>
2045 <s f="getcwd" u="mixed getcwd(void)">Gets the current directory</s>
2046 <s f="glob" u="array glob(string pattern [, int flags])">Find pathnames matching a pattern</s>
2047 <s f="opendir" u="mixed opendir(string path[, resource context])">Open a directory and return a dir_handle</s>
2048 <s f="readdir" u="string readdir([resource dir_handle])">Read directory entry from dir_handle</s>
2049 <s f="rewinddir" u="void rewinddir([resource dir_handle])">Rewind dir_handle back to the start</s>
2050 <s f="scandir" u="array scandir(string dir [, int sorting_order [, resource context]])">List files &amp; directories inside the specified path</s>
2051 <s f="dl" u="int dl(string extension_filename)">Load a PHP extension at runtime</s>
2052 <s f="dns_check_record" u="int dns_check_record(string host [, string type])">Check DNS records corresponding to a given Internet host name or IP address</s>
2053 <s f="dns_get_mx" u="bool dns_get_mx(string hostname, array mxhosts [, array weight])">Get MX records corresponding to a given Internet host name</s>
2054 <s f="gethostbyaddr" u="string gethostbyaddr(string ip_address)">Get the Internet host name corresponding to a given IP address</s>
2055 <s f="gethostbyname" u="string gethostbyname(string hostname)">Get the IP address corresponding to a given Internet host name</s>
2056 <s f="gethostbynamel" u="array gethostbynamel(string hostname)">Return a list of IP addresses that a given hostname resolves to.</s>
2057 <s f="escapeshellarg" u="string escapeshellarg(string arg)">Quote and escape an argument for use in a shell command</s>
2058 <s f="escapeshellcmd" u="string escapeshellcmd(string command)">Escape shell metacharacters</s>
2059 <s f="exec" u="string exec(string command [, array &amp;output [, int &amp;return_value]])">Execute an external program</s>
2060 <s f="passthru" u="void passthru(string command [, int &amp;return_value])">Execute an external program and display raw output</s>
2061 <s f="proc_nice" u="bool proc_nice(int priority)">Change the priority of the current process</s>
2062 <s f="shell_exec" u="string shell_exec(string cmd)">Execute command via shell and return complete output as string</s>
2063 <s f="system" u="int system(string command [, int &amp;return_value])">Execute an external program and display output</s>
2064 <s f="copy" u="bool copy(string source_file, string destination_file)">Copy a file</s>
2065 <s f="fclose" u="bool fclose(resource fp)">Close an open file pointer</s>
2066 <s f="feof" u="bool feof(resource fp)">Test for end-of-file on a file pointer</s>
2067 <s f="fflush" u="bool fflush(resource fp)">Flushes output</s>
2068 <s f="fgetc" u="string fgetc(resource fp)">Get a character from file pointer</s>
2069 <s f="fgetcsv" u="array fgetcsv(resource fp [,int length [, string delimiter [, string enclosure]]])">Get line from file pointer and parse for CSV fields</s>
2070 <s f="fgets" u="string fgets(resource fp[, int length])">Get a line from file pointer</s>
2071 <s f="fgetss" u="string fgetss(resource fp [, int length, string allowable_tags])">Get a line from file pointer and strip HTML tags</s>
2072 <s f="file" u="array file(string filename [, int flags[, resource context]])">Read entire file into an array</s>
2073 <s f="file_get_contents" u="string file_get_contents(string filename [, bool use_include_path [, resource context]])">Read the entire file into a string</s>
2074 <s f="file_put_contents" u="int file_put_contents(string file, mixed data [, int flags [, resource context]])">Write/Create a file with contents data and return the number of bytes written</s>
2075 <s f="flock" u="bool flock(resource fp, int operation [, int &amp;wouldblock])">Portable file locking</s>
2076 <s f="fnmatch" u="bool fnmatch(string pattern, string filename [, int flags])">Match filename against pattern</s>
2077 <s f="fopen" u="resource fopen(string filename, string mode [, bool use_include_path [, resource context]])">Open a file or a URL and return a file pointer</s>
2078 <s f="fpassthru" u="int fpassthru(resource fp)">Output all remaining data from a file pointer</s>
2079 <s f="fread" u="string fread(resource fp, int length)">Binary-safe file read</s>
2080 <s f="fscanf" u="mixed fscanf(resource stream, string format [, string ...])">Implements a mostly ANSI compatible fscanf()</s>
2081 <s f="fseek" u="int fseek(resource fp, int offset [, int whence])">Seek on a file pointer</s>
2082 <s f="fstat" u="int fstat(resource fp)">Stat() on a filehandle</s>
2083 <s f="ftell" u="int ftell(resource fp)">Get file pointer's read/write position</s>
2084 <s f="ftruncate" u="bool ftruncate(resource fp, int size)">Truncate file to 'size' length</s>
2085 <s f="fwrite" u="int fwrite(resource fp, string str [, int length])">Binary-safe file write</s>
2086 <s f="get_meta_tags" u="array get_meta_tags(string filename [, bool use_include_path])">Extracts all meta tag content attributes from a file and returns an array</s>
2087 <s f="mkdir" u="int mkdir(char *dir int mode)"/>
2088 <s f="mkdir" u="bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])">Create a directory</s>
2089 <s f="pclose" u="int pclose(resource fp)">Close a file pointer opened by popen()</s>
2090 <s f="popen" u="resource popen(string command, string mode)">Execute a command and open either a read or a write pipe to it</s>
2091 <s f="readfile" u="int readfile(string filename [, bool use_include_path[, resource context]])">Output a file or a URL</s>
2092 <s f="realpath" u="string realpath(string path)">Return the resolved path</s>
2093 <s f="rename" u="bool rename(string old_name, string new_name[, resource context])">Rename a file</s>
2094 <s f="rewind" u="bool rewind(resource fp)">Rewind the position of a file pointer</s>
2095 <s f="rmdir" u="bool rmdir(string dirname[, resource context])">Remove a directory</s>
2096 <s f="tempnam" u="string tempnam(string dir, string prefix)">Create a unique filename in a directory</s>
2097 <s f="tmpfile" u="resource tmpfile(void)">Create a temporary file that will be deleted automatically after use</s>
2098 <s f="umask" u="int umask([int mask])">Return or change the umask</s>
2099 <s f="unlink" u="bool unlink(string filename[, context context])">Delete a file</s>
2100 <s f="chgrp" u="bool chgrp(string filename, mixed group)">Change file group</s>
2101 <s f="chmod" u="bool chmod(string filename, int mode)">Change file mode</s>
2102 <s f="clearstatcache" u="void clearstatcache(void)">Clear file stat cache</s>
2103 <s f="disk_free_space" u="float disk_free_space(string path)">Get free disk space for filesystem that path is on</s>
2104 <s f="disk_total_space" u="float disk_total_space(string path)">Get total disk space for filesystem that path is on</s>
2105 <s f="file_exists" u="bool file_exists(string filename)">Returns true if filename exists</s>
2106 <s f="fileatime" u="int fileatime(string filename)">Get last access time of file</s>
2107 <s f="filectime" u="int filectime(string filename)">Get inode modification time of file</s>
2108 <s f="filegroup" u="int filegroup(string filename)">Get file group</s>
2109 <s f="fileinode" u="int fileinode(string filename)">Get file inode</s>
2110 <s f="filemtime" u="int filemtime(string filename)">Get last modification time of file</s>
2111 <s f="fileowner" u="int fileowner(string filename)">Get file owner</s>
2112 <s f="fileperms" u="int fileperms(string filename)">Get file permissions</s>
2113 <s f="filesize" u="int filesize(string filename)">Get file size</s>
2114 <s f="filetype" u="string filetype(string filename)">Get file type</s>
2115 <s f="is_dir" u="bool is_dir(string filename)">Returns true if file is directory</s>
2116 <s f="is_executable" u="bool is_executable(string filename)">Returns true if file is executable</s>
2117 <s f="is_file" u="bool is_file(string filename)">Returns true if file is a regular file</s>
2118 <s f="is_link" u="bool is_link(string filename)">Returns true if file is symbolic link</s>
2119 <s f="is_readable" u="bool is_readable(string filename)">Returns true if file can be read</s>
2120 <s f="is_writable" u="bool is_writable(string filename)">Returns true if file can be written</s>
2121 <s f="lstat" u="array lstat(string filename)">Give information about a file or symbolic link</s>
2122 <s f="stat" u="array stat(string filename)">Give information about a file</s>
2123 <s f="touch" u="bool touch(string filename [, int time [, int atime]])">Set modification time of file</s>
2124 <s f="fprintf" u="int fprintf(resource stream, string format [, mixed arg1 [, mixed ...]])">Output a formatted string into a stream</s>
2125 <s f="printf" u="int printf(string format [, mixed arg1 [, mixed ...]])">Output a formatted string</s>
2126 <s f="sprintf" u="string sprintf(string format [, mixed arg1 [, mixed ...]])">Return a formatted string</s>
2127 <s f="vfprintf" u="int vfprintf(resource stream, string format, array args)">Output a formatted string into a stream</s>
2128 <s f="vprintf" u="int vprintf(string format, array args)">Output a formatted string</s>
2129 <s f="vsprintf" u="string vsprintf(string format, array args)">Return a formatted string</s>
2130 <s f="fsockopen" u="resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])">Open Internet or Unix domain socket connection</s>
2131 <s f="pfsockopen" u="resource pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])">Open persistent Internet or Unix domain socket connection</s>
2132 <s f="ftok" u="int ftok(string pathname, string proj)">Convert a pathname and a project identifier to a System V IPC key</s>
2133 <s f="header" u="void header(string header [, bool replace, [int http_response_code]])">Sends a raw HTTP header</s>
2134 <s f="headers_list" u="string headers_list(void)">Return list of headers to be sent / already sent</s>
2135 <s f="headers_sent" u="bool headers_sent([string &amp;$file [, int &amp;$line]])">Returns true if headers have already been sent, false otherwise</s>
2136 <s f="setcookie" u="bool setcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure]]]]])">Send a cookie</s>
2137 <s f="setrawcookie" u="bool setrawcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure]]]]])">Send a cookie with no url encoding of the value</s>
2138 <s f="get_html_translation_table" u="array get_html_translation_table([int table [, int quote_style]])">Returns the internal translation table used by htmlspecialchars and htmlentities</s>
2139 <s f="html_entity_decode" u="string html_entity_decode(string string [, int quote_style][, string charset])">Convert all HTML entities to their applicable characters</s>
2140 <s f="htmlentities" u="string htmlentities(string string [, int quote_style][, string charset])">Convert all applicable characters to HTML entities</s>
2141 <s f="htmlspecialchars" u="string htmlspecialchars(string string [, int quote_style][, string charset])">Convert special characters to HTML entities</s>
2142 <s f="http_build_query" u="string http_build_query(mixed formdata [, string prefix])">Generates a form-encoded query string from an associative array or object.</s>
2143 <s f="getimagesize" u="array getimagesize(string imagefile [, array info])">Get the size of an image as 4-element array</s>
2144 <s f="image_type_to_extension" u="string image_type_to_extension(int imagetype [, bool include_dot])">Get file extension for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype</s>
2145 <s f="image_type_to_mime_type" u="string image_type_to_mime_type(int imagetype)">Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype</s>
2146 <s f="php_egg_logo_guid" u="string php_egg_logo_guid(void)">Return the special ID used to request the PHP logo in phpinfo screens</s>
2147 <s f="php_ini_scanned_files" u="string php_ini_scanned_files(void)">Return comma-separated string of .ini files parsed from the additional ini dir</s>
2148 <s f="php_logo_guid" u="string php_logo_guid(void)">Return the special ID used to request the PHP logo in phpinfo screens</s>
2149 <s f="php_real_logo_guid" u="string php_real_logo_guid(void)">Return the special ID used to request the PHP logo in phpinfo screens</s>
2150 <s f="php_sapi_name" u="string php_sapi_name(void)">Return the current SAPI module name</s>
2151 <s f="php_uname" u="string php_uname(void)">Return information about the system PHP was built on</s>
2152 <s f="phpcredits" u="void phpcredits([int flag])">Prints the list of people who've contributed to the PHP project</s>
2153 <s f="phpinfo" u="void phpinfo([int what])">Output a page of useful information about PHP and the current request</s>
2154 <s f="phpversion" u="string phpversion([string extension])">Return the current PHP version</s>
2155 <s f="zend_logo_guid" u="string zend_logo_guid(void)">Return the special ID used to request the Zend logo in phpinfo screens</s>
2156 <s f="iptcembed" u="array iptcembed(string iptcdata, string jpeg_file_name [, int spool])">Embed binary IPTC data into a JPEG image.</s>
2157 <s f="iptcparse" u="array iptcparse(string iptcdata)">Parse binary IPTC-data into associative array</s>
2158 <s f="lcg_value" u="float lcg_value()">Returns a value from the combined linear congruential generator</s>
2159 <s f="levenshtein" u="int levenshtein(string str1, string str2)">Calculate Levenshtein distance between two strings</s>
2160 <s f="link" u="int link(string target, string link)">Create a hard link</s>
2161 <s f="linkinfo" u="int linkinfo(string filename)">Returns the st_dev field of the UNIX C stat structure describing the link</s>
2162 <s f="readlink" u="string readlink(string filename)">Return the target of a symbolic link</s>
2163 <s f="symlink" u="int symlink(string target, string link)">Create a symbolic link</s>
2164 <s f="ezmlm_hash" u="int ezmlm_hash(string addr)">Calculate EZMLM list hash value.</s>
2165 <s f="mail" u="int mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])">Send an email message</s>
2166 <s f="abs" u="int abs(int number)">Return the absolute value of the number</s>
2167 <s f="acos" u="float acos(float number)">Return the arc cosine of the number in radians</s>
2168 <s f="acosh" u="float acosh(float number)">Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number</s>
2169 <s f="asin" u="float asin(float number)">Returns the arc sine of the number in radians</s>
2170 <s f="asinh" u="float asinh(float number)">Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number</s>
2171 <s f="atan" u="float atan(float number)">Returns the arc tangent of the number in radians</s>
2172 <s f="atanh" u="float atanh(float number)">Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number</s>
2173 <s f="base_convert" u="string base_convert(string number, int frombase, int tobase)">Converts a number in a string from any base &lt;= 36 to any base &lt;= 36</s>
2174 <s f="bindec" u="int bindec(string binary_number)">Returns the decimal equivalent of the binary number</s>
2175 <s f="ceil" u="float ceil(float number)">Returns the next highest integer value of the number</s>
2176 <s f="cos" u="float cos(float number)">Returns the cosine of the number in radians</s>
2177 <s f="cosh" u="float cosh(float number)">Returns the hyperbolic cosine of the number, defined as (exp(number)      exp(-number))/2</s>
2178 <s f="decbin" u="string decbin(int decimal_number)">Returns a string containing a binary representation of the number</s>
2179 <s f="dechex" u="string dechex(int decimal_number)">Returns a string containing a hexadecimal representation of the given number</s>
2180 <s f="decoct" u="string decoct(int decimal_number)">Returns a string containing an octal representation of the given number</s>
2181 <s f="exp" u="float exp(float number)">Returns e raised to the power of the number</s>
2182 <s f="floor" u="float floor(float number)">Returns the next lowest integer value from the number</s>
2183 <s f="fmod" u="float fmod(float x, float y)">Returns the remainder of dividing x by y as a float</s>
2184 <s f="hexdec" u="int hexdec(string hexadecimal_number)">Returns the decimal equivalent of the hexadecimal number</s>
2185 <s f="hypot" u="float hypot(float num1, float num2)">Returns sqrt(num1*num1      num2*num2)</s>
2186 <s f="is_finite" u="bool is_finite(float val)">Returns whether argument is finite</s>
2187 <s f="is_infinite" u="bool is_infinite(float val)">Returns whether argument is infinite</s>
2188 <s f="is_nan" u="bool is_nan(float val)">Returns whether argument is not a number</s>
2189 <s f="log" u="float log(float number, [float base])">Returns the natural logarithm of the number, or the base log if base is specified</s>
2190 <s f="number_format" u="string number_format(float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]])">Formats a number with grouped thousands</s>
2191 <s f="octdec" u="int octdec(string octal_number)">Returns the decimal equivalent of an octal string</s>
2192 <s f="pi" u="float pi(void)">Returns an approximation of pi</s>
2193 <s f="pow" u="number pow(number base, number exponent)">Returns base raised to the power of exponent. Returns integer result when possible</s>
2194 <s f="round" u="float round(float number [, int precision])">Returns the number rounded to specified precision</s>
2195 <s f="sin" u="float sin(float number)">Returns the sine of the number in radians</s>
2196 <s f="sinh" u="float sinh(float number)">Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2</s>
2197 <s f="sqrt" u="float sqrt(float number)">Returns the square root of the number</s>
2198 <s f="tan" u="float tan(float number)">Returns the tangent of the number in radians</s>
2199 <s f="tanh" u="float tanh(float number)">Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number)</s>
2200 <s f="metaphone" u="string metaphone(string text, int phones)">Break english phrases down into their phonemes</s>
2201 <s f="getrusage" u="array getrusage([int who])">Returns an array of usage statistics</s>
2202 <s f="gettimeofday" u="array gettimeofday(void)">Returns the current time as array</s>
2203 <s f="microtime" u="mixed microtime([bool get_as_float])">Returns either a string or a float containing the current time in seconds and microseconds</s>
2204 <s f="pack" u="string pack(string format, mixed arg1 [, mixed arg2 [, mixed ...]])">Takes one or more arguments and packs them into a binary string according to the format argument</s>
2205 <s f="unpack" u="array unpack(string format, string input)">Unpack binary string into named array elements according to format argument</s>
2206 <s f="getlastmod" u="int getlastmod(void)">Get time of last page modification</s>
2207 <s f="getmygid" u="int getmygid(void)">Get PHP script owner's GID</s>
2208 <s f="getmyinode" u="int getmyinode(void)">Get the inode of the current script being parsed</s>
2209 <s f="getmypid" u="int getmypid(void)">Get current process ID</s>
2210 <s f="getmyuid" u="int getmyuid(void)">Get PHP script owner's UID</s>
2211 <s f="proc_close" u="int proc_close(resource process)">close a process opened by proc_open</s>
2212 <s f="proc_get_status" u="array proc_get_status(resource process)">get information about a process opened by proc_open</s>
2213 <s f="proc_open" u="resource proc_open(string command, array descriptorspec, array &amp;pipes [, string cwd [, array env [, array other_options]]])">Run a process with more control over it's file descriptors</s>
2214 <s f="proc_terminate" u="int proc_terminate(resource process [, long signal])">kill a process opened by proc_open</s>
2215 <s f="quoted_printable_decode" u="string quoted_printable_decode(string str)">Convert a quoted-printable string to an 8 bit string</s>
2216 <s f="getrandmax" u="int getrandmax(void)">Returns the maximum value a random number can have</s>
2217 <s f="mt_getrandmax" u="int mt_getrandmax(void)">Returns the maximum value a random number from Mersenne Twister can have</s>
2218 <s f="mt_rand" u="int mt_rand([int min, int max])">Returns a random number from Mersenne Twister</s>
2219 <s f="mt_srand" u="void mt_srand([int seed])">Seeds Mersenne Twister random number generator</s>
2220 <s f="rand" u="int rand([int min, int max])">Returns a random number</s>
2221 <s f="srand" u="void srand([int seed])">Seeds random number generator</s>
2222 <s f="ereg" u="int ereg(string pattern, string string [, array registers])">Regular expression match</s>
2223 <s f="ereg_replace" u="string ereg_replace(string pattern, string replacement, string string)">Replace regular expression</s>
2224 <s f="eregi" u="int eregi(string pattern, string string [, array registers])">Case-insensitive regular expression match</s>
2225 <s f="eregi_replace" u="string eregi_replace(string pattern, string replacement, string string)">Case insensitive replace regular expression</s>
2226 <s f="split" u="array split(string pattern, string string [, int limit])">Split string into array by regular expression</s>
2227 <s f="spliti" u="array spliti(string pattern, string string [, int limit])">Split string into array by regular expression case-insensitive</s>
2228 <s f="sql_regcase" u="string sql_regcase(string string)">Make regular expression for case insensitive match</s>
2229 <s f="soundex" u="string soundex(string str)">Calculate the soundex key of a string</s>
2230 <s f="set_socket_blocking" u="bool set_socket_blocking(resource socket, int mode)">Set blocking/non-blocking mode on a socket</s>
2231 <s f="stream_context_create" u="resource stream_context_create([array options])">Create a file context and optionally set parameters</s>
2232 <s f="stream_context_get_options" u="array stream_context_get_options(resource context|resource stream)">Retrieve options for a stream/wrapper/context</s>
2233 <s f="stream_context_set_option" u="bool stream_context_set_option(resource context|resource stream, string wrappername, string optionname, mixed value)">Set an option for a wrapper</s>
2234 <s f="stream_context_set_params" u="bool stream_context_set_params(resource context|resource stream, array options)">Set parameters for a file context</s>
2235 <s f="stream_copy_to_stream" u="long stream_copy_to_stream(resource source, resource dest [, long maxlen ])">Reads up to maxlen bytes from source stream and writes them to dest stream.</s>
2236 <s f="stream_filter_append" u="bool stream_filter_append(resource stream, string filtername[, int read_write[, string filterparams]])">Append a filter to a stream</s>
2237 <s f="stream_filter_prepend" u="bool stream_filter_prepend(resource stream, string filtername[, int read_write[, string filterparams]])">Prepend a filter to a stream</s>
2238 <s f="stream_get_contents" u="long stream_get_contents(resource source [, long maxlen ])">Reads all remaining bytes (or up to maxlen bytes) from a stream and returns them as a string.</s>
2239 <s f="stream_get_line" u="string stream_get_line(resource stream, int maxlen, string ending)">Read up to maxlen bytes from a stream or until the ending string is found</s>
2240 <s f="stream_get_meta_data" u="resource stream_get_meta_data(resource fp)">Retrieves header/meta data from streams/file pointers</s>
2241 <s f="stream_get_transports" u="array stream_get_transports()">Retrieves list of registered socket transports</s>
2242 <s f="stream_get_wrappers" u="array stream_get_wrappers()">Retrieves list of registered stream wrappers</s>
2243 <s f="stream_select" u="int stream_select(array &amp;read_streams, array &amp;write_streams, array &amp;except_streams, int tv_sec[, int tv_usec])">Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec</s>
2244 <s f="stream_set_blocking" u="bool stream_set_blocking(resource socket, int mode)">Set blocking/non-blocking mode on a socket or stream</s>
2245 <s f="stream_set_timeout" u="bool stream_set_timeout(resource stream, int seconds, int microseconds)">Set timeout on stream read to seconds      microseonds</s>
2246 <s f="stream_set_write_buffer" u="int stream_set_write_buffer(resource fp, int buffer)">Set file write buffer</s>
2247 <s f="stream_socket_accept" u="resource stream_socket_accept(resource serverstream, [ double timeout, string &amp;peername ])">Accept a client connection from a server socket</s>
2248 <s f="stream_socket_client" u="resource stream_socket_client(string remoteaddress [, long &amp;errcode, string &amp;errstring, double timeout, long flags, resource context])">Open a client connection to a remote address</s>
2249 <s f="stream_socket_get_name" u="string stream_socket_get_name(resource stream, bool want_peer)">Returns either the locally bound or remote name for a socket stream</s>
2250 <s f="stream_socket_recvfrom" u="string stream_socket_recvfrom(resource stream, long amount [, long flags [, string &amp;remote_addr]])">Receives data from a socket stream</s>
2251 <s f="stream_socket_sendto" u="long stream_socket_sendto(resouce stream, string data [, long flags [, string target_addr]])">Send data to a socket stream.  If target_addr is specified it must be in dotted quad (or [ipv6]) format</s>
2252 <s f="stream_socket_server" u="resource stream_socket_server(string localaddress [, long &amp;errcode, string &amp;errstring, long flags, resource context])">Create a server socket bound to localaddress</s>
2253 <s f="addcslashes" u="string addcslashes(string str, string charlist)">Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII&lt;32 (except '\n', '\r', '\t' etc...)</s>
2254 <s f="addslashes" u="string addslashes(string str)">Escapes single quote, double quotes and backslash characters in a string with backslashes</s>
2255 <s f="basename" u="string basename(string path [, string suffix])">Returns the filename component of the path</s>
2256 <s f="chr" u="string chr(int ascii)">Converts ASCII code to a character</s>
2257 <s f="chunk_split" u="string chunk_split(string str [, int chunklen [, string ending]])">Returns split line</s>
2258 <s f="count_chars" u="mixed count_chars(string input [, int mode])">Returns info about what characters are used in input</s>
2259 <s f="dirname" u="string dirname(string path)">Returns the directory name component of the path</s>
2260 <s f="explode" u="array explode(string separator, string str [, int limit])">Splits a string on string separator and return array of components</s>
2261 <s f="hebrev" u="string hebrev(string str [, int max_chars_per_line])">Converts logical Hebrew text to visual text</s>
2262 <s f="hebrevc" u="string hebrevc(string str [, int max_chars_per_line])">Converts logical Hebrew text to visual text with newline conversion</s>
2263 <s f="implode" u="string implode([string glue,] array pieces)">Joins array elements placing glue string between items and return one string</s>
2264 <s f="join" u="string join(array src, string glue)">An alias for implode</s>
2265 <s f="localeconv" u="array localeconv(void)">Returns numeric formatting information based on the current locale</s>
2266 <s f="ltrim" u="string ltrim(string str [, string character_mask])">Strips whitespace from the beginning of a string</s>
2267 <s f="money_format" u="string money_format(string format , float value)">Convert monetary value(s) to string</s>
2268 <s f="nl_langinfo" u="string nl_langinfo(int item)">Query language and locale information</s>
2269 <s f="ord" u="int ord(string character)">Returns ASCII value of character</s>
2270 <s f="parse_str" u="void parse_str(string encoded_string [, array result])">Parses GET/POST/COOKIE data and sets global variables</s>
2271 <s f="pathinfo" u="array pathinfo(string path)">Returns information about a certain string</s>
2272 <s f="quotemeta" u="string quotemeta(string str)">Quotes meta characters</s>
2273 <s f="rtrim" u="string rtrim(string str [, string character_mask])">Removes trailing whitespace</s>
2274 <s f="setlocale" u="string setlocale(mixed category, string locale [, string ...])">Set locale information</s>
2275 <s f="similar_text" u="int similar_text(string str1, string str2 [, float percent])">Calculates the similarity between two strings</s>
2276 <s f="sscanf" u="mixed sscanf(string str, string format [, string ...])">Implements an ANSI C compatible sscanf</s>
2277 <s f="str_ireplace" u="mixed str_ireplace(mixed search, mixed replace, mixed subject [, int &amp;replace_count])">Replaces all occurrences of search in haystack with replace / case-insensitive</s>
2278 <s f="str_pad" u="string str_pad(string input, int pad_length [, string pad_string [, int pad_type]])">Returns input string padded on the left or right to specified length with pad_string</s>
2279 <s f="str_repeat" u="string str_repeat(string input, int mult)">Returns the input string repeat mult times</s>
2280 <s f="str_replace" u="mixed str_replace(mixed search, mixed replace, mixed subject [, int &amp;replace_count])">Replaces all occurrences of search in haystack with replace</s>
2281 <s f="str_shuffle" u="void str_shuffle(string str)">Shuffles string. One permutation of all possible is created</s>
2282 <s f="str_split" u="array str_split(string str [, int split_length])">Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long.</s>
2283 <s f="str_word_count" u="mixed str_word_count(string str, [int format])">Counts the number of words inside a string. If format of 1 is specified,       then the function will return an array containing all the words         found inside the string. If format of 2 is specified, then the function         will return an associated array where the position of the word is the key       and the word itself is the value.               For the purpose of this function, 'word' is defined as a locale dependent       string containing alphabetic characters, which also may contain, but not start          with "'" and "-" characters.</s>
2284 <s f="strchr" u="string strchr(string haystack, string needle)">An alias for strstr</s>
2285 <s f="strcoll" u="int strcoll(string str1, string str2)">Compares two strings using the current locale</s>
2286 <s f="strcspn" u="int strcspn(string str, string mask [, start [, len]])">Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars)</s>
2287 <s f="strip_tags" u="string strip_tags(string str [, string allowable_tags])">Strips HTML and PHP tags from a string</s>
2288 <s f="stripcslashes" u="string stripcslashes(string str)">Strips backslashes from a string. Uses C-style conventions</s>
2289 <s f="stripos" u="int stripos(string haystack, string needle [, int offset])">Finds position of first occurrence of a string within another, case insensitive</s>
2290 <s f="stripslashes" u="string stripslashes(string str)">Strips backslashes from a string</s>
2291 <s f="stristr" u="string stristr(string haystack, string needle)">Finds first occurrence of a string within another, case insensitive</s>
2292 <s f="strnatcasecmp" u="int strnatcasecmp(string s1, string s2)">Returns the result of case-insensitive string comparison using 'natural' algorithm</s>
2293 <s f="strnatcmp" u="int strnatcmp(string s1, string s2)">Returns the result of string comparison using 'natural' algorithm</s>
2294 <s f="strpbrk" u="array strpbrk(string haystack, string char_list)">Search a string for any of a set of characters</s>
2295 <s f="strpos" u="int strpos(string haystack, string needle [, int offset])">Finds position of first occurrence of a string within another</s>
2296 <s f="strrchr" u="string strrchr(string haystack, string needle)">Finds the last occurrence of a character in a string within another</s>
2297 <s f="strrev" u="string strrev(string str)">Reverse a string</s>
2298 <s f="strripos" u="int strripos(string haystack, string needle [, int offset])">Finds position of last occurrence of a string within another string</s>
2299 <s f="strrpos" u="int strrpos(string haystack, string needle [, int offset])">Finds position of last occurrence of a string within another string</s>
2300 <s f="strspn" u="int strspn(string str, string mask [, start [, len]])">Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)</s>
2301 <s f="strstr" u="string strstr(string haystack, string needle)">Finds first occurrence of a string within another</s>
2302 <s f="strtok" u="string strtok([string str,] string token)">Tokenize a string</s>
2303 <s f="strtolower" u="string strtolower(string str)">Makes a string lowercase</s>
2304 <s f="strtoupper" u="string strtoupper(string str)">Makes a string uppercase</s>
2305 <s f="strtr" u="string strtr(string str, string from, string to)">Translates characters in str using given translation tables</s>
2306 <s f="substr" u="string substr(string str, int start [, int length])">Returns part of a string</s>
2307 <s f="substr_compare" u="int substr_compare(string main_str, string str, int offset [, int length [, bool case_sensitivity]])">Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters</s>
2308 <s f="substr_count" u="int substr_count(string haystack, string needle)">Returns the number of times a substring occurs in the string</s>
2309 <s f="substr_replace" u="mixed substr_replace(mixed str, mixed repl, mixed start [, mixed length])">Replaces part of a string with another string</s>
2310 <s f="trim" u="string trim(string str [, string character_mask])">Strips whitespace from the beginning and end of a string</s>
2311 <s f="ucfirst" u="string ucfirst(string str)">Makes a string's first character uppercase</s>
2312 <s f="ucwords" u="string ucwords(string str)">Uppercase the first character of every word in a string</s>
2313 <s f="wordwrap" u="string wordwrap(string str [, int width [, string break [, boolean cut]]])">Wraps buffer to selected number of characters using string break char</s>
2314 <s f="date_sunrise" u="mixed date_sunrise(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])">Returns time of sunrise for a given day &amp; location</s>
2315 <s f="date_sunset" u="mixed date_sunset(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])">Returns time of sunset for a given day &amp; location</s>
2316 <s f="closelog" u="bool closelog(void)">Close connection to system logger</s>
2317 <s f="define_syslog_variables" u="void define_syslog_variables(void)">Initializes all syslog-related variables</s>
2318 <s f="openlog" u="bool openlog(string ident, int option, int facility)">Open connection to system logger</s>
2319 <s f="syslog" u="bool syslog(int priority, string message)">Generate a system log message</s>
2320 <s f="floatval" u="float floatval(mixed var)">Get the float value of a variable</s>
2321 <s f="gettype" u="string gettype(mixed var)">Returns the type of the variable</s>
2322 <s f="intval" u="int intval(mixed var [, int base])">Get the integer value of a variable using the optional base for the conversion</s>
2323 <s f="is_array" u="bool is_array(mixed var)">Returns true if variable is an array</s>
2324 <s f="is_bool" u="bool is_bool(mixed var)">Returns true if variable is a boolean</s>
2325 <s f="is_callable" u="bool is_callable(mixed var [, bool syntax_only [, string callable_name]])">Returns true if var is callable.</s>
2326 <s f="is_float" u="bool is_float(mixed var)">Returns true if variable is float point</s>
2327 <s f="is_int" u="bool is_int(mixed var)">Returns true if variable is a int (integer)</s>
2328 <s f="is_long" u="bool is_long(mixed var)">Returns true if variable is a long (integer)</s>
2329 <s f="is_null" u="bool is_null(mixed var)">Returns true if variable is null</s>
2330 <s f="is_numeric" u="bool is_numeric(mixed value)">Returns true if value is a number or a numeric string</s>
2331 <s f="is_object" u="bool is_object(mixed var)">Returns true if variable is an object</s>
2332 <s f="is_resource" u="bool is_resource(mixed var)">Returns true if variable is a resource</s>
2333 <s f="is_scalar" u="bool is_scalar(mixed value)">Returns true if value is a scalar</s>
2334 <s f="is_string" u="bool is_string(mixed var)">Returns true if variable is a string</s>
2335 <s f="settype" u="bool settype(mixed var, string type)">Set the type of the variable</s>
2336 <s f="strval" u="string strval(mixed var)">Get the string value of a variable</s>
2337 <s f="uniqid" u="string uniqid([string prefix , bool more_entropy])">Generates a unique ID</s>
2338 <s f="get_headers" u="array get_headers(string url)">fetches all the headers sent by the server in response to a HTTP request</s>
2339 <s f="parse_url" u="array parse_url(string url)">Parse a URL and return its components</s>
2340 <s f="rawurldecode" u="string rawurldecode(string str)">Decodes URL-encodes string</s>
2341 <s f="rawurlencode" u="string rawurlencode(string str)">URL-encodes string</s>
2342 <s f="urldecode" u="string urldecode(string str)">Decodes URL-encoded string</s>
2343 <s f="urlencode" u="string urlencode(string str)">URL-encodes string</s>
2344 <s f="stream_bucket_append" u="void stream_bucket_append(resource brigade, resource bucket)">Append bucket to brigade</s>
2345 <s f="stream_bucket_make_writeable" u="object stream_bucket_make_writeable(resource brigade)">Return a bucket object from the brigade for operating on</s>
2346 <s f="stream_bucket_new" u="resource stream_bucket_new(resource stream, string buffer)">Create a new bucket for use on the current stream</s>
2347 <s f="stream_bucket_prepend" u="void stream_bucket_prepend(resource brigade, resource bucket)">Prepend bucket to brigade</s>
2348 <s f="stream_filter_register" u="bool stream_filter_register(string filtername, string classname)">Registers a custom filter handler class</s>
2349 <s f="stream_get_filters" u="array stream_get_filters(void)">Returns a list of registered filters</s>
2350 <s f="uudecode" u="string uudecode(string data)">decode a uuencoded string</s>
2351 <s f="uuencode" u="string uuencode(string data)">uuencode a string</s>
2352 <s f="debug_zval_dump" u="void debug_zval_dump(mixed var)">Dumps a string representation of an internal zend value to output.</s>
2353 <s f="memory_get_usage" u="int memory_get_usage()">Returns the allocated by PHP memory</s>
2354 <s f="serialize" u="string serialize(mixed variable)">Returns a string representation of variable (which can later be unserialized)</s>
2355 <s f="unserialize" u="mixed unserialize(string variable_representation)">Takes a string representation of variable and recreates it</s>
2356 <s f="var_dump" u="void var_dump(mixed var)">Dumps a string representation of variable to output</s>
2357 <s f="var_export" u="mixed var_export(mixed var [, bool return])">Outputs or returns a string representation of a variable</s>
2358 <s f="version_compare" u="int version_compare(string ver1, string ver2 [, string oper])">Compares two "PHP-standardized" version number strings</s>
2359 <s f="sybase_affected_rows" u="int sybase_affected_rows([int link_id])">Get number of affected rows in last query</s>
2360 <s f="sybase_close" u="bool sybase_close([int link_id])">Close Sybase connection</s>
2361 <s f="sybase_connect" u="int sybase_connect([string host [, string user [, string password [, string charset [, string appname]]]]])">Open Sybase server connection</s>
2362 <s f="sybase_data_seek" u="bool sybase_data_seek(int result, int offset)">Move internal row pointer</s>
2363 <s f="sybase_fetch_array" u="array sybase_fetch_array(int result)">Fetch row as array</s>
2364 <s f="sybase_fetch_field" u="object sybase_fetch_field(int result [, int offset])">Get field information</s>
2365 <s f="sybase_fetch_object" u="object sybase_fetch_object(int result)">Fetch row as object</s>
2366 <s f="sybase_fetch_row" u="array sybase_fetch_row(int result)">Get row as enumerated array</s>
2367 <s f="sybase_field_seek" u="bool sybase_field_seek(int result, int offset)">Set field offset</s>
2368 <s f="sybase_free_result" u="bool sybase_free_result(int result)">Free result memory</s>
2369 <s f="sybase_get_last_message" u="string sybase_get_last_message(void)">Returns the last message from server (over min_message_severity)</s>
2370 <s f="sybase_min_error_severity" u="void sybase_min_error_severity(int severity)">Sets the minimum error severity</s>
2371 <s f="sybase_min_message_severity" u="void sybase_min_message_severity(int severity)">Sets the minimum message severity</s>
2372 <s f="sybase_num_fields" u="int sybase_num_fields(int result)">Get number of fields in result</s>
2373 <s f="sybase_num_rows" u="int sybase_num_rows(int result)">Get number of rows in result</s>
2374 <s f="sybase_pconnect" u="int sybase_pconnect([string host [, string user [, string password [, string charset [, string appname]]]]])">Open persistent Sybase connection</s>
2375 <s f="sybase_query" u="int sybase_query(string query [, int link_id])">Send Sybase query</s>
2376 <s f="sybase_result" u="string sybase_result(int result, int row, mixed field)">Get result data</s>
2377 <s f="sybase_select_db" u="bool sybase_select_db(string database [, int link_id])">Select Sybase database</s>
2378 <s f="sybase_affected_rows" u="int sybase_affected_rows([int link_id])">Get number of affected rows in last query</s>
2379 <s f="sybase_close" u="bool sybase_close([int link_id])">Close Sybase connection</s>
2380 <s f="sybase_connect" u="int sybase_connect([string host [, string user [, string password [, string charset [, string appname]]]]])">Open Sybase server connection</s>
2381 <s f="sybase_data_seek" u="bool sybase_data_seek(int result, int offset)">Move internal row pointer</s>
2382 <s f="sybase_deadlock_retry_count" u="void sybase_deadlock_retry_count(int retry_count)">Sets deadlock retry count</s>
2383 <s f="sybase_fetch_array" u="array sybase_fetch_array(int result)">Fetch row as array</s>
2384 <s f="sybase_fetch_assoc" u="array sybase_fetch_assoc(int result)">Fetch row as array without numberic indices</s>
2385 <s f="sybase_fetch_field" u="object sybase_fetch_field(int result [, int offset])">Get field information</s>
2386 <s f="sybase_fetch_object" u="object sybase_fetch_object(int result [, mixed object])">Fetch row as object</s>
2387 <s f="sybase_fetch_row" u="array sybase_fetch_row(int result)">Get row as enumerated array</s>
2388 <s f="sybase_field_seek" u="bool sybase_field_seek(int result, int offset)">Set field offset</s>
2389 <s f="sybase_free_result" u="bool sybase_free_result(int result)">Free result memory</s>
2390 <s f="sybase_get_last_message" u="string sybase_get_last_message(void)">Returns the last message from server (over min_message_severity)</s>
2391 <s f="sybase_min_client_severity" u="void sybase_min_client_severity(int severity)">Sets minimum client severity</s>
2392 <s f="sybase_min_server_severity" u="void sybase_min_server_severity(int severity)">Sets minimum server severity</s>
2393 <s f="sybase_num_fields" u="int sybase_num_fields(int result)">Get number of fields in result</s>
2394 <s f="sybase_num_rows" u="int sybase_num_rows(int result)">Get number of rows in result</s>
2395 <s f="sybase_pconnect" u="int sybase_pconnect([string host [, string user [, string password [, string charset [, string appname]]]]])">Open persistent Sybase connection</s>
2396 <s f="sybase_query" u="int sybase_query(string query [, int link_id])">Send Sybase query</s>
2397 <s f="sybase_result" u="string sybase_result(int result, int row, mixed field)">Get result data</s>
2398 <s f="sybase_select_db" u="bool sybase_select_db(string database [, int link_id])">Select Sybase database</s>
2399 <s f="sybase_set_message_handler" u="bool sybase_set_message_handler(mixed error_func [, resource connection])">Set the error handler, to be called when a server message is raised.      If error_func is NULL the handler will be deleted</s>
2400 <s f="sybase_unbuffered_query" u="int sybase_unbuffered_query(string query [, int link_id])">Send Sybase query</s>
2401 <s f="msg_get_queue" u="resource msg_get_queue(int key [, int perms])">Attach to a message queue</s>
2402 <s f="msg_receive" u="mixed msg_receive(resource queue, int desiredmsgtype, int &amp;msgtype, int maxsize, mixed message [, bool unserialize=true [, int flags=0 [, int errorcode]]])">Send a message of type msgtype (must be &gt; 0) to a message queue</s>
2403 <s f="msg_remove_queue" u="bool msg_remove_queue(resource queue)">Destroy the queue</s>
2404 <s f="msg_send" u="bool msg_send(resource queue, int msgtype, mixed message [, bool serialize=true [, bool blocking=true [, int errorcode]]])">Send a message of type msgtype (must be &gt; 0) to a message queue</s>
2405 <s f="msg_set_queue" u="bool msg_set_queue(resource queue, array data)">Set information for a message queue</s>
2406 <s f="msg_stat_queue" u="array msg_stat_queue(resource queue)">Returns information about a message queue</s>
2407 <s f="sem_acquire" u="bool sem_acquire(resource id)">Acquires the semaphore with the given id, blocking if necessary</s>
2408 <s f="sem_get" u="resource sem_get(int key [, int max_acquire [, int perm [, int auto_release]])">Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously</s>
2409 <s f="sem_release" u="bool sem_release(resource id)">Releases the semaphore with the given id</s>
2410 <s f="sem_remove" u="bool sem_remove(resource id)">Removes semaphore from Unix systems</s>
2411 <s f="shm_attach" u="int shm_attach(int key [, int memsize [, int perm]])">Creates or open a shared memory segment</s>
2412 <s f="shm_detach" u="bool shm_detach(int shm_identifier)">Disconnects from shared memory segment</s>
2413 <s f="shm_get_var" u="mixed shm_get_var(int id, int variable_key)">Returns a variable from shared memory</s>
2414 <s f="shm_put_var" u="bool shm_put_var(int shm_identifier, int variable_key, mixed variable)">Inserts or updates a variable in shared memory</s>
2415 <s f="shm_remove" u="bool shm_remove(int shm_identifier)">Removes shared memory from Unix systems</s>
2416 <s f="shm_remove_var" u="bool shm_remove_var(int id, int variable_key)">Removes variable from shared memory</s>
2417 <s f="tidy_access_count" u="int tidy_access_count()">Returns the Number of Tidy accessibility warnings encountered for specified document.</s>
2418 <s f="tidy_clean_repair" u="boolean tidy_clean_repair()">Execute configured cleanup and repair operations on parsed markup</s>
2419 <s f="tidy_config_count" u="int tidy_config_count()">Returns the Number of Tidy configuration errors encountered for specified document.</s>
2420 <s f="tidy_diagnose" u="boolean tidy_diagnose()">Run configured diagnostics on parsed and repaired markup.</s>
2421 <s f="tidy_error_count" u="int tidy_error_count()">Returns the Number of Tidy errors encountered for specified document.</s>
2422 <s f="tidy_get_body" u="TidyNode tidy_get_body(resource tidy)">Returns a TidyNode Object starting from the &lt;BODY&gt; tag of the tidy parse tree</s>
2423 <s f="tidy_get_config" u="array tidy_get_config()">Get current Tidy configuarion</s>
2424 <s f="tidy_get_error_buffer" u="string tidy_get_error_buffer([boolean detailed])">Return warnings and errors which occured parsing the specified document</s>
2425 <s f="tidy_get_head" u="TidyNode tidy_get_head()">Returns a TidyNode Object starting from the &lt;HEAD&gt; tag of the tidy parse tree</s>
2426 <s f="tidy_get_html" u="TidyNode tidy_get_html()">Returns a TidyNode Object starting from the &lt;HTML&gt; tag of the tidy parse tree</s>
2427 <s f="tidy_get_html_ver" u="int tidy_get_html_ver()">Get the Detected HTML version for the specified document.</s>
2428 <s f="tidy_get_output" u="string tidy_get_output()">Return a string representing the parsed tidy markup</s>
2429 <s f="tidy_get_release" u="string tidy_get_release()">Get release date (version) for Tidy library</s>
2430 <s f="tidy_get_root" u="TidyNode tidy_get_root()">Returns a TidyNode Object representing the root of the tidy parse tree</s>
2431 <s f="tidy_get_status" u="int tidy_get_status()">Get status of specfied document.</s>
2432 <s f="tidy_getopt" u="mixed tidy_getopt(string option)">Returns the value of the specified configuration option for the tidy document.</s>
2433 <s f="tidy_is_xhtml" u="boolean tidy_is_xhtml()">Indicates if the document is a XHTML document.</s>
2434 <s f="tidy_is_xhtml" u="boolean tidy_is_xhtml()">Indicates if the document is a generic (non HTML/XHTML) XML document.</s>
2435 <s f="tidy_parse_file" u="boolean tidy_parse_file(string file [, mixed config_options [, string encoding [, bool use_include_path]]])">Parse markup in file or URI</s>
2436 <s f="tidy_parse_string" u="bool tidy_parse_string(string input [, mixed config_options [, string encoding]])">Parse a document stored in a string</s>
2437 <s f="tidy_repair_file" u="boolean tidy_repair_file(string filename [, mixed config_file [, string encoding [, bool use_include_path]]])">Repair a file using an optionally provided configuration file</s>
2438 <s f="tidy_repair_string" u="boolean tidy_repair_string(string data [, mixed config_file [, string encoding]])">Repair a string using an optionally provided configuration file</s>
2439 <s f="tidy_warning_count" u="int tidy_warning_count()">Returns the Number of Tidy warnings encountered for specified document.</s>
2440 <s f="token_get_all" u="array token_get_all(string source)"/>
2441 <s f="token_name" u="string token_name(int type)"/>
2442 <s f="wddx_add_vars" u="int wddx_add_vars(int packet_id,  mixed var_names [, mixed ...])">Serializes given variables and adds them to packet given by packet_id</s>
2443 <s f="wddx_deserialize" u="mixed wddx_deserialize(mixed packet)">Deserializes given packet and returns a PHP value</s>
2444 <s f="wddx_packet_end" u="string wddx_packet_end(int packet_id)">Ends specified WDDX packet and returns the string containing the packet</s>
2445 <s f="wddx_packet_start" u="int wddx_packet_start([string comment])">Starts a WDDX packet with optional comment and returns the packet id</s>
2446 <s f="wddx_serialize_value" u="string wddx_serialize_value(mixed var [, string comment])">Creates a new packet and serializes the given value</s>
2447 <s f="wddx_serialize_vars" u="string wddx_serialize_vars(mixed var_name [, mixed ...])">Creates a new packet and serializes given variables into a struct</s>
2448 <s f="xml_error_string" u="string xml_error_string(int code)">Get XML parser error string</s>
2449 <s f="xml_get_current_byte_index" u="int xml_get_current_byte_index(resource parser)">Get current byte index for an XML parser</s>
2450 <s f="xml_get_current_column_number" u="int xml_get_current_column_number(resource parser)">Get current column number for an XML parser</s>
2451 <s f="xml_get_current_line_number" u="int xml_get_current_line_number(resource parser)">Get current line number for an XML parser</s>
2452 <s f="xml_get_error_code" u="int xml_get_error_code(resource parser)">Get XML parser error code</s>
2453 <s f="xml_parse" u="int xml_parse(resource parser, string data [, int isFinal])">Start parsing an XML document</s>
2454 <s f="xml_parse_into_struct" u="int xml_parse_into_struct(resource parser, string data, array &amp;struct, array &amp;index)">Parsing a XML document</s>
2455 <s f="xml_parser_create" u="resource xml_parser_create([string encoding])">Create an XML parser</s>
2456 <s f="xml_parser_create_ns" u="resource xml_parser_create_ns([string encoding [, string sep]])">Create an XML parser</s>
2457 <s f="xml_parser_free" u="int xml_parser_free(resource parser)">Free an XML parser</s>
2458 <s f="xml_parser_get_option" u="int xml_parser_get_option(resource parser, int option)">Get options from an XML parser</s>
2459 <s f="xml_parser_set_option" u="int xml_parser_set_option(resource parser, int option, mixed value)">Set options in an XML parser</s>
2460 <s f="xml_set_character_data_handler" u="int xml_set_character_data_handler(resource parser, string hdl)">Set up character data handler</s>
2461 <s f="xml_set_default_handler" u="int xml_set_default_handler(resource parser, string hdl)">Set up default handler</s>
2462 <s f="xml_set_element_handler" u="int xml_set_element_handler(resource parser, string shdl, string ehdl)">Set up start and end element handlers</s>
2463 <s f="xml_set_end_namespace_decl_handler" u="int xml_set_end_namespace_decl_handler(resource parser, string hdl)">Set up character data handler</s>
2464 <s f="xml_set_external_entity_ref_handler" u="int xml_set_external_entity_ref_handler(resource parser, string hdl)">Set up external entity reference handler</s>
2465 <s f="xml_set_notation_decl_handler" u="int xml_set_notation_decl_handler(resource parser, string hdl)">Set up notation declaration handler</s>
2466 <s f="xml_set_object" u="int xml_set_object(resource parser, object &amp;obj)">Set up object which should be used for callbacks</s>
2467 <s f="xml_set_processing_instruction_handler" u="int xml_set_processing_instruction_handler(resource parser, string hdl)">Set up processing instruction (PI) handler</s>
2468 <s f="xml_set_start_namespace_decl_handler" u="int xml_set_start_namespace_decl_handler(resource parser, string hdl)">Set up character data handler</s>
2469 <s f="xml_set_unparsed_entity_decl_handler" u="int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)">Set up unparsed entity declaration handler</s>
2470 <s f="xmlrpc_decode" u="array xmlrpc_decode(string xml [, string encoding])">Decodes XML into native PHP types</s>
2471 <s f="xmlrpc_decode_request" u="array xmlrpc_decode_request(string xml, string&amp; method [, string encoding])">Decodes XML into native PHP types</s>
2472 <s f="xmlrpc_encode" u="string xmlrpc_encode(mixed value)">Generates XML for a PHP value</s>
2473 <s f="xmlrpc_encode_request" u="string xmlrpc_encode_request(string method, mixed params)">Generates XML for a method request</s>
2474 <s f="xmlrpc_get_type" u="string xmlrpc_get_type(mixed value)">Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings</s>
2475 <s f="xmlrpc_is_fault" u="bool xmlrpc_is_fault(array)">Determines if an array value represents an XMLRPC fault.</s>
2476 <s f="xmlrpc_parse_method_descriptions" u="array xmlrpc_parse_method_descriptions(string xml)">Decodes XML into a list of method descriptions</s>
2477 <s f="xmlrpc_server_add_introspection_data" u="int xmlrpc_server_add_introspection_data(resource server, array desc)">Adds introspection documentation</s>
2478 <s f="xmlrpc_server_call_method" u="mixed xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options])">Parses XML requests and call methods</s>
2479 <s f="xmlrpc_server_create" u="resource xmlrpc_server_create(void)">Creates an xmlrpc server</s>
2480 <s f="xmlrpc_server_destroy" u="int xmlrpc_server_destroy(resource server)">Destroys server resources</s>
2481 <s f="xmlrpc_server_register_introspection_callback" u="bool xmlrpc_server_register_introspection_callback(resource server, string function)">Register a PHP function to generate documentation</s>
2482 <s f="xmlrpc_server_register_method" u="bool xmlrpc_server_register_method(resource server, string method_name, string function)">Register a PHP function to handle method matching method_name</s>
2483 <s f="xmlrpc_set_type" u="bool xmlrpc_set_type(string value, string type)">Sets xmlrpc type, base64 or datetime, for a PHP string value</s>
2484 <s f="yp_all" u="bool yp_all(string domain, string map, string callback)">Traverse the map and call a function on each entry</s>
2485 <s f="yp_cat" u="array yp_cat(string domain, string map)">Return an array containing the entire map</s>
2486 <s f="yp_err_string" u="string yp_err_string(int errorcode)">Returns the corresponding error string for the given error code</s>
2487 <s f="yp_errno" u="int yp_errno()">Returns the error code from the last call or 0 if no error occured</s>
2488 <s f="yp_first" u="array yp_first(string domain, string map)">Returns the first key as array with $var[$key] and the the line as the value</s>
2489 <s f="yp_get_default_domain" u="string yp_get_default_domain(void)">Returns the domain or false</s>
2490 <s f="yp_master" u="string yp_master(string domain, string map)">Returns the machine name of the master</s>
2491 <s f="yp_match" u="string yp_match(string domain, string map, string key)">Returns the matched line or false</s>
2492 <s f="yp_next" u="array yp_next(string domain, string map, string key)">Returns an array with $var[$key] and the the line as the value</s>
2493 <s f="yp_order" u="int yp_order(string domain, string map)">Returns the order number or false</s>
2494 <s f="gzcompress" u="string gzcompress(string data [, int level])">Gzip-compress a string</s>
2495 <s f="gzdeflate" u="string gzdeflate(string data [, int level])">Gzip-compress a string</s>
2496 <s f="gzencode" u="string gzencode(string data [, int level [, int encoding_mode]])">GZ encode a string</s>
2497 <s f="gzfile" u="array gzfile(string filename [, int use_include_path])">Read und uncompress entire .gz-file into an array</s>
2498 <s f="gzinflate" u="string gzinflate(string data [, int length])">Unzip a gzip-compressed string</s>
2499 <s f="gzopen" u="resource gzopen(string filename, string mode [, int use_include_path])">Open a .gz-file and return a .gz-file pointer</s>
2500 <s f="gzuncompress" u="string gzuncompress(string data [, int length])">Unzip a gzip-compressed string</s>
2501 <s f="ob_gzhandler" u="string ob_gzhandler(string str, int mode)">Encode str based on accept-encoding setting - designed to be called from ob_start()</s>
2502 <s f="readgzfile" u="int readgzfile(string filename [, int use_include_path])">Output a .gz-file</s>
2503 <s f="zlib_get_coding_type" u="string zlib_get_coding_type(void)">Returns the coding type used for output compression</s>
2504 <s f="set_time_limit" u="bool set_time_limit(int seconds)">Sets the maximum time a script can run</s>
2505 <s f="ob_clean" u="bool ob_clean(void)">Clean (delete) the current output buffer</s>
2506 <s f="ob_end_clean" u="bool ob_end_clean(void)">Clean the output buffer, and delete current output buffer</s>
2507 <s f="ob_end_flush" u="bool ob_end_flush(void)">Flush (send) the output buffer, and delete current output buffer</s>
2508 <s f="ob_flush" u="bool ob_flush(void)">Flush (send) contents of the output buffer. The last buffer content is sent to next buffer</s>
2509 <s f="ob_get_clean" u="bool ob_get_clean(void)">Get current buffer contents and delete current output buffer</s>
2510 <s f="ob_get_contents" u="string ob_get_contents(void)">Return the contents of the output buffer</s>
2511 <s f="ob_get_flush" u="bool ob_get_flush(void)">Get current buffer contents, flush (send) the output buffer, and delete current output buffer</s>
2512 <s f="ob_get_length" u="int ob_get_length(void)">Return the length of the output buffer</s>
2513 <s f="ob_get_level" u="int ob_get_level(void)">Return the nesting level of the output buffer</s>
2514 <s f="ob_implicit_flush" u="void ob_implicit_flush([int flag])">Turn implicit flush on/off and is equivalent to calling flush() after every output call</s>
2515 <s f="ob_start" u="bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])">Turn on Output Buffering (specifying an optional output handler).</s>
2516 <s f="output_add_rewrite_var" u="bool output_add_rewrite_var(string name, string value)">Add URL rewriter values</s>
2517 <s f="output_reset_rewrite_vars" u="bool output_reset_rewrite_vars(void)">Reset(clear) URL rewriter values</s>
2518 <s f="stream_wrapper_register" u="bool stream_wrapper_register(string protocol, string classname)">Registers a custom URL protocol handler class</s>
2519 <s f="apache_child_terminate" u="bool apache_child_terminate(void)">Terminate apache process after this request</s>
2520 <s f="apache_get_modules" u="array apache_get_modules(void)">Get a list of loaded Apache modules</s>
2521 <s f="apache_get_version" u="string apache_get_version(void)">Fetch Apache version</s>
2522 <s f="apache_lookup_uri" u="object apache_lookup_uri(string URI)">Perform a partial request of the given URI to obtain information about it</s>
2523 <s f="apache_note" u="string apache_note(string note_name [, string note_value])">Get and set Apache request notes</s>
2524 <s f="apache_request_headers" u="array apache_request_headers(void)">Fetch all HTTP request headers</s>
2525 <s f="apache_response_headers" u="array apache_response_headers(void)">Fetch all HTTP response headers</s>
2526 <s f="apache_setenv" u="bool apache_setenv(string variable, string value [, bool walk_to_top])">Set an Apache subprocess_env variable</s>
2527 <s f="getallheaders" u="array getallheaders(void)">Alias for apache_request_headers()</s>
2528 <s f="virtual" u="bool virtual(string filename)">Perform an Apache sub-request</s>
2529 <s f="apache_get_modules" u="array apache_get_modules(void)">Get a list of loaded Apache modules</s>
2530 <s f="apache_get_version" u="string apache_get_version(void)">Fetch Apache version</s>
2531 <s f="apache_getenv" u="bool apache_getenv(string variable [, bool walk_to_top])">Get an Apache subprocess_env variable</s>
2532 <s f="apache_note" u="string apache_note(string note_name [, string note_value])">Get and set Apache request notes</s>
2533 <s f="apache_response_headers" u="array apache_response_headers(void)">Fetch all HTTP response headers</s>
2534 <s f="apache_setenv" u="bool apache_setenv(string variable, string value [, bool walk_to_top])">Set an Apache subprocess_env variable</s>
2535 <s f="getallheaders" u="array getallheaders(void)">Fetch all HTTP request headers</s>
2536 <s f="virtual" u="bool virtual(string uri)">Perform an apache sub-request</s>
2537 <s f="apache_get_modules" u="array apache_get_modules(void)">Get a list of loaded Apache modules</s>
2538 <s f="apache_get_version" u="string apache_get_version(void)">Fetch Apache version</s>
2539 <s f="apache_getenv" u="bool apache_getenv(string variable [, bool walk_to_top])">Get an Apache subprocess_env variable</s>
2540 <s f="apache_note" u="string apache_note(string note_name [, string note_value])">Get and set Apache request notes</s>
2541 <s f="apache_response_headers" u="array apache_response_headers(void)">Fetch all HTTP response headers</s>
2542 <s f="apache_setenv" u="bool apache_setenv(string variable, string value [, bool walk_to_top])">Set an Apache subprocess_env variable</s>
2543 <s f="getallheaders" u="array getallheaders(void)">Fetch all HTTP request headers</s>
2544 <s f="virtual" u="bool virtual(string uri)">Perform an apache sub-request</s>
2545 <s f="apache_child_terminate" u="bool apache_child_terminate(void)">Terminate apache process after this request</s>
2546 <s f="apache_get_modules" u="array apache_get_modules(void)">Get a list of loaded Apache modules</s>
2547 <s f="apache_get_version" u="string apache_get_version(void)">Fetch Apache version</s>
2548 <s f="apache_lookup_uri" u="object apache_lookup_uri(string URI)">Perform a partial request of the given URI to obtain information about it</s>
2549 <s f="apache_note" u="string apache_note(string note_name [, string note_value])">Get and set Apache request notes</s>
2550 <s f="apache_request_auth_name" u="string apache_request_auth_name()"/>
2551 <s f="apache_request_auth_type" u="string apache_request_auth_type()"/>
2552 <s f="apache_request_discard_request_body" u="long apache_request_discard_request_body()"/>
2553 <s f="apache_request_err_headers_out" u="array apache_request_err_headers_out([{string name|array list} [, string value [, bool replace = false]]])">* fetch all headers that go out in case of an error or a subrequest</s>
2554 <s f="apache_request_headers" u="array apache_request_headers(void)">Fetch all HTTP request headers</s>
2555 <s f="apache_request_headers_in" u="array apache_request_headers_in()">* fetch all incoming request headers</s>
2556 <s f="apache_request_headers_out" u="array apache_request_headers_out([{string name|array list} [, string value [, bool replace = false]]])">* fetch all outgoing request headers</s>
2557 <s f="apache_request_is_initial_req" u="bool apache_request_is_initial_req()"/>
2558 <s f="apache_request_log_error" u="boolean apache_request_log_error(string message, [long facility])"/>
2559 <s f="apache_request_meets_conditions" u="long apache_request_meets_conditions()"/>
2560 <s f="apache_request_remote_host" u="int apache_request_remote_host([int type])"/>
2561 <s f="apache_request_run" u="long apache_request_run()">This is a wrapper for ap_sub_run_req and ap_destory_sub_req.  It takes       sub_request, runs it, destroys it, and returns it's status.</s>
2562 <s f="apache_request_satisfies" u="long apache_request_satisfies()"/>
2563 <s f="apache_request_server_port" u="int apache_request_server_port()"/>
2564 <s f="apache_request_set_etag" u="void apache_request_set_etag()"/>
2565 <s f="apache_request_set_last_modified" u="void apache_request_set_last_modified()"/>
2566 <s f="apache_request_some_auth_required" u="bool apache_request_some_auth_required()"/>
2567 <s f="apache_request_sub_req_lookup_file" u="object apache_request_sub_req_lookup_file(string file)">Returns sub-request for the specified file.  You would      need to run it yourself with run().</s>
2568 <s f="apache_request_sub_req_lookup_uri" u="object apache_request_sub_req_lookup_uri(string uri)">Returns sub-request for the specified uri.  You would      need to run it yourself with run()</s>
2569 <s f="apache_request_sub_req_method_uri" u="object apache_request_sub_req_method_uri(string method, string uri)">Returns sub-request for the specified file.  You would      need to run it yourself with run().</s>
2570 <s f="apache_request_update_mtime" u="long apache_request_update_mtime([int dependency_mtime])"/>
2571 <s f="apache_response_headers" u="array apache_response_headers(void)">Fetch all HTTP response headers</s>
2572 <s f="apache_setenv" u="bool apache_setenv(string variable, string value [, bool walk_to_top])">Set an Apache subprocess_env variable</s>
2573 <s f="getallheaders" u="array getallheaders(void)"/>
2574 <s f="virtual" u="bool virtual(string filename)">Perform an Apache sub-request</s>
2575 <s f="smfi_addheader" u="string smfi_addheader(string headerf, string headerv)">Adds a header to the current message.</s>
2576 <s f="smfi_addrcpt" u="string smfi_addrcpt(string rcpt)">Add a recipient to the message envelope.</s>
2577 <s f="smfi_chgheader" u="string smfi_chgheader(string headerf, string headerv)">Changes a header's value for the current message.</s>
2578 <s f="smfi_delrcpt" u="string smfi_delrcpt(string rcpt)">Removes the named recipient from the current message's envelope.</s>
2579 <s f="smfi_getsymval" u="string smfi_getsymval(string macro)">Returns the value of the given macro or NULL if the macro is not defined.</s>
2580 <s f="smfi_replacebody" u="string smfi_replacebody(string body)">Replaces the body of the current message. If called more than once,     subsequent calls result in data being appended to the new body.</s>
2581 <s f="smfi_setflags" u="string smfi_setflags(long flags)">Sets the flags describing the actions the filter may take.</s>
2582 <s f="smfi_setreply" u="string smfi_setreply(string rcode, string xcode, string message)">Directly set the SMTP error reply code for this connection.     This code will be used on subsequent error replies resulting from actions taken by this filter.</s>
2583 <s f="smfi_settimeout" u="string smfi_settimeout(long timeout)">Sets the number of seconds libmilter will wait for an MTA connection before timing out a socket.</s>
2584 <s f="nsapi_request_headers" u="array nsapi_request_headers(void)">Get all headers from the request</s>
2585 <s f="nsapi_response_headers" u="array nsapi_response_headers(void)">Get all headers from the response</s>
2586 <s f="nsapi_virtual" u="bool nsapi_virtual(string uri)">Perform an NSAPI sub-request</s>
2587
2588 <s k="if"/>
2589 <s k="elseif"/>
2590 <s k="else"/>
2591 <s k="endif"/>
2592 <s k="for"/>
2593 <s k="endfor"/>
2594 <s k="while"/>
2595 <s k="endwhile"/>
2596 <s k="switch"/>
2597 <s k="case"/>
2598 <s k="endswitch"/>
2599 <s k="break"/>
2600 <s k="continue"/>
2601 <s k="return"/>
2602 <s k="include"/>
2603 <s k="include_once"/>
2604 <s k="require"/>
2605 <s k="require_once"/>
2606 <s k="function"/>
2607 <s k="class"/>
2608 <s k="new"/>
2609 <s k="do"/>
2610 <s k="old_function"/>
2611 <s k="default"/>
2612 <s k="global"/>
2613 <s k="static"/>
2614 <s k="foreach"/>
2615 <s k="endforeach"/>
2616 <s k="extends"/>
2617 <s k="empty"/>
2618 <s k="array"/>
2619 <s k="echo"/>
2620 <s k="var"/>
2621 <s k="as"/>
2622 <s k="print"/>
2623 <s k="unset"/>
2624 <s k="exit"/>
2625 <s k="and"/>
2626 <s k="or"/>
2627 <s k="xor"/>
2628 <s k="list"/>
2629 <s k="null"/>
2630 <s k="false"/>
2631 <s k="true"/>
2632 <s k="AND"/>
2633 <s k="OR"/>
2634 <s k="NULL"/>
2635 <s k="FALSE"/>
2636 <s k="TRUE"/>
2637 <s k="abstract"/>
2638 <s k="catch"/>
2639 <s k="finally"/>
2640 <s k="try"/>
2641 <s k="private"/>
2642 <s k="protected"/>
2643 <s k="public"/>
2644 <s k="interface"/>
2645 <s k="implements"/>
2646 <s k="instanceof"/>
2647 <s k="super"/>
2648 <s k="throw"/>
2649 <s k="clone"/>
2650 <s k="const"/>
2651 <s k="declare"/>
2652 <s k="enddeclare"/>
2653 <s k="eval"/>
2654 <s k="use"/>
2655 <s k="isset"/>
2656 <s k="final"/>
2657 <s k="__FUNCTION__"/>
2658 <s k="__CLASS__"/>
2659 <s k="__METHOD__"/>
2660 <s k="__FILE__"/>
2661 <s k="__LINE__"/>
2662 <s k="__FUNCTION__"/>
2663 <s k="php_user_filter"/>
2664 <s k="cfunction"/>
2665 <s k="old_function"/>
2666 <s k="exception"/>
2667 <s k="die"/>
2668
2669 <s t="string"/>
2670 <s t="unset"/>
2671 <s t="object"/>
2672 <s t="bool"/>
2673 <s t="boolean"/>
2674 <s t="real"/>
2675 <s t="double"/>
2676 <s t="float"/>
2677 <s t="int"/>
2678 <s t="integer"/>
2679
2680 <s c="CASE_LOWER"/>
2681 <s c="CASE_UPPER"/>
2682 <s c="SORT_ASC"/>
2683 <s c="SORT_DESC"/>
2684 <s c="SORT_REGULAR"/>
2685 <s c="SORT_NUMERIC"/>
2686 <s c="SORT_STRING"/>
2687 <s c="COUNT_NORMAL"/>
2688 <s c="COUNT_RECURSIVE"/>
2689 <s c="EXTR_OVERWRITE"/>
2690 <s c="EXTR_SKIP"/>
2691 <s c="EXTR_PREFIX_SAME"/>
2692 <s c="EXTR_PREFIX_ALL"/>
2693 <s c="EXTR_PREFIX_INVALID"/>
2694 <s c="EXTR_PREFIX_IF_EXISTS"/>
2695 <s c="EXTR_IF_EXISTS"/>
2696 <s c="EXTR_REFS"/>
2697 <s c="CAL_GREGORIAN"/>
2698 <s c="CAL_JULIAN"/>
2699 <s c="CAL_JEWISH"/>
2700 <s c="CAL_FRENCH"/>
2701 <s c="CAL_NUM_CALS"/>
2702 <s c="CAL_DOW_DAYNO"/>
2703 <s c="CAL_DOW_SHORT"/>
2704 <s c="CAL_DOW_LONG"/>
2705 <s c="CAL_MONTH_GREGORIAN_SHORT"/>
2706 <s c="CAL_MONTH_GREGORIAN_LONG"/>
2707 <s c="CAL_MONTH_JULIAN_SHORT"/>
2708 <s c="CAL_MONTH_JULIAN_LONG"/>
2709 <s c="CAL_MONTH_JEWISH"/>
2710 <s c="CAL_MONTH_FRENCH"/>
2711 <s c="CAL_EASTER_DEFAULT"/>
2712 <s c="CAL_EASTER_ROMAN"/>
2713 <s c="CAL_EASTER_ALWAYS_GREGORIAN"/>
2714 <s c="CAL_EASTER_ALWAYS_JULIAN"/>
2715 <s c="CAL_JEWISH_ADD_ALAFIM_GERESH"/>
2716 <s c="CAL_JEWISH_ADD_ALAFIM"/>
2717 <s c="CAL_JEWISH_ADD_GERESHAYIM"/>
2718 <s c="CLSCTX_INPROC_SERVER"/>
2719 <s c="CLSCTX_INPROC_HANDLER"/>
2720 <s c="CLSCTX_LOCAL_SERVER"/>
2721 <s c="CLSCTX_REMOTE_SERVER"/>
2722 <s c="CLSCTX_SERVER"/>
2723 <s c="CLSCTX_ALL"/>
2724 <s c="VT_NULL"/>
2725 <s c="VT_EMPTY"/>
2726 <s c="VT_UI1"/>
2727 <s c="VT_I2"/>
2728 <s c="VT_I4"/>
2729 <s c="VT_R4"/>
2730 <s c="VT_R8"/>
2731 <s c="VT_BOOL"/>
2732 <s c="VT_ERROR"/>
2733 <s c="VT_CY"/>
2734 <s c="VT_DATE"/>
2735 <s c="VT_BSTR"/>
2736 <s c="VT_DECIMAL"/>
2737 <s c="VT_UNKNOWN"/>
2738 <s c="VT_DISPATCH"/>
2739 <s c="VT_VARIANT"/>
2740 <s c="VT_I1"/>
2741 <s c="VT_UI2"/>
2742 <s c="VT_UI4"/>
2743 <s c="VT_INT"/>
2744 <s c="VT_UINT"/>
2745 <s c="VT_ARRAY"/>
2746 <s c="VT_BYREF"/>
2747 <s c="CP_ACP"/>
2748 <s c="CP_MACCP"/>
2749 <s c="CP_OEMCP"/>
2750 <s c="CP_UTF7"/>
2751 <s c="CP_UTF8"/>
2752 <s c="CP_SYMBOL"/>
2753 <s c="CP_THREAD_ACP"/>
2754 <s c="VARCMP_LT"/>
2755 <s c="VARCMP_EQ"/>
2756 <s c="VARCMP_GT"/>
2757 <s c="VARCMP_NULL"/>
2758 <s c="NORM_IGNORECASE"/>
2759 <s c="NORM_IGNORENONSPACE"/>
2760 <s c="NORM_IGNORESYMBOLS"/>
2761 <s c="NORM_IGNOREWIDTH"/>
2762 <s c="NORM_IGNOREKANATYPE"/>
2763 <s c="NORM_IGNOREKASHIDA"/>
2764 <s c="DISP_E_DIVBYZERO"/>
2765 <s c="DISP_E_OVERFLOW"/>
2766 <s c="MK_E_UNAVAILABLE"/>
2767 <s c="CPDF_PM_NONE"/>
2768 <s c="CPDF_PM_OUTLINES"/>
2769 <s c="CPDF_PM_THUMBS"/>
2770 <s c="CPDF_PM_FULLSCREEN"/>
2771 <s c="CPDF_PL_SINGLE"/>
2772 <s c="CPDF_PL_1COLUMN"/>
2773 <s c="CPDF_PL_2LCOLUMN"/>
2774 <s c="CPDF_PL_2RCOLUMN"/>
2775 <s c="CURLOPT_PORT"/>
2776 <s c="CURLOPT_FILE"/>
2777 <s c="CURLOPT_INFILE"/>
2778 <s c="CURLOPT_INFILESIZE"/>
2779 <s c="CURLOPT_URL"/>
2780 <s c="CURLOPT_PROXY"/>
2781 <s c="CURLOPT_VERBOSE"/>
2782 <s c="CURLOPT_HEADER"/>
2783 <s c="CURLOPT_HTTPHEADER"/>
2784 <s c="CURLOPT_NOPROGRESS"/>
2785 <s c="CURLOPT_NOBODY"/>
2786 <s c="CURLOPT_FAILONERROR"/>
2787 <s c="CURLOPT_UPLOAD"/>
2788 <s c="CURLOPT_POST"/>
2789 <s c="CURLOPT_FTPLISTONLY"/>
2790 <s c="CURLOPT_FTPAPPEND"/>
2791 <s c="CURLOPT_NETRC"/>
2792 <s c="CURLOPT_FOLLOWLOCATION"/>
2793 <s c="CURLOPT_FTPASCII"/>
2794 <s c="CURLOPT_PUT"/>
2795 <s c="CURLOPT_MUTE"/>
2796 <s c="CURLOPT_USERPWD"/>
2797 <s c="CURLOPT_PROXYUSERPWD"/>
2798 <s c="CURLOPT_RANGE"/>
2799 <s c="CURLOPT_TIMEOUT"/>
2800 <s c="CURLOPT_POSTFIELDS"/>
2801 <s c="CURLOPT_REFERER"/>
2802 <s c="CURLOPT_USERAGENT"/>
2803 <s c="CURLOPT_FTPPORT"/>
2804 <s c="CURLOPT_LOW_SPEED_LIMIT"/>
2805 <s c="CURLOPT_LOW_SPEED_TIME"/>
2806 <s c="CURLOPT_RESUME_FROM"/>
2807 <s c="CURLOPT_COOKIE"/>
2808 <s c="CURLOPT_SSLCERT"/>
2809 <s c="CURLOPT_SSLCERTPASSWD"/>
2810 <s c="CURLOPT_WRITEHEADER"/>
2811 <s c="CURLOPT_SSL_VERIFYHOST"/>
2812 <s c="CURLOPT_COOKIEFILE"/>
2813 <s c="CURLOPT_SSLVERSION"/>
2814 <s c="CURLOPT_TIMECONDITION"/>
2815 <s c="CURLOPT_TIMEVALUE"/>
2816 <s c="CURLOPT_CUSTOMREQUEST"/>
2817 <s c="CURLOPT_STDERR"/>
2818 <s c="CURLOPT_TRANSFERTEXT"/>
2819 <s c="CURLOPT_RETURNTRANSFER"/>
2820 <s c="CURLOPT_QUOTE"/>
2821 <s c="CURLOPT_POSTQUOTE"/>
2822 <s c="CURLOPT_INTERFACE"/>
2823 <s c="CURLOPT_KRB4LEVEL"/>
2824 <s c="CURLOPT_HTTPPROXYTUNNEL"/>
2825 <s c="CURLOPT_FILETIME"/>
2826 <s c="CURLOPT_WRITEFUNCTION"/>
2827 <s c="CURLOPT_READFUNCTION"/>
2828 <s c="CURLOPT_PASSWDFUNCTION"/>
2829 <s c="CURLOPT_HEADERFUNCTION"/>
2830 <s c="CURLOPT_MAXREDIRS"/>
2831 <s c="CURLOPT_MAXCONNECTS"/>
2832 <s c="CURLOPT_CLOSEPOLICY"/>
2833 <s c="CURLOPT_FRESH_CONNECT"/>
2834 <s c="CURLOPT_FORBID_REUSE"/>
2835 <s c="CURLOPT_RANDOM_FILE"/>
2836 <s c="CURLOPT_EGDSOCKET"/>
2837 <s c="CURLOPT_CONNECTTIMEOUT"/>
2838 <s c="CURLOPT_SSL_VERIFYPEER"/>
2839 <s c="CURLOPT_CAINFO"/>
2840 <s c="CURLOPT_COOKIEJAR"/>
2841 <s c="CURLOPT_SSL_CIPHER_LIST"/>
2842 <s c="CURLOPT_BINARYTRANSFER"/>
2843 <s c="CURLCLOSEPOLICY_LEAST_RECENTLY_USED"/>
2844 <s c="CURLCLOSEPOLICY_LEAST_TRAFFIC"/>
2845 <s c="CURLCLOSEPOLICY_SLOWEST"/>
2846 <s c="CURLCLOSEPOLICY_CALLBACK"/>
2847 <s c="CURLCLOSEPOLICY_OLDEST"/>
2848 <s c="CURLINFO_EFFECTIVE_URL"/>
2849 <s c="CURLINFO_HTTP_CODE"/>
2850 <s c="CURLINFO_HEADER_SIZE"/>
2851 <s c="CURLINFO_REQUEST_SIZE"/>
2852 <s c="CURLINFO_TOTAL_TIME"/>
2853 <s c="CURLINFO_NAMELOOKUP_TIME"/>
2854 <s c="CURLINFO_CONNECT_TIME"/>
2855 <s c="CURLINFO_PRETRANSFER_TIME"/>
2856 <s c="CURLINFO_SIZE_UPLOAD"/>
2857 <s c="CURLINFO_SIZE_DOWNLOAD"/>
2858 <s c="CURLINFO_SPEED_DOWNLOAD"/>
2859 <s c="CURLINFO_SPEED_UPLOAD"/>
2860 <s c="CURLINFO_FILETIME"/>
2861 <s c="CURLINFO_SSL_VERIFYRESULT"/>
2862 <s c="CURLINFO_CONTENT_LENGTH_DOWNLOAD"/>
2863 <s c="CURLINFO_CONTENT_LENGTH_UPLOAD"/>
2864 <s c="CURLE_OK"/>
2865 <s c="CURLE_UNSUPPORTED_PROTOCOL"/>
2866 <s c="CURLE_FAILED_INIT"/>
2867 <s c="CURLE_URL_MALFORMAT"/>
2868 <s c="CURLE_URL_MALFORMAT_USER"/>
2869 <s c="CURLE_COULDNT_RESOLVE_PROXY"/>
2870 <s c="CURLE_COULDNT_RESOLVE_HOST"/>
2871 <s c="CURLE_COULDNT_CONNECT"/>
2872 <s c="CURLE_FTP_WEIRD_SERVER_REPLY"/>
2873 <s c="CURLE_FTP_ACCESS_DENIED"/>
2874 <s c="CURLE_FTP_USER_PASSWORD_INCORRECT"/>
2875 <s c="CURLE_FTP_WEIRD_PASS_REPLY"/>
2876 <s c="CURLE_FTP_WEIRD_USER_REPLY"/>
2877 <s c="CURLE_FTP_WEIRD_PASV_REPLY"/>
2878 <s c="CURLE_FTP_WEIRD_227_FORMAT"/>
2879 <s c="CURLE_FTP_CANT_GET_HOST"/>
2880 <s c="CURLE_FTP_CANT_RECONNECT"/>
2881 <s c="CURLE_FTP_COULDNT_SET_BINARY"/>
2882 <s c="CURLE_PARTIAL_FILE"/>
2883 <s c="CURLE_FTP_COULDNT_RETR_FILE"/>
2884 <s c="CURLE_FTP_WRITE_ERROR"/>
2885 <s c="CURLE_FTP_QUOTE_ERROR"/>
2886 <s c="CURLE_HTTP_NOT_FOUND"/>
2887 <s c="CURLE_WRITE_ERROR"/>
2888 <s c="CURLE_MALFORMAT_USER"/>
2889 <s c="CURLE_FTP_COULDNT_STOR_FILE"/>
2890 <s c="CURLE_READ_ERROR"/>
2891 <s c="CURLE_OUT_OF_MEMORY"/>
2892 <s c="CURLE_OPERATION_TIMEOUTED"/>
2893 <s c="CURLE_FTP_COULDNT_SET_ASCII"/>
2894 <s c="CURLE_FTP_PORT_FAILED"/>
2895 <s c="CURLE_FTP_COULDNT_USE_REST"/>
2896 <s c="CURLE_FTP_COULDNT_GET_SIZE"/>
2897 <s c="CURLE_HTTP_RANGE_ERROR"/>
2898 <s c="CURLE_HTTP_POST_ERROR"/>
2899 <s c="CURLE_SSL_CONNECT_ERROR"/>
2900 <s c="CURLE_FTP_BAD_DOWNLOAD_RESUME"/>
2901 <s c="CURLE_FILE_COULDNT_READ_FILE"/>
2902 <s c="CURLE_LDAP_CANNOT_BIND"/>
2903 <s c="CURLE_LDAP_SEARCH_FAILED"/>
2904 <s c="CURLE_LIBRARY_NOT_FOUND"/>
2905 <s c="CURLE_FUNCTION_NOT_FOUND"/>
2906 <s c="CURLE_ABORTED_BY_CALLBACK"/>
2907 <s c="CURLE_BAD_FUNCTION_ARGUMENT"/>
2908 <s c="CURLE_BAD_CALLING_ORDER"/>
2909 <s c="CURLE_HTTP_PORT_FAILED"/>
2910 <s c="CURLE_BAD_PASSWORD_ENTERED"/>
2911 <s c="CURLE_TOO_MANY_REDIRECTS"/>
2912 <s c="CURLE_UNKNOWN_TELNET_OPTION"/>
2913 <s c="CURLE_TELNET_OPTION_SYNTAX"/>
2914 <s c="CURLE_OBSOLETE"/>
2915 <s c="CURLE_SSL_PEER_CERTIFICATE"/>
2916 <s c="CYRUS_CONN_NONSYNCLITERAL"/>
2917 <s c="CYRUS_CONN_INITIALRESPONSE"/>
2918 <s c="CYRUS_CALLBACK_NUMBERED"/>
2919 <s c="CYRUS_CALLBACK_NOLITERAL"/>
2920 <s c="DBPLUS_ERR_NOERR">ERR_NOERR</s>
2921 <s c="DBPLUS_ERR_DUPLICATE">ERR_DUPLICATE</s>
2922 <s c="DBPLUS_ERR_EOSCAN">ERR_EOSCAN</s>
2923 <s c="DBPLUS_ERR_EMPTY">ERR_EMPTY</s>
2924 <s c="DBPLUS_ERR_CLOSE">ERR_CLOSE</s>
2925 <s c="DBPLUS_ERR_WLOCKED">ERR_WLOCKED</s>
2926 <s c="DBPLUS_ERR_LOCKED">ERR_LOCKED</s>
2927 <s c="DBPLUS_ERR_NOLOCK">ERR_NOLOCK</s>
2928 <s c="DBPLUS_ERR_READ">ERR_READ</s>
2929 <s c="DBPLUS_ERR_WRITE">ERR_WRITE</s>
2930 <s c="DBPLUS_ERR_CREATE">ERR_CREATE</s>
2931 <s c="DBPLUS_ERR_LSEEK">ERR_LSEEK</s>
2932 <s c="DBPLUS_ERR_LENGTH">ERR_LENGTH</s>
2933 <s c="DBPLUS_ERR_OPEN">ERR_OPEN</s>
2934 <s c="DBPLUS_ERR_WOPEN">ERR_WOPEN</s>
2935 <s c="DBPLUS_ERR_MAGIC">ERR_MAGIC</s>
2936 <s c="DBPLUS_ERR_VERSION">ERR_VERSION</s>
2937 <s c="DBPLUS_ERR_PGSIZE">ERR_PGSIZE</s>
2938 <s c="DBPLUS_ERR_CRC">ERR_CRC</s>
2939 <s c="DBPLUS_ERR_PIPE">ERR_PIPE</s>
2940 <s c="DBPLUS_ERR_NIDX">ERR_NIDX</s>
2941 <s c="DBPLUS_ERR_MALLOC">ERR_MALLOC</s>
2942 <s c="DBPLUS_ERR_NUSERS">ERR_NUSERS</s>
2943 <s c="DBPLUS_ERR_PREEXIT">ERR_PREEXIT</s>
2944 <s c="DBPLUS_ERR_ONTRAP">ERR_ONTRAP</s>
2945 <s c="DBPLUS_ERR_PREPROC">ERR_PREPROC</s>
2946 <s c="DBPLUS_ERR_DBPARSE">ERR_DBPARSE</s>
2947 <s c="DBPLUS_ERR_DBRUNERR">ERR_DBRUNERR</s>
2948 <s c="DBPLUS_ERR_DBPREEXIT">ERR_DBPREEXIT</s>
2949 <s c="DBPLUS_ERR_WAIT">ERR_WAIT</s>
2950 <s c="DBPLUS_ERR_CORRUPT_TUPLE">ERR_CORRUPT_TUPLE</s>
2951 <s c="DBPLUS_ERR_WARNING0">ERR_WARNING0</s>
2952 <s c="DBPLUS_ERR_PANIC">ERR_PANIC</s>
2953 <s c="DBPLUS_ERR_FIFO">ERR_FIFO</s>
2954 <s c="DBPLUS_ERR_PERM">ERR_PERM</s>
2955 <s c="DBPLUS_ERR_TCL">ERR_TCL</s>
2956 <s c="DBPLUS_ERR_RESTRICTED">ERR_RESTRICTED</s>
2957 <s c="DBPLUS_ERR_USER">ERR_USER</s>
2958 <s c="DBPLUS_ERR_UNKNOWN">ERR_UNKNOWN</s>
2959 <s c="DBX_MYSQL"/>
2960 <s c="DBX_ODBC"/>
2961 <s c="DBX_PGSQL"/>
2962 <s c="DBX_MSSQL"/>
2963 <s c="DBX_FBSQL"/>
2964 <s c="DBX_OCI8"/>
2965 <s c="DBX_SYBASECT"/>
2966 <s c="DBX_SQLITE"/>
2967 <s c="DBX_PERSISTENT"/>
2968 <s c="DBX_RESULT_INFO"/>
2969 <s c="DBX_RESULT_INDEX"/>
2970 <s c="DBX_RESULT_ASSOC"/>
2971 <s c="DBX_RESULT_UNBUFFERED"/>
2972 <s c="DBX_COLNAMES_UNCHANGED"/>
2973 <s c="DBX_COLNAMES_UPPERCASE"/>
2974 <s c="DBX_COLNAMES_LOWERCASE"/>
2975 <s c="DBX_CMP_NATIVE"/>
2976 <s c="DBX_CMP_TEXT"/>
2977 <s c="DBX_CMP_NUMBER"/>
2978 <s c="DBX_CMP_ASC"/>
2979 <s c="DBX_CMP_DESC"/>
2980 <s c="DIRECTORY_SEPARATOR"/>
2981 <s c="PATH_SEPARATOR"/>
2982 <s c="XML_ELEMENT_NODE">1</s>
2983 <s c="XML_ATTRIBUTE_NODE">2</s>
2984 <s c="XML_TEXT_NODE">3</s>
2985 <s c="XML_CDATA_SECTION_NODE">4</s>
2986 <s c="XML_ENTITY_REF_NODE">5</s>
2987 <s c="XML_ENTITY_NODE">6</s>
2988 <s c="XML_PI_NODE">7</s>
2989 <s c="XML_COMMENT_NODE">8</s>
2990 <s c="XML_DOCUMENT_NODE">9</s>
2991 <s c="XML_DOCUMENT_TYPE_NODE">10</s>
2992 <s c="XML_DOCUMENT_FRAG_NODE">11</s>
2993 <s c="XML_NOTATION_NODE">12</s>
2994 <s c="XML_HTML_DOCUMENT_NODE">13</s>
2995 <s c="XML_DTD_NODE">14</s>
2996 <s c="XML_ELEMENT_DECL_NODE">15</s>
2997 <s c="XML_ATTRIBUTE_DECL_NODE">16</s>
2998 <s c="XML_ENTITY_DECL_NODE">17</s>
2999 <s c="XML_NAMESPACE_DECL_NODE">18</s>
3000 <s c="XML_ATTRIBUTE_CDATA">1</s>
3001 <s c="XML_ATTRIBUTE_ID">2</s>
3002 <s c="XML_ATTRIBUTE_IDREF">3</s>
3003 <s c="XML_ATTRIBUTE_IDREFS">4</s>
3004 <s c="XML_ATTRIBUTE_ENTITY">5</s>
3005 <s c="XML_ATTRIBUTE_NMTOKEN">7</s>
3006 <s c="XML_ATTRIBUTE_NMTOKENS">8</s>
3007 <s c="XML_ATTRIBUTE_ENUMERATION">9</s>
3008 <s c="XML_ATTRIBUTE_NOTATION">10</s>
3009 <s c="DOM_INDEX_SIZE_ERR">1</s>
3010 <s c="DOMSTRING_SIZE_ERR">2</s>
3011 <s c="DOM_HIERARCHY_REQUEST_ERR">3</s>
3012 <s c="DOM_WRONG_DOCUMENT_ERR">4</s>
3013 <s c="DOM_INVALID_CHARACTER_ERR">5</s>
3014 <s c="DOM_NO_DATA_ALLOWED_ERR">6</s>
3015 <s c="DOM_NO_MODIFICATION_ALLOWED_ERR">7</s>
3016 <s c="DOM_NOT_FOUND_ERR">8</s>
3017 <s c="DOM_NOT_SUPPORTED_ERR">9</s>
3018 <s c="DOM_INUSE_ATTRIBUTE_ERR">10</s>
3019 <s c="DOM_INVALID_STATE_ERR">11</s>
3020 <s c="DOM_SYNTAX_ERR">12</s>
3021 <s c="DOM_INVALID_MODIFICATION_ERR">13</s>
3022 <s c="DOM_NAMESPACE_ERR">14</s>
3023 <s c="DOM_INVALID_ACCESS_ERR">15</s>
3024 <s c="DOM_VALIDATION_ERR">16</s>
3025 <s c="XML_ELEMENT_NODE">1</s>
3026 <s c="XML_ATTRIBUTE_NODE">2</s>
3027 <s c="XML_TEXT_NODE">3</s>
3028 <s c="XML_CDATA_SECTION_NODE">4</s>
3029 <s c="XML_ENTITY_REF_NODE">5</s>
3030 <s c="XML_ENTITY_NODE">6</s>
3031 <s c="XML_PI_NODE">7</s>
3032 <s c="XML_COMMENT_NODE">8</s>
3033 <s c="XML_DOCUMENT_NODE">9</s>
3034 <s c="XML_DOCUMENT_TYPE_NODE">10</s>
3035 <s c="XML_DOCUMENT_FRAG_NODE">11</s>
3036 <s c="XML_NOTATION_NODE">12</s>
3037 <s c="XML_GLOBAL_NAMESPACE">1</s>
3038 <s c="XML_LOCAL_NAMESPACE">2</s>
3039 <s c="XML_HTML_DOCUMENT_NODE"/>
3040 <s c="XML_DTD_NODE"/>
3041 <s c="XML_ELEMENT_DECL_NODE"/>
3042 <s c="XML_ATTRIBUTE_DECL_NODE"/>
3043 <s c="XML_ENTITY_DECL_NODE"/>
3044 <s c="XML_NAMESPACE_DECL_NODE"/>
3045 <s c="XML_ATTRIBUTE_CDATA"/>
3046 <s c="XML_ATTRIBUTE_ID"/>
3047 <s c="XML_ATTRIBUTE_IDREF"/>
3048 <s c="XML_ATTRIBUTE_IDREFS"/>
3049 <s c="XML_ATTRIBUTE_ENTITY"/>
3050 <s c="XML_ATTRIBUTE_NMTOKEN"/>
3051 <s c="XML_ATTRIBUTE_NMTOKENS"/>
3052 <s c="XML_ATTRIBUTE_ENUMERATION"/>
3053 <s c="XML_ATTRIBUTE_NOTATION"/>
3054 <s c="XPATH_UNDEFINED"/>
3055 <s c="XPATH_NODESET"/>
3056 <s c="XPATH_BOOLEAN"/>
3057 <s c="XPATH_NUMBER"/>
3058 <s c="XPATH_STRING"/>
3059 <s c="XPATH_POINT"/>
3060 <s c="XPATH_RANGE"/>
3061 <s c="XPATH_LOCATIONSET"/>
3062 <s c="XPATH_USERS"/>
3063 <s c="XPATH_NUMBER"/>
3064 <s c="E_ERROR">Fatal run-time errors. These indicate errors that can not be
3065       recovered from, such as a memory allocation problem.
3066       Execution of the script is halted.</s>
3067 <s c="FAMC">Some value which can be obtained with fstat(1) changed for a
3068        file or directory.</s>
3069 <s c="FAMD">A file or directory was deleted or renamed.</s>
3070 <s c="FAMC">A file was created in a directory.</s>
3071 <s c="FAMM">This event never occurs.</s>
3072 <s c="FAMA">An event in response to fam_cancel_monitor.</s>
3073 <s c="FAME">An event upon request to monitor a file or directory. When a
3074        directory is monitored, an event for that directory and every file
3075        contained in that directory is issued.</s>
3076 <s c="FBSQL_ASSOC"/>
3077 <s c="FBSQL_NUM"/>
3078 <s c="FBSQL_BOTH"/>
3079 <s c="FBSQL_LOCK_DEFERRED"/>
3080 <s c="FBSQL_LOCK_OPTIMISTIC"/>
3081 <s c="FBSQL_LOCK_PESSIMISTIC"/>
3082 <s c="FBSQL_ISO_READ_UNCOMMITTED"/>
3083 <s c="FBSQL_ISO_READ_COMMITTED"/>
3084 <s c="FBSQL_ISO_REPEATABLE_READ"/>
3085 <s c="FBSQL_ISO_SERIALIZABLE"/>
3086 <s c="FBSQL_ISO_VERSIONED"/>
3087 <s c="FBSQL_UNKNOWN"/>
3088 <s c="FBSQL_STOPPED"/>
3089 <s c="FBSQL_STARTING"/>
3090 <s c="FBSQL_RUNNING"/>
3091 <s c="FBSQL_STOPPING"/>
3092 <s c="FBSQL_NOEXEC"/>
3093 <s c="FBSQL_LOB_DIRECT"/>
3094 <s c="FBSQL_LOB_HANDLE"/>
3095 <s c="FDFValue"/>
3096 <s c="FDFStatus"/>
3097 <s c="FDFFile"/>
3098 <s c="FDFID"/>
3099 <s c="FDFFf"/>
3100 <s c="FDFSetFf"/>
3101 <s c="FDFClearFf"/>
3102 <s c="FDFFlags"/>
3103 <s c="FDFSetF"/>
3104 <s c="FDFClrF"/>
3105 <s c="FDFAP"/>
3106 <s c="FDFAS"/>
3107 <s c="FDFAction"/>
3108 <s c="FDFAA"/>
3109 <s c="FDFAPRef"/>
3110 <s c="FDFIF"/>
3111 <s c="FDFEnter"/>
3112 <s c="FDFExit"/>
3113 <s c="FDFDown"/>
3114 <s c="FDFUp"/>
3115 <s c="FDFFormat"/>
3116 <s c="FDFValidate"/>
3117 <s c="FDFKeystroke"/>
3118 <s c="FDFCalculate"/>
3119 <s c="FDFNormalAP"/>
3120 <s c="FDFRolloverAP"/>
3121 <s c="FDFDownAP"/>
3122 <s c="GLOB_BRACE"/>
3123 <s c="GLOB_ONLYDIR"/>
3124 <s c="GLOB_MARK"/>
3125 <s c="GLOB_NOSORT"/>
3126 <s c="GLOB_NOCHECK"/>
3127 <s c="GLOB_NOESCAPE"/>
3128 <s c="PATHINFO_DIRNAME"/>
3129 <s c="PATHINFO_BASENAME"/>
3130 <s c="PATHINFO_EXTENSION"/>
3131 <s c="FILE_USE_INCLUDE_PATH"/>
3132 <s c="FILE_APPEND"/>
3133 <s c="FILE_IGNORE_NEW_LINES"/>
3134 <s c="FILE_SKIP_EMPTY_LINES"/>
3135 <s c="FRIBIDI_CHARSET_UTF8"/>
3136 <s c="FRIBIDI_CHARSET_8859_6"/>
3137 <s c="FRIBIDI_CHARSET_8859_8"/>
3138 <s c="FRIBIDI_CHARSET_CP1255"/>
3139 <s c="FRIBIDI_CHARSET_CP1256"/>
3140 <s c="FRIBIDI_CHARSET_ISIRI_3342"/>
3141 <s c="FTP_ASCII"/>
3142 <s c="FTP_TEXT"/>
3143 <s c="FTP_BINARY"/>
3144 <s c="FTP_IMAGE"/>
3145 <s c="FTP_TIMEOUT_SEC"/>
3146 <s c="FTP_AUTOSEEK"/>
3147 <s c="FTP_AUTORESUME"/>
3148 <s c="FTP_FAILED"/>
3149 <s c="FTP_FINISHED"/>
3150 <s c="FTP_MOREDATA"/>
3151 <s c="GMP_ROUND_ZERO"/>
3152 <s c="GMP_ROUND_PLUSINF"/>
3153 <s c="GMP_ROUND_MINUSINF"/>
3154 <s c="HW_ATTR_LANG"/>
3155 <s c="HW_ATTR_NR"/>
3156 <s c="HW_ATTR_NONE"/>
3157 <s c="IBASE_DEFAULT">The default transaction settings are to be used. This default is
3158        determined by the client library, which defines it as
3159        IBASE_WRITE|IBASE_CONCURRENCY|IBASE_WAIT in most cases.</s>
3160 <s c="IBASE_READ">Starts a read-only transaction.</s>
3161 <s c="IBASE_WRITE">Starts a read-write transaction.</s>
3162 <s c="IBASE_CONSISTENCY">Starts a transaction with the isolation level set to
3163        'consistency', which means the transaction cannot read from tables
3164        that are being modified by other concurrent transactions.</s>
3165 <s c="IBASE_CONCURRENCY">Starts a transaction with the isolation level set to
3166        'concurrency' (or 'snapshot'), which means the transaction
3167        has access to all tables, but cannot see changes that were committed
3168        by other transactions after the transaction was started.</s>
3169 <s c="IBASE_COMMITTED">Starts a transaction with the isolation level set to
3170        'read committed'. This flag should be combined with either
3171        IBASE_REC_VERSION or
3172        IBASE_REC_NO_VERSION. This isolation level
3173        allows access to changes that were committed after the transaction
3174        was started. If IBASE_REC_NO_VERSION was
3175        specified, only the latest version of a row can be read. If
3176        IBASE_REC_VERSION was specified, a row can
3177        even be read when a modification to it is pending in a concurrent
3178        transaction.</s>
3179 <s c="IBASE_WAIT">Indicated that a transaction should wait and retry when a
3180        conflict occurs.</s>
3181 <s c="IBASE_NOWAIT">Indicated that a transaction should fail immediately when a
3182        conflict occurs.</s>
3183 <s c="IBASE_FETCH_BLOBS">Also available as IBASE_TEXTfor backward
3184        compatibility. Causes BLOB contents to be fetched inline, instead of
3185        being fetched as BLOB identifiers.</s>
3186 <s c="IBASE_FETCH_ARRAYS">Causes arrays to be fetched inline. Otherwise, array
3187        identifiers are returned. Array identifiers can only be used as
3188        arguments to INSERT operations, as no functions to handle array
3189        identifiers are currently available.</s>
3190 <s c="IBASE_UNIXTIME">Causes date and time fields not to be returned as strings,
3191        but as UNIX timestamps (the number of seconds since the epoch, which
3192        is 1-Jan-1970 0:00 UTC). Might be problematic if used with dates
3193        before 1970 on some systems.</s>
3194 <s c="ICONV_IMPL">string</s>
3195 <s c="ICONV_VERSION">string</s>
3196 <s c="ICONV_MIME_DECODE_STRICT">integer</s>
3197 <s c="ICONV_MIME_DECODE_CONTINUE_ON_ERROR">integer</s>
3198 <s c="IMG_GIF"/>
3199 <s c="IMG_JPG"/>
3200 <s c="IMG_JPEG"/>
3201 <s c="IMG_PNG"/>
3202 <s c="IMG_WBMP"/>
3203 <s c="IMG_XPM"/>
3204 <s c="IMG_COLOR_TILED"/>
3205 <s c="IMG_COLOR_STYLED"/>
3206 <s c="IMG_COLOR_BRUSHED"/>
3207 <s c="IMG_COLOR_STYLEDBRUSHED"/>
3208 <s c="IMG_COLOR_TRANSPARENT"/>
3209 <s c="IMG_ARC_ROUNDED"/>
3210 <s c="IMG_ARC_PIE"/>
3211 <s c="IMG_ARC_CHORD"/>
3212 <s c="IMG_ARC_NOFILL"/>
3213 <s c="IMG_ARC_EDGED"/>
3214 <s c="IMAGETYPE_GIF"/>
3215 <s c="IMAGETYPE_JPEG"/>
3216 <s c="IMAGETYPE_PNG"/>
3217 <s c="IMAGETYPE_SWF"/>
3218 <s c="IMAGETYPE_PSD"/>
3219 <s c="IMAGETYPE_BMP"/>
3220 <s c="IMAGETYPE_WBMP"/>
3221 <s c="IMAGETYPE_XBM"/>
3222 <s c="IMAGETYPE_TIFF_II"/>
3223 <s c="IMAGETYPE_TIFF_MM"/>
3224 <s c="IMAGETYPE_IFF"/>
3225 <s c="IMAGETYPE_JB2"/>
3226 <s c="IMAGETYPE_JPC"/>
3227 <s c="IMAGETYPE_JP2"/>
3228 <s c="IMAGETYPE_JPX"/>
3229 <s c="IMAGETYPE_SWC"/>
3230 <s c="NIL"/>
3231 <s c="OP_DEBUG"/>
3232 <s c="OP_READONLY"/>
3233 <s c="OP_ANONYMOUS"/>
3234 <s c="OP_SHORTCACHE"/>
3235 <s c="OP_SILENT"/>
3236 <s c="OP_PROTOTYPE"/>
3237 <s c="OP_HALFOPEN"/>
3238 <s c="OP_EXPUNGE"/>
3239 <s c="OP_SECURE"/>
3240 <s c="CL_EXPUNGE"/>
3241 <s c="FT_UID"/>
3242 <s c="FT_PEEK"/>
3243 <s c="FT_NOT"/>
3244 <s c="FT_INTERNAL"/>
3245 <s c="FT_PREFETCHTEXT"/>
3246 <s c="ST_UID"/>
3247 <s c="ST_SILENT"/>
3248 <s c="ST_SET"/>
3249 <s c="CP_UID"/>
3250 <s c="CP_MOVE"/>
3251 <s c="SE_UID"/>
3252 <s c="SE_FREE"/>
3253 <s c="SE_NOPREFETCH"/>
3254 <s c="SO_FREE"/>
3255 <s c="SO_NOSERVER"/>
3256 <s c="SA_MESSAGES"/>
3257 <s c="SA_RECENT"/>
3258 <s c="SA_UNSEEN"/>
3259 <s c="SA_UIDNEXT"/>
3260 <s c="SA_UIDVALIDITY"/>
3261 <s c="SA_ALL"/>
3262 <s c="LATT_NOINFERIORS"/>
3263 <s c="LATT_NOSELECT"/>
3264 <s c="LATT_MARKED"/>
3265 <s c="LATT_UNMARKED"/>
3266 <s c="SORTDATE"/>
3267 <s c="SORTARRIVAL"/>
3268 <s c="SORTFROM"/>
3269 <s c="SORTSUBJECT"/>
3270 <s c="SORTTO"/>
3271 <s c="SORTCC"/>
3272 <s c="SORTSIZE"/>
3273 <s c="TYPETEXT"/>
3274 <s c="TYPEMULTIPART"/>
3275 <s c="TYPEMESSAGE"/>
3276 <s c="TYPEAPPLICATION"/>
3277 <s c="TYPEAUDIO"/>
3278 <s c="TYPEIMAGE"/>
3279 <s c="TYPEVIDEO"/>
3280 <s c="TYPEOTHER"/>
3281 <s c="ENC7BIT"/>
3282 <s c="ENC8BIT"/>
3283 <s c="ENCBINARY"/>
3284 <s c="ENCBASE64"/>
3285 <s c="ENCQUOTEDPRINTABLE"/>
3286 <s c="ENCOTHER"/>
3287 <s c="CREDITS_GROUP">1</s>
3288 <s c="CREDITS_GENERAL">2</s>
3289 <s c="CREDITS_SAPI">4</s>
3290 <s c="CREDITS_MODULES">8</s>
3291 <s c="CREDITS_DOCS">16</s>
3292 <s c="CREDITS_FULLPAGE">32</s>
3293 <s c="CREDITS_QA">64</s>
3294 <s c="CREDITS_ALL">-1</s>
3295 <s c="INFO_GENERAL">1</s>
3296 <s c="INFO_CREDITS">2</s>
3297 <s c="INFO_CONFIGURATION">4</s>
3298 <s c="INFO_MODULES">8</s>
3299 <s c="INFO_ENVIRONMENT">16</s>
3300 <s c="INFO_VARIABLES">32</s>
3301 <s c="INFO_LICENSE">64</s>
3302 <s c="INFO_ALL">-1</s>
3303 <s c="INGRES_ASSOC"/>
3304 <s c="INGRES_NUM"/>
3305 <s c="INGRES_BOTH"/>
3306 <s c="LDAP_DEREF_NEVER"/>
3307 <s c="LDAP_DEREF_SEARCHING"/>
3308 <s c="LDAP_DEREF_FINDING"/>
3309 <s c="LDAP_DEREF_ALWAYS"/>
3310 <s c="LDAP_OPT_DEREF"/>
3311 <s c="LDAP_OPT_SIZELIMIT"/>
3312 <s c="LDAP_OPT_TIMELIMIT"/>
3313 <s c="LDAP_OPT_PROTOCOL_VERSION"/>
3314 <s c="LDAP_OPT_ERROR_NUMBER"/>
3315 <s c="LDAP_OPT_REFERRALS"/>
3316 <s c="LDAP_OPT_RESTART"/>
3317 <s c="LDAP_OPT_HOST_NAME"/>
3318 <s c="LDAP_OPT_ERROR_STRING"/>
3319 <s c="LDAP_OPT_MATCHED_DN"/>
3320 <s c="LDAP_OPT_SERVER_CONTROLS"/>
3321 <s c="LDAP_OPT_CLIENT_CONTROLS"/>
3322 <s c="LDAP_OPT_DEBUG_LEVEL"/>
3323 <s c="GSLC_SSL_NO_AUTH"/>
3324 <s c="GSLC_SSL_ONEWAY_AUTH"/>
3325 <s c="GSLC_SSL_TWOWAY_AUTH"/>
3326 <s c="M_PI">3.14159265358979323846</s>
3327 <s c="M_E">2.7182818284590452354</s>
3328 <s c="M_LOG2E">1.4426950408889634074</s>
3329 <s c="M_LOG10E">0.43429448190325182765</s>
3330 <s c="M_LN2">0.69314718055994530942</s>
3331 <s c="M_LN10">2.30258509299404568402</s>
3332 <s c="M_PI_2">1.57079632679489661923</s>
3333 <s c="M_PI_4">0.78539816339744830962</s>
3334 <s c="M_1_PI">0.31830988618379067154</s>
3335 <s c="M_2_PI">0.63661977236758134308</s>
3336 <s c="M_SQRTPI">1.77245385090551602729</s>
3337 <s c="M_2_SQRTPI">1.12837916709551257390</s>
3338 <s c="M_SQRT2">1.41421356237309504880</s>
3339 <s c="M_SQRT3">1.73205080756887729352</s>
3340 <s c="M_SQRT1_2">0.70710678118654752440</s>
3341 <s c="M_LNPI">1.14472988584940017414</s>
3342 <s c="M_EULER">0.57721566490153286061</s>
3343 <s c="MB_OVERLOAD_MAIL"/>
3344 <s c="MB_OVERLOAD_STRING"/>
3345 <s c="MB_OVERLOAD_REGEX"/>
3346 <s c="MCAL_SUNDAY"/>
3347 <s c="MCAL_MONDAY"/>
3348 <s c="MCAL_TUESDAY"/>
3349 <s c="MCAL_WEDNESDAY"/>
3350 <s c="MCAL_THURSDAY"/>
3351 <s c="MCAL_FRIDAY"/>
3352 <s c="MCAL_SATURDAY"/>
3353 <s c="MCAL_JANUARY"/>
3354 <s c="MCAL_FEBRUARY"/>
3355 <s c="MCAL_MARCH"/>
3356 <s c="MCAL_APRIL"/>
3357 <s c="MCAL_MAY"/>
3358 <s c="MCAL_JUNE"/>
3359 <s c="MCAL_JULY"/>
3360 <s c="MCAL_AUGUST"/>
3361 <s c="MCAL_SEPTEMBER"/>
3362 <s c="MCAL_OCTOBER"/>
3363 <s c="MCAL_NOVEMBER"/>
3364 <s c="MCAL_DECEMBER"/>
3365 <s c="MCAL_RECUR_NONE"/>
3366 <s c="MCAL_RECUR_DAILY"/>
3367 <s c="MCAL_RECUR_WEEKLY"/>
3368 <s c="MCAL_RECUR_MONTHLY_MDAY"/>
3369 <s c="MCAL_RECUR_MONTHLY_WDAY"/>
3370 <s c="MCAL_RECUR_YEARLY"/>
3371 <s c="MCAL_M_SUNDAY"/>
3372 <s c="MCAL_M_MONDAY"/>
3373 <s c="MCAL_M_TUESDAY"/>
3374 <s c="MCAL_M_WEDNESDAY"/>
3375 <s c="MCAL_M_THURSDAY"/>
3376 <s c="MCAL_M_FRIDAY"/>
3377 <s c="MCAL_M_SATURDAY"/>
3378 <s c="MCAL_M_WEEKDAYS"/>
3379 <s c="MCAL_M_WEEKEND"/>
3380 <s c="MCAL_M_ALLDAYS"/>
3381 <s c="MCRYPT_ENCRYPT"/>
3382 <s c="MCRYPT_DECRYPT"/>
3383 <s c="MCRYPT_DEV_RANDOM"/>
3384 <s c="MCRYPT_DEV_URANDOM"/>
3385 <s c="MCRYPT_RAND"/>
3386 <s c="MC_TRANTYPE"/>
3387 <s c="MC_USERNAME"/>
3388 <s c="MC_PASSWORD"/>
3389 <s c="MC_ACCOUNT"/>
3390 <s c="MC_TRACKDATA"/>
3391 <s c="MC_EXPDATE"/>
3392 <s c="MC_STREET"/>
3393 <s c="MC_ZIP"/>
3394 <s c="MC_CV"/>
3395 <s c="MC_COMMENTS"/>
3396 <s c="MC_CLERKID"/>
3397 <s c="MC_STATIONID"/>
3398 <s c="MC_APPRCODE"/>
3399 <s c="MC_AMOUNT"/>
3400 <s c="MC_PTRANNUM"/>
3401 <s c="MC_TTID"/>
3402 <s c="MC_USER"/>
3403 <s c="MC_PWD"/>
3404 <s c="MC_ACCT"/>
3405 <s c="MC_BDATE"/>
3406 <s c="MC_EDATE"/>
3407 <s c="MC_BATCH"/>
3408 <s c="MC_FILE"/>
3409 <s c="MC_ADMIN"/>
3410 <s c="MC_AUDITTYPE"/>
3411 <s c="MC_CUSTOM"/>
3412 <s c="MC_EXAMOUNT"/>
3413 <s c="MC_EXCHARGES"/>
3414 <s c="MC_RATE"/>
3415 <s c="MC_RENTERNAME"/>
3416 <s c="MC_RETURNCITY"/>
3417 <s c="MC_RETURNSTATE"/>
3418 <s c="MC_RETURNLOCATION"/>
3419 <s c="MC_PRIORITY"/>
3420 <s c="MC_INQUIRY"/>
3421 <s c="MC_CARDTYPES"/>
3422 <s c="MC_SUB"/>
3423 <s c="MC_MARKER"/>
3424 <s c="MC_DEVICETYPE"/>
3425 <s c="MC_ERRORCODE"/>
3426 <s c="MC_NEWBATCH"/>
3427 <s c="MC_CURR"/>
3428 <s c="MC_DESCMERCH"/>
3429 <s c="MC_DESCLOC"/>
3430 <s c="MC_ORIGTYPE"/>
3431 <s c="MC_PIN"/>
3432 <s c="MC_VOIDORIGTYPE"/>
3433 <s c="MC_TIMESTAMP"/>
3434 <s c="MC_PRIO_HIGH"/>
3435 <s c="MC_PRIO_NORMAL"/>
3436 <s c="MC_PRIO_LOW"/>
3437 <s c="MC_USER_PROC"/>
3438 <s c="MC_USER_USER"/>
3439 <s c="MC_USER_PWD"/>
3440 <s c="MC_USER_INDCODE"/>
3441 <s c="MC_USER_MERCHID"/>
3442 <s c="MC_USER_BANKID"/>
3443 <s c="MC_USER_TERMID"/>
3444 <s c="MC_USER_CLIENTNUM"/>
3445 <s c="MC_USER_STOREID"/>
3446 <s c="MC_USER_AGENTID"/>
3447 <s c="MC_USER_CHAINID"/>
3448 <s c="MC_USER_ZIPCODE"/>
3449 <s c="MC_USER_TIMEZONE"/>
3450 <s c="MC_USER_MERCHCAT"/>
3451 <s c="MC_USER_MERNAME"/>
3452 <s c="MC_USER_MERCHLOC"/>
3453 <s c="MC_USER_STATECODE"/>
3454 <s c="MC_USER_PHONE"/>
3455 <s c="MC_USER_SUB"/>
3456 <s c="MC_USER_CARDTYPES"/>
3457 <s c="MC_USER_MODE"/>
3458 <s c="MC_USER_VNUMBER"/>
3459 <s c="MC_USER_ROUTINGID"/>
3460 <s c="MC_USER_PPROPERTY"/>
3461 <s c="MC_USER_PID"/>
3462 <s c="MC_USER_PIDPWD"/>
3463 <s c="MC_USER_SMID"/>
3464 <s c="MC_USER_SMIDPWD"/>
3465 <s c="MC_USER_USDDIV"/>
3466 <s c="MC_USER_AUDDIV"/>
3467 <s c="MC_USER_DKKDIV"/>
3468 <s c="MC_USER_GBPDIV"/>
3469 <s c="MC_USER_HKDDIV"/>
3470 <s c="MC_USER_JPYDIV"/>
3471 <s c="MC_USER_NZDDIV"/>
3472 <s c="MC_USER_NOKDIV"/>
3473 <s c="MC_USER_SGDDIV"/>
3474 <s c="MC_USER_ZARDIV"/>
3475 <s c="MC_USER_SEKDIV"/>
3476 <s c="MC_USER_CHFDIV"/>
3477 <s c="MC_USER_CADDIV"/>
3478 <s c="MC_USER_DIVNUM"/>
3479 <s c="MC_CARD_VISA"/>
3480 <s c="MC_CARD_MC"/>
3481 <s c="MC_CARD_AMEX"/>
3482 <s c="MC_CARD_DISC"/>
3483 <s c="MC_CARD_JCB"/>
3484 <s c="MC_CARD_CB"/>
3485 <s c="MC_CARD_DC"/>
3486 <s c="MC_CARD_GIFT"/>
3487 <s c="MC_CARD_OTHER"/>
3488 <s c="MC_CARD_ALL"/>
3489 <s c="MC_MODE_AUTH"/>
3490 <s c="MC_MODE_SETTLE"/>
3491 <s c="MC_MODE_BOTH"/>
3492 <s c="MC_MODE_ALL"/>
3493 <s c="MC_EXCHARGES_REST"/>
3494 <s c="MC_EXCHARGES_GIFT"/>
3495 <s c="MC_EXCHARGES_MINI"/>
3496 <s c="MC_EXCHARGES_TELE"/>
3497 <s c="MC_EXCHARGES_OTHER"/>
3498 <s c="MC_EXCHARGES_LAUND"/>
3499 <s c="MC_EXCHARGES_NONE"/>
3500 <s c="MC_EXCHARGES_GAS"/>
3501 <s c="MC_EXCHARGES_MILE"/>
3502 <s c="MC_EXCHARGES_LATE"/>
3503 <s c="MC_EXCHARGES_1WAY"/>
3504 <s c="MC_EXCHARGES_VIOL"/>
3505 <s c="MC_TRAN_SALE"/>
3506 <s c="MC_TRAN_REDEMPTION"/>
3507 <s c="MC_TRAN_PREAUTH"/>
3508 <s c="MC_TRAN_VOID"/>
3509 <s c="MC_TRAN_PREAUTHCOMPLETE"/>
3510 <s c="MC_TRAN_FORCE"/>
3511 <s c="MC_TRAN_OVERRIDE"/>
3512 <s c="MC_TRAN_RETURN"/>
3513 <s c="MC_TRAN_RELOAD"/>
3514 <s c="MC_TRAN_CREDIT"/>
3515 <s c="MC_TRAN_SETTLE"/>
3516 <s c="MC_TRAN_INCREMENTAL"/>
3517 <s c="MC_TRAN_REVERSAL"/>
3518 <s c="MC_TRAN_ACTIVATE"/>
3519 <s c="MC_TRAN_BALANCEINQ"/>
3520 <s c="MC_TRAN_CASHOUT"/>
3521 <s c="MC_TRAN_TOREVERSAL"/>
3522 <s c="MC_TRAN_SETTLERFR"/>
3523 <s c="MC_TRAN_ISSUE"/>
3524 <s c="MC_TRAN_TIP"/>
3525 <s c="MC_TRAN_MERCHRETURN"/>
3526 <s c="MC_TRAN_IVRREQ"/>
3527 <s c="MC_TRAN_IVRRESP"/>
3528 <s c="MC_TRAN_ADMIN"/>
3529 <s c="MC_TRAN_PING"/>
3530 <s c="MC_TRAN_CHKPWD"/>
3531 <s c="MC_TRAN_CHNGPWD"/>
3532 <s c="MC_TRAN_LISTSTATS"/>
3533 <s c="MC_TRAN_LISTUSERS"/>
3534 <s c="MC_TRAN_GETUSERINFO"/>
3535 <s c="MC_TRAN_ADDUSER"/>
3536 <s c="MC_TRAN_EDITUSER"/>
3537 <s c="MC_TRAN_DELUSER"/>
3538 <s c="MC_TRAN_ENABLEUSER"/>
3539 <s c="MC_TRAN_DISABLEUSER"/>
3540 <s c="MC_TRAN_IMPORT"/>
3541 <s c="MC_TRAN_EXPORT"/>
3542 <s c="MC_TRAN_ERRORLOG"/>
3543 <s c="MC_TRAN_CLEARERRORLOG"/>
3544 <s c="MC_TRAN_GETSUBACCTS"/>
3545 <s c="MC_ADMIN_GUT"/>
3546 <s c="MC_ADMIN_GL"/>
3547 <s c="MC_ADMIN_GFT"/>
3548 <s c="MC_ADMIN_BT"/>
3549 <s c="MC_ADMIN_UB"/>
3550 <s c="MC_ADMIN_QC"/>
3551 <s c="MC_ADMIN_RS"/>
3552 <s c="MC_ADMIN_CTH"/>
3553 <s c="MC_ADMIN_CFH"/>
3554 <s c="MC_ADMIN_FORCESETTLE"/>
3555 <s c="MC_ADMIN_SETBATCHNUM"/>
3556 <s c="MC_ADMIN_RENUMBERBATCH"/>
3557 <s c="MC_ADMIN_FIELDEDIT"/>
3558 <s c="MC_ADMIN_CLOSEBATCH"/>
3559 <s c="MCVE_UNUSED"/>
3560 <s c="MCVE_NEW"/>
3561 <s c="MCVE_PENDING"/>
3562 <s c="MCVE_DONE"/>
3563 <s c="MCVE_GOOD"/>
3564 <s c="MCVE_BAD"/>
3565 <s c="MCVE_STREET"/>
3566 <s c="MCVE_ZIP"/>
3567 <s c="MCVE_UNKNOWN"/>
3568 <s c="MCVE_ERROR"/>
3569 <s c="MCVE_FAIL"/>
3570 <s c="MCVE_SUCCESS"/>
3571 <s c="MCVE_AUTH"/>
3572 <s c="MCVE_DENY"/>
3573 <s c="MCVE_CALL"/>
3574 <s c="MCVE_DUPL"/>
3575 <s c="MCVE_PKUP"/>
3576 <s c="MCVE_RETRY"/>
3577 <s c="MCVE_SETUP"/>
3578 <s c="MCVE_TIMEOUT"/>
3579 <s c="MCVE_SALE"/>
3580 <s c="MCVE_PREAUTH"/>
3581 <s c="MCVE_FORCE"/>
3582 <s c="MCVE_OVERRIDE"/>
3583 <s c="MCVE_RETURN"/>
3584 <s c="MCVE_SETTLE"/>
3585 <s c="MCVE_PROC"/>
3586 <s c="MCVE_USER"/>
3587 <s c="MCVE_PWD"/>
3588 <s c="MCVE_INDCODE"/>
3589 <s c="MCVE_MERCHID"/>
3590 <s c="MCVE_BANKID"/>
3591 <s c="MCVE_TERMID"/>
3592 <s c="MCVE_CLIENTNUM"/>
3593 <s c="MCVE_STOREID"/>
3594 <s c="MCVE_AGENTID"/>
3595 <s c="MCVE_CHAINID"/>
3596 <s c="MCVE_ZIPCODE"/>
3597 <s c="MCVE_TIMEZONE"/>
3598 <s c="MCVE_MERCHCAT"/>
3599 <s c="MCVE_MERNAME"/>
3600 <s c="MCVE_MERCHLOC"/>
3601 <s c="MCVE_STATECODE"/>
3602 <s c="MCVE_SERVICEPHONE"/>
3603 <s c="MHASH_MD5"/>
3604 <s c="MHASH_SHA1"/>
3605 <s c="MHASH_HAVAL256"/>
3606 <s c="MHASH_HAVAL192"/>
3607 <s c="MHASH_HAVAL160"/>
3608 <s c="MHASH_HAVAL128"/>
3609 <s c="MHASH_RIPEMD160"/>
3610 <s c="MHASH_GOST"/>
3611 <s c="MHASH_TIGER"/>
3612 <s c="MHASH_CRC32"/>
3613 <s c="MHASH_CRC32B"/>
3614 <s c="SWFBUTTON_HIT"/>
3615 <s c="SWFBUTTON_DOWN"/>
3616 <s c="SWFBUTTON_OVER"/>
3617 <s c="SWFBUTTON_UP"/>
3618 <s c="SWFBUTTON_MOUSEUPOUTSIDE"/>
3619 <s c="SWFBUTTON_DRAGOVER"/>
3620 <s c="SWFBUTTON_DRAGOUT"/>
3621 <s c="SWFBUTTON_MOUSEUP"/>
3622 <s c="SWFBUTTON_MOUSEDOWN"/>
3623 <s c="SWFBUTTON_MOUSEOUT"/>
3624 <s c="SWFBUTTON_MOUSEOVER"/>
3625 <s c="SWFFILL_RADIAL_GRADIENT"/>
3626 <s c="SWFFILL_LINEAR_GRADIENT"/>
3627 <s c="SWFFILL_TILED_BITMAP"/>
3628 <s c="SWFFILL_CLIPPED_BITMAP"/>
3629 <s c="SWFTEXTFIELD_HASLENGTH"/>
3630 <s c="SWFTEXTFIELD_NOEDIT"/>
3631 <s c="SWFTEXTFIELD_PASSWORD"/>
3632 <s c="SWFTEXTFIELD_MULTILINE"/>
3633 <s c="SWFTEXTFIELD_WORDWRAP"/>
3634 <s c="SWFTEXTFIELD_DRAWBOX"/>
3635 <s c="SWFTEXTFIELD_NOSELECT"/>
3636 <s c="SWFTEXTFIELD_HTML"/>
3637 <s c="SWFTEXTFIELD_ALIGN_LEFT"/>
3638 <s c="SWFTEXTFIELD_ALIGN_RIGHT"/>
3639 <s c="SWFTEXTFIELD_ALIGN_CENTER"/>
3640 <s c="SWFTEXTFIELD_ALIGN_JUSTIFY"/>
3641 <s c="SWFACTION_ONLOAD"/>
3642 <s c="SWFACTION_ENTERFRAME"/>
3643 <s c="SWFACTION_UNLOAD"/>
3644 <s c="SWFACTION_MOUSEMOVE"/>
3645 <s c="SWFACTION_MOUSEDOWN"/>
3646 <s c="SWFACTION_MOUSEUP"/>
3647 <s c="SWFACTION_KEYDOWN"/>
3648 <s c="SWFACTION_KEYUP"/>
3649 <s c="SWFACTION_DATA"/>
3650 <s c="CONNECTION_ABORTED"/>
3651 <s c="CONNECTION_NORMAL"/>
3652 <s c="CONNECTION_TIMEOUT"/>
3653 <s c="UDM_FIELD_URLID"/>
3654 <s c="UDM_FIELD_URL"/>
3655 <s c="UDM_FIELD_CONTENT"/>
3656 <s c="UDM_FIELD_TITLE"/>
3657 <s c="UDM_FIELD_KEYWORDS"/>
3658 <s c="UDM_FIELD_DESC"/>
3659 <s c="UDM_FIELD_DESCRIPTION"/>
3660 <s c="UDM_FIELD_TEXT"/>
3661 <s c="UDM_FIELD_SIZE"/>
3662 <s c="UDM_FIELD_RATING"/>
3663 <s c="UDM_FIELD_SCORE"/>
3664 <s c="UDM_FIELD_MODIFIED"/>
3665 <s c="UDM_FIELD_ORDER"/>
3666 <s c="UDM_FIELD_CRC"/>
3667 <s c="UDM_FIELD_CATEGORY"/>
3668 <s c="UDM_FIELD_LANG"/>
3669 <s c="UDM_FIELD_CHARSET"/>
3670 <s c="UDM_PARAM_PAGE_SIZE"/>
3671 <s c="UDM_PARAM_PAGE_NUM"/>
3672 <s c="UDM_PARAM_SEARCH_MODE"/>
3673 <s c="UDM_PARAM_CACHE_MODE"/>
3674 <s c="UDM_PARAM_TRACK_MODE"/>
3675 <s c="UDM_PARAM_PHRASE_MODE"/>
3676 <s c="UDM_PARAM_CHARSET"/>
3677 <s c="UDM_PARAM_LOCAL_CHARSET"/>
3678 <s c="UDM_PARAM_BROWSER_CHARSET"/>
3679 <s c="UDM_PARAM_STOPTABLE"/>
3680 <s c="UDM_PARAM_STOP_TABLE"/>
3681 <s c="UDM_PARAM_STOPFILE"/>
3682 <s c="UDM_PARAM_STOP_FILE"/>
3683 <s c="UDM_PARAM_WEIGHT_FACTOR"/>
3684 <s c="UDM_PARAM_WORD_MATCH"/>
3685 <s c="UDM_PARAM_MAX_WORD_LEN"/>
3686 <s c="UDM_PARAM_MAX_WORDLEN"/>
3687 <s c="UDM_PARAM_MIN_WORD_LEN"/>
3688 <s c="UDM_PARAM_MIN_WORDLEN"/>
3689 <s c="UDM_PARAM_ISPELL_PREFIXES"/>
3690 <s c="UDM_PARAM_ISPELL_PREFIX"/>
3691 <s c="UDM_PARAM_PREFIXES"/>
3692 <s c="UDM_PARAM_PREFIX"/>
3693 <s c="UDM_PARAM_CROSS_WORDS"/>
3694 <s c="UDM_PARAM_CROSSWORDS"/>
3695 <s c="UDM_PARAM_VARDIR"/>
3696 <s c="UDM_PARAM_DATADIR"/>
3697 <s c="UDM_PARAM_HLBEG"/>
3698 <s c="UDM_PARAM_HLEND"/>
3699 <s c="UDM_PARAM_SYNONYM"/>
3700 <s c="UDM_PARAM_SEARCHD"/>
3701 <s c="UDM_PARAM_QSTRING"/>
3702 <s c="UDM_PARAM_REMOTE_ADDR"/>
3703 <s c="UDM_LIMIT_CAT"/>
3704 <s c="UDM_LIMIT_URL"/>
3705 <s c="UDM_LIMIT_TAG"/>
3706 <s c="UDM_LIMIT_LANG"/>
3707 <s c="UDM_LIMIT_DATE"/>
3708 <s c="UDM_PARAM_FOUND"/>
3709 <s c="UDM_PARAM_NUM_ROWS"/>
3710 <s c="UDM_PARAM_WORDINFO"/>
3711 <s c="UDM_PARAM_WORD_INFO"/>
3712 <s c="UDM_PARAM_SEARCHTIME"/>
3713 <s c="UDM_PARAM_SEARCH_TIME"/>
3714 <s c="UDM_PARAM_FIRST_DOC"/>
3715 <s c="UDM_PARAM_LAST_DOC"/>
3716 <s c="UDM_MODE_ALL"/>
3717 <s c="UDM_MODE_ANY"/>
3718 <s c="UDM_MODE_BOOL"/>
3719 <s c="UDM_MODE_PHRASE"/>
3720 <s c="UDM_CACHE_ENABLED"/>
3721 <s c="UDM_CACHE_DISABLED"/>
3722 <s c="UDM_TRACK_ENABLED"/>
3723 <s c="UDM_TRACK_DISABLED"/>
3724 <s c="UDM_PHRASE_ENABLED"/>
3725 <s c="UDM_PHRASE_DISABLED"/>
3726 <s c="UDM_CROSS_WORDS_ENABLED"/>
3727 <s c="UDM_CROSSWORDS_ENABLED"/>
3728 <s c="UDM_CROSS_WORDS_DISABLED"/>
3729 <s c="UDM_CROSSWORDS_DISABLED"/>
3730 <s c="UDM_PREFIXES_ENABLED"/>
3731 <s c="UDM_PREFIX_ENABLED"/>
3732 <s c="UDM_ISPELL_PREFIXES_ENABLED"/>
3733 <s c="UDM_ISPELL_PREFIX_ENABLED"/>
3734 <s c="UDM_PREFIXES_DISABLED"/>
3735 <s c="UDM_PREFIX_DISABLED"/>
3736 <s c="UDM_ISPELL_PREFIXES_DISABLED"/>
3737 <s c="UDM_ISPELL_PREFIX_DISABLED"/>
3738 <s c="UDM_ISPELL_TYPE_AFFIX"/>
3739 <s c="UDM_ISPELL_TYPE_SPELL"/>
3740 <s c="UDM_ISPELL_TYPE_DB"/>
3741 <s c="UDM_ISPELL_TYPE_SERVER"/>
3742 <s c="UDM_MATCH_WORD"/>
3743 <s c="UDM_MATCH_BEGIN"/>
3744 <s c="UDM_MATCH_SUBSTR"/>
3745 <s c="UDM_MATCH_END"/>
3746 <s c="MSQL_ASSOC"/>
3747 <s c="MSQL_NUM"/>
3748 <s c="MSQL_BOTH"/>
3749 <s c="MSSQL_ASSOC"/>
3750 <s c="MSSQL_NUM"/>
3751 <s c="MSSQL_BOTH"/>
3752 <s c="SQLTEXT"/>
3753 <s c="SQLVARCHAR"/>
3754 <s c="SQLCHAR"/>
3755 <s c="SQLINT1"/>
3756 <s c="SQLINT2"/>
3757 <s c="SQLINT4"/>
3758 <s c="SQLBIT"/>
3759 <s c="SQLFLT8"/>
3760 <s c="MYSQL_CLIENT_COMPRESS">Use compression protocol</s>
3761 <s c="MYSQL_CLIENT_IGNORE_SPACE">Allow space after function names</s>
3762 <s c="MYSQL_CLIENT_INTERACTIVE">Allow interactive_timeout seconds (instead of wait_timeout) of
3763         inactivity before closing the connection.</s>
3764 <s c="MYSQL_ASSOC">Columns are returned into the array having the fieldname as the array
3765        index.</s>
3766 <s c="MYSQL_BOTH">Columns are returned into the array having both a numerical index
3767        and the fieldname as the array index.</s>
3768 <s c="MYSQL_NUM">Columns are returned into the array having a numerical index to the
3769        fields. This index starts with 0, the first field in the result.</s>
3770 <s c="MYSQLI_READ_DEFAULT_GROUP">Read options from the named group from `my.cnf' or the file specified with MYSQLI_READ_DEFAULT_FILE</s>
3771 <s c="MYSQLI_READ_DEFAULT_FILE">Read options from the named option file instead of from my.cnf</s>
3772 <s c="MYSQLI_OPT_CONNECT_TIMEOUT">Connect timeout in seconds</s>
3773 <s c="MYSQLI_OPT_LOCAL_INFILE">Enables command LOAD LOCAL INFILE</s>
3774 <s c="MYSQLI_INIT_COMMAND">Command to execute when connecting to MySQL server. Will automatically be re-executed when reconnecting.</s>
3775 <s c="MYSQLI_CLIENT_SSL">Use SSL (encrypted protocol). This option should not be set by application programs;
3776        it is set internally in the MySQL client library</s>
3777 <s c="MYSQLI_CLIENT_COMPRESS">Use compression protocol</s>
3778 <s c="MYSQLI_CLIENT_INTERACTIVE">Allow interactive_timeout seconds (instead of wait_timeout seconds) of inactivity before closing the connection. The client's session wait_timeout variable will be set to the value of the session interactive_timeout variable.</s>
3779 <s c="MYSQLI_CLIENT_IGNORE_SPACE">Allow spaces after function names. Makes all functions names reserved words.</s>
3780 <s c="MYSQLI_CLIENT_NO_SCHEMA">Don't allow the db_name.tbl_name.col_name syntax.</s>
3781 <s c="MYSQLI_CLIENT_MULTI_QUERIES"/>
3782 <s c="MYSQLI_STORE_RESULT">For using buffered resultsets</s>
3783 <s c="MYSQLI_USE_RESULT">For using unbuffered resultsets</s>
3784 <s c="MYSQLI_ASSOC">Columns are returned into the array having the fieldname as the array index.</s>
3785 <s c="MYSQLI_NUM">Columns are returned into the array having an enumerated index.</s>
3786 <s c="MYSQLI_BOTH">Columns are returned into the array having both a numerical index and the fieldname as the associative index.</s>
3787 <s c="MYSQLI_NOT_NULL_FLAG">Indicates that a field is defined as NOT NULL</s>
3788 <s c="MYSQLI_PRI_KEY_FLAG">Field is part of a primary index</s>
3789 <s c="MYSQLI_UNIQUE_KEY_FLAG">Field is part of an unique index.</s>
3790 <s c="MYSQLI_MULTIPLE_KEY_FLAG">Field is part of an index.</s>
3791 <s c="MYSQLI_BLOB_FLAG">Field is defined as BLOB</s>
3792 <s c="MYSQLI_UNSIGNED_FLAG">Field is defined as UNSIGNED</s>
3793 <s c="MYSQLI_ZEROFILL_FLAG">Field is defined as ZEROFILL</s>
3794 <s c="MYSQLI_AUTO_INCREMENT_FLAG">Field is defined as AUTO_INCREMENT</s>
3795 <s c="MYSQLI_TIMESTAMP_FLAG">Field is defined as TIMESTAMP</s>
3796 <s c="MYSQLI_SET_FLAG">Field is defined as SET</s>
3797 <s c="MYSQLI_NUM_FLAG">Field is defined as NUMERIC</s>
3798 <s c="MYSQLI_PART_KEY_FLAG">Field is part of an multi-index</s>
3799 <s c="MYSQLI_GROUP_FLAG">Field is part of GROUP BY</s>
3800 <s c="MYSQLI_TYPE_DECIMAL">Field is defined as DECIMAL</s>
3801 <s c="MYSQLI_TYPE_TINY">Field is defined as TINYINT</s>
3802 <s c="MYSQLI_TYPE_SHORT">Field is defined as INT</s>
3803 <s c="MYSQLI_TYPE_LONG">Field is defined as INT</s>
3804 <s c="MYSQLI_TYPE_FLOAT">Field is defined as FLOAT</s>
3805 <s c="MYSQLI_TYPE_DOUBLE">Field is defined as DOUBLE</s>
3806 <s c="MYSQLI_TYPE_NULL">Field is defined as DEFAULT NULL</s>
3807 <s c="MYSQLI_TYPE_TIMESTAMP">Field is defined as TIMESTAMP</s>
3808 <s c="MYSQLI_TYPE_LONGLONG">Field is defined as BIGINT</s>
3809 <s c="MYSQLI_TYPE_INT24">Field is defined as MEDIUMINT</s>
3810 <s c="MYSQLI_TYPE_DATE">Field is defined as DATE</s>
3811 <s c="MYSQLI_TYPE_TIME">Field is defined as TIME</s>
3812 <s c="MYSQLI_TYPE_DATETIME">Field is defined as DATETIME</s>
3813 <s c="MYSQLI_TYPE_YEAR">Field is defined as YEAR</s>
3814 <s c="MYSQLI_TYPE_NEWDATE">Field is defined as DATE</s>
3815 <s c="MYSQLI_TYPE_ENUM">Field is defined as ENUM</s>
3816 <s c="MYSQLI_TYPE_SET">Field is defined as SET</s>
3817 <s c="MYSQLI_TYPE_TINY_BLOB">Field is defined as TINYBLOB</s>
3818 <s c="MYSQLI_TYPE_MEDIUM_BLOB">Field is defined as MEDIUMBLOB</s>
3819 <s c="MYSQLI_TYPE_LONG_BLOB">Field is defined as LONGBLOB</s>
3820 <s c="MYSQLI_TYPE_BLOB">Field is defined as BLOB</s>
3821 <s c="MYSQLI_TYPE_STRING">Field is defined as VARCHAR</s>
3822 <s c="MYSQLI_TYPE_CHAR">Field is defined as CHAR</s>
3823 <s c="MYSQLI_TYPE_GEOMETRY">Field is defined as GEOMETRY</s>
3824 <s c="MYSQLI_NEED_DATA">More data available for bind variable</s>
3825 <s c="MYSQLI_NO_DATA">No more data available for bind variable</s>
3826 <s c="NCURSES_COLOR_BLACK">no color (black)</s>
3827 <s c="NCURSES_COLOR_WHITE">white</s>
3828 <s c="NCURSES_COLOR_RED">red - supported when terminal is in color mode</s>
3829 <s c="NCURSES_COLOR_GREEN">green - supported when terminal is in color mod</s>
3830 <s c="NCURSES_COLOR_YELLOW">yellow - supported when terminal is in color mod</s>
3831 <s c="NCURSES_COLOR_BLUE">blue - supported when terminal is in color mod</s>
3832 <s c="NCURSES_COLOR_CYAN">cyan - supported when terminal is in color mod</s>
3833 <s c="NCURSES_COLOR_MAGENTA">magenta - supported when terminal is in color mod</s>
3834 <s c="NCURSES_KEY_DOWN">down arrow</s>
3835 <s c="NCURSES_KEY_UP">up arrow</s>
3836 <s c="NCURSES_KEY_LEFT">left arrow</s>
3837 <s c="NCURSES_KEY_RIGHT">right arrow</s>
3838 <s c="NCURSES_KEY_HOME">home key (upward+left arrow)</s>
3839 <s c="NCURSES_KEY_BACKSPACE">backspace</s>
3840 <s c="NCURSES_KEY_DL">delete line</s>
3841 <s c="NCURSES_KEY_IL">insert line</s>
3842 <s c="NCURSES_KEY_DC">delete character</s>
3843 <s c="NCURSES_KEY_IC">insert char or enter insert mode</s>
3844 <s c="NCURSES_KEY_EIC">exit insert char mode</s>
3845 <s c="NCURSES_KEY_CLEAR">clear screen</s>
3846 <s c="NCURSES_KEY_EOS">clear to end of screen</s>
3847 <s c="NCURSES_KEY_EOL">clear to end of line</s>
3848 <s c="NCURSES_KEY_SF">scroll one line forward</s>
3849 <s c="NCURSES_KEY_SR">scroll one line backward</s>
3850 <s c="NCURSES_KEY_NPAGE">next page</s>
3851 <s c="NCURSES_KEY_PPAGE">previous page</s>
3852 <s c="NCURSES_KEY_STAB">set tab</s>
3853 <s c="NCURSES_KEY_CTAB">clear tab</s>
3854 <s c="NCURSES_KEY_CATAB">clear all tabs</s>
3855 <s c="NCURSES_KEY_SRESET">soft (partial) reset</s>
3856 <s c="NCURSES_KEY_RESET">reset or hard reset</s>
3857 <s c="NCURSES_KEY_PRINT">print</s>
3858 <s c="NCURSES_KEY_LL">lower left</s>
3859 <s c="NCURSES_KEY_A1">upper left of keypad</s>
3860 <s c="NCURSES_KEY_A3">upper right of keypad</s>
3861 <s c="NCURSES_KEY_B2">center of keypad</s>
3862 <s c="NCURSES_KEY_C1">lower left of keypad</s>
3863 <s c="NCURSES_KEY_C3">lower right of keypad</s>
3864 <s c="NCURSES_KEY_BTAB">back tab</s>
3865 <s c="NCURSES_KEY_BEG">beginning</s>
3866 <s c="NCURSES_KEY_CANCEL">cancel</s>
3867 <s c="NCURSES_KEY_CLOSE">close</s>
3868 <s c="NCURSES_KEY_COMMAND">cmd (command)</s>
3869 <s c="NCURSES_KEY_COPY">copy</s>
3870 <s c="NCURSES_KEY_CREATE">create</s>
3871 <s c="NCURSES_KEY_END">end</s>
3872 <s c="NCURSES_KEY_EXIT">exit</s>
3873 <s c="NCURSES_KEY_FIND">find</s>
3874 <s c="NCURSES_KEY_HELP">help</s>
3875 <s c="NCURSES_KEY_MARK">mark</s>
3876 <s c="NCURSES_KEY_MESSAGE">message</s>
3877 <s c="NCURSES_KEY_MOVE">move</s>
3878 <s c="NCURSES_KEY_NEXT">next</s>
3879 <s c="NCURSES_KEY_OPEN">open</s>
3880 <s c="NCURSES_KEY_OPTIONS">options</s>
3881 <s c="NCURSES_KEY_PREVIOUS">previous</s>
3882 <s c="NCURSES_KEY_REDO">redo</s>
3883 <s c="NCURSES_KEY_REFERENCE">ref (reference)</s>
3884 <s c="NCURSES_KEY_REFRESH">refresh</s>
3885 <s c="NCURSES_KEY_REPLACE">replace</s>
3886 <s c="NCURSES_KEY_RESTART">restart</s>
3887 <s c="NCURSES_KEY_RESUME">resume</s>
3888 <s c="NCURSES_KEY_SAVE">save</s>
3889 <s c="NCURSES_KEY_SBEG">shiftet beg (beginning)</s>
3890 <s c="NCURSES_KEY_SCANCEL">shifted cancel</s>
3891 <s c="NCURSES_KEY_SCOMMAND">shifted command</s>
3892 <s c="NCURSES_KEY_SCOPY">shifted copy</s>
3893 <s c="NCURSES_KEY_SCREATE">shifted create</s>
3894 <s c="NCURSES_KEY_SDC">shifted delete char</s>
3895 <s c="NCURSES_KEY_SDL">shifted delete line</s>
3896 <s c="NCURSES_KEY_SELECT">select</s>
3897 <s c="NCURSES_KEY_SEND">shifted end</s>
3898 <s c="NCURSES_KEY_SEOL">shifted end of line</s>
3899 <s c="NCURSES_KEY_SEXIT">shifted exit</s>
3900 <s c="NCURSES_KEY_SFIND">shifted find</s>
3901 <s c="NCURSES_KEY_SHELP">shifted help</s>
3902 <s c="NCURSES_KEY_SHOME">shifted home</s>
3903 <s c="NCURSES_KEY_SIC">shifted input</s>
3904 <s c="NCURSES_KEY_SLEFT">shifted left arrow</s>
3905 <s c="NCURSES_KEY_SMESSAGE">shifted message</s>
3906 <s c="NCURSES_KEY_SMOVE">shifted move</s>
3907 <s c="NCURSES_KEY_SNEXT">shifted next</s>
3908 <s c="NCURSES_KEY_SOPTIONS">shifted options</s>
3909 <s c="NCURSES_KEY_SPREVIOUS">shifted previous</s>
3910 <s c="NCURSES_KEY_SPRINT">shifted print</s>
3911 <s c="NCURSES_KEY_SREDO">shifted redo</s>
3912 <s c="NCURSES_KEY_SREPLACE">shifted replace</s>
3913 <s c="NCURSES_KEY_SRIGHT">shifted right arrow</s>
3914 <s c="NCURSES_KEY_SRSUME">shifted resume</s>
3915 <s c="NCURSES_KEY_SSAVE">shifted save</s>
3916 <s c="NCURSES_KEY_SSUSPEND">shifted suspend</s>
3917 <s c="NCURSES_KEY_UNDO">undo</s>
3918 <s c="NCURSES_KEY_MOUSE">mouse event has occurred</s>
3919 <s c="NCURSES_KEY_MAX">maximum key value</s>
3920 <s c="NCURSES_BUTTON_CTRL">ctrl pressed during click</s>
3921 <s c="NCURSES_BUTTON_SHIFT">shift pressed during click</s>
3922 <s c="NCURSES_BUTTON_ALT">alt pressed during click</s>
3923 <s c="NCURSES_ALL_MOUSE_EVENTS">report all mouse events</s>
3924 <s c="NCURSES_REPORT_MOUSE_POSITION">report mouse position</s>
3925 <s c="LOG_CONS">if there is an error while sending data to the system logger,
3926        write directly to the system console</s>
3927 <s c="LOG_NDELAY">open the connection to the logger immediately</s>
3928 <s c="LOG_ODELAY">(default) delay opening the connection until the first
3929        message is logged</s>
3930 <s c="LOG_NOWAIT"/>
3931 <s c="LOG_PERROR">print log message also to standard error</s>
3932 <s c="LOG_PID">include PID with each message</s>
3933 <s c="LOG_AUTH">security/authorization messages (use LOG_AUTHPRIV instead
3934        in systems where that constant is defined)</s>
3935 <s c="LOG_AUTHPRIV">security/authorization messages (private)</s>
3936 <s c="LOG_CRON">clock daemon (cron and at)</s>
3937 <s c="LOG_DAEMON">other system daemons</s>
3938 <s c="LOG_KERN">kernel messages</s>
3939 <s c="LOG_LPR">line printer subsystem</s>
3940 <s c="LOG_MAIL">mail subsystem</s>
3941 <s c="LOG_NEWS">USENET news subsystem</s>
3942 <s c="LOG_SYSLOG">messages generated internally by syslogd</s>
3943 <s c="LOG_USER">generic user-level messages</s>
3944 <s c="LOG_UUCP">UUCP subsystem</s>
3945 <s c="LOG_EMERG">system is unusable</s>
3946 <s c="LOG_ALERT">action must be taken immediately</s>
3947 <s c="LOG_CRIT">critical conditions</s>
3948 <s c="LOG_ERR">error conditions</s>
3949 <s c="LOG_WARNING">warning conditions</s>
3950 <s c="LOG_NOTICE">normal, but significant, condition</s>
3951 <s c="LOG_INFO">informational message</s>
3952 <s c="LOG_DEBUG">debug-level message</s>
3953 <s c="DNS_A">IPv4 Address Resource</s>
3954 <s c="DNS_MX">Mail Exchanger Resource</s>
3955 <s c="DNS_CNAME">Alias (Canonical Name) Resource</s>
3956 <s c="DNS_NS">Authoritative Name Server Resource</s>
3957 <s c="DNS_PTR">Pointer Resource</s>
3958 <s c="DNS_HINFO">Host Info Resource (See IANA's
3959         Operating System Names
3960         for the meaning of these values)</s>
3961 <s c="DNS_SOA">Start of Authority Resource</s>
3962 <s c="DNS_TXT">Text Resource</s>
3963 <s c="DNS_ANY">Any Resource Record.  On most systems
3964         this returns all resource records, however
3965         it should not be counted upon for critical
3966         uses.  Try DNS_ALL instead.</s>
3967 <s c="DNS_AAAA">IPv6 Address Resource</s>
3968 <s c="DNS_ALL">Iteratively query the name server for
3969         each available record type.</s>
3970 <s c="YPERR_BADARGS"/>
3971 <s c="YPERR_BADDB"/>
3972 <s c="YPERR_BUSY"/>
3973 <s c="YPERR_DOMAIN"/>
3974 <s c="YPERR_KEY"/>
3975 <s c="YPERR_MAP"/>
3976 <s c="YPERR_NODOM"/>
3977 <s c="YPERR_NOMORE"/>
3978 <s c="YPERR_PMAP"/>
3979 <s c="YPERR_RESRC"/>
3980 <s c="YPERR_RPC"/>
3981 <s c="YPERR_YPBIND"/>
3982 <s c="YPERR_YPERR"/>
3983 <s c="YPERR_YPSERV"/>
3984 <s c="YPERR_VERS"/>
3985 <s c="OCI_DEFAULT"/>
3986 <s c="OCI_DESCRIBE_ONLY"/>
3987 <s c="OCI_COMMIT_ON_SUCCESS"/>
3988 <s c="OCI_EXACT_FETCH"/>
3989 <s c="OCI_SYSDATE"/>
3990 <s c="OCI_B_BFILE"/>
3991 <s c="OCI_B_CFILEE"/>
3992 <s c="OCI_B_CLOB"/>
3993 <s c="OCI_B_BLOB"/>
3994 <s c="OCI_B_ROWID"/>
3995 <s c="OCI_B_CURSOR"/>
3996 <s c="OCI_B_NTY"/>
3997 <s c="OCI_B_BIN"/>
3998 <s c="SQLT_BFILEE"/>
3999 <s c="SQLT_CFILEE"/>
4000 <s c="SQLT_CLOB"/>
4001 <s c="SQLT_BLOB"/>
4002 <s c="SQLT_RDD"/>
4003 <s c="SQLT_NTY"/>
4004 <s c="OCI_FETCHSTATEMENT_BY_COLUMN"/>
4005 <s c="OCI_FETCHSTATEMENT_BY_ROW"/>
4006 <s c="OCI_ASSOC"/>
4007 <s c="OCI_NUM"/>
4008 <s c="OCI_BOTH"/>
4009 <s c="OCI_RETURN_NULLS"/>
4010 <s c="OCI_RETURN_LOBS"/>
4011 <s c="OCI_DTYPE_FILE"/>
4012 <s c="OCI_DTYPE_LOB"/>
4013 <s c="OCI_DTYPE_ROWID"/>
4014 <s c="OCI_D_FILE"/>
4015 <s c="OCI_D_LOB"/>
4016 <s c="OCI_D_ROWID"/>
4017 <s c="PKCS7_TEXT">Adds text/plain content type headers to encrypted/signed
4018          message. If decrypting or verifying, it strips those headers from
4019          the output - if the decrypted or verified message is not of MIME type
4020          text/plain then an error will occur.</s>
4021 <s c="PKCS7_BINARY">Normally the input message is converted to &quot;canonical&quot; format
4022          which is effectively using CR and LF as end of line: as required by
4023          the S/MIME specification.  When this options is present, no
4024          translation occurs.  This is useful when handling binary data which
4025          may not be in MIME format.</s>
4026 <s c="PKCS7_NOINTERN">When verifying a message, certificates (if
4027            any) included in the message are normally searched for the
4028            signing certificate. With this option only the
4029            certificates specified in the extracerts
4030            parameter of openssl_pkcs7_verify are
4031            used.  The supplied certificates can still be used as
4032            untrusted CAs however.</s>
4033 <s c="PKCS7_NOVERIFY">Do not verify the signers certificate of a signed
4034          message.</s>
4035 <s c="PKCS7_NOCHAIN">Do not chain verification of signers certificates: that is
4036          don't use the certificates in the signed message as untrusted CAs.</s>
4037 <s c="PKCS7_NOCERTS">When signing a message the signer's certificate is normally
4038          included - with this option it is excluded.  This will reduce the
4039          size of the signed message but the verifier must have a copy of the
4040          signers certificate available locally (passed using the
4041          extracerts to
4042          openssl_pkcs7_verify for example).</s>
4043 <s c="PKCS7_NOATTR">Normally when a message is signed, a set of attributes are
4044          included which include the signing time and the supported symmetric
4045          algorithms.  With this option they are not included.</s>
4046 <s c="PKCS7_DETACHED">When signing a message, use cleartext signing with the MIME
4047          type multipart/signed.  This is the default
4048          if you do not specify any flags to
4049          openssl_pkcs7_sign.
4050          If you turn this option off, the message will be signed using
4051          opaque signing, which is more resistant to translation by mail relays
4052          but cannot be read by mail agents that do not support S/MIME.</s>
4053 <s c="PKCS7_NOSIGS">Don't try and verify the signatures on a message</s>
4054 <s c="ORA_BIND_INOUT"/>
4055 <s c="ORA_BIND_IN"/>
4056 <s c="ORA_BIND_OUT"/>
4057 <s c="ORA_FETCHINTO_ASSOC"/>
4058 <s c="ORA_FETCHINTO_NULLS"/>
4059 <s c="WNOHANG"/>
4060 <s c="WUNTRACED"/>
4061 <s c="SIG_IGN"/>
4062 <s c="SIG_DFL"/>
4063 <s c="SIG_ERR"/>
4064 <s c="SIGHUP"/>
4065 <s c="SIGINT"/>
4066 <s c="SIGQUIT"/>
4067 <s c="SIGILL"/>
4068 <s c="SIGTRAP"/>
4069 <s c="SIGABRT"/>
4070 <s c="SIGIOT"/>
4071 <s c="SIGBUS"/>
4072 <s c="SIGFPE"/>
4073 <s c="SIGKILL"/>
4074 <s c="SIGUSR1"/>
4075 <s c="SIGSEGV"/>
4076 <s c="SIGUSR2"/>
4077 <s c="SIGPIPE"/>
4078 <s c="SIGALRM"/>
4079 <s c="SIGTERM"/>
4080 <s c="SIGSTKFLT"/>
4081 <s c="SIGCLD"/>
4082 <s c="SIGCHLD"/>
4083 <s c="SIGCONT"/>
4084 <s c="SIGSTOP"/>
4085 <s c="SIGTSTP"/>
4086 <s c="SIGTTIN"/>
4087 <s c="SIGTTOU"/>
4088 <s c="SIGURG"/>
4089 <s c="SIGXCPU"/>
4090 <s c="SIGXFSZ"/>
4091 <s c="SIGVTALRM"/>
4092 <s c="SIGPROF"/>
4093 <s c="SIGWINCH"/>
4094 <s c="SIGPOLL"/>
4095 <s c="SIGIO"/>
4096 <s c="SIGPWR"/>
4097 <s c="SIGSYS"/>
4098 <s c="SIGBABY"/>
4099 <s c="PREG_PATTERN_ORDER">Orders results so that $matches[0] is an array of full pattern
4100       matches, $matches[1] is an array of strings matched by the first
4101       parenthesized subpattern, and so on. This flag is only used with
4102       preg_match_all.</s>
4103 <s c="PREG_SET_ORDER">Orders results so that $matches[0] is an array of first set of
4104       matches, $matches[1] is an array of second set of matches, and so
4105       on. This flag is only used with preg_match_all.</s>
4106 <s c="PREG_OFFSET_CAPTURE">See the description of
4107       PREG_SPLIT_OFFSET_CAPTURE.  This flag is
4108       available since PHP 4.3.0.</s>
4109 <s c="PREG_SPLIT_NO_EMPTY">This flag tells preg_split to return only non-empty
4110       pieces.</s>
4111 <s c="PREG_SPLIT_DELIM_CAPTURE">This flag tells preg_split to capture
4112       parenthesized expression in the delimiter pattern as well. This flag
4113       is available since PHP 4.0.5.</s>
4114 <s c="PREG_SPLIT_OFFSET_CAPTURE">If this flag is set, for every occurring match the appendant string
4115       offset will also be returned. Note that this changes the return
4116       values in an array where every element is an array consisting of the
4117       matched string at offset 0 and its string offset within subject at
4118       offset 1. This flag is available since PHP 4.3.0
4119       and is only used for preg_split.</s>
4120 <s c="PGSQL_ASSOC"/>
4121 <s c="PGSQL_NUM"/>
4122 <s c="PGSQL_BOTH"/>
4123 <s c="PGSQL_CONNECTION_BAD"/>
4124 <s c="PGSQL_CONNECTION_OK"/>
4125 <s c="PGSQL_SEEK_SET"/>
4126 <s c="PGSQL_SEEK_CUR"/>
4127 <s c="PGSQL_SEEK_END"/>
4128 <s c="PGSQL_ESCAPE_STRING"/>
4129 <s c="PGSQL_ESCAPE_BYTEA"/>
4130 <s c="PGSQL_EMPTY_QUERY"/>
4131 <s c="PGSQL_COMMAND_OK"/>
4132 <s c="PGSQL_TUPLES_OK"/>
4133 <s c="PGSQL_COPY_OUT"/>
4134 <s c="PGSQL_COPY_IN"/>
4135 <s c="PGSQL_BAD_RESPONSE"/>
4136 <s c="PGSQL_NONFATAL_ERROR"/>
4137 <s c="PGSQL_FATAL_ERROR"/>
4138 <s c="PSPELL_FAST"/>
4139 <s c="PSPELL_NORMAL"/>
4140 <s c="PSPELL_BAD_SPELLERS"/>
4141 <s c="PSPELL_RUN_TOGETHER"/>
4142 <s c="MSG_IPC_NOWAIT">integer</s>
4143 <s c="MSG_NOERROR">integer</s>
4144 <s c="MSG_EXCEPT">integer</s>
4145 <s c="SID"/>
4146 <s c="SNMP_VALUE_LIBRARY"/>
4147 <s c="SNMP_VALUE_PLAIN"/>
4148 <s c="SNMP_VALUE_OBJECT"/>
4149 <s c="SNMP_BIT_STR"/>
4150 <s c="SNMP_OCTET_STR"/>
4151 <s c="SNMP_OPAQUE"/>
4152 <s c="SNMP_NULL"/>
4153 <s c="SNMP_OBJECT_ID"/>
4154 <s c="SNMP_IPADDRESS"/>
4155 <s c="SNMP_COUNTER"/>
4156 <s c="SNMP_UNSIGNED"/>
4157 <s c="SNMP_TIMETICKS"/>
4158 <s c="SNMP_UINTEGER"/>
4159 <s c="SNMP_INTEGER"/>
4160 <s c="SNMP_COUNTER64"/>
4161 <s c="SOAP_1_1"/>
4162 <s c="SOAP_1_2"/>
4163 <s c="SOAP_PERSISTENCE_SESSION"/>
4164 <s c="SOAP_PERSISTENCE_REQUEST"/>
4165 <s c="SOAP_FUNCTIONS_ALL"/>
4166 <s c="SOAP_ENCODED"/>
4167 <s c="SOAP_LITERAL"/>
4168 <s c="SOAP_RPC"/>
4169 <s c="SOAP_DOCUMENT"/>
4170 <s c="SOAP_ACTOR_NEXT"/>
4171 <s c="SOAP_ACTOR_NONE"/>
4172 <s c="SOAP_ACTOR_UNLIMATERECEIVER"/>
4173 <s c="UNKNOWN_TYPE"/>
4174 <s c="XSD_STRING"/>
4175 <s c="XSD_BOOLEAN"/>
4176 <s c="XSD_DECIMAL"/>
4177 <s c="XSD_FLOAT"/>
4178 <s c="XSD_DOUBLE"/>
4179 <s c="XSD_DURATION"/>
4180 <s c="XSD_DATETIME"/>
4181 <s c="XSD_TIME"/>
4182 <s c="XSD_DATE"/>
4183 <s c="XSD_GYEARMONTH"/>
4184 <s c="XSD_GYEAR"/>
4185 <s c="XSD_GMONTHDAY"/>
4186 <s c="XSD_GDAY"/>
4187 <s c="XSD_GMONTH"/>
4188 <s c="XSD_HEXBINARY"/>
4189 <s c="XSD_BASE64BINARY"/>
4190 <s c="XSD_ANYURI"/>
4191 <s c="XSD_QNAME"/>
4192 <s c="XSD_NOTATION"/>
4193 <s c="XSD_NORMALIZEDSTRING"/>
4194 <s c="XSD_TOKEN"/>
4195 <s c="XSD_LANGUAGE"/>
4196 <s c="XSD_NMTOKEN"/>
4197 <s c="XSD_NAME"/>
4198 <s c="XSD_NCNAME"/>
4199 <s c="XSD_ID"/>
4200 <s c="XSD_IDREF"/>
4201 <s c="XSD_IDREFS"/>
4202 <s c="XSD_ENTITY"/>
4203 <s c="XSD_ENTITIES"/>
4204 <s c="XSD_INTEGER"/>
4205 <s c="XSD_NONPOSITIVEINTEGER"/>
4206 <s c="XSD_NEGATIVEINTEGER"/>
4207 <s c="XSD_LONG"/>
4208 <s c="XSD_INT"/>
4209 <s c="XSD_SHORT"/>
4210 <s c="XSD_BYTE"/>
4211 <s c="XSD_NONNEGATIVEINTEGER"/>
4212 <s c="XSD_UNSIGNEDLONG"/>
4213 <s c="XSD_UNSIGNEDINT"/>
4214 <s c="XSD_UNSIGNEDSHORT"/>
4215 <s c="XSD_UNSIGNEDBYTE"/>
4216 <s c="XSD_POSITIVEINTEGER"/>
4217 <s c="XSD_NMTOKENS"/>
4218 <s c="XSD_ANYTYPE"/>
4219 <s c="SOAP_ENC_OBJECT"/>
4220 <s c="SOAP_ENC_ARRAY"/>
4221 <s c="XSD_1999_TIMEINSTANT"/>
4222 <s c="XSD_NAMESPACE"/>
4223 <s c="XSD_1999_NAMESPACE"/>
4224 <s c="AF_UNIX"/>
4225 <s c="AF_INET"/>
4226 <s c="AF_INET6"/>
4227 <s c="SOCK_STREAM"/>
4228 <s c="SOCK_DGRAM"/>
4229 <s c="SOCK_RAW"/>
4230 <s c="SOCK_SEQPACKET"/>
4231 <s c="SOCK_RDM"/>
4232 <s c="MSG_OOB"/>
4233 <s c="MSG_WAITALL"/>
4234 <s c="MSG_PEEK"/>
4235 <s c="MSG_DONTROUTE"/>
4236 <s c="SO_DEBUG"/>
4237 <s c="SO_REUSEADDR"/>
4238 <s c="SO_KEEPALIVE"/>
4239 <s c="SO_DONTROUTE"/>
4240 <s c="SO_LINGER"/>
4241 <s c="SO_BROADCAST"/>
4242 <s c="SO_OOBINLINE"/>
4243 <s c="SO_SNDBUF"/>
4244 <s c="SO_RCVBUF"/>
4245 <s c="SO_SNDLOWAT"/>
4246 <s c="SO_RCVLOWAT"/>
4247 <s c="SO_SNDTIMEO"/>
4248 <s c="SO_RCVTIMEO"/>
4249 <s c="SO_TYPE"/>
4250 <s c="SO_ERROR"/>
4251 <s c="SOL_SOCKET"/>
4252 <s c="PHP_NORMAL_READ"/>
4253 <s c="PHP_BINARY_READ"/>
4254 <s c="SOL_TCP"/>
4255 <s c="SOL_UDP"/>
4256 <s c="RIT_LEAVES_ONLY"/>
4257 <s c="RIT_SELF_FIRST"/>
4258 <s c="RIT_CHILD_FIRST"/>
4259 <s c="CIT_CALL_TOSTRING"/>
4260 <s c="CIT_CATCH_GET_CHILD"/>
4261 <s c="SQLITE_ASSOC">Columns are returned into the array having the fieldname as the array
4262       index.</s>
4263 <s c="SQLITE_BOTH">Columns are returned into the array having both a numerical index
4264        and the fieldname as the array index.</s>
4265 <s c="SQLITE_NUM">Columns are returned into the array having a numerical index to the
4266        fields. This index starts with 0, the first field in the result.</s>
4267 <s c="STREAM_FILTER_READ">Used with stream_filter_append and
4268        stream_filter_prepend to indicate
4269        that the specified filter should only be applied when
4270        reading</s>
4271 <s c="STREAM_FILTER_WRITE">Used with stream_filter_append and
4272        stream_filter_prepend to indicate
4273        that the specified filter should only be applied when
4274        writing</s>
4275 <s c="STREAM_FILTER_ALL">This constant is equivalent to
4276        STREAM_FILTER_READ |
4277        STREAM_FILTER_WRITE</s>
4278 <s c="PSFS_PASS_ON">Return Code indicating that the
4279        userspace filter returned buckets in $out.</s>
4280 <s c="PSFS_FEED_ME">Return Code indicating that the
4281        userspace filter did not return buckets in $out
4282        (i.e. No data available).</s>
4283 <s c="PSFS_ERR_FATAL">Return Code indicating that the
4284        userspace filter encountered an unrecoverable error
4285        (i.e. Invalid data received).</s>
4286 <s c="STREAM_USE_PATH">Flag indicating if the stream
4287        used the include path.</s>
4288 <s c="STREAM_REPORT_ERRORS">Flag indicating if the wrapper
4289        is responsible for raising errors using trigger_error
4290        during opening of the stream.  If this flag is not set, you
4291        should not raise any errors.</s>
4292 <s c="STREAM_CLIENT_ASYNC_CONNECT">Open client socket asynchronously.  Used with
4293        stream_socket_client.</s>
4294 <s c="STREAM_CLIENT_PERSISTENT">Client socket opened with stream_socket_client
4295        should remain persistent between page loads.</s>
4296 <s c="STREAM_SERVER_BIND">Tells a stream created with stream_socket_server
4297        to bind to the specified target.  Server sockets should always include this flag.</s>
4298 <s c="STREAM_SERVER_LISTEN">Tells a stream created with stream_socket_server
4299        and bound using the STREAM_SERVER_BIND flag to start
4300        listening on the socket.  Server sockets should always include this flag.</s>
4301 <s c="STREAM_NOTIFY_RESOLVE">A remote address required for this stream has been resolved, or the resolution
4302        failed.  See severity for an indication of which happened.</s>
4303 <s c="STREAM_NOTIFY_CONNECT">A connection with an external resource has been established.</s>
4304 <s c="STREAM_NOTIFY_AUTH_REQUIRED">Additional authorization is required to access the specified resource.
4305        Typical issued with severity level of
4306        STREAM_NOTIFY_SEVERITY_ERR.</s>
4307 <s c="STREAM_NOTIFY_MIME_TYPE_IS">The mime-type of resource has been identified,
4308        refer to message for a description of the
4309        discovered type.</s>
4310 <s c="STREAM_NOTIFY_FILE_SIZE_IS">The size of the resource has been discovered.</s>
4311 <s c="STREAM_NOTIFY_REDIRECTED">The external resource has redirected the stream to an alternate
4312        location.  Refer to message.</s>
4313 <s c="STREAM_NOTIFY_PROGRESS">Indicates current progress of the stream transfer in
4314        bytes_transferred and possibly
4315        bytes_max as well.</s>
4316 <s c="STREAM_NOTIFY_COMPLETED">There is no more data available on the stream.</s>
4317 <s c="STREAM_NOTIFY_FAILURE">A generic error occurred on the stream, consult
4318        message and message_code
4319        for details.</s>
4320 <s c="STREAM_NOTIFY_AUTH_RESULT">Authorization has been completed (with or without success).</s>
4321 <s c="STREAM_NOTIFY_SEVERITY_INFO">Normal, non-error related, notification.</s>
4322 <s c="STREAM_NOTIFY_SEVERITY_WARN">Non critical error condition.  Processing may continue.</s>
4323 <s c="STREAM_NOTIFY_SEVERITY_ERR">A critical error occurred.  Processing cannot continue.</s>
4324 <s c="CRYPT_SALT_LENGTH"/>
4325 <s c="CRYPT_STD_DES"/>
4326 <s c="CRYPT_EXT_DES"/>
4327 <s c="CRYPT_MD5"/>
4328 <s c="CRYPT_BLOWFISH"/>
4329 <s c="HTML_SPECIALCHARS"/>
4330 <s c="HTML_ENTITIES"/>
4331 <s c="ENT_COMPAT"/>
4332 <s c="ENT_QUOTES"/>
4333 <s c="ENT_NOQUOTES"/>
4334 <s c="CHAR_MAX"/>
4335 <s c="LC_CTYPE"/>
4336 <s c="LC_NUMERIC"/>
4337 <s c="LC_TIME"/>
4338 <s c="LC_COLLATE"/>
4339 <s c="LC_MONETARY"/>
4340 <s c="LC_ALL"/>
4341 <s c="LC_MESSAGES"/>
4342 <s c="STR_PAD_LEFT"/>
4343 <s c="STR_PAD_RIGHT"/>
4344 <s c="STR_PAD_BOTH"/>
4345 <s c="MOD_COLOR"/>
4346 <s c="MOD_MATRIX"/>
4347 <s c="TYPE_PUSHBUTTON"/>
4348 <s c="TYPE_MENUBUTTON"/>
4349 <s c="BSHitTest"/>
4350 <s c="BSDown"/>
4351 <s c="BSOver"/>
4352 <s c="BSUp"/>
4353 <s c="OverDowntoIdle"/>
4354 <s c="IdletoOverDown"/>
4355 <s c="OutDowntoIdle"/>
4356 <s c="OutDowntoOverDown"/>
4357 <s c="OverDowntoOutDown"/>
4358 <s c="OverUptoOverDown"/>
4359 <s c="OverUptoIdle"/>
4360 <s c="IdletoOverUp"/>
4361 <s c="ButtonEnter"/>
4362 <s c="ButtonExit"/>
4363 <s c="MenuEnter"/>
4364 <s c="MenuExit"/>
4365 <s c="TIDY_TAG_UNKNOWN"/>
4366 <s c="TIDY_TAG_A"/>
4367 <s c="TIDY_TAG_ABBR"/>
4368 <s c="TIDY_TAG_ACRONYM"/>
4369 <s c="TIDY_TAG_ALIGN"/>
4370 <s c="TIDY_TAG_APPLET"/>
4371 <s c="TIDY_TAG_AREA"/>
4372 <s c="TIDY_TAG_B"/>
4373 <s c="TIDY_TAG_BASE"/>
4374 <s c="TIDY_TAG_BASEFONT"/>
4375 <s c="TIDY_TAG_BDO"/>
4376 <s c="TIDY_TAG_BGSOUND"/>
4377 <s c="TIDY_TAG_BIG"/>
4378 <s c="TIDY_TAG_BLINK"/>
4379 <s c="TIDY_TAG_BLOCKQUOTE"/>
4380 <s c="TIDY_TAG_BODY"/>
4381 <s c="TIDY_TAG_BR"/>
4382 <s c="TIDY_TAG_BUTTON"/>
4383 <s c="TIDY_TAG_CAPTION"/>
4384 <s c="TIDY_TAG_CENTER"/>
4385 <s c="TIDY_TAG_CITE"/>
4386 <s c="TIDY_TAG_CODE"/>
4387 <s c="TIDY_TAG_COL"/>
4388 <s c="TIDY_TAG_COLGROUP"/>
4389 <s c="TIDY_TAG_COMMENT"/>
4390 <s c="TIDY_TAG_DD"/>
4391 <s c="TIDY_TAG_DEL"/>
4392 <s c="TIDY_TAG_DFN"/>
4393 <s c="TIDY_TAG_DIR"/>
4394 <s c="TIDY_TAG_DIV"/>
4395 <s c="TIDY_TAG_DL"/>
4396 <s c="TIDY_TAG_DT"/>
4397 <s c="TIDY_TAG_EM"/>
4398 <s c="TIDY_TAG_EMBED"/>
4399 <s c="TIDY_TAG_FIELDSET"/>
4400 <s c="TIDY_TAG_FONT"/>
4401 <s c="TIDY_TAG_FORM"/>
4402 <s c="TIDY_TAG_FRAME"/>
4403 <s c="TIDY_TAG_FRAMESET"/>
4404 <s c="TIDY_TAG_H1"/>
4405 <s c="TIDY_TAG_H2"/>
4406 <s c="TIDY_TAG_H3"/>
4407 <s c="TIDY_TAG_H4"/>
4408 <s c="TIDY_TAG_H5"/>
4409 <s c="TIDY_TAG_6"/>
4410 <s c="TIDY_TAG_HEAD"/>
4411 <s c="TIDY_TAG_HR"/>
4412 <s c="TIDY_TAG_HTML"/>
4413 <s c="TIDY_TAG_I"/>
4414 <s c="TIDY_TAG_IFRAME"/>
4415 <s c="TIDY_TAG_ILAYER"/>
4416 <s c="TIDY_TAG_IMG"/>
4417 <s c="TIDY_TAG_INPUT"/>
4418 <s c="TIDY_TAG_INS"/>
4419 <s c="TIDY_TAG_ISINDEX"/>
4420 <s c="TIDY_TAG_KBD"/>
4421 <s c="TIDY_TAG_KEYGEN"/>
4422 <s c="TIDY_TAG_LABEL"/>
4423 <s c="TIDY_TAG_LAYER"/>
4424 <s c="TIDY_TAG_LEGEND"/>
4425 <s c="TIDY_TAG_LI"/>
4426 <s c="TIDY_TAG_LINK"/>
4427 <s c="TIDY_TAG_LISTING"/>
4428 <s c="TIDY_TAG_MAP"/>
4429 <s c="TIDY_TAG_MARQUEE"/>
4430 <s c="TIDY_TAG_MENU"/>
4431 <s c="TIDY_TAG_META"/>
4432 <s c="TIDY_TAG_MULTICOL"/>
4433 <s c="TIDY_TAG_NOBR"/>
4434 <s c="TIDY_TAG_NOEMBED"/>
4435 <s c="TIDY_TAG_NOFRAMES"/>
4436 <s c="TIDY_TAG_NOLAYER"/>
4437 <s c="TIDY_TAG_NOSAFE"/>
4438 <s c="TIDY_TAG_NOSCRIPT"/>
4439 <s c="TIDY_TAG_OBJECT"/>
4440 <s c="TIDY_TAG_OL"/>
4441 <s c="TIDY_TAG_OPTGROUP"/>
4442 <s c="TIDY_TAG_OPTION"/>
4443 <s c="TIDY_TAG_P"/>
4444 <s c="TIDY_TAG_PARAM"/>
4445 <s c="TIDY_TAG_PLAINTEXT"/>
4446 <s c="TIDY_TAG_PRE"/>
4447 <s c="TIDY_TAG_Q"/>
4448 <s c="TIDY_TAG_RP"/>
4449 <s c="TIDY_TAG_RT"/>
4450 <s c="TIDY_TAG_RTC"/>
4451 <s c="TIDY_TAG_RUBY"/>
4452 <s c="TIDY_TAG_S"/>
4453 <s c="TIDY_TAG_SAMP"/>
4454 <s c="TIDY_TAG_SCRIPT"/>
4455 <s c="TIDY_TAG_SELECT"/>
4456 <s c="TIDY_TAG_SERVER"/>
4457 <s c="TIDY_TAG_SERVLET"/>
4458 <s c="TIDY_TAG_SMALL"/>
4459 <s c="TIDY_TAG_SPACER"/>
4460 <s c="TIDY_TAG_SPAN"/>
4461 <s c="TIDY_TAG_STRIKE"/>
4462 <s c="TIDY_TAG_STRONG"/>
4463 <s c="TIDY_TAG_STYLE"/>
4464 <s c="TIDY_TAG_SUB"/>
4465 <s c="TIDY_TAG_TABLE"/>
4466 <s c="TIDY_TAG_TBODY"/>
4467 <s c="TIDY_TAG_TD"/>
4468 <s c="TIDY_TAG_TEXTAREA"/>
4469 <s c="TIDY_TAG_TFOOT"/>
4470 <s c="TIDY_TAG_TH"/>
4471 <s c="TIDY_TAG_THEAD"/>
4472 <s c="TIDY_TAG_TITLE"/>
4473 <s c="TIDY_TAG_TR"/>
4474 <s c="TIDY_TAG_TR"/>
4475 <s c="TIDY_TAG_TT"/>
4476 <s c="TIDY_TAG_U"/>
4477 <s c="TIDY_TAG_UL"/>
4478 <s c="TIDY_TAG_VAR"/>
4479 <s c="TIDY_TAG_WBR"/>
4480 <s c="TIDY_TAG_XMP"/>
4481 <s c="TIDY_ATTR_UNKNOWN"/>
4482 <s c="TIDY_ATTR_ABBR"/>
4483 <s c="TIDY_ATTR_ACCEPT"/>
4484 <s c="TIDY_ATTR_ACCEPT_CHARSET"/>
4485 <s c="TIDY_ATTR_ACCESSKEY"/>
4486 <s c="TIDY_ATTR_ACTION"/>
4487 <s c="TIDY_ATTR_ADD_DATE"/>
4488 <s c="TIDY_ATTR_ALIGN"/>
4489 <s c="TIDY_ATTR_ALINK"/>
4490 <s c="TIDY_ATTR_ALT"/>
4491 <s c="TIDY_ATTR_ARCHIVE"/>
4492 <s c="TIDY_ATTR_AXIS"/>
4493 <s c="TIDY_ATTR_BACKGROUND"/>
4494 <s c="TIDY_ATTR_BGCOLOR"/>
4495 <s c="TIDY_ATTR_BGPROPERTIES"/>
4496 <s c="TIDY_ATTR_BORDER"/>
4497 <s c="TIDY_ATTR_BORDERCOLOR"/>
4498 <s c="TIDY_ATTR_BOTTOMMARGIN"/>
4499 <s c="TIDY_ATTR_CELLPADDING"/>
4500 <s c="TIDY_ATTR_CELLSPACING"/>
4501 <s c="TIDY_ATTR_CHAR"/>
4502 <s c="TIDY_ATTR_CHAROFF"/>
4503 <s c="TIDY_ATTR_CHARSET"/>
4504 <s c="TIDY_ATTR_CHECKED"/>
4505 <s c="TIDY_ATTR_CITE"/>
4506 <s c="TIDY_ATTR_CLASS"/>
4507 <s c="TIDY_ATTR_CLASSID"/>
4508 <s c="TIDY_ATTR_CLEAR"/>
4509 <s c="TIDY_ATTR_CODE"/>
4510 <s c="TIDY_ATTR_CODEBASE"/>
4511 <s c="TIDY_ATTR_CODETYPE"/>
4512 <s c="TIDY_ATTR_COLOR"/>
4513 <s c="TIDY_ATTR_COLS"/>
4514 <s c="TIDY_ATTR_COLSPAN"/>
4515 <s c="TIDY_ATTR_COMPACT"/>
4516 <s c="TIDY_ATTR_CONTENT"/>
4517 <s c="TIDY_ATTR_COORDS"/>
4518 <s c="TIDY_ATTR_DATA"/>
4519 <s c="TIDY_ATTR_DATAFLD"/>
4520 <s c="TIDY_ATTR_DATAPAGESIZE"/>
4521 <s c="TIDY_ATTR_DATASRC"/>
4522 <s c="TIDY_ATTR_DATETIME"/>
4523 <s c="TIDY_ATTR_DECLARE"/>
4524 <s c="TIDY_ATTR_DEFER"/>
4525 <s c="TIDY_ATTR_DIR"/>
4526 <s c="TIDY_ATTR_DISABLED"/>
4527 <s c="TIDY_ATTR_ENCODING"/>
4528 <s c="TIDY_ATTR_ENCTYPE"/>
4529 <s c="TIDY_ATTR_FACE"/>
4530 <s c="TIDY_ATTR_FOR"/>
4531 <s c="TIDY_ATTR_FRAME"/>
4532 <s c="TIDY_ATTR_FRAMEBORDER"/>
4533 <s c="TIDY_ATTR_FRAMESPACING"/>
4534 <s c="TIDY_ATTR_GRIDX"/>
4535 <s c="TIDY_ATTR_GRIDY"/>
4536 <s c="TIDY_ATTR_HEADERS"/>
4537 <s c="TIDY_ATTR_HEIGHT"/>
4538 <s c="TIDY_ATTR_HREF"/>
4539 <s c="TIDY_ATTR_HREFLANG"/>
4540 <s c="TIDY_ATTR_HSPACE"/>
4541 <s c="TIDY_ATTR_HTTP_EQUIV"/>
4542 <s c="TIDY_ATTR_ID"/>
4543 <s c="TIDY_ATTR_ISMAP"/>
4544 <s c="TIDY_ATTR_LABEL"/>
4545 <s c="TIDY_ATTR_LANG"/>
4546 <s c="TIDY_ATTR_LANGUAGE"/>
4547 <s c="TIDY_ATTR_LAST_MODIFIED"/>
4548 <s c="TIDY_ATTR_LAST_VISIT"/>
4549 <s c="TIDY_ATTR_LEFTMARGIN"/>
4550 <s c="TIDY_ATTR_LINK"/>
4551 <s c="TIDY_ATTR_LONGDESC"/>
4552 <s c="TIDY_ATTR_LOWSRC"/>
4553 <s c="TIDY_ATTR_MARGINHEIGHT"/>
4554 <s c="TIDY_ATTR_MARGINWIDTH"/>
4555 <s c="TIDY_ATTR_MAXLENGTH"/>
4556 <s c="TIDY_ATTR_MEDIA"/>
4557 <s c="TIDY_ATTR_METHOD"/>
4558 <s c="TIDY_ATTR_MULTIPLE"/>
4559 <s c="TIDY_ATTR_NAME"/>
4560 <s c="TIDY_ATTR_NOHREF"/>
4561 <s c="TIDY_ATTR_NORESIZE"/>
4562 <s c="TIDY_ATTR_NOSHADE"/>
4563 <s c="TIDY_ATTR_NOWRAP"/>
4564 <s c="TIDY_ATTR_OBJECT"/>
4565 <s c="TIDY_ATTR_PROFILE"/>
4566 <s c="TIDY_ATTR_PROMPT"/>
4567 <s c="TIDY_ATTR_RBSPAN"/>
4568 <s c="TIDY_ATTR_READONLY"/>
4569 <s c="TIDY_ATTR_REL"/>
4570 <s c="TIDY_ATTR_REV"/>
4571 <s c="TIDY_ATTR_RIGHTMARGIN"/>
4572 <s c="TIDY_ATTR_ROWS"/>
4573 <s c="TIDY_ATTR_ROWSPAN"/>
4574 <s c="TIDY_ATTR_RULES"/>
4575 <s c="TIDY_ATTR_SCHEME"/>
4576 <s c="TIDY_ATTR_SCOPE"/>
4577 <s c="TIDY_ATTR_SCROLLING"/>
4578 <s c="TIDY_ATTR_SELECTED"/>
4579 <s c="TIDY_ATTR_SHAPE"/>
4580 <s c="TIDY_ATTR_SHOWGRID"/>
4581 <s c="TIDY_ATTR_SHOWGRIDX"/>
4582 <s c="TIDY_ATTR_SHOWGRIDY"/>
4583 <s c="TIDY_ATTR_SIZE"/>
4584 <s c="TIDY_ATTR_SPAN"/>
4585 <s c="TIDY_ATTR_SRC"/>
4586 <s c="TIDY_ATTR_STANDBY"/>
4587 <s c="TIDY_ATTR_START"/>
4588 <s c="TIDY_ATTR_STYLE"/>
4589 <s c="TIDY_ATTR_SUMMARY"/>
4590 <s c="TIDY_ATTR_TABINDEX"/>
4591 <s c="TIDY_ATTR_TARGET"/>
4592 <s c="TIDY_ATTR_TEXT"/>
4593 <s c="TIDY_ATTR_TITLE"/>
4594 <s c="TIDY_ATTR_TOPMARGIN"/>
4595 <s c="TIDY_ATTR_TYPE"/>
4596 <s c="TIDY_ATTR_USEMAP"/>
4597 <s c="TIDY_ATTR_VALIGN"/>
4598 <s c="TIDY_ATTR_VALUE"/>
4599 <s c="TIDY_ATTR_VALUETYPE"/>
4600 <s c="TIDY_ATTR_VERSION"/>
4601 <s c="TIDY_ATTR_VLINK"/>
4602 <s c="TIDY_ATTR_VSPACE"/>
4603 <s c="TIDY_ATTR_WIDTH"/>
4604 <s c="TIDY_ATTR_WRAP"/>
4605 <s c="TIDY_ATTR_XML_LANG"/>
4606 <s c="TIDY_ATTR_XML_SPACE"/>
4607 <s c="TIDY_ATTR_XMLNS"/>
4608 <s c="TIDY_NODETYPE_ROOT"/>
4609 <s c="TIDY_NODETYPE_DOCTYPE"/>
4610 <s c="TIDY_NODETYPE_COMMENT"/>
4611 <s c="TIDY_NODETYPE_PROCINS"/>
4612 <s c="TIDY_NODETYPE_TEXT"/>
4613 <s c="TIDY_NODETYPE_START"/>
4614 <s c="TIDY_NODETYPE_END"/>
4615 <s c="TIDY_NODETYPE_STARTEND"/>
4616 <s c="TIDY_NODETYPE_CDATA"/>
4617 <s c="TIDY_NODETYPE_SECTION"/>
4618 <s c="TIDY_NODETYPE_ASP"/>
4619 <s c="TIDY_NODETYPE_JSTE"/>
4620 <s c="TIDY_NODETYPE_PHP"/>
4621 <s c="TIDY_NODETYPE_XMLDECL"/>
4622 <s c="T_INCLUDE"/>
4623 <s c="T_INCLUDE_ONCE"/>
4624 <s c="T_EVAL"/>
4625 <s c="T_REQUIRE"/>
4626 <s c="T_REQUIRE_ONCE"/>
4627 <s c="T_LOGICAL_OR"/>
4628 <s c="T_LOGICAL_XOR"/>
4629 <s c="T_LOGICAL_AND"/>
4630 <s c="T_PRINT"/>
4631 <s c="T_PLUS_EQUAL"/>
4632 <s c="T_MINUS_EQUAL"/>
4633 <s c="T_MUL_EQUAL"/>
4634 <s c="T_DIV_EQUAL"/>
4635 <s c="T_CONCAT_EQUAL"/>
4636 <s c="T_MOD_EQUAL"/>
4637 <s c="T_AND_EQUAL"/>
4638 <s c="T_OR_EQUAL"/>
4639 <s c="T_XOR_EQUAL"/>
4640 <s c="T_SL_EQUAL"/>
4641 <s c="T_SR_EQUAL"/>
4642 <s c="T_BOOLEAN_OR"/>
4643 <s c="T_BOOLEAN_AND"/>
4644 <s c="T_IS_EQUAL"/>
4645 <s c="T_IS_NOT_EQUAL"/>
4646 <s c="T_IS_IDENTICAL"/>
4647 <s c="T_IS_NOT_IDENTICAL"/>
4648 <s c="T_IS_SMALLER_OR_EQUAL"/>
4649 <s c="T_IS_GREATER_OR_EQUAL"/>
4650 <s c="T_SL"/>
4651 <s c="T_SR"/>
4652 <s c="T_INC"/>
4653 <s c="T_DEC"/>
4654 <s c="T_INT_CAST"/>
4655 <s c="T_DOUBLE_CAST"/>
4656 <s c="T_STRING_CAST"/>
4657 <s c="T_ARRAY_CAST"/>
4658 <s c="T_OBJECT_CAST"/>
4659 <s c="T_BOOL_CAST"/>
4660 <s c="T_UNSET_CAST"/>
4661 <s c="T_NEW"/>
4662 <s c="T_EXIT"/>
4663 <s c="T_IF"/>
4664 <s c="T_ELSEIF"/>
4665 <s c="T_ELSE"/>
4666 <s c="T_ENDIF"/>
4667 <s c="T_LNUMBER"/>
4668 <s c="T_DNUMBER"/>
4669 <s c="T_STRING"/>
4670 <s c="T_STRING_VARNAME"/>
4671 <s c="T_VARIABLE"/>
4672 <s c="T_NUM_STRING"/>
4673 <s c="T_INLINE_HTML"/>
4674 <s c="T_CHARACTER"/>
4675 <s c="T_BAD_CHARACTER"/>
4676 <s c="T_ENCAPSED_AND_WHITESPACE"/>
4677 <s c="T_CONSTANT_ENCAPSED_STRING"/>
4678 <s c="T_ECHO"/>
4679 <s c="T_DO"/>
4680 <s c="T_WHILE"/>
4681 <s c="T_ENDWHILE"/>
4682 <s c="T_FOR"/>
4683 <s c="T_ENDFOR"/>
4684 <s c="T_FOREACH"/>
4685 <s c="T_ENDFOREACH"/>
4686 <s c="T_DECLARE"/>
4687 <s c="T_ENDDECLARE"/>
4688 <s c="T_AS"/>
4689 <s c="T_SWITCH"/>
4690 <s c="T_ENDSWITCH"/>
4691 <s c="T_CASE"/>
4692 <s c="T_DEFAULT"/>
4693 <s c="T_BREAK"/>
4694 <s c="T_CONTINUE"/>
4695 <s c="T_OLD_FUNCTION"/>
4696 <s c="T_FUNCTION"/>
4697 <s c="T_CONST"/>
4698 <s c="T_RETURN"/>
4699 <s c="T_USE"/>
4700 <s c="T_GLOBAL"/>
4701 <s c="T_STATIC"/>
4702 <s c="T_VAR"/>
4703 <s c="T_UNSET"/>
4704 <s c="T_ISSET"/>
4705 <s c="T_EMPTY"/>
4706 <s c="T_CLASS"/>
4707 <s c="T_EXTENDS"/>
4708 <s c="T_OBJECT_OPERATOR"/>
4709 <s c="T_DOUBLE_ARROW"/>
4710 <s c="T_LIST"/>
4711 <s c="T_ARRAY"/>
4712 <s c="T_LINE"/>
4713 <s c="T_FILE"/>
4714 <s c="T_COMMENT"/>
4715 <s c="T_ML_COMMENT"/>
4716 <s c="T_DOC_COMMENT"/>
4717 <s c="T_OPEN_TAG"/>
4718 <s c="T_OPEN_TAG_WITH_ECHO"/>
4719 <s c="T_CLOSE_TAG"/>
4720 <s c="T_WHITESPACE"/>
4721 <s c="T_START_HEREDOC"/>
4722 <s c="T_END_HEREDOC"/>
4723 <s c="T_DOLLAR_OPEN_CURLY_BRACES"/>
4724 <s c="T_CURLY_OPEN"/>
4725 <s c="T_PAAMAYIM_NEKUDOTAYIM"/>
4726 <s c="T_DOUBLE_COLON"/>
4727 <s c="ODBC_TYPE"/>
4728 <s c="ODBC_BINMODE_PASSTHRU"/>
4729 <s c="ODBC_BINMODE_RETURN"/>
4730 <s c="ODBC_BINMODE_CONVERT"/>
4731 <s c="SQL_ODBC_CURSORS"/>
4732 <s c="SQL_CUR_USE_DRIVER"/>
4733 <s c="SQL_CUR_USE_IF_NEEDED"/>
4734 <s c="SQL_CUR_USE_ODBC"/>
4735 <s c="SQL_CONCURRENCY"/>
4736 <s c="SQL_CONCUR_READ_ONLY"/>
4737 <s c="SQL_CONCUR_LOCK"/>
4738 <s c="SQL_CONCUR_ROWVER"/>
4739 <s c="SQL_CONCUR_VALUES"/>
4740 <s c="SQL_CURSOR_TYPE"/>
4741 <s c="SQL_CURSOR_FORWARD_ONLY"/>
4742 <s c="SQL_CURSOR_KEYSET_DRIVEN"/>
4743 <s c="SQL_CURSOR_DYNAMIC"/>
4744 <s c="SQL_CURSOR_STATIC"/>
4745 <s c="SQL_KEYSET_SIZE"/>
4746 <s c="SQL_CHAR"/>
4747 <s c="SQL_VARCHAR"/>
4748 <s c="SQL_LONGVARCHAR"/>
4749 <s c="SQL_DECIMAL"/>
4750 <s c="SQL_NUMERIC"/>
4751 <s c="SQL_BIT"/>
4752 <s c="SQL_TINYINT"/>
4753 <s c="SQL_SMALLINT"/>
4754 <s c="SQL_INTEGER"/>
4755 <s c="SQL_BIGINT"/>
4756 <s c="SQL_REAL"/>
4757 <s c="SQL_FLOAT"/>
4758 <s c="SQL_DOUBLE"/>
4759 <s c="SQL_BINARY"/>
4760 <s c="SQL_VARBINARY"/>
4761 <s c="SQL_LONGVARBINARY"/>
4762 <s c="SQL_DATE"/>
4763 <s c="SQL_TIME"/>
4764 <s c="SQL_TIMESTAMP"/>
4765 <s c="SQL_TYPE_DATE"/>
4766 <s c="SQL_TYPE_TIME"/>
4767 <s c="SQL_TYPE_TIMESTAMP"/>
4768 <s c="SQL_BEST_ROWID"/>
4769 <s c="SQL_ROWVER"/>
4770 <s c="SQL_SCOPE_CURROW"/>
4771 <s c="SQL_SCOPE_TRANSACTION"/>
4772 <s c="SQL_SCOPE_SESSION"/>
4773 <s c="SQL_NO_NULLS"/>
4774 <s c="SQL_NULLABLE"/>
4775 <s c="SQL_INDEX_UNIQUE"/>
4776 <s c="SQL_INDEX_ALL"/>
4777 <s c="SQL_ENSURE"/>
4778 <s c="SQL_QUICK"/>
4779 <s c="DC_MICROSOFT"/>
4780 <s c="DC_BORLAND"/>
4781 <s c="DC_CALL_CDECL"/>
4782 <s c="DC_CALL_STD"/>
4783 <s c="DC_RETVAL_MATH4"/>
4784 <s c="DC_RETVAL_MATH8"/>
4785 <s c="DC_CALL_STD_BO"/>
4786 <s c="DC_CALL_STD_MS"/>
4787 <s c="DC_CALL_STD_M8"/>
4788 <s c="DC_FLAG_ARGPTR"/>
4789 <s c="XDIFF_PATCH_NORMAL"/>
4790 <s c="XDIFF_PATCH_REVERSE"/>
4791 <s c="XML_ERROR_NONE"/>
4792 <s c="XML_ERROR_NO_MEMORY"/>
4793 <s c="XML_ERROR_SYNTAX"/>
4794 <s c="XML_ERROR_NO_ELEMENTS"/>
4795 <s c="XML_ERROR_INVALID_TOKEN"/>
4796 <s c="XML_ERROR_UNCLOSED_TOKEN"/>
4797 <s c="XML_ERROR_PARTIAL_CHAR"/>
4798 <s c="XML_ERROR_TAG_MISMATCH"/>
4799 <s c="XML_ERROR_DUPLICATE_ATTRIBUTE"/>
4800 <s c="XML_ERROR_JUNK_AFTER_DOC_ELEMENT"/>
4801 <s c="XML_ERROR_PARAM_ENTITY_REF"/>
4802 <s c="XML_ERROR_UNDEFINED_ENTITY"/>
4803 <s c="XML_ERROR_RECURSIVE_ENTITY_REF"/>
4804 <s c="XML_ERROR_ASYNC_ENTITY"/>
4805 <s c="XML_ERROR_BAD_CHAR_REF"/>
4806 <s c="XML_ERROR_BINARY_ENTITY_REF"/>
4807 <s c="XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF"/>
4808 <s c="XML_ERROR_MISPLACED_XML_PI"/>
4809 <s c="XML_ERROR_UNKNOWN_ENCODING"/>
4810 <s c="XML_ERROR_INCORRECT_ENCODING"/>
4811 <s c="XML_ERROR_UNCLOSED_CDATA_SECTION"/>
4812 <s c="XML_ERROR_EXTERNAL_ENTITY_HANDLING"/>
4813 <s c="XML_OPTION_CASE_FOLDING"/>
4814 <s c="XML_OPTION_TARGET_ENCODING"/>
4815 <s c="XML_OPTION_SKIP_TAGSTART"/>
4816 <s c="XML_OPTION_SKIP_WHITE"/>
4817 <s c="XSLT_OPT_SILENT"/>
4818 <s c="XSLT_SABOPT_PARSE_PUBLIC_ENTITIES"/>
4819 <s c="XSLT_SABOPT_DISABLE_ADDING_META"/>
4820 <s c="XSLT_SABOPT_DISABLE_STRIPPING"/>
4821 <s c="XSLT_SABOPT_IGNORE_DOC_NOT_FOUND"/>
4822 <s c="XSLT_ERR_UNSUPPORTED_SCHEME"/>
4823 <s c="FORCE_GZIP"/>
4824 <s c="FORCE_DEFLATE"/>
4825
4826 </phpstandardsyntax>