fa5fa0aed24d8be5b87a0e80bf10c78797b6c945
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / phpsyntax.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpstandardsyntax>
4 ===================================================        
5 *Below this are the various PHP-specific functions *
6 ===================================================     
7         <phpsyntax function="COM_invoke" usage="mixed COM_invoke(int module, string handler_name [, mixed arg [, mixed ...]])">Invokes a COM module</phpsyntax>
8         <phpsyntax function="COM_load" usage="int com_load(string module_name [, string remote_host [, int codepage [, string typelib]]])">Loads a COM module</phpsyntax>
9         <phpsyntax function="abs" usage="int abs(int number)">Return the absolute value of the number</phpsyntax>
10 <phpsyntax function="accept_connect"></phpsyntax>
11         <phpsyntax function="acos" usage="float acos(float arg)">Return the arc cosine of the arg in radians</phpsyntax>
12         <phpsyntax function="acosh" usage="float acosh(float arg)">Returns the inverse hyperbolic cosine of arg</phpsyntax>
13         <phpsyntax function="add"></phpsyntax>
14         <phpsyntax function="add_iovec"></phpsyntax>
15         <phpsyntax function="addaction"></phpsyntax>
16         <phpsyntax function="addcolor"></phpsyntax>
17         <phpsyntax function="addcslashes" usage="string addcslashes (string str, string charlist)">
18 Returns a string with backslashes before characters that are listed in charlist parameter. 
19 It escapes \n, \r etc. in C-like style, characters with ASCII code lower than 32 and 
20 higher than 126 are converted to octal representation.</phpsyntax>
21         <phpsyntax function="addentry"></phpsyntax>
22         <phpsyntax function="addfill"></phpsyntax>
23         <phpsyntax function="addshape"></phpsyntax> 
24         <phpsyntax function="addslashes" usage="string addslashes (string str)">
25 Returns a string with backslashes before characters that need to be quoted in database queries etc. 
26 These characters are single quote ('), double quote (&quot;), backslash (\) and NUL (the NULL byte).</phpsyntax>
27         <phpsyntax function="addstring"></phpsyntax>
28         <phpsyntax function="aggregate" usage="void aggregate ( object object, string class_name)">
29 Aggregates methods and properties defined in a class to an existing object. 
30 Methods and properties with names starting with an underscore character (_) are considered private 
31 to the aggregated class and are not used, constructors are also excluded from the aggregation procedure.</phpsyntax>
32         <phpsyntax function="align"></phpsyntax>
33         <phpsyntax function="apache_child_terminate" usage="bool apache_child_terminate ( void)">
34 apache_child_terminate() will register the Apache process executing the current PHP request for termination 
35 once execution of PHP code it is completed. It may be used to terminate a process after a script with 
36 high memory consumption has been run as memory will usually only be freed internally but not given 
37 back to the operating system.
38         </phpsyntax>
39         <phpsyntax function="apache_lookup_uri" usage="object apache_lookup_uri ( string filename)">
40 This performs a partial request for a URI. It goes just far enough to obtain all the important information 
41 about the given resource and returns this information in a class.
42         </phpsyntax>
43         <phpsyntax function="apache_note" usage="string apache_note ( string note_name [, string note_value])">apache_note() is an Apache-specific function which gets and sets values in a request's notes table. If called with one argument, it returns the current value of note note_name. If called with two arguments, it sets the value of note note_name to note_value and returns the previous value of note note_name.</phpsyntax>
44         <phpsyntax function="apache_sub_req"></phpsyntax>
45         <phpsyntax function="array" usage="array array ( [mixed ...])">
46 Create an array.
47 Returns an array of the parameters. The parameters can be given an index with the =&gt; operator. 
48 Note: array() is a language construct used to represent literal arrays, and not a regular function. 
49 Syntax &quot;index =&gt; values&quot;, separated by commas, define index and values. index may be of type string or numeric. 
50 When index is omitted, a integer index is automatically generated, starting at 0. 
51 If index is an integer, next generated index will be the biggest integer index + 1. 
52 Note that when two identical index are defined, the last overwrite the first. 
53 </phpsyntax>
54         <phpsyntax function="array_change_key_case" usage="array array_change_key_case ( array input [, int case])">Returns an array with all string keys lowercased or uppercased</phpsyntax>
55         <phpsyntax function="array_chunk" usage="array array_chunk ( array input, int size [, bool preserve_keys])">Split an array into chunks</phpsyntax>
56         <phpsyntax function="array_count_values" usage="array array_count_values ( array input)">Counts all the values of an array</phpsyntax>
57         <phpsyntax function="array_diff" usage="array array_diff ( array array1, array array2 [, array ...])">Computes the difference of arrays</phpsyntax>
58         <phpsyntax function="array_diff_assoc" usage="array array_diff_assoc ( array array1, array array2 [, array ...])">Computes the difference of arrays with additional index check</phpsyntax>
59         <phpsyntax function="array_fill" usage="array array_fill ( int start_index, int num, mixed value)">Fill an array with values</phpsyntax>
60         <phpsyntax function="array_filter" usage="array array_filter ( array input [, callback function])">Filters elements of an array using a callback function </phpsyntax>
61         <phpsyntax function="array_flip" usage="array array_flip ( array trans)">Exchanges all keys with their associated values in an array</phpsyntax>
62         <phpsyntax function="array_intersect" usage="array array_intersect ( array array1, array array2 [, array ...])">Computes the intersection of arrays</phpsyntax>
63         <phpsyntax function="array_intersect_assoc" usage="array array_intersect_assoc ( array array1, array array2 [, array ...])">Computes the intersection of arrays with additional index check</phpsyntax>
64         <phpsyntax function="array_key_exists" usage="bool array_key_exists ( mixed key, array search)">Checks if the given key or index exists in the array</phpsyntax>
65         <phpsyntax function="array_keys" usage="array array_keys ( array input [, mixed search_value])">Return all the keys of an array</phpsyntax>
66         <phpsyntax function="array_map" usage="array array_map ( callback function, array arr1 [, array arr2...])">Applies the callback to the elements of the given arrays </phpsyntax>
67         <phpsyntax function="array_merge" usage="array array_merge ( array array1, array array2 [, array ...])">Merge two or more arrays</phpsyntax>
68         <phpsyntax function="array_merge_recursive" usage="array array_merge_recursive ( array array1, array array2 [, array ...])">Merge two or more arrays recursively</phpsyntax>
69         <phpsyntax function="array_multisort" usage="bool array_multisort ( array ar1 [, mixed arg [, mixed ... [, array ...]]])">Sort multiple or multi-dimensional arrays</phpsyntax>
70         <phpsyntax function="array_pad" usage="array array_pad ( array input, int pad_size, mixed pad_value)">Pad array to the specified length with a value</phpsyntax>
71         <phpsyntax function="array_pop" usage="mixed array_pop ( array array)">Pop the element off the end of array</phpsyntax>
72         <phpsyntax function="array_push" usage="int array_push ( array array, mixed var [, mixed ...])">Push one or more elements onto the end of array </phpsyntax>
73         <phpsyntax function="array_rand" usage="mixed array_rand ( array input [, int num_req])">Pick one or more random entries out of an array</phpsyntax>
74         <phpsyntax function="array_reduce" usage="mixed array_reduce ( array input, callback function [, int initial])">Iteratively reduce the array to a single value using a callback function </phpsyntax>
75         <phpsyntax function="array_reverse" usage="array array_reverse ( array array [, bool preserve_keys])">Return an array with elements in reverse order </phpsyntax>
76         <phpsyntax function="array_search" usage="mixed array_search ( mixed needle, array haystack [, bool strict])">Searches haystack for needle and returns the key if it is found in the array, FALSE otherwise.</phpsyntax>
77         <phpsyntax function="array_shift" usage="mixed array_shift ( array array)">Shift an element off the beginning of array</phpsyntax>
78         <phpsyntax function="array_slice" usage="array array_slice ( array array, int offset [, int length])">Extract a slice of the array</phpsyntax>
79         <phpsyntax function="array_splice" usage="array array_splice ( array input, int offset [, int length [, array replacement]])">Remove a portion of the array and replace it with something else </phpsyntax>
80         <phpsyntax function="array_sum" usage="mixed array_sum ( array array)">Calculate the sum of values in an array</phpsyntax>
81         <phpsyntax function="array_unique" usage="array array_unique ( array array)">Removes duplicate values from an array</phpsyntax>
82         <phpsyntax function="array_unshift" usage="int array_unshift ( array array, mixed var [, mixed ...])">Prepend one or more elements to the beginning of array </phpsyntax>
83         <phpsyntax function="array_values" usage="array array_values ( array input)">Return all the values of an array</phpsyntax>
84         <phpsyntax function="array_walk" usage="int array_walk ( array array, callback function [, mixed userdata])">Apply a user function to every member of an array </phpsyntax>
85         <phpsyntax function="arsort" usage="void arsort ( array array [, int sort_flags])">This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant.</phpsyntax>
86         <phpsyntax function="asin" usage="float asin ( float arg)">Returns the arc sine of arg in radians. asin() is the complementary function of sin(), which means that a==sin(asin(a)) for every value of a that is within asin() 's range.</phpsyntax>
87         <phpsyntax function="asort" usage="void asort ( array array [, int sort_flags])">This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant.</phpsyntax>
88         <phpsyntax function="aspell_check" usage="bool aspell_check ( int dictionary_link, string word)">aspell_check() checks the spelling of a word and returns TRUE if the spelling is correct, FALSE if not.</phpsyntax>
89         <phpsyntax function="aspell_check_raw" usage="bool aspell_check_raw ( int dictionary_link, string word)">aspell_check_raw() checks the spelling of a word, without changing its case or trying to trim it in any way and returns TRUE if the spelling is correct, FALSE if not.</phpsyntax>
90         <phpsyntax function="aspell_new" usage="int aspell_new ( string master [, string personal])">aspell_new() opens up a new dictionary and returns the dictionary link identifier for use in other aspell functions. Returns FALSE on error.</phpsyntax>
91         <phpsyntax function="aspell_suggest" usage="array aspell_suggest ( int dictionary_link, string word)">aspell_suggest() returns an array of possible spellings for the given word.</phpsyntax>
92         <phpsyntax function="assert" usage="int assert ( mixed assertion)">
93 assert() will check the given assertion and take appropriate action if its result is FALSE .
94
95 If the assertion is given as a string it will be evaluated as PHP code by assert(). The advantages of a string assertion are less overhead when assertion checking is off and messages containing the assertion expression when an assertion fails. This means that if you pass a boolean condition as assertion this condition will not show up as parameter to the assertion function which you may have defined with the assert_options() function, the condition is converted to a string before calling that handler function, and the boolean FALSE is converted as the empty string.</phpsyntax>
96         <phpsyntax function="assert_options" usage="mixed assert_options ( int what [, mixed value])">Using assert_options() you may set the various assert() control options or just query their current settings.</phpsyntax>
97         <phpsyntax function="atan" usage="loat atan ( float arg)">Returns the arc tangent of arg in radians. atan() is the complementary function of tan(), which means that a==tan(atan(a)) for every value of a that is within atan()'s range.</phpsyntax>
98         <phpsyntax function="atan2" usage="float atan2 ( float y, float x)">
99 This function calculates the arc tangent of the two variables xand y. It is similar to calculating the arc tangent of y/x, except that the signs of both arguments are used to determine the quadrant of the result. 
100
101 The function returns the result in radians, which is between -PI and PI (inclusive)</phpsyntax>
102         <phpsyntax function="base64_decode" usage="string base64_decode ( string encoded_data)">base64_decode() decodes encoded_data and returns the original data. The returned data may be binary.</phpsyntax>
103         <phpsyntax function="base64_encode" usage="string base64_encode ( string data)">base64_encode returns data encoded with base64. This encoding is designed to make binary data survive transport through transport layers that are not 8-bit clean, such as mail bodies.</phpsyntax>
104         <phpsyntax function="base_convert" usage="string base_convert ( string number, int frombase, int tobase)">Returns a string containing number represented in base tobase. The base in which number is given is specified in frombase. Both frombase and tobase have to be between 2 and 36, inclusive. Digits in numbers with a base higher than 10 will be represented with the letters a-z, with a meaning 10, b meaning 11 and z meaning 35.</phpsyntax>
105         <phpsyntax function="basename" usage="string basename ( string path [, string suffix])">Given a string containing a path to a file, this function will return the base name of the file. If the filename ends in suffix this will also be cut off.</phpsyntax>
106         <phpsyntax function="bcadd" usage="string bcadd ( string left_operand, string right_operand [, int scale])">Adds the left_operand to the right_operand and returns the sum in a string. The optional scale parameter is used to set the number of digits after the decimal place in the result.</phpsyntax>
107         <phpsyntax function="bccomp" usage="int bccomp ( string left_operand, string right_operand [, int scale])">Compares the left_operand to the right_operand and returns the result as an integer. The optional scale parameter is used to set the number of digits after the decimal place which will be used in the comparison. The return value is 0 if the two operands are equal. If the left_operand is larger than the right_operand the return value is +1 and if the left_operand is less than the right_operand the return value is -1.</phpsyntax>
108         <phpsyntax function="bcdiv" usage="string bcdiv ( string left_operand, string right_operand [, int scale])">Divides the left_operand by the right_operand and returns the result. The optional scale sets the number of digits after the decimal place in the result. </phpsyntax>
109         <phpsyntax function="bcmod" usage="string bcmod ( string left_operand, string modulus)">Get the modulus of the left_operand using modulus.</phpsyntax>
110         <phpsyntax function="bcmul" usage="string bcmul ( string left_operand, string right_operand [, int scale])">Multiply the left_operand by the right_operand and returns the result. The optional scale sets the number of digits after the decimal place in the result.</phpsyntax>
111         <phpsyntax function="bcpow" usage="string bcpow ( string x, int y [, int scale])">Raise x to the power y. The optional scale can be used to set the number of digits after the decimal place in the result.</phpsyntax>
112         <phpsyntax function="bcscale" usage="string bcscale ( int scale)">This function sets the default scale parameter for all subsequent bc math functions that do not explicitly specify a scale parameter.</phpsyntax>
113         <phpsyntax function="bcsqrt" usage="string bcsqrt ( string operand [, int scale])">Return the square root of the operand. The optional scale parameter sets the number of digits after the decimal place in the result.</phpsyntax>
114         <phpsyntax function="bcsub" usage="string bcsub ( string left_operand, string right_operand [, int scale])">Subtracts the right_operand from the left_operand and returns the result in a string. The optional scale parameter is used to set the number of digits after the decimal place in the result.</phpsyntax>
115         <phpsyntax function="bin2hex" usage="string bin2hex ( string str)">Returns an ASCII string containing the hexadecimal representation of str. The conversion is done byte-wise with the high-nibble first.</phpsyntax>
116                 <phpsyntax function="bind"></phpsyntax>
117         <phpsyntax function="bindec"></phpsyntax>
118         <phpsyntax function="bindec" usage="int bindec ( string binary_string)">
119 Returns the decimal equivalent of the binary number represented by the binary_string argument. 
120
121 bindec() converts a binary number to an integer. The largest number that can be converted is 31 bits of 1's or 2147483647 in decimal.</phpsyntax>
122         <phpsyntax function="bindtextdomain" usage="string bindtextdomain ( string domain, string directory)">The bindtextdomain() function sets the path for a domain.</phpsyntax>
123         <phpsyntax function="bzclose" usage="int bzclose ( resource bz)">Closes the bzip2 file referenced by the pointer bz.</phpsyntax>
124         <phpsyntax function="bzcompress" usage="string bzcompress ( string source [, int blocksize [, int workfactor]])">
125 bzcompress() compresses the source string and returns it as bzip2 encoded data. 
126
127 The optional parameter blocksize specifies the blocksize used during compression and should be a number from 1 to 9 with 9 giving the best compression, but using more resources to do so. blocksize defaults to 4. 
128
129 The optional parameter workfactor controls how the compression phase behaves when presented with worst case, highly repetitive, input data. The value can be between 0 and 250 with 0 being a special case and 30 being the default value. Regardless of the workfactor, the generated output is the same.</phpsyntax>
130         <phpsyntax function="bzdecompress" usage="string bzdecompress ( string source [, int small])">bzdecompress() decompresses the source string containing bzip2 encoded data and returns it. If the optional parameter small is TRUE , an alternative decompression algorithm will be used which uses less memory (the maximum memory requirement drops to around 2300K) but works at roughly half the speed.</phpsyntax>
131         <phpsyntax function="bzerrno" usage="int bzerrno ( resource bz)">Returns the error number of any bzip2 error returned by the file pointer bz.</phpsyntax>
132         <phpsyntax function="bzerror" usage="array bzerror ( resource bz)">Returns the error number and error string, in an associative array, of any bzip2 error returned by the file pointer bz.</phpsyntax>
133         <phpsyntax function="bzerrstr" usage="string bzerrstr ( resource bz)">Returns the error string of any bzip2 error returned by the file pointer bz.</phpsyntax>
134         <phpsyntax function="bzflush" usage="int bzflush ( resource bz)">
135 Forces a write of all buffered bzip2 data for the file pointer bz.
136
137 Returns TRUE on success or FALSE on failure.</phpsyntax>
138         <phpsyntax function="bzopen" usage="resource bzopen ( string filename, string mode)">
139 Opens a bzip2 (.bz2) file for reading or writing. filename is the name of the file to open. mode is similar to the fopen() function (`r' for read, `w' for write, etc.). 
140
141 If the open fails, the function returns FALSE, otherwise it returns a pointer to the newly opened file.</phpsyntax>
142         <phpsyntax function="bzread" usage="string bzread ( resource bz [, int length])">bzread() reads up to length bytes from the bzip2 file pointer referenced by bz. Reading stops when length (uncompressed) bytes have been read or EOF is reached, whichever comes first. If the optional parameter length is not specified, bzread() will read 1024 (uncompressed) bytes at a time.</phpsyntax>
143         <phpsyntax function="bzwrite" usage="int bzwrite ( resource bz, string data [, int length])">bzwrite() writes the contents of the string data to the bzip2 file stream pointed to by bz. If the optional length argument is given, writing will stop after length (uncompressed) bytes have been written or the end of string is reached, whichever comes first.</phpsyntax>
144         <phpsyntax function="call_user_func"></phpsyntax>
145         <phpsyntax function="call_user_func_array"></phpsyntax>
146         <phpsyntax function="call_user_method"></phpsyntax>
147         <phpsyntax function="call_user_method_array"></phpsyntax>
148         <phpsyntax function="ccvs_add"></phpsyntax>
149         <phpsyntax function="ccvs_auth"></phpsyntax>
150         <phpsyntax function="ccvs_command"></phpsyntax>
151         <phpsyntax function="ccvs_count"></phpsyntax>
152         <phpsyntax function="ccvs_delete"></phpsyntax>
153         <phpsyntax function="ccvs_done"></phpsyntax>
154         <phpsyntax function="ccvs_init"></phpsyntax>
155         <phpsyntax function="ccvs_lookup"></phpsyntax>
156         <phpsyntax function="ccvs_new"></phpsyntax>
157         <phpsyntax function="ccvs_report"></phpsyntax>
158         <phpsyntax function="ccvs_return"></phpsyntax>
159         <phpsyntax function="ccvs_reverse"></phpsyntax>
160         <phpsyntax function="ccvs_sale"></phpsyntax>
161         <phpsyntax function="ccvs_status"></phpsyntax>
162         <phpsyntax function="ccvs_textvalue"></phpsyntax>
163         <phpsyntax function="ccvs_void"></phpsyntax>
164         <phpsyntax function="ceil"></phpsyntax>
165         <phpsyntax function="chdir"></phpsyntax>
166         <phpsyntax function="checkdate"></phpsyntax>
167         <phpsyntax function="checkdnsrr"></phpsyntax>
168         <phpsyntax function="checkdnsrr"></phpsyntax>
169         <phpsyntax function="chgrp"></phpsyntax>
170         <phpsyntax function="chmod"></phpsyntax>
171         <phpsyntax function="chop" usage="string chop( string str [, string charlist])">Strip whitespace from the end of a string. This function is an alias of rtrim().</phpsyntax>
172         <phpsyntax function="chown"></phpsyntax>
173         <phpsyntax function="chr" usage="string chr ( int ascii)">Return a specific character. Returns a one-character string containing the character specified by ascii.</phpsyntax>
174         <phpsyntax function="chroot"></phpsyntax>
175         <phpsyntax function="chroot"></phpsyntax>
176         <phpsyntax function="chunk_split" usage="string chunk_split ( string body [, int chunklen [, string end]])">Split a string into smaller chunks</phpsyntax>
177         <phpsyntax function="class_exists" usage="Checks if the class exists">bool class_exists(string classname)</phpsyntax>
178         <phpsyntax function="clearstatcache"></phpsyntax>
179         <phpsyntax function="close"></phpsyntax>
180         <phpsyntax function="closedir" usage="Close directory connection identified by the dir_handle">void closedir([resource dir_handle])</phpsyntax>
181         <phpsyntax function="closelog"></phpsyntax>
182         <phpsyntax function="com_get"></phpsyntax>
183         <phpsyntax function="com_propget"></phpsyntax>
184         <phpsyntax function="com_propput"></phpsyntax>
185         <phpsyntax function="com_propset"></phpsyntax>
186         <phpsyntax function="com_set"></phpsyntax>
187         <phpsyntax function="compact" usage="array compact ( mixed varname [, mixed ...])">Create array containing variables and their values </phpsyntax>
188         <phpsyntax function="confirm_cybermut_compiled"></phpsyntax>
189         <phpsyntax function="confirm_extname_compiled"></phpsyntax>
190         <phpsyntax function="connect"></phpsyntax>
191         <phpsyntax function="connection_aborted"></phpsyntax>
192         <phpsyntax function="connection_status"></phpsyntax>
193         <phpsyntax function="constant"></phpsyntax>
194         <phpsyntax function="convert_cyr_string" usage="string convert_cyr_string ( string str, string from, string to)">Convert from one Cyrillic character set to another </phpsyntax>
195         <phpsyntax function="copy"></phpsyntax>
196         <phpsyntax function="cos"></phpsyntax>
197         <phpsyntax function="count" usage="int count ( mixed var)">Count elements in a variable</phpsyntax>
198         <phpsyntax function="count_chars" usage="mixed count_chars ( string string [, int mode])">Return information about characters used in a string </phpsyntax>
199         <phpsyntax function="cpdf_add_annotation"></phpsyntax>
200         <phpsyntax function="cpdf_add_outline"></phpsyntax>
201         <phpsyntax function="cpdf_arc"></phpsyntax>
202         <phpsyntax function="cpdf_begin_text"></phpsyntax>
203         <phpsyntax function="cpdf_circle"></phpsyntax>
204         <phpsyntax function="cpdf_clip"></phpsyntax>
205         <phpsyntax function="cpdf_close"></phpsyntax>
206         <phpsyntax function="cpdf_closepath"></phpsyntax>
207         <phpsyntax function="cpdf_closepath_fill_stroke"></phpsyntax>
208         <phpsyntax function="cpdf_closepath_stroke"></phpsyntax>
209         <phpsyntax function="cpdf_continue_text"></phpsyntax>
210         <phpsyntax function="cpdf_curveto"></phpsyntax>
211         <phpsyntax function="cpdf_end_text"></phpsyntax>
212         <phpsyntax function="cpdf_fill"></phpsyntax>
213         <phpsyntax function="cpdf_fill_stroke"></phpsyntax>
214         <phpsyntax function="cpdf_finalize"></phpsyntax>
215         <phpsyntax function="cpdf_finalize_page"></phpsyntax>
216         <phpsyntax function="cpdf_global_set_document_limits"></phpsyntax>
217         <phpsyntax function="cpdf_import_jpeg"></phpsyntax>
218         <phpsyntax function="cpdf_lineto"></phpsyntax>
219         <phpsyntax function="cpdf_moveto"></phpsyntax>
220         <phpsyntax function="cpdf_newpath"></phpsyntax>
221         <phpsyntax function="cpdf_open"></phpsyntax>
222         <phpsyntax function="cpdf_output_buffer"></phpsyntax>
223         <phpsyntax function="cpdf_page_init"></phpsyntax>
224         <phpsyntax function="cpdf_place_inline_image"></phpsyntax>
225         <phpsyntax function="cpdf_rect"></phpsyntax>
226         <phpsyntax function="cpdf_restore"></phpsyntax>
227         <phpsyntax function="cpdf_rlineto"></phpsyntax>
228         <phpsyntax function="cpdf_rmoveto"></phpsyntax>
229         <phpsyntax function="cpdf_rotate"></phpsyntax>
230         <phpsyntax function="cpdf_rotate_text"></phpsyntax>
231         <phpsyntax function="cpdf_save"></phpsyntax>
232         <phpsyntax function="cpdf_save_to_file"></phpsyntax>
233         <phpsyntax function="cpdf_scale"></phpsyntax>
234         <phpsyntax function="cpdf_set_action_url"></phpsyntax>
235         <phpsyntax function="cpdf_set_char_spacing"></phpsyntax>
236         <phpsyntax function="cpdf_set_creator"></phpsyntax>
237         <phpsyntax function="cpdf_set_current_page"></phpsyntax>
238         <phpsyntax function="cpdf_set_font"></phpsyntax>
239         <phpsyntax function="cpdf_set_font_directories"></phpsyntax>
240         <phpsyntax function="cpdf_set_font_map_file"></phpsyntax>
241         <phpsyntax function="cpdf_set_horiz_scaling"></phpsyntax>
242         <phpsyntax function="cpdf_set_keywords"></phpsyntax>
243         <phpsyntax function="cpdf_set_leading"></phpsyntax>
244         <phpsyntax function="cpdf_set_page_animation"></phpsyntax>
245         <phpsyntax function="cpdf_set_subject"></phpsyntax>
246         <phpsyntax function="cpdf_set_text_matrix"></phpsyntax>
247         <phpsyntax function="cpdf_set_text_pos"></phpsyntax>
248         <phpsyntax function="cpdf_set_text_rendering"></phpsyntax>
249         <phpsyntax function="cpdf_set_text_rise"></phpsyntax>
250         <phpsyntax function="cpdf_set_title"></phpsyntax>
251         <phpsyntax function="cpdf_set_viewer_preferences"></phpsyntax>
252         <phpsyntax function="cpdf_set_word_spacing"></phpsyntax>
253         <phpsyntax function="cpdf_setdash"></phpsyntax>
254         <phpsyntax function="cpdf_setflat"></phpsyntax>
255         <phpsyntax function="cpdf_setgray"></phpsyntax>
256         <phpsyntax function="cpdf_setgray_fill"></phpsyntax>
257         <phpsyntax function="cpdf_setgray_stroke"></phpsyntax>
258         <phpsyntax function="cpdf_setlinecap"></phpsyntax>
259         <phpsyntax function="cpdf_setlinejoin"></phpsyntax>
260         <phpsyntax function="cpdf_setlinewidth"></phpsyntax>
261         <phpsyntax function="cpdf_setmiterlimit"></phpsyntax>
262         <phpsyntax function="cpdf_setrgbcolor"></phpsyntax>
263         <phpsyntax function="cpdf_setrgbcolor_fill"></phpsyntax>
264         <phpsyntax function="cpdf_setrgbcolor_stroke"></phpsyntax>
265         <phpsyntax function="cpdf_show"></phpsyntax>
266         <phpsyntax function="cpdf_show_xy"></phpsyntax>
267         <phpsyntax function="cpdf_stringwidth"></phpsyntax>
268         <phpsyntax function="cpdf_stroke"></phpsyntax>
269         <phpsyntax function="cpdf_text"></phpsyntax>
270         <phpsyntax function="cpdf_translate"></phpsyntax>
271         <phpsyntax function="crack_check"></phpsyntax>
272         <phpsyntax function="crack_closedict"></phpsyntax>
273         <phpsyntax function="crack_getlastmessage"></phpsyntax>
274         <phpsyntax function="crack_opendict"></phpsyntax>
275         <phpsyntax function="crash"></phpsyntax>
276         <phpsyntax function="crc32" usage="int crc32 ( string str)">Calculates the crc32 polynomial of a string</phpsyntax>
277         <phpsyntax function="create_function" usage="string create_function(string args, string code)">Creates an anonymous function, and returns its name (funny, eh?)</phpsyntax>
278         <phpsyntax function="crypt" usage="string crypt ( string str [, string salt])">One-way string encryption (hashing)</phpsyntax>
279         <phpsyntax function="ctype_alnum"></phpsyntax>
280         <phpsyntax function="ctype_alpha"></phpsyntax>
281         <phpsyntax function="ctype_cntrl"></phpsyntax>
282         <phpsyntax function="ctype_digit"></phpsyntax>
283         <phpsyntax function="ctype_graph"></phpsyntax>
284         <phpsyntax function="ctype_lower"></phpsyntax>
285         <phpsyntax function="ctype_print"></phpsyntax>
286         <phpsyntax function="ctype_punct"></phpsyntax>
287         <phpsyntax function="ctype_space"></phpsyntax>
288         <phpsyntax function="ctype_upper"></phpsyntax>
289         <phpsyntax function="ctype_xdigit"></phpsyntax>
290         <phpsyntax function="curl_close"></phpsyntax>
291         <phpsyntax function="curl_errno"></phpsyntax>
292         <phpsyntax function="curl_error"></phpsyntax>
293         <phpsyntax function="curl_exec"></phpsyntax>
294         <phpsyntax function="curl_getinfo"></phpsyntax>
295         <phpsyntax function="curl_getinfo"></phpsyntax>
296         <phpsyntax function="curl_init"></phpsyntax>
297         <phpsyntax function="curl_setopt"></phpsyntax>
298         <phpsyntax function="curl_version"></phpsyntax>
299         <phpsyntax function="current" usage="mixed current ( array array)">Return the current element in an array</phpsyntax>
300         <phpsyntax function="cv_add"></phpsyntax>
301         <phpsyntax function="cv_auth"></phpsyntax>
302         <phpsyntax function="cv_command"></phpsyntax>
303         <phpsyntax function="cv_count"></phpsyntax>
304         <phpsyntax function="cv_delete"></phpsyntax>
305         <phpsyntax function="cv_done"></phpsyntax>
306         <phpsyntax function="cv_init"></phpsyntax>
307         <phpsyntax function="cv_lookup"></phpsyntax>
308         <phpsyntax function="cv_new"></phpsyntax>
309         <phpsyntax function="cv_report"></phpsyntax>
310         <phpsyntax function="cv_return"></phpsyntax>
311         <phpsyntax function="cv_reverse"></phpsyntax>
312         <phpsyntax function="cv_sale"></phpsyntax>
313         <phpsyntax function="cv_status"></phpsyntax>
314         <phpsyntax function="cv_textvalue"></phpsyntax>
315         <phpsyntax function="cv_void"></phpsyntax>
316         <phpsyntax function="cybercash_base64_decode"></phpsyntax>
317         <phpsyntax function="cybercash_base64_encode"></phpsyntax>
318         <phpsyntax function="cybercash_decr"></phpsyntax>
319         <phpsyntax function="cybercash_encr"></phpsyntax>
320         <phpsyntax function="cybermut_creerformulairecm"></phpsyntax>
321         <phpsyntax function="cybermut_creerreponsecm"></phpsyntax>
322         <phpsyntax function="cybermut_testmac"></phpsyntax>
323         <phpsyntax function="date"></phpsyntax>
324         <phpsyntax function="dba_close"></phpsyntax>
325         <phpsyntax function="dba_delete"></phpsyntax>
326         <phpsyntax function="dba_exists"></phpsyntax>
327         <phpsyntax function="dba_fetch"></phpsyntax>
328         <phpsyntax function="dba_firstkey"></phpsyntax>
329         <phpsyntax function="dba_insert"></phpsyntax>
330         <phpsyntax function="dba_nextkey"></phpsyntax>
331         <phpsyntax function="dba_open"></phpsyntax>
332         <phpsyntax function="dba_optimize"></phpsyntax>
333         <phpsyntax function="dba_popen"></phpsyntax>
334         <phpsyntax function="dba_replace"></phpsyntax>
335         <phpsyntax function="dba_sync"></phpsyntax>
336         <phpsyntax function="dbase_add_record"></phpsyntax>
337         <phpsyntax function="dbase_close"></phpsyntax>
338         <phpsyntax function="dbase_create"></phpsyntax>
339         <phpsyntax function="dbase_delete_record"></phpsyntax>
340         <phpsyntax function="dbase_get_record"></phpsyntax>
341         <phpsyntax function="dbase_get_record_with_names"></phpsyntax>
342         <phpsyntax function="dbase_numfields"></phpsyntax>
343         <phpsyntax function="dbase_numrecords"></phpsyntax>
344         <phpsyntax function="dbase_open"></phpsyntax>
345         <phpsyntax function="dbase_pack"></phpsyntax>
346         <phpsyntax function="dbase_replace_record"></phpsyntax>
347         <phpsyntax function="dblist"></phpsyntax>
348         <phpsyntax function="dbmclose"></phpsyntax>
349         <phpsyntax function="dbmdelete"></phpsyntax>
350         <phpsyntax function="dbmexists"></phpsyntax>
351         <phpsyntax function="dbmfetch"></phpsyntax>
352         <phpsyntax function="dbmfirstkey"></phpsyntax>
353         <phpsyntax function="dbminsert"></phpsyntax>
354         <phpsyntax function="dbmnextkey"></phpsyntax>
355         <phpsyntax function="dbmopen"></phpsyntax>
356         <phpsyntax function="dbmreplace"></phpsyntax>
357         <phpsyntax function="dbx_close"></phpsyntax>
358         <phpsyntax function="dbx_cmp_asc"></phpsyntax>
359         <phpsyntax function="dbx_cmp_desc"></phpsyntax>
360         <phpsyntax function="dbx_connect"></phpsyntax>
361         <phpsyntax function="dbx_error"></phpsyntax>
362         <phpsyntax function="dbx_query"></phpsyntax>
363         <phpsyntax function="dbx_sort"></phpsyntax>
364         <phpsyntax function="dcgettext"></phpsyntax>
365         <phpsyntax function="decbin"></phpsyntax>
366         <phpsyntax function="dechex"></phpsyntax>
367         <phpsyntax function="decoct"></phpsyntax>
368         <phpsyntax function="define" usage="bool define(string constant_name, mixed value, case_sensitive=true)">Define a new constant</phpsyntax>
369         <phpsyntax function="define_syslog_variables"></phpsyntax>
370         <phpsyntax function="defined" usage="bool defined(string constant_name)">Check whether a constant exists</phpsyntax>
371         <phpsyntax function="deg2rad"></phpsyntax>
372         <phpsyntax function="delete_iovec"></phpsyntax>
373         <phpsyntax function="dgettext"></phpsyntax>
374         <phpsyntax function="dir" usage="class dir(string directory)">
375 Directory class with properties, handle and class and methods read, rewind and close.
376         </phpsyntax>
377         <phpsyntax function="dirname"></phpsyntax>
378         <phpsyntax function="diskfreespace"></phpsyntax>
379         <phpsyntax function="display_disabled_function"></phpsyntax>
380         <phpsyntax function="dl"></phpsyntax>
381         <phpsyntax function="domxml_add_root"></phpsyntax>
382         <phpsyntax function="domxml_attributes"></phpsyntax>
383         <phpsyntax function="domxml_children"></phpsyntax>
384         <phpsyntax function="domxml_dumpmem"></phpsyntax>
385         <phpsyntax function="domxml_elem_get_attribute"></phpsyntax>
386         <phpsyntax function="domxml_elem_set_attribute"></phpsyntax>
387         <phpsyntax function="domxml_get_attribute"></phpsyntax>
388         <phpsyntax function="domxml_getattr"></phpsyntax>
389         <phpsyntax function="domxml_new_child"></phpsyntax>
390         <phpsyntax function="domxml_new_xmldoc"></phpsyntax>
391         <phpsyntax function="domxml_node"></phpsyntax>
392         <phpsyntax function="domxml_node_attributes"></phpsyntax>
393         <phpsyntax function="domxml_node_children"></phpsyntax>
394         <phpsyntax function="domxml_node_new_child"></phpsyntax>
395         <phpsyntax function="domxml_node_set_content"></phpsyntax>
396         <phpsyntax function="domxml_node_unlink_node"></phpsyntax>
397         <phpsyntax function="domxml_root"></phpsyntax>
398         <phpsyntax function="domxml_set_attribute"></phpsyntax>
399         <phpsyntax function="domxml_setattr"></phpsyntax>
400         <phpsyntax function="domxml_unlink_node"></phpsyntax>
401         <phpsyntax function="domxml_version"></phpsyntax>
402         <phpsyntax function="doubleval"></phpsyntax>
403         <phpsyntax function="drawarc"></phpsyntax>
404         <phpsyntax function="drawcircle"></phpsyntax>
405         <phpsyntax function="drawcubic"></phpsyntax>
406         <phpsyntax function="drawcubicto"></phpsyntax>
407         <phpsyntax function="drawcurve"></phpsyntax>
408         <phpsyntax function="drawcurveto"></phpsyntax>
409         <phpsyntax function="drawglyph"></phpsyntax>
410         <phpsyntax function="drawline"></phpsyntax>
411         <phpsyntax function="drawlineto"></phpsyntax>
412         <phpsyntax function="each" usage="array each ( array array)">Return the current key and value pair from an array and advance the array cursor</phpsyntax>
413         <phpsyntax function="echo" usage="echo ( string arg1 [, string argn...])">
414 Output one or more strings.
415 echo() is not actually a function (it is a language construct) so you are not required to use parentheses with it. 
416 In fact, if you want to pass more than one parameter to echo, you must not enclose the parameters within parentheses.
417 It is not possible to use echo() in a variable function context. 
418 </phpsyntax>
419         <phpsyntax function="easter_date"></phpsyntax>
420         <phpsyntax function="easter_days"></phpsyntax>
421         <phpsyntax function="end" usage="mixed end ( array array)">Set the internal pointer of an array to its last element </phpsyntax>
422         <phpsyntax function="ereg" usage="int ereg ( string pattern, string string [, array regs])">Note: preg_match(), which uses a Perl-compatible regular expression syntax, is often a faster alternative to ereg(). 
423 Searches a string for matches to the regular expression given in pattern. 
424 If matches are found for parenthesized substrings of pattern and the function is called with the third argument regs, 
425 the matches will be stored in the elements of the array regs. 
426 $regs[1] will contain the substring which starts at the first left parenthesis; 
427 $regs[2] will contain the substring starting at the second, and so on. 
428 $regs[0] will contain a copy of the complete string matched. 
429 Note: Up to (and including) PHP 4.1.0 $regs will be filled with exactly ten elements, 
430 even though more or fewer than ten parenthesized substrings may actually have matched. 
431 This has no effect on ereg()'s ability to match more substrings. 
432 If no matches are found, $regs will not be altered by ereg(). 
433 Searching is case sensitive. 
434 Returns TRUE if a match for pattern was found in string, or FALSE if no matches were found or an error occurred. 
435         </phpsyntax>
436         <phpsyntax function="ereg_replace"></phpsyntax>
437         <phpsyntax function="eregi" usage="int eregi ( string pattern, string string [, array regs])">This function is identical to ereg() except that this ignores case distinction when matching alphabetic characters.
438         </phpsyntax>
439         <phpsyntax function="eregi_replace" usage="string eregi_replace ( string pattern, string replacement, string string)"></phpsyntax>replace regular expression case insensitive
440 This function is identical to ereg_replace() except that this ignores case distinction when matching alphabetic characters. 
441         <phpsyntax function="error_log"></phpsyntax>
442         <phpsyntax function="error_reporting"></phpsyntax>
443         <phpsyntax function="escapeshellarg"></phpsyntax>
444         <phpsyntax function="escapeshellcmd"></phpsyntax>
445         <phpsyntax function="exec"></phpsyntax>
446         <phpsyntax function="exit"></phpsyntax>
447         <phpsyntax function="exp"></phpsyntax>
448         <phpsyntax function="explode" usage="array explode ( string separator, string string [, int limit])">Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string separator.
449 If limit is set, the returned array will contain a maximum of limit elements with the last element containing the rest of string.
450 If separator is an empty string (&quot;&quot;), explode() will return FALSE. If separator contains a value that is not contained in string, 
451 then explode() will return an array containing string. 
452 Note: The limit parameter was added in PHP 4.0.1 
453         </phpsyntax>
454         <phpsyntax function="extension_loaded"></phpsyntax>
455         <phpsyntax function="extract" usage="int extract ( array var_array [, int extract_type [, string prefix]])">Import variables into the current symbol table from an array </phpsyntax>
456         <phpsyntax function="ezmlm_hash"></phpsyntax>
457         <phpsyntax function="ezmlm_hash"></phpsyntax>
458         <phpsyntax function="fbsql"></phpsyntax>
459         <phpsyntax function="fbsql_affected_rows"></phpsyntax>
460         <phpsyntax function="fbsql_autocommit"></phpsyntax>
461         <phpsyntax function="fbsql_close"></phpsyntax>
462         <phpsyntax function="fbsql_commit"></phpsyntax>
463         <phpsyntax function="fbsql_connect"></phpsyntax>
464         <phpsyntax function="fbsql_create_db"></phpsyntax>
465         <phpsyntax function="fbsql_data_seek"></phpsyntax>
466         <phpsyntax function="fbsql_database"></phpsyntax>
467         <phpsyntax function="fbsql_database_password"></phpsyntax>
468         <phpsyntax function="fbsql_db_query"></phpsyntax>
469         <phpsyntax function="fbsql_drop_db"></phpsyntax>
470         <phpsyntax function="fbsql_errno"></phpsyntax>
471         <phpsyntax function="fbsql_error"></phpsyntax>
472         <phpsyntax function="fbsql_fetch_array"></phpsyntax>
473         <phpsyntax function="fbsql_fetch_assoc"></phpsyntax>
474         <phpsyntax function="fbsql_fetch_field"></phpsyntax>
475         <phpsyntax function="fbsql_fetch_lengths"></phpsyntax>
476         <phpsyntax function="fbsql_fetch_object"></phpsyntax>
477         <phpsyntax function="fbsql_fetch_row"></phpsyntax>
478         <phpsyntax function="fbsql_field_flags"></phpsyntax>
479         <phpsyntax function="fbsql_field_len"></phpsyntax>
480         <phpsyntax function="fbsql_field_name"></phpsyntax>
481         <phpsyntax function="fbsql_field_seek"></phpsyntax>
482         <phpsyntax function="fbsql_field_table"></phpsyntax>
483         <phpsyntax function="fbsql_field_type"></phpsyntax>
484         <phpsyntax function="fbsql_free_result"></phpsyntax>
485         <phpsyntax function="fbsql_hostname"></phpsyntax>
486         <phpsyntax function="fbsql_insert_id"></phpsyntax>
487         <phpsyntax function="fbsql_list_dbs"></phpsyntax>
488         <phpsyntax function="fbsql_list_fields"></phpsyntax>
489         <phpsyntax function="fbsql_list_tables"></phpsyntax>
490         <phpsyntax function="fbsql_next_result"></phpsyntax>
491         <phpsyntax function="fbsql_num_fields"></phpsyntax>
492         <phpsyntax function="fbsql_num_rows"></phpsyntax>
493         <phpsyntax function="fbsql_password"></phpsyntax>
494         <phpsyntax function="fbsql_pconnect"></phpsyntax>
495         <phpsyntax function="fbsql_query"></phpsyntax>
496         <phpsyntax function="fbsql_result"></phpsyntax>
497         <phpsyntax function="fbsql_rollback"></phpsyntax>
498         <phpsyntax function="fbsql_select_db"></phpsyntax>
499         <phpsyntax function="fbsql_start_db"></phpsyntax>
500         <phpsyntax function="fbsql_stop_db"></phpsyntax>
501         <phpsyntax function="fbsql_username"></phpsyntax>
502         <phpsyntax function="fbsql_warnings"></phpsyntax>
503         <phpsyntax function="fclose"></phpsyntax>
504         <phpsyntax function="fd_alloc"></phpsyntax>
505         <phpsyntax function="fd_clear"></phpsyntax>
506         <phpsyntax function="fd_dealloc"></phpsyntax>
507         <phpsyntax function="fd_isset"></phpsyntax>
508         <phpsyntax function="fd_set"></phpsyntax>
509         <phpsyntax function="fd_zero"></phpsyntax>
510         <phpsyntax function="fdf_add_template"></phpsyntax>
511         <phpsyntax function="fdf_close"></phpsyntax>
512         <phpsyntax function="fdf_create"></phpsyntax>
513         <phpsyntax function="fdf_get_file"></phpsyntax>
514         <phpsyntax function="fdf_get_status"></phpsyntax>
515         <phpsyntax function="fdf_get_value"></phpsyntax>
516         <phpsyntax function="fdf_next_field_name"></phpsyntax>
517         <phpsyntax function="fdf_open"></phpsyntax>
518         <phpsyntax function="fdf_save"></phpsyntax>
519         <phpsyntax function="fdf_set_ap"></phpsyntax>
520         <phpsyntax function="fdf_set_file"></phpsyntax>
521         <phpsyntax function="fdf_set_flags"></phpsyntax>
522         <phpsyntax function="fdf_set_javascript_action"></phpsyntax>
523         <phpsyntax function="fdf_set_opt"></phpsyntax>
524         <phpsyntax function="fdf_set_status"></phpsyntax>
525         <phpsyntax function="fdf_set_submit_form_action"></phpsyntax>
526         <phpsyntax function="fdf_set_value"></phpsyntax>
527         <phpsyntax function="feof"></phpsyntax>
528         <phpsyntax function="fetch_iovec"></phpsyntax>
529         <phpsyntax function="fflush"></phpsyntax>
530         <phpsyntax function="fgetc"></phpsyntax>
531         <phpsyntax function="fgetcsv"></phpsyntax>
532         <phpsyntax function="fgets"></phpsyntax>
533         <phpsyntax function="fgetss"></phpsyntax>
534         <phpsyntax function="file"></phpsyntax>
535         <phpsyntax function="file_exists" usage="bool file_exists ( string filename)">Checks whether a file exists
536 Returns TRUE if the file specified by filename exists; FALSE otherwise. 
537 This function will not work on remote files; the file to be examined must be accessible via the server's filesystem. 
538 The results of this function are cached. See clearstatcache() for more details. 
539 Using Windows shares: On windows, use //computername/share/filename or \\\\computername\share\filename to check files on network shares. 
540         </phpsyntax>
541         <phpsyntax function="file_get_contents" usage="string file_get_contents ( string filename [, bool use_include_path [, resource context]])">Identical to file(), except that file_get_contents() returns the file in a string. On failure, file_get_contents() will return FALSE. 
542 file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance.
543         </phpsyntax>
544         <phpsyntax function="fileatime"></phpsyntax>
545         <phpsyntax function="filectime"></phpsyntax>
546         <phpsyntax function="filegroup"></phpsyntax>
547         <phpsyntax function="fileinode"></phpsyntax>
548         <phpsyntax function="filemtime"></phpsyntax>
549         <phpsyntax function="fileowner"></phpsyntax>
550         <phpsyntax function="fileperms"></phpsyntax>
551         <phpsyntax function="filepro"></phpsyntax>
552         <phpsyntax function="filepro_fieldcount"></phpsyntax>
553         <phpsyntax function="filepro_fieldname"></phpsyntax>
554         <phpsyntax function="filepro_fieldtype"></phpsyntax>
555         <phpsyntax function="filepro_fieldwidth"></phpsyntax>
556         <phpsyntax function="filepro_retrieve"></phpsyntax>
557         <phpsyntax function="filepro_rowcount"></phpsyntax>
558         <phpsyntax function="filesize"></phpsyntax>
559         <phpsyntax function="filetype"></phpsyntax>
560         <phpsyntax function="flock"></phpsyntax>
561         <phpsyntax function="floor"></phpsyntax>
562         <phpsyntax function="flush"></phpsyntax>
563         <phpsyntax function="fopen"></phpsyntax>
564         <phpsyntax function="fopenstream"></phpsyntax>
565         <phpsyntax function="fopenstream"></phpsyntax>
566         <phpsyntax function="fpassthru"></phpsyntax>
567         <phpsyntax function="fputs"></phpsyntax>
568         <phpsyntax function="fprintf" usage="int fprintf ( resource handle, string format [, mixed args])">Write a formatted string to a stream</phpsyntax>
569         <phpsyntax function="fread"></phpsyntax>
570         <phpsyntax function="free_iovec"></phpsyntax>
571         <phpsyntax function="frenchtojd"></phpsyntax>
572         <phpsyntax function="fribidi_log2vis"></phpsyntax>
573         <phpsyntax function="fscanf"></phpsyntax>
574         <phpsyntax function="fseek"></phpsyntax>
575         <phpsyntax function="fsockopen"></phpsyntax>
576         <phpsyntax function="fstat"></phpsyntax>
577         <phpsyntax function="ftell"></phpsyntax>
578         <phpsyntax function="ftp_cdup"></phpsyntax>
579         <phpsyntax function="ftp_chdir"></phpsyntax>
580         <phpsyntax function="ftp_connect"></phpsyntax>
581         <phpsyntax function="ftp_delete"></phpsyntax>
582         <phpsyntax function="ftp_exec"></phpsyntax>
583         <phpsyntax function="ftp_fget"></phpsyntax>
584         <phpsyntax function="ftp_fput"></phpsyntax>
585         <phpsyntax function="ftp_get"></phpsyntax>
586         <phpsyntax function="ftp_login"></phpsyntax>
587         <phpsyntax function="ftp_mdtm"></phpsyntax>
588         <phpsyntax function="ftp_mkdir"></phpsyntax>
589         <phpsyntax function="ftp_nlist"></phpsyntax>
590         <phpsyntax function="ftp_pasv"></phpsyntax>
591         <phpsyntax function="ftp_put"></phpsyntax>
592         <phpsyntax function="ftp_pwd"></phpsyntax>
593         <phpsyntax function="ftp_quit"></phpsyntax>
594         <phpsyntax function="ftp_rawlist"></phpsyntax>
595         <phpsyntax function="ftp_rename"></phpsyntax>
596         <phpsyntax function="ftp_rmdir"></phpsyntax>
597         <phpsyntax function="ftp_site"></phpsyntax>
598         <phpsyntax function="ftp_size"></phpsyntax>
599         <phpsyntax function="ftp_systype"></phpsyntax>
600         <phpsyntax function="ftruncate"></phpsyntax>
601         <phpsyntax function="func_get_arg"></phpsyntax>
602         <phpsyntax function="func_get_args"></phpsyntax>
603         <phpsyntax function="func_num_args"></phpsyntax>
604         <phpsyntax function="function_exists"></phpsyntax>
605         <phpsyntax function="fwrite"></phpsyntax>
606         <phpsyntax function="get_all_headers"></phpsyntax>
607         <phpsyntax function="get_browser"></phpsyntax>
608         <phpsyntax function="get_cfg_var"></phpsyntax>
609         <phpsyntax function="get_class"></phpsyntax>
610         <phpsyntax function="get_class_methods"></phpsyntax>
611         <phpsyntax function="get_class_vars"></phpsyntax>
612         <phpsyntax function="get_current_user"></phpsyntax>
613         <phpsyntax function="get_declared_classes"></phpsyntax>
614         <phpsyntax function="get_defined_functions"></phpsyntax>
615         <phpsyntax function="get_defined_vars"></phpsyntax>
616         <phpsyntax function="get_extension_funcs"></phpsyntax>
617         <phpsyntax function="get_html_translation_table" usage="string get_html_translation_table ( int table [, int quote_style])">Returns the translation table used by htmlspecialchars() and htmlentities() </phpsyntax>
618         <phpsyntax function="get_included_files"></phpsyntax>
619         <phpsyntax function="get_loaded_extensions"></phpsyntax>
620         <phpsyntax function="get_magic_quotes_gpc"></phpsyntax>
621         <phpsyntax function="get_magic_quotes_runtime"></phpsyntax>
622         <phpsyntax function="get_meta_tags"></phpsyntax>
623         <phpsyntax function="get_object_vars"></phpsyntax>
624         <phpsyntax function="get_parent_class"></phpsyntax>
625         <phpsyntax function="get_required_files"></phpsyntax>
626         <phpsyntax function="get_resource_type"></phpsyntax>
627         <phpsyntax function="getallheaders"></phpsyntax>
628         <phpsyntax function="getallheaders"></phpsyntax>
629         <phpsyntax function="getascent"></phpsyntax>
630         <phpsyntax function="getascent"></phpsyntax>
631         <phpsyntax function="getcwd"></phpsyntax>
632         <phpsyntax function="getdate"></phpsyntax>
633         <phpsyntax function="getdescent"></phpsyntax>
634         <phpsyntax function="getdescent"></phpsyntax>
635         <phpsyntax function="getenv"></phpsyntax>
636         <phpsyntax function="getheight"></phpsyntax>
637         <phpsyntax function="gethostbyaddr"></phpsyntax>
638         <phpsyntax function="gethostbyaddr"></phpsyntax>
639         <phpsyntax function="gethostbyname"></phpsyntax>
640         <phpsyntax function="gethostbyname"></phpsyntax>
641         <phpsyntax function="gethostbynamel"></phpsyntax>
642         <phpsyntax function="getimagesize"></phpsyntax>
643         <phpsyntax function="getlastmod"></phpsyntax>
644         <phpsyntax function="getleading"></phpsyntax>
645         <phpsyntax function="getleading"></phpsyntax>
646         <phpsyntax function="getmxrr"></phpsyntax>
647         <phpsyntax function="getmxrr"></phpsyntax>
648         <phpsyntax function="getmyinode"></phpsyntax>
649         <phpsyntax function="getmypid"></phpsyntax>
650         <phpsyntax function="getmyuid"></phpsyntax>
651         <phpsyntax function="getpeername"></phpsyntax>
652         <phpsyntax function="getprotobyname"></phpsyntax>
653         <phpsyntax function="getprotobynumber"></phpsyntax>
654         <phpsyntax function="getrandmax"></phpsyntax>
655         <phpsyntax function="getrusage"></phpsyntax>
656         <phpsyntax function="getrusage"></phpsyntax>
657         <phpsyntax function="getservbyname"></phpsyntax>
658         <phpsyntax function="getservbyport"></phpsyntax>
659         <phpsyntax function="getshape1"></phpsyntax>
660         <phpsyntax function="getshape2"></phpsyntax>
661         <phpsyntax function="getsockname"></phpsyntax>
662         <phpsyntax function="getsockopt"></phpsyntax>
663         <phpsyntax function="gettext"></phpsyntax>
664         <phpsyntax function="gettimeofday"></phpsyntax>
665         <phpsyntax function="gettype"></phpsyntax>
666         <phpsyntax function="getwidth"></phpsyntax>
667         <phpsyntax function="getwidth"></phpsyntax>
668         <phpsyntax function="getwidth"></phpsyntax>
669         <phpsyntax function="gmdate"></phpsyntax>
670         <phpsyntax function="gmmktime"></phpsyntax>
671         <phpsyntax function="gmp_abs"></phpsyntax>
672         <phpsyntax function="gmp_add"></phpsyntax>
673         <phpsyntax function="gmp_and"></phpsyntax>
674         <phpsyntax function="gmp_clrbit"></phpsyntax>
675         <phpsyntax function="gmp_cmp"></phpsyntax>
676         <phpsyntax function="gmp_com"></phpsyntax>
677         <phpsyntax function="gmp_div"></phpsyntax>
678         <phpsyntax function="gmp_div_q"></phpsyntax>
679         <phpsyntax function="gmp_div_qr"></phpsyntax>
680         <phpsyntax function="gmp_div_r"></phpsyntax>
681         <phpsyntax function="gmp_divexact"></phpsyntax>
682         <phpsyntax function="gmp_fact"></phpsyntax>
683         <phpsyntax function="gmp_gcd"></phpsyntax>
684         <phpsyntax function="gmp_gcdext"></phpsyntax>
685         <phpsyntax function="gmp_hamdist"></phpsyntax>
686         <phpsyntax function="gmp_init"></phpsyntax>
687         <phpsyntax function="gmp_intval"></phpsyntax>
688         <phpsyntax function="gmp_invert"></phpsyntax>
689         <phpsyntax function="gmp_jacobi"></phpsyntax>
690         <phpsyntax function="gmp_legendre"></phpsyntax>
691         <phpsyntax function="gmp_mod"></phpsyntax>
692         <phpsyntax function="gmp_mul"></phpsyntax>
693         <phpsyntax function="gmp_neg"></phpsyntax>
694         <phpsyntax function="gmp_or"></phpsyntax>
695         <phpsyntax function="gmp_perfect_square"></phpsyntax>
696         <phpsyntax function="gmp_popcount"></phpsyntax>
697         <phpsyntax function="gmp_pow"></phpsyntax>
698         <phpsyntax function="gmp_powm"></phpsyntax>
699         <phpsyntax function="gmp_prob_prime"></phpsyntax>
700         <phpsyntax function="gmp_random"></phpsyntax>
701         <phpsyntax function="gmp_scan0"></phpsyntax>
702         <phpsyntax function="gmp_scan1"></phpsyntax>
703         <phpsyntax function="gmp_setbit"></phpsyntax>
704         <phpsyntax function="gmp_sign"></phpsyntax>
705         <phpsyntax function="gmp_sqrt"></phpsyntax>
706         <phpsyntax function="gmp_sqrtrem"></phpsyntax>
707         <phpsyntax function="gmp_strval"></phpsyntax>
708         <phpsyntax function="gmp_sub"></phpsyntax>
709         <phpsyntax function="gmp_xor"></phpsyntax>
710         <phpsyntax function="gmstrftime"></phpsyntax>
711         <phpsyntax function="gmstrftime"></phpsyntax>
712         <phpsyntax function="gregoriantojd"></phpsyntax>
713         <phpsyntax function="gzclose"></phpsyntax>
714         <phpsyntax function="gzcompress"></phpsyntax>
715         <phpsyntax function="gzdeflate"></phpsyntax>
716         <phpsyntax function="gzencode"></phpsyntax>
717         <phpsyntax function="gzeof"></phpsyntax>
718         <phpsyntax function="gzfile"></phpsyntax>
719         <phpsyntax function="gzgetc"></phpsyntax>
720         <phpsyntax function="gzgets"></phpsyntax>
721         <phpsyntax function="gzgetss"></phpsyntax>
722         <phpsyntax function="gzinflate"></phpsyntax>
723         <phpsyntax function="gzopen"></phpsyntax>
724         <phpsyntax function="gzpassthru"></phpsyntax>
725         <phpsyntax function="gzputs"></phpsyntax>
726         <phpsyntax function="gzread"></phpsyntax>
727         <phpsyntax function="gzrewind"></phpsyntax>
728         <phpsyntax function="gzseek"></phpsyntax>
729         <phpsyntax function="gztell"></phpsyntax>
730         <phpsyntax function="gzuncompress"></phpsyntax>
731         <phpsyntax function="gzwrite"></phpsyntax>
732         <phpsyntax function="header" usage="int header ( string string [, bool replace [, int http_reponse_code]])">Send a raw HTTP header
733 header() is used to send raw HTTP headers. See the HTTP/1.1 specification for more information on HTTP headers. 
734 The optional replace parameter indicates whether the header should replace a previous similar header, 
735 or add a second header of the same type. 
736 By default it will replace, but if you pass in FALSE as the second argument you can force multiple headers of the same type. 
737
738 The second optional http_response_code force the HTTP response code to the specified value. 
739 (This parameter is available in PHP 4.3.0 and higher.) 
740 There are two special-case header calls. The first is a header that starts with the string &quot;HTTP/&quot; (case is not significant), 
741 which will be used to figure out the HTTP status code to send. For example, 
742 if you have configured Apache to use a PHP script to handle requests for missing files 
743 (using the ErrorDocument directive), you may want to make sure that your script generates the proper status code. 
744         </phpsyntax>
745         <phpsyntax function="headers_sent"></phpsyntax>
746         <phpsyntax function="hebrev" usage="string hebrev ( string hebrew_text [, int max_chars_per_line])">Convert logical Hebrew text to visual text</phpsyntax>
747         <phpsyntax function="hebrevc" usage="string hebrevc ( string hebrew_text [, int max_chars_per_line])">Convert logical Hebrew text to visual text with newline conversion </phpsyntax>
748         <phpsyntax function="hexdec"></phpsyntax>
749         <phpsyntax function="highlight_file"></phpsyntax>
750         <phpsyntax function="highlight_string"></phpsyntax>
751         <phpsyntax function="html_entity_decode" usage="string html_entity_decode ( string string [, int quote_style [, string charset]])">Convert all HTML entities to their applicable characters</phpsyntax>
752         <phpsyntax function="htmlentities" usage="string htmlentities ( string string [, int quote_style [, string charset]])">Convert all applicable characters to HTML entities </phpsyntax>
753         <phpsyntax function="htmlspecialchars" usage="string htmlspecialchars ( string string [, int quote_style [, string charset]])">
754 Convert special characters to HTML entities.
755 Certain characters have special significance in HTML, 
756 and should be represented by HTML entities if they are to preserve their meanings. 
757 This function returns a string with some of these conversions made; 
758 the translations made are those most useful for everyday web programming. 
759 If you require all HTML character entities to be translated, use htmlentities() instead. 
760 This function is useful in preventing user-supplied text from containing HTML markup, 
761 such as in a message board or guest book application. 
762 The optional second argument, quote_style, tells the function what to do with single and double quote characters. 
763 The default mode, ENT_COMPAT, is the backwards compatible mode which only translates 
764 the double-quote character and leaves the single-quote untranslated. 
765 If ENT_QUOTES is set, both single and double quotes are translated and 
766 if ENT_NOQUOTES is set neither single nor double quotes are translated. 
767 </phpsyntax>
768         <phpsyntax function="hw_array2objrec"></phpsyntax>
769         <phpsyntax function="hw_changeobject"></phpsyntax>
770         <phpsyntax function="hw_children"></phpsyntax>
771         <phpsyntax function="hw_childrenobj"></phpsyntax>
772         <phpsyntax function="hw_close"></phpsyntax>
773         <phpsyntax function="hw_connect"></phpsyntax>
774         <phpsyntax function="hw_connection_info"></phpsyntax>
775         <phpsyntax function="hw_cp"></phpsyntax>
776         <phpsyntax function="hw_deleteobject"></phpsyntax>
777         <phpsyntax function="hw_docbyanchor"></phpsyntax>
778         <phpsyntax function="hw_docbyanchorobj"></phpsyntax>
779         <phpsyntax function="hw_document_attributes"></phpsyntax>
780         <phpsyntax function="hw_document_bodytag"></phpsyntax>
781         <phpsyntax function="hw_document_content"></phpsyntax>
782         <phpsyntax function="hw_document_setcontent"></phpsyntax>
783         <phpsyntax function="hw_document_size"></phpsyntax>
784         <phpsyntax function="hw_dummy"></phpsyntax>
785         <phpsyntax function="hw_edittext"></phpsyntax>
786         <phpsyntax function="hw_error"></phpsyntax>
787         <phpsyntax function="hw_errormsg"></phpsyntax>
788         <phpsyntax function="hw_free_document"></phpsyntax>
789         <phpsyntax function="hw_getanchors"></phpsyntax>
790         <phpsyntax function="hw_getanchorsobj"></phpsyntax>
791         <phpsyntax function="hw_getandlock"></phpsyntax>
792         <phpsyntax function="hw_getcgi"></phpsyntax>
793         <phpsyntax function="hw_getchildcoll"></phpsyntax>
794         <phpsyntax function="hw_getchildcollobj"></phpsyntax>
795         <phpsyntax function="hw_getchilddoccoll"></phpsyntax>
796         <phpsyntax function="hw_getchilddoccollobj"></phpsyntax>
797         <phpsyntax function="hw_getobject"></phpsyntax>
798         <phpsyntax function="hw_getobjectbyftquery"></phpsyntax>
799         <phpsyntax function="hw_getobjectbyftquerycoll"></phpsyntax>
800         <phpsyntax function="hw_getobjectbyftquerycollobj"></phpsyntax>
801         <phpsyntax function="hw_getobjectbyftqueryobj"></phpsyntax>
802         <phpsyntax function="hw_getobjectbyquery"></phpsyntax>
803         <phpsyntax function="hw_getobjectbyquerycoll"></phpsyntax>
804         <phpsyntax function="hw_getobjectbyquerycollobj"></phpsyntax>
805         <phpsyntax function="hw_getobjectbyqueryobj"></phpsyntax>
806         <phpsyntax function="hw_getparents"></phpsyntax>
807         <phpsyntax function="hw_getparentsobj"></phpsyntax>
808         <phpsyntax function="hw_getrellink"></phpsyntax>
809         <phpsyntax function="hw_getremote"></phpsyntax>
810         <phpsyntax function="hw_getremotechildren"></phpsyntax>
811         <phpsyntax function="hw_getsrcbydestobj"></phpsyntax>
812         <phpsyntax function="hw_gettext"></phpsyntax>
813         <phpsyntax function="hw_getusername"></phpsyntax>
814         <phpsyntax function="hw_identify"></phpsyntax>
815         <phpsyntax function="hw_incollections"></phpsyntax>
816         <phpsyntax function="hw_info"></phpsyntax>
817         <phpsyntax function="hw_inscoll"></phpsyntax>
818         <phpsyntax function="hw_insdoc"></phpsyntax>
819         <phpsyntax function="hw_insertanchors"></phpsyntax>
820         <phpsyntax function="hw_insertdocument"></phpsyntax>
821         <phpsyntax function="hw_insertobject"></phpsyntax>
822         <phpsyntax function="hw_mapid"></phpsyntax>
823         <phpsyntax function="hw_modifyobject"></phpsyntax>
824         <phpsyntax function="hw_mv"></phpsyntax>
825         <phpsyntax function="hw_new_document"></phpsyntax>
826         <phpsyntax function="hw_new_document_from_file"></phpsyntax>
827         <phpsyntax function="hw_objrec2array"></phpsyntax>
828         <phpsyntax function="hw_output_document"></phpsyntax>
829         <phpsyntax function="hw_pconnect"></phpsyntax>
830         <phpsyntax function="hw_pipecgi"></phpsyntax>
831         <phpsyntax function="hw_pipedocument"></phpsyntax>
832         <phpsyntax function="hw_root"></phpsyntax>
833         <phpsyntax function="hw_setlinkroot"></phpsyntax>
834         <phpsyntax function="hw_stat"></phpsyntax>
835         <phpsyntax function="hw_unlock"></phpsyntax>
836         <phpsyntax function="hw_who"></phpsyntax>
837         <phpsyntax function="ibase_blob_add"></phpsyntax>
838         <phpsyntax function="ibase_blob_cancel"></phpsyntax>
839         <phpsyntax function="ibase_blob_close"></phpsyntax>
840         <phpsyntax function="ibase_blob_create"></phpsyntax>
841         <phpsyntax function="ibase_blob_echo"></phpsyntax>
842         <phpsyntax function="ibase_blob_get"></phpsyntax>
843         <phpsyntax function="ibase_blob_import"></phpsyntax>
844         <phpsyntax function="ibase_blob_info"></phpsyntax>
845         <phpsyntax function="ibase_blob_open"></phpsyntax>
846         <phpsyntax function="ibase_close"></phpsyntax>
847         <phpsyntax function="ibase_commit"></phpsyntax>
848         <phpsyntax function="ibase_connect"></phpsyntax>
849         <phpsyntax function="ibase_errmsg"></phpsyntax>
850         <phpsyntax function="ibase_execute"></phpsyntax>
851         <phpsyntax function="ibase_fetch_object"></phpsyntax>
852         <phpsyntax function="ibase_fetch_row"></phpsyntax>
853         <phpsyntax function="ibase_field_info"></phpsyntax>
854         <phpsyntax function="ibase_free_query"></phpsyntax>
855         <phpsyntax function="ibase_free_result"></phpsyntax>
856         <phpsyntax function="ibase_num_fields"></phpsyntax>
857         <phpsyntax function="ibase_pconnect"></phpsyntax>
858         <phpsyntax function="ibase_prepare"></phpsyntax>
859         <phpsyntax function="ibase_query"></phpsyntax>
860         <phpsyntax function="ibase_rollback"></phpsyntax>
861         <phpsyntax function="ibase_timefmt"></phpsyntax>
862         <phpsyntax function="ibase_trans"></phpsyntax>
863         <phpsyntax function="icap_create_calendar"></phpsyntax>
864         <phpsyntax function="icap_delete_calendar"></phpsyntax>
865         <phpsyntax function="icap_delete_event"></phpsyntax>
866         <phpsyntax function="icap_fetch_event"></phpsyntax>
867         <phpsyntax function="icap_list_alarms"></phpsyntax>
868         <phpsyntax function="icap_list_events"></phpsyntax>
869         <phpsyntax function="icap_open"></phpsyntax>
870         <phpsyntax function="icap_popen"></phpsyntax>
871         <phpsyntax function="icap_rename_calendar"></phpsyntax>
872         <phpsyntax function="icap_reopen"></phpsyntax>
873         <phpsyntax function="icap_snooze"></phpsyntax>
874         <phpsyntax function="icap_store_event"></phpsyntax>
875         <phpsyntax function="iconv"></phpsyntax>
876         <phpsyntax function="iconv_get_encoding"></phpsyntax>
877         <phpsyntax function="iconv_set_encoding"></phpsyntax>
878         <phpsyntax function="ifx_affected_rows"></phpsyntax>
879         <phpsyntax function="ifx_blobinfile_mode"></phpsyntax>
880         <phpsyntax function="ifx_byteasvarchar"></phpsyntax>
881         <phpsyntax function="ifx_close"></phpsyntax>
882         <phpsyntax function="ifx_connect"></phpsyntax>
883         <phpsyntax function="ifx_copy_blob"></phpsyntax>
884         <phpsyntax function="ifx_create_blob"></phpsyntax>
885         <phpsyntax function="ifx_create_char"></phpsyntax>
886         <phpsyntax function="ifx_do"></phpsyntax>
887         <phpsyntax function="ifx_error"></phpsyntax>
888         <phpsyntax function="ifx_errormsg"></phpsyntax>
889         <phpsyntax function="ifx_fetch_row"></phpsyntax>
890         <phpsyntax function="ifx_fieldproperties"></phpsyntax>
891         <phpsyntax function="ifx_fieldtypes"></phpsyntax>
892         <phpsyntax function="ifx_free_blob"></phpsyntax>
893         <phpsyntax function="ifx_free_char"></phpsyntax>
894         <phpsyntax function="ifx_free_result"></phpsyntax>
895         <phpsyntax function="ifx_get_blob"></phpsyntax>
896         <phpsyntax function="ifx_get_char"></phpsyntax>
897         <phpsyntax function="ifx_getsqlca"></phpsyntax>
898         <phpsyntax function="ifx_htmltbl_result"></phpsyntax>
899         <phpsyntax function="ifx_nullformat"></phpsyntax>
900         <phpsyntax function="ifx_num_fields"></phpsyntax>
901         <phpsyntax function="ifx_num_rows"></phpsyntax>
902         <phpsyntax function="ifx_pconnect"></phpsyntax>
903         <phpsyntax function="ifx_prepare"></phpsyntax>
904         <phpsyntax function="ifx_query"></phpsyntax>
905         <phpsyntax function="ifx_textasvarchar"></phpsyntax>
906         <phpsyntax function="ifx_update_blob"></phpsyntax>
907         <phpsyntax function="ifx_update_char"></phpsyntax>
908         <phpsyntax function="ifxus_close_slob"></phpsyntax>
909         <phpsyntax function="ifxus_create_slob"></phpsyntax>
910         <phpsyntax function="ifxus_free_slob"></phpsyntax>
911         <phpsyntax function="ifxus_open_slob"></phpsyntax>
912         <phpsyntax function="ifxus_read_slob"></phpsyntax>
913         <phpsyntax function="ifxus_seek_slob"></phpsyntax>
914         <phpsyntax function="ifxus_tell_slob"></phpsyntax>
915         <phpsyntax function="ifxus_write_slob"></phpsyntax>
916         <phpsyntax function="ignore_user_abort"></phpsyntax>
917         <phpsyntax function="iis_addserver"></phpsyntax>
918         <phpsyntax function="iis_getdirsecurity"></phpsyntax>
919         <phpsyntax function="iis_getscriptmap"></phpsyntax>
920         <phpsyntax function="iis_getserverbycomment"></phpsyntax>
921         <phpsyntax function="iis_getserverbypath"></phpsyntax>
922         <phpsyntax function="iis_getserverright"></phpsyntax>
923         <phpsyntax function="iis_getservicestate"></phpsyntax>
924         <phpsyntax function="iis_removeserver"></phpsyntax>
925         <phpsyntax function="iis_setappsettings"></phpsyntax>
926         <phpsyntax function="iis_setdirsecurity"></phpsyntax>
927         <phpsyntax function="iis_setscriptmap"></phpsyntax>
928         <phpsyntax function="iis_setserverright"></phpsyntax>
929         <phpsyntax function="iis_startserver"></phpsyntax>
930         <phpsyntax function="iis_startservice"></phpsyntax>
931         <phpsyntax function="iis_stopserver"></phpsyntax>
932         <phpsyntax function="iis_stopservice"></phpsyntax>
933         <phpsyntax function="image2wbmp"></phpsyntax>
934         <phpsyntax function="imagealphablending"></phpsyntax>
935         <phpsyntax function="imagearc"></phpsyntax>
936         <phpsyntax function="imagechar"></phpsyntax>
937         <phpsyntax function="imagecharup"></phpsyntax>
938         <phpsyntax function="imagecolorallocate"></phpsyntax>
939         <phpsyntax function="imagecolorat"></phpsyntax>
940         <phpsyntax function="imagecolorclosest"></phpsyntax>
941         <phpsyntax function="imagecolorclosestalpha"></phpsyntax>
942         <phpsyntax function="imagecolorclosesthwb"></phpsyntax>
943         <phpsyntax function="imagecolordeallocate"></phpsyntax>
944         <phpsyntax function="imagecolorexact"></phpsyntax>
945         <phpsyntax function="imagecolorexactalpha"></phpsyntax>
946         <phpsyntax function="imagecolorresolve"></phpsyntax>
947         <phpsyntax function="imagecolorresolvealpha"></phpsyntax>
948         <phpsyntax function="imagecolorset"></phpsyntax>
949         <phpsyntax function="imagecolorsforindex"></phpsyntax>
950         <phpsyntax function="imagecolorstotal"></phpsyntax>
951         <phpsyntax function="imagecolortransparent"></phpsyntax>
952         <phpsyntax function="imagecopy"></phpsyntax>
953         <phpsyntax function="imagecopymerge"></phpsyntax>
954         <phpsyntax function="imagecopymergegray"></phpsyntax>
955         <phpsyntax function="imagecopyresampled"></phpsyntax>
956         <phpsyntax function="imagecopyresized"></phpsyntax>
957         <phpsyntax function="imagecreate"></phpsyntax>
958         <phpsyntax function="imagecreatefromgif"></phpsyntax>
959         <phpsyntax function="imagecreatefromjpeg"></phpsyntax>
960         <phpsyntax function="imagecreatefrompng"></phpsyntax>
961         <phpsyntax function="imagecreatefromstring"></phpsyntax>
962         <phpsyntax function="imagecreatefromwbmp"></phpsyntax>
963         <phpsyntax function="imagecreatefromxbm"></phpsyntax>
964         <phpsyntax function="imagecreatefromxpm"></phpsyntax>
965         <phpsyntax function="imagecreatetruecolor"></phpsyntax>
966         <phpsyntax function="imagedashedline"></phpsyntax>
967         <phpsyntax function="imagedestroy"></phpsyntax>
968         <phpsyntax function="imageellipse"></phpsyntax>
969         <phpsyntax function="imagefill"></phpsyntax>
970         <phpsyntax function="imagefilledarc"></phpsyntax>
971         <phpsyntax function="imagefilledellipse"></phpsyntax>
972         <phpsyntax function="imagefilledpolygon"></phpsyntax>
973         <phpsyntax function="imagefilledrectangle"></phpsyntax>
974         <phpsyntax function="imagefilltoborder"></phpsyntax>
975         <phpsyntax function="imagefontheight"></phpsyntax>
976         <phpsyntax function="imagefontwidth"></phpsyntax>
977         <phpsyntax function="imagegammacorrect"></phpsyntax>
978         <phpsyntax function="imagegif"></phpsyntax>
979         <phpsyntax function="imageinterlace"></phpsyntax>
980         <phpsyntax function="imagejpeg"></phpsyntax>
981         <phpsyntax function="imageline"></phpsyntax>
982         <phpsyntax function="imageloadfont"></phpsyntax>
983         <phpsyntax function="imagepalettecopy"></phpsyntax>
984         <phpsyntax function="imagepng"></phpsyntax>
985         <phpsyntax function="imagepolygon"></phpsyntax>
986         <phpsyntax function="imagepsbbox"></phpsyntax>
987         <phpsyntax function="imagepscopyfont"></phpsyntax>
988         <phpsyntax function="imagepsencodefont"></phpsyntax>
989         <phpsyntax function="imagepsextendfont"></phpsyntax>
990         <phpsyntax function="imagepsfreefont"></phpsyntax>
991         <phpsyntax function="imagepsloadfont"></phpsyntax>
992         <phpsyntax function="imagepsslantfont"></phpsyntax>
993         <phpsyntax function="imagepstext"></phpsyntax>
994         <phpsyntax function="imagerectangle"></phpsyntax>
995         <phpsyntax function="imagesetbrush"></phpsyntax>
996         <phpsyntax function="imagesetpixel"></phpsyntax>
997         <phpsyntax function="imagesetstyle"></phpsyntax>
998         <phpsyntax function="imagesetthickness"></phpsyntax>
999         <phpsyntax function="imagesettile"></phpsyntax>
1000         <phpsyntax function="imagestring"></phpsyntax>
1001         <phpsyntax function="imagestringup"></phpsyntax>
1002         <phpsyntax function="imagesx"></phpsyntax>
1003         <phpsyntax function="imagesy"></phpsyntax>
1004         <phpsyntax function="imagetruecolortopalette"></phpsyntax>
1005         <phpsyntax function="imagettfbbox"></phpsyntax>
1006         <phpsyntax function="imagettftext"></phpsyntax>
1007         <phpsyntax function="imagetypes"></phpsyntax>
1008         <phpsyntax function="imagewbmp"></phpsyntax>
1009         <phpsyntax function="imap_8bit"></phpsyntax>
1010         <phpsyntax function="imap_alerts"></phpsyntax>
1011         <phpsyntax function="imap_append"></phpsyntax>
1012         <phpsyntax function="imap_base64"></phpsyntax>
1013         <phpsyntax function="imap_binary"></phpsyntax>
1014         <phpsyntax function="imap_body"></phpsyntax>
1015         <phpsyntax function="imap_bodystruct"></phpsyntax>
1016         <phpsyntax function="imap_check"></phpsyntax>
1017         <phpsyntax function="imap_clearflag_full"></phpsyntax>
1018         <phpsyntax function="imap_close"></phpsyntax>
1019         <phpsyntax function="imap_create"></phpsyntax>
1020         <phpsyntax function="imap_createmailbox"></phpsyntax>
1021         <phpsyntax function="imap_delete"></phpsyntax>
1022         <phpsyntax function="imap_deletemailbox"></phpsyntax>
1023         <phpsyntax function="imap_errors"></phpsyntax>
1024         <phpsyntax function="imap_expunge"></phpsyntax>
1025         <phpsyntax function="imap_fetch_overview"></phpsyntax>
1026         <phpsyntax function="imap_fetchbody"></phpsyntax>
1027         <phpsyntax function="imap_fetchheader"></phpsyntax>
1028         <phpsyntax function="imap_fetchstructure"></phpsyntax>
1029         <phpsyntax function="imap_fetchtext"></phpsyntax>
1030         <phpsyntax function="imap_get_quota"></phpsyntax>
1031         <phpsyntax function="imap_getmailboxes"></phpsyntax>
1032         <phpsyntax function="imap_getsubscribed"></phpsyntax>
1033         <phpsyntax function="imap_header"></phpsyntax>
1034         <phpsyntax function="imap_headerinfo"></phpsyntax>
1035         <phpsyntax function="imap_headers"></phpsyntax>
1036         <phpsyntax function="imap_last_error"></phpsyntax>
1037         <phpsyntax function="imap_list"></phpsyntax>
1038         <phpsyntax function="imap_listmailbox"></phpsyntax>
1039         <phpsyntax function="imap_listsubscribed"></phpsyntax>
1040         <phpsyntax function="imap_lsub"></phpsyntax>
1041         <phpsyntax function="imap_mail"></phpsyntax>
1042         <phpsyntax function="imap_mail"></phpsyntax>
1043         <phpsyntax function="imap_mail_compose"></phpsyntax>
1044         <phpsyntax function="imap_mail_copy"></phpsyntax>
1045         <phpsyntax function="imap_mail_move"></phpsyntax>
1046         <phpsyntax function="imap_mailboxmsginfo"></phpsyntax>
1047         <phpsyntax function="imap_mime_header_decode"></phpsyntax>
1048         <phpsyntax function="imap_msgno"></phpsyntax>
1049         <phpsyntax function="imap_num_msg"></phpsyntax>
1050         <phpsyntax function="imap_num_recent"></phpsyntax>
1051         <phpsyntax function="imap_open"></phpsyntax>
1052         <phpsyntax function="imap_ping"></phpsyntax>
1053         <phpsyntax function="imap_popen"></phpsyntax>
1054         <phpsyntax function="imap_qprint"></phpsyntax>
1055         <phpsyntax function="imap_rename"></phpsyntax>
1056         <phpsyntax function="imap_renamemailbox"></phpsyntax>
1057         <phpsyntax function="imap_reopen"></phpsyntax>
1058         <phpsyntax function="imap_rfc822_parse_adrlist"></phpsyntax>
1059         <phpsyntax function="imap_rfc822_parse_headers"></phpsyntax>
1060         <phpsyntax function="imap_rfc822_write_address"></phpsyntax>
1061         <phpsyntax function="imap_scan"></phpsyntax>
1062         <phpsyntax function="imap_scanmailbox"></phpsyntax>
1063         <phpsyntax function="imap_search"></phpsyntax>
1064         <phpsyntax function="imap_set_quota"></phpsyntax>
1065         <phpsyntax function="imap_setflag_full"></phpsyntax>
1066         <phpsyntax function="imap_sort"></phpsyntax>
1067         <phpsyntax function="imap_status"></phpsyntax>
1068         <phpsyntax function="imap_subscribe"></phpsyntax>
1069         <phpsyntax function="imap_uid"></phpsyntax>
1070         <phpsyntax function="imap_undelete"></phpsyntax>
1071         <phpsyntax function="imap_unsubscribe"></phpsyntax>
1072         <phpsyntax function="imap_utf7_decode"></phpsyntax>
1073         <phpsyntax function="imap_utf7_encode"></phpsyntax>
1074         <phpsyntax function="imap_utf8"></phpsyntax>
1075         <phpsyntax function="implode" usage="string implode ( string glue, array pieces)">Join array elements with a string</phpsyntax>
1076         <phpsyntax function="in_array" usage="bool in_array ( mixed needle, array haystack [, bool strict])">Return TRUE if a value exists in an array</phpsyntax>
1077         <phpsyntax function="ingres_autocommit"></phpsyntax>
1078         <phpsyntax function="ingres_close"></phpsyntax>
1079         <phpsyntax function="ingres_commit"></phpsyntax>
1080         <phpsyntax function="ingres_connect"></phpsyntax>
1081         <phpsyntax function="ingres_fetch_array"></phpsyntax>
1082         <phpsyntax function="ingres_fetch_object"></phpsyntax>
1083         <phpsyntax function="ingres_fetch_row"></phpsyntax>
1084         <phpsyntax function="ingres_field_length"></phpsyntax>
1085         <phpsyntax function="ingres_field_name"></phpsyntax>
1086         <phpsyntax function="ingres_field_nullable"></phpsyntax>
1087         <phpsyntax function="ingres_field_precision"></phpsyntax>
1088         <phpsyntax function="ingres_field_scale"></phpsyntax>
1089         <phpsyntax function="ingres_field_type"></phpsyntax>
1090         <phpsyntax function="ingres_num_fields"></phpsyntax>
1091         <phpsyntax function="ingres_num_rows"></phpsyntax>
1092         <phpsyntax function="ingres_pconnect"></phpsyntax>
1093         <phpsyntax function="ingres_query"></phpsyntax>
1094         <phpsyntax function="ingres_rollback"></phpsyntax>
1095         <phpsyntax function="ini_alter"></phpsyntax>
1096         <phpsyntax function="ini_get"></phpsyntax>
1097         <phpsyntax function="ini_restore"></phpsyntax>
1098         <phpsyntax function="ini_set"></phpsyntax>
1099         <phpsyntax function="intval"></phpsyntax>
1100         <phpsyntax function="ip2long"></phpsyntax>
1101         <phpsyntax function="iptcembed"></phpsyntax>
1102         <phpsyntax function="iptcparse"></phpsyntax>
1103         <phpsyntax function="ircg_channel_mode"></phpsyntax>
1104         <phpsyntax function="ircg_disconnect"></phpsyntax>
1105         <phpsyntax function="ircg_html_encode"></phpsyntax>
1106         <phpsyntax function="ircg_ignore_add"></phpsyntax>
1107         <phpsyntax function="ircg_ignore_del"></phpsyntax>
1108         <phpsyntax function="ircg_is_conn_alive"></phpsyntax>
1109         <phpsyntax function="ircg_join"></phpsyntax>
1110         <phpsyntax function="ircg_kick"></phpsyntax>
1111         <phpsyntax function="ircg_lookup_format_messages"></phpsyntax>
1112         <phpsyntax function="ircg_msg"></phpsyntax>
1113         <phpsyntax function="ircg_nick"></phpsyntax>
1114         <phpsyntax function="ircg_nickname_escape"></phpsyntax>
1115         <phpsyntax function="ircg_nickname_unescape"></phpsyntax>
1116         <phpsyntax function="ircg_notice"></phpsyntax>
1117         <phpsyntax function="ircg_part"></phpsyntax>
1118         <phpsyntax function="ircg_pconnect"></phpsyntax>
1119         <phpsyntax function="ircg_register_format_messages"></phpsyntax>
1120         <phpsyntax function="ircg_set_current"></phpsyntax>
1121         <phpsyntax function="ircg_topic"></phpsyntax>
1122         <phpsyntax function="ircg_whois"></phpsyntax>
1123         <phpsyntax function="is_a" usage="bool is_a ( object object, string class_name)">This function returns TRUE if the object is of this class or has this class as one of its parents, FALSE otherwise.</phpsyntax>
1124         <phpsyntax function="is_array"></phpsyntax>
1125         <phpsyntax function="is_bool"></phpsyntax>
1126         <phpsyntax function="is_dir"></phpsyntax>
1127         <phpsyntax function="is_double"></phpsyntax>
1128         <phpsyntax function="is_executable"></phpsyntax>
1129         <phpsyntax function="is_file"></phpsyntax>
1130         <phpsyntax function="is_float"></phpsyntax>
1131         <phpsyntax function="is_int"></phpsyntax>
1132         <phpsyntax function="is_integer"></phpsyntax>
1133         <phpsyntax function="is_link"></phpsyntax>
1134         <phpsyntax function="is_long"></phpsyntax>
1135         <phpsyntax function="is_null"></phpsyntax>
1136         <phpsyntax function="is_numeric"></phpsyntax>
1137         <phpsyntax function="is_object"></phpsyntax>
1138         <phpsyntax function="is_readable"></phpsyntax>
1139         <phpsyntax function="is_real"></phpsyntax>
1140         <phpsyntax function="is_resource"></phpsyntax>
1141         <phpsyntax function="is_scalar"></phpsyntax>
1142         <phpsyntax function="is_string"></phpsyntax>
1143         <phpsyntax function="is_subclass_of"></phpsyntax>
1144         <phpsyntax function="is_uploaded_file"></phpsyntax>
1145         <phpsyntax function="is_writable"></phpsyntax>
1146         <phpsyntax function="is_writeable"></phpsyntax>
1147         <phpsyntax function="java_last_exception_clear"></phpsyntax>
1148         <phpsyntax function="java_last_exception_get"></phpsyntax>
1149         <phpsyntax function="jddayofweek"></phpsyntax>
1150         <phpsyntax function="jdmonthname"></phpsyntax>
1151         <phpsyntax function="jdtofrench"></phpsyntax>
1152         <phpsyntax function="jdtogregorian"></phpsyntax>
1153         <phpsyntax function="jdtojewish"></phpsyntax>
1154         <phpsyntax function="jdtojulian"></phpsyntax>
1155         <phpsyntax function="jdtounix"></phpsyntax>
1156         <phpsyntax function="jewishtojd"></phpsyntax>
1157         <phpsyntax function="join" usage="string join ( string glue, array pieces)">Join array elements with a string</phpsyntax>
1158         <phpsyntax function="jpeg2wbmp"></phpsyntax>
1159         <phpsyntax function="juliantojd"></phpsyntax>
1160         <phpsyntax function="key" usage="mixed key ( array array)">Fetch a key from an associative array</phpsyntax>
1161         <phpsyntax function="krsort" usage="int krsort ( array array [, int sort_flags])">Sort an array by key in reverse order</phpsyntax>
1162         <phpsyntax function="ksort" usage="int ksort ( array array [, int sort_flags])">Sort an array by key</phpsyntax>
1163         <phpsyntax function="labelframe"></phpsyntax>
1164         <phpsyntax function="labelframe"></phpsyntax>
1165         <phpsyntax function="lcg_value"></phpsyntax>
1166         <phpsyntax function="ldap_8859_to_t61"></phpsyntax>
1167         <phpsyntax function="ldap_add"></phpsyntax>
1168         <phpsyntax function="ldap_bind"></phpsyntax>
1169         <phpsyntax function="ldap_close"></phpsyntax>
1170         <phpsyntax function="ldap_compare"></phpsyntax>
1171         <phpsyntax function="ldap_connect"></phpsyntax>
1172         <phpsyntax function="ldap_count_entries"></phpsyntax>
1173         <phpsyntax function="ldap_delete"></phpsyntax>
1174         <phpsyntax function="ldap_dn2ufn"></phpsyntax>
1175         <phpsyntax function="ldap_err2str"></phpsyntax>
1176         <phpsyntax function="ldap_errno"></phpsyntax>
1177         <phpsyntax function="ldap_error"></phpsyntax>
1178         <phpsyntax function="ldap_explode_dn"></phpsyntax>
1179         <phpsyntax function="ldap_first_attribute"></phpsyntax>
1180         <phpsyntax function="ldap_first_entry"></phpsyntax>
1181         <phpsyntax function="ldap_first_reference"></phpsyntax>
1182         <phpsyntax function="ldap_free_result"></phpsyntax>
1183         <phpsyntax function="ldap_get_attributes"></phpsyntax>
1184         <phpsyntax function="ldap_get_dn"></phpsyntax>
1185         <phpsyntax function="ldap_get_entries"></phpsyntax>
1186         <phpsyntax function="ldap_get_option"></phpsyntax>
1187         <phpsyntax function="ldap_get_values"></phpsyntax>
1188         <phpsyntax function="ldap_get_values_len"></phpsyntax>
1189         <phpsyntax function="ldap_list"></phpsyntax>
1190         <phpsyntax function="ldap_mod_add"></phpsyntax>
1191         <phpsyntax function="ldap_mod_del"></phpsyntax>
1192         <phpsyntax function="ldap_mod_replace"></phpsyntax>
1193         <phpsyntax function="ldap_modify"></phpsyntax>
1194         <phpsyntax function="ldap_next_attribute"></phpsyntax>
1195         <phpsyntax function="ldap_next_entry"></phpsyntax>
1196         <phpsyntax function="ldap_next_reference"></phpsyntax>
1197         <phpsyntax function="ldap_parse_reference"></phpsyntax>
1198         <phpsyntax function="ldap_parse_result"></phpsyntax>
1199         <phpsyntax function="ldap_read"></phpsyntax>
1200         <phpsyntax function="ldap_rename"></phpsyntax>
1201         <phpsyntax function="ldap_search"></phpsyntax>
1202         <phpsyntax function="ldap_set_option"></phpsyntax>
1203         <phpsyntax function="ldap_t61_to_8859"></phpsyntax>
1204         <phpsyntax function="ldap_unbind"></phpsyntax>
1205         <phpsyntax function="leak"></phpsyntax>
1206         <phpsyntax function="levenshtein" usage="int levenshtein ( string str1, string str2) - int levenshtein ( string str1, string str2, int cost_ins, int cost_rep, int cost_del) - int levenshtein ( string str1, string str2, function cost)">Calculate Levenshtein distance between two strings </phpsyntax>
1207         <phpsyntax function="link"></phpsyntax>
1208         <phpsyntax function="link"></phpsyntax>
1209         <phpsyntax function="linkinfo"></phpsyntax>
1210         <phpsyntax function="linkinfo"></phpsyntax>
1211         <phpsyntax function="list" usage="void list ( mixed ...)">
1212 Assign variables as if they were an array.
1213 Like array(), this is not really a function, but a language construct. 
1214 list() is used to assign a list of variables in one operation. 
1215 Note: list() only works on numerical arrays and assumes the numerical indices start at 0. 
1216 </phpsyntax>
1217         <phpsyntax function="listen"></phpsyntax>
1218         <phpsyntax function="localeconv" usage="array localeconv ( void)">Get numeric formatting information</phpsyntax>
1219         <phpsyntax function="localtime"></phpsyntax>
1220         <phpsyntax function="log"></phpsyntax>
1221         <phpsyntax function="log10"></phpsyntax>
1222         <phpsyntax function="long2ip"></phpsyntax>
1223         <phpsyntax function="lstat"></phpsyntax>
1224         <phpsyntax function="ltrim" usage="string ltrim ( string str [, string charlist])">Strip whitespace from the beginning of a string </phpsyntax>
1225         <phpsyntax function="magic_quotes_runtime"></phpsyntax>
1226         <phpsyntax function="mail"></phpsyntax>
1227         <phpsyntax function="mail"></phpsyntax>
1228         <phpsyntax function="max"></phpsyntax>
1229         <phpsyntax function="mcal_append_event"></phpsyntax>
1230         <phpsyntax function="mcal_close"></phpsyntax>
1231         <phpsyntax function="mcal_create_calendar"></phpsyntax>
1232         <phpsyntax function="mcal_date_compare"></phpsyntax>
1233         <phpsyntax function="mcal_date_valid"></phpsyntax>
1234         <phpsyntax function="mcal_day_of_week"></phpsyntax>
1235         <phpsyntax function="mcal_day_of_year"></phpsyntax>
1236         <phpsyntax function="mcal_days_in_month"></phpsyntax>
1237         <phpsyntax function="mcal_delete_calendar"></phpsyntax>
1238         <phpsyntax function="mcal_delete_event"></phpsyntax>
1239         <phpsyntax function="mcal_event_add_attribute"></phpsyntax>
1240         <phpsyntax function="mcal_event_init"></phpsyntax>
1241         <phpsyntax function="mcal_event_set_alarm"></phpsyntax>
1242         <phpsyntax function="mcal_event_set_category"></phpsyntax>
1243         <phpsyntax function="mcal_event_set_class"></phpsyntax>
1244         <phpsyntax function="mcal_event_set_usage"></phpsyntax>
1245         <phpsyntax function="mcal_event_set_end"></phpsyntax>
1246         <phpsyntax function="mcal_event_set_recur_daily"></phpsyntax>
1247         <phpsyntax function="mcal_event_set_recur_monthly_mday"></phpsyntax>
1248         <phpsyntax function="mcal_event_set_recur_monthly_wday"></phpsyntax>
1249         <phpsyntax function="mcal_event_set_recur_none"></phpsyntax>
1250         <phpsyntax function="mcal_event_set_recur_weekly"></phpsyntax>
1251         <phpsyntax function="mcal_event_set_recur_yearly"></phpsyntax>
1252         <phpsyntax function="mcal_event_set_start"></phpsyntax>
1253         <phpsyntax function="mcal_event_set_title"></phpsyntax>
1254         <phpsyntax function="mcal_fetch_current_stream_event"></phpsyntax>
1255         <phpsyntax function="mcal_fetch_event"></phpsyntax>
1256         <phpsyntax function="mcal_is_leap_year"></phpsyntax>
1257         <phpsyntax function="mcal_list_alarms"></phpsyntax>
1258         <phpsyntax function="mcal_list_events"></phpsyntax>
1259         <phpsyntax function="mcal_next_recurrence"></phpsyntax>
1260         <phpsyntax function="mcal_open"></phpsyntax>
1261         <phpsyntax function="mcal_popen"></phpsyntax>
1262         <phpsyntax function="mcal_rename_calendar"></phpsyntax>
1263         <phpsyntax function="mcal_reopen"></phpsyntax>
1264         <phpsyntax function="mcal_snooze"></phpsyntax>
1265         <phpsyntax function="mcal_store_event"></phpsyntax>
1266         <phpsyntax function="mcal_time_valid"></phpsyntax>
1267         <phpsyntax function="mcal_week_of_year"></phpsyntax>
1268         <phpsyntax function="mcrypt_cbc"></phpsyntax>
1269         <phpsyntax function="mcrypt_cfb"></phpsyntax>
1270         <phpsyntax function="mcrypt_create_iv"></phpsyntax>
1271         <phpsyntax function="mcrypt_decrypt"></phpsyntax>
1272         <phpsyntax function="mcrypt_ecb"></phpsyntax>
1273         <phpsyntax function="mcrypt_enc_get_algorithms_name"></phpsyntax>
1274         <phpsyntax function="mcrypt_enc_get_block_size"></phpsyntax>
1275         <phpsyntax function="mcrypt_enc_get_iv_size"></phpsyntax>
1276         <phpsyntax function="mcrypt_enc_get_key_size"></phpsyntax>
1277         <phpsyntax function="mcrypt_enc_get_modes_name"></phpsyntax>
1278         <phpsyntax function="mcrypt_enc_get_supported_key_sizes"></phpsyntax>
1279         <phpsyntax function="mcrypt_enc_is_block_algorithm"></phpsyntax>
1280         <phpsyntax function="mcrypt_enc_is_block_algorithm_mode"></phpsyntax>
1281         <phpsyntax function="mcrypt_enc_is_block_mode"></phpsyntax>
1282         <phpsyntax function="mcrypt_enc_self_test"></phpsyntax>
1283         <phpsyntax function="mcrypt_encrypt"></phpsyntax>
1284         <phpsyntax function="mcrypt_generic"></phpsyntax>
1285         <phpsyntax function="mcrypt_generic_end"></phpsyntax>
1286         <phpsyntax function="mcrypt_generic_init"></phpsyntax>
1287         <phpsyntax function="mcrypt_get_block_size"></phpsyntax>
1288         <phpsyntax function="mcrypt_get_cipher_name"></phpsyntax>
1289         <phpsyntax function="mcrypt_get_iv_size"></phpsyntax>
1290         <phpsyntax function="mcrypt_get_key_size"></phpsyntax>
1291         <phpsyntax function="mcrypt_list_algorithms"></phpsyntax>
1292         <phpsyntax function="mcrypt_list_modes"></phpsyntax>
1293         <phpsyntax function="mcrypt_module_close"></phpsyntax>
1294         <phpsyntax function="mcrypt_module_get_algo_block_size"></phpsyntax>
1295         <phpsyntax function="mcrypt_module_get_algo_key_size"></phpsyntax>
1296         <phpsyntax function="mcrypt_module_get_supported_key_sizes"></phpsyntax>
1297         <phpsyntax function="mcrypt_module_is_block_algorithm"></phpsyntax>
1298         <phpsyntax function="mcrypt_module_is_block_algorithm_mode"></phpsyntax>
1299         <phpsyntax function="mcrypt_module_is_block_mode"></phpsyntax>
1300         <phpsyntax function="mcrypt_module_open"></phpsyntax>
1301         <phpsyntax function="mcrypt_module_self_test"></phpsyntax>
1302         <phpsyntax function="mcrypt_ofb"></phpsyntax>
1303         <phpsyntax function="md5" usage="string md5 ( string str)">Calculate the md5 hash of a string</phpsyntax>
1304         <phpsyntax function="md5_file" usage="string md5_file ( string filename)">Calculates the md5 hash of a given filename</phpsyntax>
1305         <phpsyntax function="mdecrypt_generic"></phpsyntax>
1306         <phpsyntax function="metaphone" usage="string metaphone ( string str)">Calculate the metaphone key of a string</phpsyntax>
1307         <phpsyntax function="method_exists"></phpsyntax>
1308         <phpsyntax function="mhash"></phpsyntax>
1309         <phpsyntax function="mhash_count"></phpsyntax>
1310         <phpsyntax function="mhash_get_block_size"></phpsyntax>
1311         <phpsyntax function="mhash_get_hash_name"></phpsyntax>
1312         <phpsyntax function="mhash_keygen_s2k"></phpsyntax>
1313         <phpsyntax function="microtime" usage="string microtime (void)">Return current UNIX timestamp with microseconds
1314 Returns the string &quot;msec sec&quot; where sec is the current time measured in the number of seconds
1315 since the Unix Epoch (0:00:00 January 1, 1970 GMT), and msec is the microseconds part. 
1316 This function is only available on operating systems that support the gettimeofday() system call. 
1317 Both portions of the string are returned in units of seconds. 
1318         </phpsyntax>
1319         <phpsyntax function="min"></phpsyntax>
1320         <phpsyntax function="ming_setcubicthreshold"></phpsyntax>
1321         <phpsyntax function="ming_setscale"></phpsyntax>
1322         <phpsyntax function="mkdir"></phpsyntax>
1323         <phpsyntax function="mktime"></phpsyntax>
1324         <phpsyntax function="money_format" usage="string money_format ( string format, float number)">Formats a number as a currency string</phpsyntax>
1325         <phpsyntax function="move"></phpsyntax>
1326         <phpsyntax function="move_uploaded_file"></phpsyntax>
1327         <phpsyntax function="movepen"></phpsyntax>
1328         <phpsyntax function="movepento"></phpsyntax>
1329         <phpsyntax function="moveto"></phpsyntax>
1330         <phpsyntax function="moveto"></phpsyntax>
1331         <phpsyntax function="moveto"></phpsyntax>
1332         <phpsyntax function="msql"></phpsyntax>
1333         <phpsyntax function="msql_affected_rows"></phpsyntax>
1334         <phpsyntax function="msql_close"></phpsyntax>
1335         <phpsyntax function="msql_connect"></phpsyntax>
1336         <phpsyntax function="msql_create_db"></phpsyntax>
1337         <phpsyntax function="msql_createdb"></phpsyntax>
1338         <phpsyntax function="msql_data_seek"></phpsyntax>
1339         <phpsyntax function="msql_db_query"></phpsyntax>
1340         <phpsyntax function="msql_dbname"></phpsyntax>
1341         <phpsyntax function="msql_drop_db"></phpsyntax>
1342         <phpsyntax function="msql_dropdb"></phpsyntax>
1343         <phpsyntax function="msql_error"></phpsyntax>
1344         <phpsyntax function="msql_fetch_array"></phpsyntax>
1345         <phpsyntax function="msql_fetch_field"></phpsyntax>
1346         <phpsyntax function="msql_fetch_object"></phpsyntax>
1347         <phpsyntax function="msql_fetch_row"></phpsyntax>
1348         <phpsyntax function="msql_field_flags"></phpsyntax>
1349         <phpsyntax function="msql_field_len"></phpsyntax>
1350         <phpsyntax function="msql_field_name"></phpsyntax>
1351         <phpsyntax function="msql_field_seek"></phpsyntax>
1352         <phpsyntax function="msql_field_table"></phpsyntax>
1353         <phpsyntax function="msql_field_type"></phpsyntax>
1354         <phpsyntax function="msql_fieldflags"></phpsyntax>
1355         <phpsyntax function="msql_fieldlen"></phpsyntax>
1356         <phpsyntax function="msql_fieldname"></phpsyntax>
1357         <phpsyntax function="msql_fieldtable"></phpsyntax>
1358         <phpsyntax function="msql_fieldtype"></phpsyntax>
1359         <phpsyntax function="msql_free_result"></phpsyntax>
1360         <phpsyntax function="msql_freeresult"></phpsyntax>
1361         <phpsyntax function="msql_list_dbs"></phpsyntax>
1362         <phpsyntax function="msql_list_fields"></phpsyntax>
1363         <phpsyntax function="msql_list_tables"></phpsyntax>
1364         <phpsyntax function="msql_listdbs"></phpsyntax>
1365         <phpsyntax function="msql_listfields"></phpsyntax>
1366         <phpsyntax function="msql_listtables"></phpsyntax>
1367         <phpsyntax function="msql_num_fields"></phpsyntax>
1368         <phpsyntax function="msql_num_rows"></phpsyntax>
1369         <phpsyntax function="msql_numfields"></phpsyntax>
1370         <phpsyntax function="msql_numrows"></phpsyntax>
1371         <phpsyntax function="msql_pconnect"></phpsyntax>
1372         <phpsyntax function="msql_query"></phpsyntax>
1373         <phpsyntax function="msql_regcase"></phpsyntax>
1374         <phpsyntax function="msql_result"></phpsyntax>
1375         <phpsyntax function="msql_select_db"></phpsyntax>
1376         <phpsyntax function="msql_selectdb"></phpsyntax>
1377         <phpsyntax function="msql_tablename"></phpsyntax>
1378         <phpsyntax function="mssql_affected_rows"></phpsyntax>
1379         <phpsyntax function="mssql_affected_rows"></phpsyntax>
1380         <phpsyntax function="mssql_close"></phpsyntax>
1381         <phpsyntax function="mssql_close"></phpsyntax>
1382         <phpsyntax function="mssql_close"></phpsyntax>
1383         <phpsyntax function="mssql_connect"></phpsyntax>
1384         <phpsyntax function="mssql_connect"></phpsyntax>
1385         <phpsyntax function="mssql_connect"></phpsyntax>
1386         <phpsyntax function="mssql_data_seek"></phpsyntax>
1387         <phpsyntax function="mssql_data_seek"></phpsyntax>
1388         <phpsyntax function="mssql_data_seek"></phpsyntax>
1389         <phpsyntax function="mssql_fetch_array"></phpsyntax>
1390         <phpsyntax function="mssql_fetch_array"></phpsyntax>
1391         <phpsyntax function="mssql_fetch_array"></phpsyntax>
1392         <phpsyntax function="mssql_fetch_batch"></phpsyntax>
1393         <phpsyntax function="mssql_fetch_field"></phpsyntax>
1394         <phpsyntax function="mssql_fetch_field"></phpsyntax>
1395         <phpsyntax function="mssql_fetch_field"></phpsyntax>
1396         <phpsyntax function="mssql_fetch_object"></phpsyntax>
1397         <phpsyntax function="mssql_fetch_object"></phpsyntax>
1398         <phpsyntax function="mssql_fetch_object"></phpsyntax>
1399         <phpsyntax function="mssql_fetch_row"></phpsyntax>
1400         <phpsyntax function="mssql_fetch_row"></phpsyntax>
1401         <phpsyntax function="mssql_fetch_row"></phpsyntax>
1402         <phpsyntax function="mssql_field_length"></phpsyntax>
1403         <phpsyntax function="mssql_field_name"></phpsyntax>
1404         <phpsyntax function="mssql_field_seek"></phpsyntax>
1405         <phpsyntax function="mssql_field_seek"></phpsyntax>
1406         <phpsyntax function="mssql_field_seek"></phpsyntax>
1407         <phpsyntax function="mssql_field_type"></phpsyntax>
1408         <phpsyntax function="mssql_free_result"></phpsyntax>
1409         <phpsyntax function="mssql_free_result"></phpsyntax>
1410         <phpsyntax function="mssql_free_result"></phpsyntax>
1411         <phpsyntax function="mssql_get_last_message"></phpsyntax>
1412         <phpsyntax function="mssql_get_last_message"></phpsyntax>
1413         <phpsyntax function="mssql_get_last_message"></phpsyntax>
1414         <phpsyntax function="mssql_min_client_severity"></phpsyntax>
1415         <phpsyntax function="mssql_min_error_severity"></phpsyntax>
1416         <phpsyntax function="mssql_min_error_severity"></phpsyntax>
1417         <phpsyntax function="mssql_min_message_severity"></phpsyntax>
1418         <phpsyntax function="mssql_min_message_severity"></phpsyntax>
1419         <phpsyntax function="mssql_min_server_severity"></phpsyntax>
1420         <phpsyntax function="mssql_next_result"></phpsyntax>
1421         <phpsyntax function="mssql_num_fields"></phpsyntax>
1422         <phpsyntax function="mssql_num_fields"></phpsyntax>
1423         <phpsyntax function="mssql_num_fields"></phpsyntax>
1424         <phpsyntax function="mssql_num_rows"></phpsyntax>
1425         <phpsyntax function="mssql_num_rows"></phpsyntax>
1426         <phpsyntax function="mssql_num_rows"></phpsyntax>
1427         <phpsyntax function="mssql_pconnect"></phpsyntax>
1428         <phpsyntax function="mssql_pconnect"></phpsyntax>
1429         <phpsyntax function="mssql_pconnect"></phpsyntax>
1430         <phpsyntax function="mssql_query"></phpsyntax>
1431         <phpsyntax function="mssql_query"></phpsyntax>
1432         <phpsyntax function="mssql_query"></phpsyntax>
1433         <phpsyntax function="mssql_result"></phpsyntax>
1434         <phpsyntax function="mssql_result"></phpsyntax>
1435         <phpsyntax function="mssql_result"></phpsyntax>
1436         <phpsyntax function="mssql_rows_affected"></phpsyntax>
1437         <phpsyntax function="mssql_select_db"></phpsyntax>
1438         <phpsyntax function="mssql_select_db"></phpsyntax>
1439         <phpsyntax function="mssql_select_db"></phpsyntax>
1440         <phpsyntax function="mt_getrandmax"></phpsyntax>
1441         <phpsyntax function="mt_rand"></phpsyntax>
1442         <phpsyntax function="mt_srand"></phpsyntax>
1443         <phpsyntax function="multcolor"></phpsyntax>
1444         <phpsyntax function="muscat_close"></phpsyntax>
1445         <phpsyntax function="muscat_get"></phpsyntax>
1446         <phpsyntax function="muscat_give"></phpsyntax>
1447         <phpsyntax function="muscat_setup"></phpsyntax>
1448         <phpsyntax function="muscat_setup_net"></phpsyntax>
1449         <phpsyntax function="mysql_affected_rows" usage="int mysql_affected_rows ( [resource link_identifier])">
1450 mysql_affected_rows() returns the number of rows affected by the last INSERT, 
1451 UPDATE or DELETE query associated with link_identifier. 
1452 If the link identifier isn't specified, the last link opened by mysql_connect() is assumed. 
1453
1454 Note: If you are using transactions, you need to call mysql_affected_rows() 
1455 after your INSERT, UPDATE, or DELETE query, not after the commit. 
1456
1457 If the last query was a DELETE query with no WHERE clause, 
1458 all of the records will have been deleted from the table but this function will return zero. 
1459
1460 Note: When using UPDATE, MySQL will not update columns where the new value is the same as the old value. 
1461 This creates the possiblity that mysql_affected_rows() may not actually equal the number of rows matched, 
1462 only the number of rows that were literally affected by the query. 
1463
1464 mysql_affected_rows() does not work with SELECT statements; only on statements which modify records. 
1465 To retrieve the number of rows returned by a SELECT, use mysql_num_rows(). 
1466
1467 If the last query failed, this function will return -1. 
1468         </phpsyntax>
1469         <phpsyntax function="mysql_close" usage="bool mysql_close ( [resource link_identifier])">Close MySQL connection</phpsyntax>
1470         <phpsyntax function="mysql_connect" usage="resource mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]])">Open a connection to a MySQL Server</phpsyntax>
1471         <phpsyntax function="mysql_create_db" usage="bool mysql_create_db ( string database name [, resource link_identifier])">Create a MySQL database</phpsyntax>
1472         <phpsyntax function="mysql_data_seek" usage="bool mysql_data_seek ( resource result_identifier, int row_number)">Move internal result pointer</phpsyntax>
1473         <phpsyntax function="mysql_db_name" usage="string mysql_db_name ( resource result, int row [, mixed field])">Get result data</phpsyntax>
1474         <phpsyntax function="mysql_db_query" usage="resource mysql_db_query ( string database, string query [, resource link_identifier])">Send a MySQL query</phpsyntax>
1475         <phpsyntax function="mysql_drop_db" usage="bool mysql_drop_db ( string database_name [, resource link_identifier])">
1476 Returns TRUE on success or FALSE on failure. 
1477
1478 mysql_drop_db() attempts to drop (remove) an entire database from the server 
1479 associated with the specified link identifier. 
1480
1481 For downward compatibility mysql_dropdb() can also be used. This is deprecated, however. 
1482
1483 Note: The function mysql_drop_db() is deprecated. 
1484 It is preferable to use mysql_query() to issue a SQL DROP DATABASE statement instead. 
1485         </phpsyntax>
1486         <phpsyntax function="mysql_errno" usage="int mysql_errno ( [resource link_identifier])">
1487 Returns the error number from the last MySQL function, or 0 (zero) if no error occurred. 
1488
1489 Errors coming back from the MySQL database backend no longer issue warnings. 
1490 Instead, use mysql_errno() to retrieve the error code. 
1491 Note that this function only returns the error code from the most recently executed 
1492 MySQL function (not including mysql_error() and mysql_errno()), so if you want to use it, 
1493 make sure you check the value before calling another MySQL function. 
1494         </phpsyntax>
1495         <phpsyntax function="mysql_error" usage="string mysql_error ( [resource link_identifier])">
1496 Returns the error text from the last MySQL function, or '' (the empty string) if no error occurred. 
1497
1498 Errors coming back from the MySQL database backend no longer issue warnings. 
1499 Instead, use mysql_error() to retrieve the error text. 
1500 Note that this function only returns the error text from the most recently 
1501 executed MySQL function (not including mysql_error() and mysql_errno()), 
1502 so if you want to use it, make sure you check the value before calling another MySQL function.         
1503         </phpsyntax>
1504         <phpsyntax function="mysql_escape_string" usage="string mysql_escape_string ( string unescaped_string)"></phpsyntax>
1505         <phpsyntax function="mysql_fetch_array" usage="array mysql_fetch_array ( resource result [, int result_type])">
1506 Returns an array that corresponds to the fetched row, or FALSE if there are no more rows.
1507
1508 mysql_fetch_array() is an extended version of mysql_fetch_row(). 
1509 In addition to storing the data in the numeric indices of the result array, 
1510 it also stores the data in associative indices, using the field names as keys. 
1511
1512 If two or more columns of the result have the same field names, 
1513 the last column will take precedence. To access the other column(s) of the same name, 
1514 you must use the numeric index of the column or make an alias for the column. 
1515 For aliased columns, you cannot access the contents with the original column name.         
1516         </phpsyntax>
1517         <phpsyntax function="mysql_fetch_assoc" usage="array mysql_fetch_assoc ( resource result)">
1518 Returns an associative array that corresponds to the fetched row, or FALSE if there are no more rows.
1519
1520 mysql_fetch_assoc() is equivalent to calling mysql_fetch_array() with MYSQL_ASSOC 
1521 for the optional second parameter. It only returns an associative array. 
1522 This is the way mysql_fetch_array() originally worked. 
1523 If you need the numeric indices as well as the associative, use mysql_fetch_array(). 
1524
1525 If two or more columns of the result have the same field names, the last column will take precedence. 
1526 To access the other column(s) of the same name, you either need to access the result 
1527 with numeric indices by using mysql_fetch_row() or add alias names. 
1528
1529 An important thing to note is that using mysql_fetch_assoc() is not significantly slower 
1530 than using mysql_fetch_row(), while it provides a significant added value. 
1531         </phpsyntax>
1532         <phpsyntax function="mysql_fetch_field" usage="object mysql_fetch_field ( resource result [, int field_offset])">
1533 Returns an object containing field information. 
1534
1535 mysql_fetch_field() can be used in order to obtain information about fields in a certain query result. 
1536 If the field offset isn't specified, the next field that wasn't yet retrieved by mysql_fetch_field() 
1537 is retrieved. 
1538
1539 The properties of the object are: 
1540 name - column name 
1541 table - name of the table the column belongs to 
1542 max_length - maximum length of the column 
1543 not_null - 1 if the column cannot be NULL 
1544 primary_key - 1 if the column is a primary key 
1545 unique_key - 1 if the column is a unique key 
1546 multiple_key - 1 if the column is a non-unique key 
1547 numeric - 1 if the column is numeric 
1548 blob - 1 if the column is a BLOB 
1549 type - the type of the column 
1550 unsigned - 1 if the column is unsigned 
1551 zerofill - 1 if the column is zero-filled
1552         </phpsyntax>
1553         <phpsyntax function="mysql_fetch_lengths" usage="array mysql_fetch_lengths ( resource result)">Get the length of each output in a result </phpsyntax>
1554         <phpsyntax function="mysql_fetch_object" usage="object mysql_fetch_object ( resource result)">Fetch a result row as an object</phpsyntax>
1555         <phpsyntax function="mysql_fetch_row" usage="array mysql_fetch_row ( resource result)">Get a result row as an enumerated array</phpsyntax>
1556         <phpsyntax function="mysql_field_flags" usage="string mysql_field_flags ( resource result, int field_offset)">Get the flags associated with the specified field in a result</phpsyntax>
1557         <phpsyntax function="mysql_field_len" usage="int mysql_field_len ( resource result, int field_offset)">Returns the length of the specified field </phpsyntax>
1558         <phpsyntax function="mysql_field_name" usage="string mysql_field_name ( resource result, int field_index)">Get the name of the specified field in a result </phpsyntax>
1559         <phpsyntax function="mysql_field_seek" usage="int mysql_field_seek ( resource result, int field_offset)">Set result pointer to a specified field offset </phpsyntax>
1560         <phpsyntax function="mysql_field_table" usage="string mysql_field_table ( resource result, int field_offset)">Get name of the table the specified field is in </phpsyntax>
1561         <phpsyntax function="mysql_field_type" usage="string mysql_field_type ( resource result, int field_offset)">Get the type of the specified field in a result </phpsyntax>
1562         <phpsyntax function="mysql_free_result" usage="bool mysql_free_result ( resource result)">Free result memory</phpsyntax>
1563         <phpsyntax function="mysql_get_client_info" usage="string mysql_get_client_info ( void)">Get MySQL client info</phpsyntax>
1564         <phpsyntax function="mysql_get_host_info" usage="string mysql_get_host_info ( [resource link_identifier])">Get MySQL host info</phpsyntax>
1565         <phpsyntax function="mysql_get_proto_info" usage="int mysql_get_proto_info ( [resource link_identifier])">Get MySQL protocol info</phpsyntax>
1566         <phpsyntax function="mysql_get_server_info" usage="string mysql_get_server_info ( [resource link_identifier])">Get MySQL server info</phpsyntax>
1567         <phpsyntax function="mysql_info" usage="string mysql_info ( [resource link_identifier])">Get information about the most recent query</phpsyntax>
1568         <phpsyntax function="mysql_insert_id" usage="int mysql_insert_id ( [resource link_identifier])">Get the ID generated from the previous INSERT operation </phpsyntax>
1569         <phpsyntax function="mysql_list_dbs" usage="resource mysql_list_dbs ( [resource link_identifier])">List databases available on a MySQL server</phpsyntax>
1570         <phpsyntax function="mysql_list_fields" usage="resource mysql_list_fields ( string database_name, string table_name [, resource link_identifier])">List MySQL result fields</phpsyntax>
1571         <phpsyntax function="mysql_list_processes" usage="resource mysql_list_processes ( [resource link_identifier])">List MySQL processes</phpsyntax>
1572         <phpsyntax function="mysql_list_tables" usage="resource mysql_list_tables ( string database [, resource link_identifier])">List tables in a MySQL database</phpsyntax>
1573         <phpsyntax function="mysql_num_fields" usage="int mysql_num_fields ( resource result)">Get number of fields in result</phpsyntax>
1574         <phpsyntax function="mysql_num_rows" usage="int mysql_num_rows ( resource result)">Get number of rows in result</phpsyntax>
1575         <phpsyntax function="mysql_pconnect" usage="resource mysql_pconnect ( [string server [, string username [, string password [, int client_flags]]]])">Open a persistent connection to a MySQL server </phpsyntax>
1576         <phpsyntax function="mysql_ping" usage="bool mysql_ping ( [resource link_identifier])">Ping a server connection or reconnect if there is no connection</phpsyntax>
1577         <phpsyntax function="mysql_query" usage="resource mysql_query ( string query [, resource link_identifier [, int result_mode]])">
1578 mysql_query() sends a query to the currently active database on the server 
1579 that's associated with the specified link identifier. 
1580 If link_identifier isn't specified, the last opened link is assumed. 
1581 If no link is open, the function tries to establish a link as if mysql_connect() 
1582 was called with no arguments, and use it. 
1583
1584 The optional result_mode parameter can be MYSQL_USE_RESULT and MYSQL_STORE_RESULT. 
1585 It defaults to MYSQL_STORE_RESULT, so the result is buffered. 
1586 See also mysql_unbuffered_query() for the counterpart of this behaviour. 
1587         </phpsyntax>
1588         <phpsyntax function="mysql_real_escape_string" usage="string mysql_real_escape_string ( string unescaped_string [, resource link_identifier])">Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection.</phpsyntax>
1589         <phpsyntax function="mysql_result" usage="mixed mysql_result ( resource result, int row [, mixed field])">Get result data</phpsyntax>
1590         <phpsyntax function="mysql_select_db" usage="bool mysql_select_db ( string database_name [, resource link_identifier])">Select a MySQL database</phpsyntax>
1591         <phpsyntax function="mysql_stat" usage="string mysql_stat ( [resource link_identifier])">Get current system status</phpsyntax>
1592         <phpsyntax function="mysql_tablename" usage="string mysql_tablename ( resource result, int i)">Get table name of field</phpsyntax>
1593         <phpsyntax function="mysql_threadid" usage="int mysql_thread_id ( [resource link_identifier])">Return the current thread ID</phpsyntax>
1594         <phpsyntax function="mysql_unbuffered_query" usage="resource mysql_unbuffered_query ( string query [, resource link_identifier [, int result_mode]])">
1595 mysql_unbuffered_query() sends a SQL query query to MySQL, without fetching and buffering the 
1596 result rows automatically, as mysql_query() does. 
1597 On the one hand, this saves a considerable amount of memory with SQL queries 
1598 that produce large result sets. On the other hand, you can start working on 
1599 the result set immediately after the first row has been retrieved: you don't 
1600 have to wait until the complete SQL query has been performed. When using multiple DB-connects, 
1601 you have to specify the optional parameter link_identifier. 
1602
1603 The optional result_mode parameter can be MYSQL_USE_RESULT and MYSQL_STORE_RESULT. 
1604 It defaults to MYSQL_USE_RESULT, so the result is not buffered. 
1605 See also mysql_query() for the counterpart of this behaviour. 
1606         </phpsyntax>
1607         <phpsyntax function="natcasesort" usage="void natcasesort ( array array)">Sort an array using a case insensitive &quot;natural order&quot; algorithm </phpsyntax>
1608         <phpsyntax function="natsort" usage="void natsort ( array array)">Sort an array using a "natural order" algorithm </phpsyntax>
1609         <phpsyntax function="new_xmldoc"></phpsyntax>
1610         <phpsyntax function="next" usage="mixed next ( array array)">Advance the internal array pointer of an array </phpsyntax>
1611         <phpsyntax function="nextframe"></phpsyntax>
1612         <phpsyntax function="nextframe"></phpsyntax>
1613         <phpsyntax function="nl2br" usage="string nl2br ( string string)">Inserts HTML line breaks before all newlines in a string </phpsyntax>
1614         <phpsyntax function="nl_langinfo" usage="string nl_langinfo ( int item)">Query language and locale information </phpsyntax>
1615         <phpsyntax function="notes_body"></phpsyntax>
1616         <phpsyntax function="notes_copy_db"></phpsyntax>
1617         <phpsyntax function="notes_create_db"></phpsyntax>
1618         <phpsyntax function="notes_create_note"></phpsyntax>
1619         <phpsyntax function="notes_drop_db"></phpsyntax>
1620         <phpsyntax function="notes_find_note"></phpsyntax>
1621         <phpsyntax function="notes_header_info"></phpsyntax>
1622         <phpsyntax function="notes_list_msgs"></phpsyntax>
1623         <phpsyntax function="notes_mark_read"></phpsyntax>
1624         <phpsyntax function="notes_mark_unread"></phpsyntax>
1625         <phpsyntax function="notes_nav_create"></phpsyntax>
1626         <phpsyntax function="notes_search"></phpsyntax>
1627         <phpsyntax function="notes_unread"></phpsyntax>
1628         <phpsyntax function="notes_version"></phpsyntax>
1629         <phpsyntax function="number_format" usage="string number_format ( float number [, int decimals [, string dec_point [, string thousands_sep]]])">Format a number with grouped thousands</phpsyntax>
1630         <phpsyntax function="ob_end_clean"></phpsyntax>
1631         <phpsyntax function="ob_end_flush"></phpsyntax>
1632         <phpsyntax function="ob_get_contents"></phpsyntax>
1633         <phpsyntax function="ob_get_length"></phpsyntax>
1634         <phpsyntax function="ob_gzhandler"></phpsyntax>
1635         <phpsyntax function="ob_iconv_handler"></phpsyntax>
1636         <phpsyntax function="ob_implicit_flush"></phpsyntax>
1637         <phpsyntax function="ob_start"></phpsyntax>
1638         <phpsyntax function="ocibindbyname"></phpsyntax>
1639         <phpsyntax function="ocicancel"></phpsyntax>
1640         <phpsyntax function="ocicollappend"></phpsyntax>
1641         <phpsyntax function="ocicollassign"></phpsyntax>
1642         <phpsyntax function="ocicollassignelem"></phpsyntax>
1643         <phpsyntax function="ocicolldateappendelem"></phpsyntax>
1644         <phpsyntax function="ocicolldateassignelem"></phpsyntax>
1645         <phpsyntax function="ocicolldategetelem"></phpsyntax>
1646         <phpsyntax function="ocicollgetelem"></phpsyntax>
1647         <phpsyntax function="ocicollmax"></phpsyntax>
1648         <phpsyntax function="ocicollsize"></phpsyntax>
1649         <phpsyntax function="ocicolltrim"></phpsyntax>
1650         <phpsyntax function="ocicolumnisnull"></phpsyntax>
1651         <phpsyntax function="ocicolumnname"></phpsyntax>
1652         <phpsyntax function="ocicolumnprecision"></phpsyntax>
1653         <phpsyntax function="ocicolumnscale"></phpsyntax>
1654         <phpsyntax function="ocicolumnsize"></phpsyntax>
1655         <phpsyntax function="ocicolumntype"></phpsyntax>
1656         <phpsyntax function="ocicolumntyperaw"></phpsyntax>
1657         <phpsyntax function="ocicommit"></phpsyntax>
1658         <phpsyntax function="ocidefinebyname"></phpsyntax>
1659         <phpsyntax function="ocierror"></phpsyntax>
1660         <phpsyntax function="ociexecute"></phpsyntax>
1661         <phpsyntax function="ocifetch"></phpsyntax>
1662         <phpsyntax function="ocifetchinto"></phpsyntax>
1663         <phpsyntax function="ocifetchstatement"></phpsyntax>
1664         <phpsyntax function="ocifreecoll"></phpsyntax>
1665         <phpsyntax function="ocifreecursor"></phpsyntax>
1666         <phpsyntax function="ocifreedesc"></phpsyntax>
1667         <phpsyntax function="ocifreestatement"></phpsyntax>
1668         <phpsyntax function="ociinternaldebug"></phpsyntax>
1669         <phpsyntax function="ociloadlob"></phpsyntax>
1670         <phpsyntax function="ocilogoff"></phpsyntax>
1671         <phpsyntax function="ocilogon"></phpsyntax>
1672         <phpsyntax function="ocinewcollection"></phpsyntax>
1673         <phpsyntax function="ocinewcursor"></phpsyntax>
1674         <phpsyntax function="ocinewdescriptor"></phpsyntax>
1675         <phpsyntax function="ocinlogon"></phpsyntax>
1676         <phpsyntax function="ocinumcols"></phpsyntax>
1677         <phpsyntax function="ociparse"></phpsyntax>
1678         <phpsyntax function="ociplogon"></phpsyntax>
1679         <phpsyntax function="ociresult"></phpsyntax>
1680         <phpsyntax function="ocirollback"></phpsyntax>
1681         <phpsyntax function="ocirowcount"></phpsyntax>
1682         <phpsyntax function="ocisavelob"></phpsyntax>
1683         <phpsyntax function="ocisavelobfile"></phpsyntax>
1684         <phpsyntax function="ociserverversion"></phpsyntax>
1685         <phpsyntax function="ocisetprefetch"></phpsyntax>
1686         <phpsyntax function="ocistatementtype"></phpsyntax>
1687         <phpsyntax function="ociwritelobtofile"></phpsyntax>
1688         <phpsyntax function="octdec"></phpsyntax>
1689         <phpsyntax function="odbc_autocommit"></phpsyntax>
1690         <phpsyntax function="odbc_binmode"></phpsyntax>
1691         <phpsyntax function="odbc_close"></phpsyntax>
1692         <phpsyntax function="odbc_close_all"></phpsyntax>
1693         <phpsyntax function="odbc_columnprivileges"></phpsyntax>
1694         <phpsyntax function="odbc_columns"></phpsyntax>
1695         <phpsyntax function="odbc_commit"></phpsyntax>
1696         <phpsyntax function="odbc_connect"></phpsyntax>
1697         <phpsyntax function="odbc_cursor"></phpsyntax>
1698         <phpsyntax function="odbc_do"></phpsyntax>
1699         <phpsyntax function="odbc_error"></phpsyntax>
1700         <phpsyntax function="odbc_errormsg"></phpsyntax>
1701         <phpsyntax function="odbc_exec"></phpsyntax>
1702         <phpsyntax function="odbc_execute"></phpsyntax>
1703         <phpsyntax function="odbc_fetch_array"></phpsyntax>
1704         <phpsyntax function="odbc_fetch_into"></phpsyntax>
1705         <phpsyntax function="odbc_fetch_object"></phpsyntax>
1706         <phpsyntax function="odbc_fetch_row"></phpsyntax>
1707         <phpsyntax function="odbc_field_len"></phpsyntax>
1708         <phpsyntax function="odbc_field_name"></phpsyntax>
1709         <phpsyntax function="odbc_field_num"></phpsyntax>
1710         <phpsyntax function="odbc_field_precision"></phpsyntax>
1711         <phpsyntax function="odbc_field_scale"></phpsyntax>
1712         <phpsyntax function="odbc_field_type"></phpsyntax>
1713         <phpsyntax function="odbc_foreignkeys"></phpsyntax>
1714         <phpsyntax function="odbc_free_result"></phpsyntax>
1715         <phpsyntax function="odbc_gettypeinfo"></phpsyntax>
1716         <phpsyntax function="odbc_longreadlen"></phpsyntax>
1717         <phpsyntax function="odbc_next_result"></phpsyntax>
1718         <phpsyntax function="odbc_num_fields"></phpsyntax>
1719         <phpsyntax function="odbc_num_rows"></phpsyntax>
1720         <phpsyntax function="odbc_pconnect"></phpsyntax>
1721         <phpsyntax function="odbc_prepare"></phpsyntax>
1722         <phpsyntax function="odbc_primarykeys"></phpsyntax>
1723         <phpsyntax function="odbc_procedurecolumns"></phpsyntax>
1724         <phpsyntax function="odbc_procedures"></phpsyntax>
1725         <phpsyntax function="odbc_result"></phpsyntax>
1726         <phpsyntax function="odbc_result_all"></phpsyntax>
1727         <phpsyntax function="odbc_rollback"></phpsyntax>
1728         <phpsyntax function="odbc_setoption"></phpsyntax>
1729         <phpsyntax function="odbc_specialcolumns"></phpsyntax>
1730         <phpsyntax function="odbc_statistics"></phpsyntax>
1731         <phpsyntax function="odbc_tableprivileges"></phpsyntax>
1732         <phpsyntax function="odbc_tables"></phpsyntax>
1733         <phpsyntax function="open_listen_sock"></phpsyntax>
1734         <phpsyntax function="opendir"></phpsyntax>
1735         <phpsyntax function="openlog"></phpsyntax>
1736         <phpsyntax function="openssl_error_string"></phpsyntax>
1737         <phpsyntax function="openssl_free_key"></phpsyntax>
1738         <phpsyntax function="openssl_get_privatekey"></phpsyntax>
1739         <phpsyntax function="openssl_get_publickey"></phpsyntax>
1740         <phpsyntax function="openssl_open"></phpsyntax>
1741         <phpsyntax function="openssl_pkcs7_decrypt"></phpsyntax>
1742         <phpsyntax function="openssl_pkcs7_encrypt"></phpsyntax>
1743         <phpsyntax function="openssl_pkcs7_sign"></phpsyntax>
1744         <phpsyntax function="openssl_pkcs7_verify"></phpsyntax>
1745         <phpsyntax function="openssl_seal"></phpsyntax>
1746         <phpsyntax function="openssl_sign"></phpsyntax>
1747         <phpsyntax function="openssl_verify"></phpsyntax>
1748         <phpsyntax function="openssl_x509_checkpurpose"></phpsyntax>
1749         <phpsyntax function="openssl_x509_free"></phpsyntax>
1750         <phpsyntax function="openssl_x509_parse"></phpsyntax>
1751         <phpsyntax function="openssl_x509_read"></phpsyntax>
1752         <phpsyntax function="ora_bind"></phpsyntax>
1753         <phpsyntax function="ora_close"></phpsyntax>
1754         <phpsyntax function="ora_columnname"></phpsyntax>
1755         <phpsyntax function="ora_columnsize"></phpsyntax>
1756         <phpsyntax function="ora_columntype"></phpsyntax>
1757         <phpsyntax function="ora_commit"></phpsyntax>
1758         <phpsyntax function="ora_commitoff"></phpsyntax>
1759         <phpsyntax function="ora_commiton"></phpsyntax>
1760         <phpsyntax function="ora_do"></phpsyntax>
1761         <phpsyntax function="ora_error"></phpsyntax>
1762         <phpsyntax function="ora_errorcode"></phpsyntax>
1763         <phpsyntax function="ora_exec"></phpsyntax>
1764         <phpsyntax function="ora_fetch"></phpsyntax>
1765         <phpsyntax function="ora_fetch_into"></phpsyntax>
1766         <phpsyntax function="ora_getcolumn"></phpsyntax>
1767         <phpsyntax function="ora_logoff"></phpsyntax>
1768         <phpsyntax function="ora_logon"></phpsyntax>
1769         <phpsyntax function="ora_numcols"></phpsyntax>
1770         <phpsyntax function="ora_numrows"></phpsyntax>
1771         <phpsyntax function="ora_open"></phpsyntax>
1772         <phpsyntax function="ora_parse"></phpsyntax>
1773         <phpsyntax function="ora_plogon"></phpsyntax>
1774         <phpsyntax function="ora_rollback"></phpsyntax>
1775         <phpsyntax function="orbit_caught_exception"></phpsyntax>
1776         <phpsyntax function="orbit_exception_id"></phpsyntax>
1777         <phpsyntax function="orbit_exception_value"></phpsyntax>
1778         <phpsyntax function="orbit_get_repository_id"></phpsyntax>
1779         <phpsyntax function="orbit_load_idl"></phpsyntax>
1780         <phpsyntax function="ord" usage="int ord ( string string)">Returns the ASCII value of the first character of string. This function complements chr(). </phpsyntax>
1781         <phpsyntax function="output"></phpsyntax>
1782         <phpsyntax function="ovrimos_close"></phpsyntax>
1783         <phpsyntax function="ovrimos_close_all"></phpsyntax>
1784         <phpsyntax function="ovrimos_commit"></phpsyntax>
1785         <phpsyntax function="ovrimos_connect"></phpsyntax>
1786         <phpsyntax function="ovrimos_cursor"></phpsyntax>
1787         <phpsyntax function="ovrimos_exec"></phpsyntax>
1788         <phpsyntax function="ovrimos_execute"></phpsyntax>
1789         <phpsyntax function="ovrimos_fetch_into"></phpsyntax>
1790         <phpsyntax function="ovrimos_fetch_row"></phpsyntax>
1791         <phpsyntax function="ovrimos_field_len"></phpsyntax>
1792         <phpsyntax function="ovrimos_field_name"></phpsyntax>
1793         <phpsyntax function="ovrimos_field_num"></phpsyntax>
1794         <phpsyntax function="ovrimos_field_type"></phpsyntax>
1795         <phpsyntax function="ovrimos_free_result"></phpsyntax>
1796         <phpsyntax function="ovrimos_longreadlen"></phpsyntax>
1797         <phpsyntax function="ovrimos_num_fields"></phpsyntax>
1798         <phpsyntax function="ovrimos_num_rows"></phpsyntax>
1799         <phpsyntax function="ovrimos_prepare"></phpsyntax>
1800         <phpsyntax function="ovrimos_result"></phpsyntax>
1801         <phpsyntax function="ovrimos_result_all"></phpsyntax>
1802         <phpsyntax function="ovrimos_rollback"></phpsyntax>
1803         <phpsyntax function="pack"></phpsyntax>
1804         <phpsyntax function="parse_ini_file"></phpsyntax>
1805         <phpsyntax function="parse_str" usage="void parse_str ( string str [, array arr])">Parses the string into variables</phpsyntax>
1806         <phpsyntax function="parse_url"></phpsyntax>
1807         <phpsyntax function="passthru"></phpsyntax>
1808         <phpsyntax function="pathinfo"></phpsyntax>
1809         <phpsyntax function="pclose"></phpsyntax>
1810         <phpsyntax function="pdf_add_annotation"></phpsyntax>
1811         <phpsyntax function="pdf_add_bookmark"></phpsyntax>
1812         <phpsyntax function="pdf_add_launchlink"></phpsyntax>
1813         <phpsyntax function="pdf_add_locallink"></phpsyntax>
1814         <phpsyntax function="pdf_add_note"></phpsyntax>
1815         <phpsyntax function="pdf_add_outline"></phpsyntax>
1816         <phpsyntax function="pdf_add_pdflink"></phpsyntax>
1817         <phpsyntax function="pdf_add_thumbnail"></phpsyntax>
1818         <phpsyntax function="pdf_add_weblink"></phpsyntax>
1819         <phpsyntax function="pdf_arc"></phpsyntax>
1820         <phpsyntax function="pdf_arcn"></phpsyntax>
1821         <phpsyntax function="pdf_attach_file"></phpsyntax>
1822         <phpsyntax function="pdf_begin_page"></phpsyntax>
1823         <phpsyntax function="pdf_begin_pattern"></phpsyntax>
1824         <phpsyntax function="pdf_begin_template"></phpsyntax>
1825         <phpsyntax function="pdf_circle"></phpsyntax>
1826         <phpsyntax function="pdf_clip"></phpsyntax>
1827         <phpsyntax function="pdf_close"></phpsyntax>
1828         <phpsyntax function="pdf_close_image"></phpsyntax>
1829         <phpsyntax function="pdf_close_pdi"></phpsyntax>
1830         <phpsyntax function="pdf_close_pdi_page"></phpsyntax>
1831         <phpsyntax function="pdf_closepath"></phpsyntax>
1832         <phpsyntax function="pdf_closepath_fill_stroke"></phpsyntax>
1833         <phpsyntax function="pdf_closepath_stroke"></phpsyntax>
1834         <phpsyntax function="pdf_concat"></phpsyntax>
1835         <phpsyntax function="pdf_continue_text"></phpsyntax>
1836         <phpsyntax function="pdf_curveto"></phpsyntax>
1837         <phpsyntax function="pdf_delete"></phpsyntax>
1838         <phpsyntax function="pdf_end_page"></phpsyntax>
1839         <phpsyntax function="pdf_end_pattern"></phpsyntax>
1840         <phpsyntax function="pdf_end_template"></phpsyntax>
1841         <phpsyntax function="pdf_endpath"></phpsyntax>
1842         <phpsyntax function="pdf_fill"></phpsyntax>
1843         <phpsyntax function="pdf_fill_stroke"></phpsyntax>
1844         <phpsyntax function="pdf_findfont"></phpsyntax>
1845         <phpsyntax function="pdf_get_buffer"></phpsyntax>
1846         <phpsyntax function="pdf_get_font"></phpsyntax>
1847         <phpsyntax function="pdf_get_fontname"></phpsyntax>
1848         <phpsyntax function="pdf_get_fontsize"></phpsyntax>
1849         <phpsyntax function="pdf_get_image_height"></phpsyntax>
1850         <phpsyntax function="pdf_get_image_width"></phpsyntax>
1851         <phpsyntax function="pdf_get_parameter"></phpsyntax>
1852         <phpsyntax function="pdf_get_pdi_parameter"></phpsyntax>
1853         <phpsyntax function="pdf_get_pdi_value"></phpsyntax>
1854         <phpsyntax function="pdf_get_value"></phpsyntax>
1855         <phpsyntax function="pdf_initgraphics"></phpsyntax>
1856         <phpsyntax function="pdf_lineto"></phpsyntax>
1857         <phpsyntax function="pdf_makespotcolor"></phpsyntax>
1858         <phpsyntax function="pdf_moveto"></phpsyntax>
1859         <phpsyntax function="pdf_new"></phpsyntax>
1860         <phpsyntax function="pdf_open"></phpsyntax>
1861         <phpsyntax function="pdf_open_ccitt"></phpsyntax>
1862         <phpsyntax function="pdf_open_file"></phpsyntax>
1863         <phpsyntax function="pdf_open_gif"></phpsyntax>
1864         <phpsyntax function="pdf_open_image"></phpsyntax>
1865         <phpsyntax function="pdf_open_image_file"></phpsyntax>
1866         <phpsyntax function="pdf_open_jpeg"></phpsyntax>
1867         <phpsyntax function="pdf_open_memory_image"></phpsyntax>
1868         <phpsyntax function="pdf_open_pdi"></phpsyntax>
1869         <phpsyntax function="pdf_open_pdi_page"></phpsyntax>
1870         <phpsyntax function="pdf_open_png"></phpsyntax>
1871         <phpsyntax function="pdf_open_tiff"></phpsyntax>
1872         <phpsyntax function="pdf_place_image"></phpsyntax>
1873         <phpsyntax function="pdf_place_pdi_page"></phpsyntax>
1874         <phpsyntax function="pdf_rect"></phpsyntax>
1875         <phpsyntax function="pdf_restore"></phpsyntax>
1876         <phpsyntax function="pdf_rotate"></phpsyntax>
1877         <phpsyntax function="pdf_save"></phpsyntax>
1878         <phpsyntax function="pdf_scale"></phpsyntax>
1879         <phpsyntax function="pdf_set_border_color"></phpsyntax>
1880         <phpsyntax function="pdf_set_border_dash"></phpsyntax>
1881         <phpsyntax function="pdf_set_border_style"></phpsyntax>
1882         <phpsyntax function="pdf_set_char_spacing"></phpsyntax>
1883         <phpsyntax function="pdf_set_duration"></phpsyntax>
1884         <phpsyntax function="pdf_set_font"></phpsyntax>
1885         <phpsyntax function="pdf_set_horiz_scaling"></phpsyntax>
1886         <phpsyntax function="pdf_set_info"></phpsyntax>
1887         <phpsyntax function="pdf_set_info_author"></phpsyntax>
1888         <phpsyntax function="pdf_set_info_creator"></phpsyntax>
1889         <phpsyntax function="pdf_set_info_keywords"></phpsyntax>
1890         <phpsyntax function="pdf_set_info_subject"></phpsyntax>
1891         <phpsyntax function="pdf_set_info_title"></phpsyntax>
1892         <phpsyntax function="pdf_set_leading"></phpsyntax>
1893         <phpsyntax function="pdf_set_parameter"></phpsyntax>
1894         <phpsyntax function="pdf_set_text_pos"></phpsyntax>
1895         <phpsyntax function="pdf_set_text_rendering"></phpsyntax>
1896         <phpsyntax function="pdf_set_text_rise"></phpsyntax>
1897         <phpsyntax function="pdf_set_transition"></phpsyntax>
1898         <phpsyntax function="pdf_set_value"></phpsyntax>
1899         <phpsyntax function="pdf_set_word_spacing"></phpsyntax>
1900         <phpsyntax function="pdf_setcolor"></phpsyntax>
1901         <phpsyntax function="pdf_setdash"></phpsyntax>
1902         <phpsyntax function="pdf_setflat"></phpsyntax>
1903         <phpsyntax function="pdf_setfont"></phpsyntax>
1904         <phpsyntax function="pdf_setgray"></phpsyntax>
1905         <phpsyntax function="pdf_setgray_fill"></phpsyntax>
1906         <phpsyntax function="pdf_setgray_stroke"></phpsyntax>
1907         <phpsyntax function="pdf_setlinecap"></phpsyntax>
1908         <phpsyntax function="pdf_setlinejoin"></phpsyntax>
1909         <phpsyntax function="pdf_setlinewidth"></phpsyntax>
1910         <phpsyntax function="pdf_setmatrix"></phpsyntax>
1911         <phpsyntax function="pdf_setmiterlimit"></phpsyntax>
1912         <phpsyntax function="pdf_setpolydash"></phpsyntax>
1913         <phpsyntax function="pdf_setrgbcolor"></phpsyntax>
1914         <phpsyntax function="pdf_setrgbcolor_fill"></phpsyntax>
1915         <phpsyntax function="pdf_setrgbcolor_stroke"></phpsyntax>
1916         <phpsyntax function="pdf_show"></phpsyntax>
1917         <phpsyntax function="pdf_show_boxed"></phpsyntax>
1918         <phpsyntax function="pdf_show_xy"></phpsyntax>
1919         <phpsyntax function="pdf_skew"></phpsyntax>
1920         <phpsyntax function="pdf_stringwidth"></phpsyntax>
1921         <phpsyntax function="pdf_stroke"></phpsyntax>
1922         <phpsyntax function="pdf_translate"></phpsyntax>
1923         <phpsyntax function="pfpro_cleanup"></phpsyntax>
1924         <phpsyntax function="pfpro_init"></phpsyntax>
1925         <phpsyntax function="pfpro_process"></phpsyntax>
1926         <phpsyntax function="pfpro_process_raw"></phpsyntax>
1927         <phpsyntax function="pfpro_version"></phpsyntax>
1928         <phpsyntax function="pfsockopen"></phpsyntax>
1929         <phpsyntax function="pg_client_encoding"></phpsyntax>
1930         <phpsyntax function="pg_clientencoding"></phpsyntax>
1931         <phpsyntax function="pg_close"></phpsyntax>
1932         <phpsyntax function="pg_cmdtuples"></phpsyntax>
1933         <phpsyntax function="pg_connect"></phpsyntax>
1934         <phpsyntax function="pg_dbname"></phpsyntax>
1935         <phpsyntax function="pg_end_copy"></phpsyntax>
1936         <phpsyntax function="pg_errormessage"></phpsyntax>
1937         <phpsyntax function="pg_exec"></phpsyntax>
1938         <phpsyntax function="pg_fetch_array"></phpsyntax>
1939         <phpsyntax function="pg_fetch_object"></phpsyntax>
1940         <phpsyntax function="pg_fetch_row"></phpsyntax>
1941         <phpsyntax function="pg_fieldisnull"></phpsyntax>
1942         <phpsyntax function="pg_fieldname"></phpsyntax>
1943         <phpsyntax function="pg_fieldnum"></phpsyntax>
1944         <phpsyntax function="pg_fieldprtlen"></phpsyntax>
1945         <phpsyntax function="pg_fieldsize"></phpsyntax>
1946         <phpsyntax function="pg_fieldtype"></phpsyntax>
1947         <phpsyntax function="pg_freeresult"></phpsyntax>
1948         <phpsyntax function="pg_getlastoid"></phpsyntax>
1949         <phpsyntax function="pg_host"></phpsyntax>
1950         <phpsyntax function="pg_loclose"></phpsyntax>
1951         <phpsyntax function="pg_locreate"></phpsyntax>
1952         <phpsyntax function="pg_loexport"></phpsyntax>
1953         <phpsyntax function="pg_loimport"></phpsyntax>
1954         <phpsyntax function="pg_loopen"></phpsyntax>
1955         <phpsyntax function="pg_loread"></phpsyntax>
1956         <phpsyntax function="pg_loreadall"></phpsyntax>
1957         <phpsyntax function="pg_lounlink"></phpsyntax>
1958         <phpsyntax function="pg_lowrite"></phpsyntax>
1959         <phpsyntax function="pg_numfields"></phpsyntax>
1960         <phpsyntax function="pg_numrows"></phpsyntax>
1961         <phpsyntax function="pg_options"></phpsyntax>
1962         <phpsyntax function="pg_pconnect"></phpsyntax>
1963         <phpsyntax function="pg_port"></phpsyntax>
1964         <phpsyntax function="pg_put_line"></phpsyntax>
1965         <phpsyntax function="pg_result"></phpsyntax>
1966         <phpsyntax function="pg_set_client_encoding"></phpsyntax>
1967         <phpsyntax function="pg_setclientencoding"></phpsyntax>
1968         <phpsyntax function="pg_trace"></phpsyntax>
1969         <phpsyntax function="pg_tty"></phpsyntax>
1970         <phpsyntax function="pg_untrace"></phpsyntax>
1971         <phpsyntax function="php_logo_guid"></phpsyntax>
1972         <phpsyntax function="php_sapi_name"></phpsyntax>
1973         <phpsyntax function="php_uname"></phpsyntax>
1974         <phpsyntax function="phpcredits"></phpsyntax>
1975         <phpsyntax function="phpinfo"></phpsyntax>
1976         <phpsyntax function="phpversion"  usage="string phpversion (void)">Returns a string containing the version of the currently running PHP parser.
1977 Note: This information is also available in the predefined constant PHP_VERSION. 
1978         </phpsyntax>
1979         <phpsyntax function="pi"></phpsyntax>
1980         <phpsyntax function="png2wbmp"></phpsyntax>
1981         <phpsyntax function="popen"></phpsyntax>
1982         <phpsyntax function="pos" usage="mixed pos ( array array)">Get the current element from an array</phpsyntax>
1983         <phpsyntax function="posix_ctermid"></phpsyntax>
1984         <phpsyntax function="posix_getcwd"></phpsyntax>
1985         <phpsyntax function="posix_getegid"></phpsyntax>
1986         <phpsyntax function="posix_geteuid"></phpsyntax>
1987         <phpsyntax function="posix_getgid"></phpsyntax>
1988         <phpsyntax function="posix_getgrgid"></phpsyntax>
1989         <phpsyntax function="posix_getgrnam"></phpsyntax>
1990         <phpsyntax function="posix_getgroups"></phpsyntax>
1991         <phpsyntax function="posix_getlogin"></phpsyntax>
1992         <phpsyntax function="posix_getpgid"></phpsyntax>
1993         <phpsyntax function="posix_getpgrp"></phpsyntax>
1994         <phpsyntax function="posix_getpid"></phpsyntax>
1995         <phpsyntax function="posix_getppid"></phpsyntax>
1996         <phpsyntax function="posix_getpwnam"></phpsyntax>
1997         <phpsyntax function="posix_getpwuid"></phpsyntax>
1998         <phpsyntax function="posix_getrlimit"></phpsyntax>
1999         <phpsyntax function="posix_getsid"></phpsyntax>
2000         <phpsyntax function="posix_getuid"></phpsyntax>
2001         <phpsyntax function="posix_isatty"></phpsyntax>
2002         <phpsyntax function="posix_kill"></phpsyntax>
2003         <phpsyntax function="posix_mkfifo"></phpsyntax>
2004         <phpsyntax function="posix_setegid"></phpsyntax>
2005         <phpsyntax function="posix_seteuid"></phpsyntax>
2006         <phpsyntax function="posix_setgid"></phpsyntax>
2007         <phpsyntax function="posix_setpgid"></phpsyntax>
2008         <phpsyntax function="posix_setsid"></phpsyntax>
2009         <phpsyntax function="posix_setuid"></phpsyntax>
2010         <phpsyntax function="posix_times"></phpsyntax>
2011         <phpsyntax function="posix_ttyname"></phpsyntax>
2012         <phpsyntax function="posix_uname"></phpsyntax>
2013         <phpsyntax function="pow"></phpsyntax>
2014         <phpsyntax function="preg_grep"></phpsyntax>
2015         <phpsyntax function="preg_match"></phpsyntax>
2016         <phpsyntax function="preg_match_all"></phpsyntax>
2017         <phpsyntax function="preg_quote"></phpsyntax>
2018         <phpsyntax function="preg_replace"></phpsyntax>
2019         <phpsyntax function="preg_replace_callback"></phpsyntax>
2020         <phpsyntax function="preg_split"></phpsyntax>
2021         <phpsyntax function="prev" usage="mixed prev ( array array)">Rewind the internal array pointer</phpsyntax>
2022         <phpsyntax function="print">
2023 Output a string.
2024 Outputs arg. Returns TRUE on success or FALSE on failure. 
2025 print() is not actually a real function (it is a language construct) so you are not required to use parentheses with it. 
2026 </phpsyntax>
2027         <phpsyntax function="printf" usage="void printf ( string format [, mixed args])">Output a formatted string.</phpsyntax>
2028         <phpsyntax function="print_r"></phpsyntax>
2029         <phpsyntax function="printer_abort"></phpsyntax>
2030         <phpsyntax function="printer_close"></phpsyntax>
2031         <phpsyntax function="printer_create_brush"></phpsyntax>
2032         <phpsyntax function="printer_create_dc"></phpsyntax>
2033         <phpsyntax function="printer_create_font"></phpsyntax>
2034         <phpsyntax function="printer_create_pen"></phpsyntax>
2035         <phpsyntax function="printer_delete_brush"></phpsyntax>
2036         <phpsyntax function="printer_delete_dc"></phpsyntax>
2037         <phpsyntax function="printer_delete_font"></phpsyntax>
2038         <phpsyntax function="printer_delete_pen"></phpsyntax>
2039         <phpsyntax function="printer_draw_bmp"></phpsyntax>
2040         <phpsyntax function="printer_draw_chord"></phpsyntax>
2041         <phpsyntax function="printer_draw_elipse"></phpsyntax>
2042         <phpsyntax function="printer_draw_line"></phpsyntax>
2043         <phpsyntax function="printer_draw_pie"></phpsyntax>
2044         <phpsyntax function="printer_draw_rectangle"></phpsyntax>
2045         <phpsyntax function="printer_draw_roundrect"></phpsyntax>
2046         <phpsyntax function="printer_draw_text"></phpsyntax>
2047         <phpsyntax function="printer_end_doc"></phpsyntax>
2048         <phpsyntax function="printer_end_page"></phpsyntax>
2049         <phpsyntax function="printer_get_option"></phpsyntax>
2050         <phpsyntax function="printer_list"></phpsyntax>
2051         <phpsyntax function="printer_logical_fontheight"></phpsyntax>
2052         <phpsyntax function="printer_open"></phpsyntax>
2053         <phpsyntax function="printer_select_brush"></phpsyntax>
2054         <phpsyntax function="printer_select_font"></phpsyntax>
2055         <phpsyntax function="printer_select_pen"></phpsyntax>
2056         <phpsyntax function="printer_set_option"></phpsyntax>
2057         <phpsyntax function="printer_start_doc"></phpsyntax>
2058         <phpsyntax function="printer_start_page"></phpsyntax>
2059         <phpsyntax function="printer_write"></phpsyntax>
2060         <phpsyntax function="printf"></phpsyntax>
2061         <phpsyntax function="pspell_add_to_personal"></phpsyntax>
2062         <phpsyntax function="pspell_add_to_session"></phpsyntax>
2063         <phpsyntax function="pspell_check"></phpsyntax>
2064         <phpsyntax function="pspell_clear_session"></phpsyntax>
2065         <phpsyntax function="pspell_config_create"></phpsyntax>
2066         <phpsyntax function="pspell_config_ignore"></phpsyntax>
2067         <phpsyntax function="pspell_config_mode"></phpsyntax>
2068         <phpsyntax function="pspell_config_personal"></phpsyntax>
2069         <phpsyntax function="pspell_config_repl"></phpsyntax>
2070         <phpsyntax function="pspell_config_runtogether"></phpsyntax>
2071         <phpsyntax function="pspell_config_save_repl"></phpsyntax>
2072         <phpsyntax function="pspell_new"></phpsyntax>
2073         <phpsyntax function="pspell_new_config"></phpsyntax>
2074         <phpsyntax function="pspell_new_personal"></phpsyntax>
2075         <phpsyntax function="pspell_save_wordlist"></phpsyntax>
2076         <phpsyntax function="pspell_store_replacement"></phpsyntax>
2077         <phpsyntax function="pspell_suggest"></phpsyntax>
2078         <phpsyntax function="putenv"></phpsyntax>
2079         <phpsyntax function="putenv"></phpsyntax>
2080         <phpsyntax function="qdom_error"></phpsyntax>
2081         <phpsyntax function="qdom_tree"></phpsyntax>
2082         <phpsyntax function="quoted_printable_decode" usage="string quoted_printable_decode ( string str)">Convert a quoted-printable string to an 8 bit string </phpsyntax>
2083         <phpsyntax function="quotemeta" usage="string quotemeta ( string str)">Quote meta characters</phpsyntax>
2084         <phpsyntax function="rad2deg"></phpsyntax>
2085         <phpsyntax function="rand"></phpsyntax>
2086         <phpsyntax function="range" usage="array range ( mixed low, mixed high [, int step])">Create an array containing a range of elements</phpsyntax>
2087         <phpsyntax function="rawurldecode"></phpsyntax>
2088         <phpsyntax function="rawurlencode"></phpsyntax>
2089         <phpsyntax function="read"></phpsyntax>
2090         <phpsyntax function="read_exif_data"></phpsyntax>
2091         <phpsyntax function="readdir"></phpsyntax>
2092         <phpsyntax function="readfile"></phpsyntax>
2093         <phpsyntax function="readgzfile"></phpsyntax>
2094         <phpsyntax function="readline"></phpsyntax>
2095         <phpsyntax function="readline_add_history"></phpsyntax>
2096         <phpsyntax function="readline_clear_history"></phpsyntax>
2097         <phpsyntax function="readline_completion_function"></phpsyntax>
2098         <phpsyntax function="readline_info"></phpsyntax>
2099         <phpsyntax function="readline_list_history"></phpsyntax>
2100         <phpsyntax function="readline_list_history"></phpsyntax>
2101         <phpsyntax function="readline_read_history"></phpsyntax>
2102         <phpsyntax function="readline_write_history"></phpsyntax>
2103         <phpsyntax function="readlink"></phpsyntax>
2104         <phpsyntax function="readlink"></phpsyntax>
2105         <phpsyntax function="readv"></phpsyntax>
2106         <phpsyntax function="realpath"></phpsyntax>
2107         <phpsyntax function="realpath"></phpsyntax>
2108         <phpsyntax function="recode"></phpsyntax>
2109         <phpsyntax function="recode_file"></phpsyntax>
2110         <phpsyntax function="recode_string"></phpsyntax>
2111         <phpsyntax function="recv"></phpsyntax>
2112         <phpsyntax function="recvfrom"></phpsyntax>
2113         <phpsyntax function="recvmsg"></phpsyntax>
2114         <phpsyntax function="register_shutdown_function"></phpsyntax>
2115         <phpsyntax function="register_tick_function"></phpsyntax>
2116         <phpsyntax function="remove"></phpsyntax>
2117         <phpsyntax function="remove"></phpsyntax>
2118         <phpsyntax function="rename"></phpsyntax>
2119         <phpsyntax function="reset" usage="mixed reset ( array array)">Set the internal pointer of an array to its first element</phpsyntax>
2120         <phpsyntax function="restore_error_handler"></phpsyntax>
2121         <phpsyntax function="rewind"></phpsyntax>
2122         <phpsyntax function="rewinddir"></phpsyntax>
2123         <phpsyntax function="rmdir"></phpsyntax>
2124         <phpsyntax function="rotate"></phpsyntax>
2125         <phpsyntax function="rotateto"></phpsyntax>
2126         <phpsyntax function="rotateto"></phpsyntax>
2127         <phpsyntax function="round"></phpsyntax>
2128         <phpsyntax function="rsort" usage="void rsort ( array array [, int sort_flags])">Sort an array in reverse order</phpsyntax>
2129         <phpsyntax function="rtrim" usage="string rtrim ( string str [, string charlist])">Strip whitespace from the end of a string </phpsyntax>
2130         <phpsyntax function="satellite_caught_exception"></phpsyntax>
2131         <phpsyntax function="satellite_exception_id"></phpsyntax>
2132         <phpsyntax function="satellite_exception_value"></phpsyntax>
2133         <phpsyntax function="satellite_get_repository_id"></phpsyntax>
2134         <phpsyntax function="satellite_load_idl"></phpsyntax>
2135         <phpsyntax function="save"></phpsyntax>
2136         <phpsyntax function="savetofile"></phpsyntax>
2137         <phpsyntax function="scale"></phpsyntax>
2138         <phpsyntax function="scaleto"></phpsyntax>
2139         <phpsyntax function="scaleto"></phpsyntax>
2140         <phpsyntax function="select"></phpsyntax>
2141         <phpsyntax function="sem_acquire"></phpsyntax>
2142         <phpsyntax function="sem_get"></phpsyntax>
2143         <phpsyntax function="sem_release"></phpsyntax>
2144         <phpsyntax function="send"></phpsyntax>
2145         <phpsyntax function="sendmsg"></phpsyntax>
2146         <phpsyntax function="sendto"></phpsyntax>
2147         <phpsyntax function="serialize"></phpsyntax>
2148         <phpsyntax function="session_cache_limiter"></phpsyntax>
2149         <phpsyntax function="session_decode"></phpsyntax>
2150         <phpsyntax function="session_destroy"></phpsyntax>
2151         <phpsyntax function="session_encode"></phpsyntax>
2152         <phpsyntax function="session_get_cookie_params"></phpsyntax>
2153         <phpsyntax function="session_id"></phpsyntax>
2154         <phpsyntax function="session_is_registered"></phpsyntax>
2155         <phpsyntax function="session_module_name"></phpsyntax>
2156         <phpsyntax function="session_name"></phpsyntax>
2157         <phpsyntax function="session_register"></phpsyntax>
2158         <phpsyntax function="session_save_path"></phpsyntax>
2159         <phpsyntax function="session_set_cookie_params"></phpsyntax>
2160         <phpsyntax function="session_set_save_handler"></phpsyntax>
2161         <phpsyntax function="session_start"></phpsyntax>
2162         <phpsyntax function="session_unregister"></phpsyntax>
2163         <phpsyntax function="session_unset"></phpsyntax>
2164         <phpsyntax function="session_write_close"></phpsyntax>
2165         <phpsyntax function="set_content"></phpsyntax>
2166         <phpsyntax function="set_error_handler"></phpsyntax>
2167         <phpsyntax function="set_file_buffer"></phpsyntax>
2168         <phpsyntax function="set_iovec"></phpsyntax>
2169         <phpsyntax function="set_magic_quotes_runtime"></phpsyntax>
2170         <phpsyntax function="set_nonblock"></phpsyntax>
2171         <phpsyntax function="set_socket_blocking"></phpsyntax>
2172         <phpsyntax function="set_time_limit"></phpsyntax>
2173         <phpsyntax function="setaction"></phpsyntax>
2174         <phpsyntax function="setbackground"></phpsyntax>
2175         <phpsyntax function="setbounds"></phpsyntax>
2176         <phpsyntax function="setcolor"></phpsyntax>
2177         <phpsyntax function="setcolor"></phpsyntax>
2178         <phpsyntax function="setcookie" usage="boolean setcookie ( string name [, string value [, int expire [, string path [, string domain [, int secure]]]]])">Send a cookie
2179 setcookie() defines a cookie to be sent along with the rest of the HTTP headers. 
2180 Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). 
2181 This requires that you place calls to this function prior to any output, including &lt;html&gt; and &lt;head&gt; tags as well as any whitespace.
2182 If output exists prior to calling this function, setcookie() will fail and return FALSE. 
2183 If setcookie() successfully runs, it will return TRUE. 
2184 This does not indicate whether the user accepted the cookie. 
2185
2186 All the arguments except the name argument are optional. 
2187 If only the name argument is present, the cookie by that name will be deleted from the remote client. 
2188 You may also replace an argument with an empty string (&quot;&quot;) in order to skip that argument. 
2189 Because the expire and secure arguments are integers, they cannot be skipped with an empty string, use a zero (0) instead. 
2190         </phpsyntax>
2191         <phpsyntax function="setdepth"></phpsyntax>
2192         <phpsyntax function="setdimension"></phpsyntax>
2193         <phpsyntax function="setdown"></phpsyntax>
2194         <phpsyntax function="setfont"></phpsyntax>
2195         <phpsyntax function="setfont"></phpsyntax>
2196         <phpsyntax function="setframes"></phpsyntax>
2197         <phpsyntax function="setframes"></phpsyntax>
2198         <phpsyntax function="setheight"></phpsyntax>
2199         <phpsyntax function="setheight"></phpsyntax>
2200         <phpsyntax function="sethit"></phpsyntax>
2201         <phpsyntax function="setindentation"></phpsyntax>
2202         <phpsyntax function="setleftfill"></phpsyntax>
2203         <phpsyntax function="setleftmargin"></phpsyntax>
2204         <phpsyntax function="setline"></phpsyntax>
2205         <phpsyntax function="setlinespacing"></phpsyntax>
2206         <phpsyntax function="setlocale" usage="string setlocale ( mixed category, string locale [, string ...])">Set locale information</phpsyntax>
2207         <phpsyntax function="setmargins"></phpsyntax>
2208         <phpsyntax function="setmatrix"></phpsyntax>
2209         <phpsyntax function="setname"></phpsyntax>
2210         <phpsyntax function="setname"></phpsyntax>
2211         <phpsyntax function="setover"></phpsyntax>
2212         <phpsyntax function="setrate"></phpsyntax>
2213         <phpsyntax function="setratio"></phpsyntax>
2214         <phpsyntax function="setrightfill"></phpsyntax>
2215         <phpsyntax function="setrightmargin"></phpsyntax>
2216         <phpsyntax function="setsockopt"></phpsyntax>
2217         <phpsyntax function="setspacing"></phpsyntax>
2218         <phpsyntax function="settype"></phpsyntax>
2219         <phpsyntax function="setup"></phpsyntax>
2220         <phpsyntax function="sha1" usage="string sha1 ( string str)">
2221 Calculate the sha1 hash of a string
2222 Calculates the sha1 hash of str using the US Secure Hash Algorithm 1, and returns that hash. 
2223 The hash is a 40-character hexadecimal number. 
2224 </phpsyntax>
2225         <phpsyntax function="sha1_file" usage="string sha1_file ( string filename)">Calculate the sha1 hash of a file</phpsyntax>
2226         <phpsyntax function="shell_exec"></phpsyntax>
2227         <phpsyntax function="shm_attach"></phpsyntax>
2228         <phpsyntax function="shm_detach"></phpsyntax>
2229         <phpsyntax function="shm_get_var"></phpsyntax>
2230         <phpsyntax function="shm_put_var"></phpsyntax>
2231         <phpsyntax function="shm_remove"></phpsyntax>
2232         <phpsyntax function="shm_remove_var"></phpsyntax>
2233         <phpsyntax function="shmop_close"></phpsyntax>
2234         <phpsyntax function="shmop_delete"></phpsyntax>
2235         <phpsyntax function="shmop_open"></phpsyntax>
2236         <phpsyntax function="shmop_read"></phpsyntax>
2237         <phpsyntax function="shmop_size"></phpsyntax>
2238         <phpsyntax function="shmop_write"></phpsyntax>
2239         <phpsyntax function="show_source"></phpsyntax>
2240         <phpsyntax function="shuffle" usage="void shuffle ( array array)">Shuffle an array</phpsyntax>
2241         <phpsyntax function="shutdown"></phpsyntax>
2242         <phpsyntax function="signal"></phpsyntax>
2243         <phpsyntax function="similar_text" usage="int similar_text ( string first, string second [, float percent])">Calculate the similarity between two strings </phpsyntax>
2244         <phpsyntax function="sin"></phpsyntax>
2245         <phpsyntax function="sizeof" usage="int sizeof ( mixed var)">Get the number of elements in variable. The sizeof() function is an alias for count().</phpsyntax>
2246         <phpsyntax function="skewx"></phpsyntax>
2247         <phpsyntax function="skewxto"></phpsyntax>
2248         <phpsyntax function="skewxto"></phpsyntax>
2249         <phpsyntax function="skewy"></phpsyntax>
2250         <phpsyntax function="skewyto"></phpsyntax>
2251         <phpsyntax function="skewyto"></phpsyntax>
2252         <phpsyntax function="sleep"></phpsyntax>
2253         <phpsyntax function="snmp_get_quick_print"></phpsyntax>
2254         <phpsyntax function="snmp_set_quick_print"></phpsyntax>
2255         <phpsyntax function="snmpget"></phpsyntax>
2256         <phpsyntax function="snmpget"></phpsyntax>
2257         <phpsyntax function="snmprealwalk"></phpsyntax>
2258         <phpsyntax function="snmpset"></phpsyntax>
2259         <phpsyntax function="snmpwalk"></phpsyntax>
2260         <phpsyntax function="snmpwalk"></phpsyntax>
2261         <phpsyntax function="snmpwalkoid"></phpsyntax>
2262         <phpsyntax function="socket"></phpsyntax>
2263         <phpsyntax function="socket_get_status"></phpsyntax>
2264         <phpsyntax function="socket_set_blocking"></phpsyntax>
2265         <phpsyntax function="socket_set_timeout"></phpsyntax>
2266         <phpsyntax function="socket_set_timeout"></phpsyntax>
2267         <phpsyntax function="socketpair"></phpsyntax>
2268         <phpsyntax function="sort" usage="void sort ( array array [, int sort_flags])">Sort an array. This function sorts an array. Elements will be arranged from lowest to highest when this function has completed.</phpsyntax>
2269         <phpsyntax function="soundex" usage="string soundex ( string str)">Calculate the soundex key of a string</phpsyntax>
2270         <phpsyntax function="split"></phpsyntax>
2271         <phpsyntax function="spliti"></phpsyntax>
2272         <phpsyntax function="sprintf" usage="string sprintf ( string format [, mixed args])">Return a formatted string</phpsyntax>
2273         <phpsyntax function="sql_regcase"></phpsyntax>
2274         <phpsyntax function="sqrt"></phpsyntax>
2275         <phpsyntax function="srand"></phpsyntax>
2276         <phpsyntax function="sscanf" usage="mixed sscanf ( string str, string format [, string var1])">Parses input from a string according to a format </phpsyntax>
2277         <phpsyntax function="stat"></phpsyntax>
2278         <phpsyntax function="str_pad" usage="string str_pad ( string input, int pad_length [, string pad_string [, int pad_type]])">Pad a string to a certain length with another string </phpsyntax>
2279         <phpsyntax function="str_repeat" usage="string str_repeat ( string input, int multiplier)">Repeat a string</phpsyntax>
2280         <phpsyntax function="str_replace" usage="mixed str_replace ( mixed search, mixed replace, mixed subject)">Replace all occurrences of the search string with the replacement string </phpsyntax>
2281         <phpsyntax function="str_rot13" usage="string str_rot13 ( string str)">
2282 Perform the rot13 transform on a string.
2283 This function performs the ROT13 encoding on the str argument and returns the resulting string. 
2284 The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched. 
2285 Encoding and decoding are done by the same function, passing an encoded string as argument 
2286 will return the original version. 
2287 </phpsyntax>
2288         <phpsyntax function="str_shuffle" usage="string str_shuffle ( string str)">Randomly shuffles a string</phpsyntax> 
2289         <phpsyntax function="str_word_count" usage="mixed str_word_count ( string string [, int format])">Return information about words used in a string </phpsyntax>
2290         <phpsyntax function="strcasecmp" usage="int strcasecmp ( string str1, string str2)">Binary safe case-insensitive string comparison </phpsyntax>
2291         <phpsyntax function="strchr" usage="string strchr ( string haystack, string needle)">Find the first occurrence of a character.This function is an alias for strstr(), and is identical in every way.</phpsyntax>
2292         <phpsyntax function="strcmp" usage="int strcmp ( string str1, string str2)">Binary safe string comparison.
2293 Returns &lt; 0 if str1 is less than str2; &gt; 0 if str1 is greater than str2, and 0 if they are equal. 
2294 Note that this comparison is case sensitive. 
2295         </phpsyntax>
2296         <phpsyntax function="strcoll" usage="int strcoll ( string str1, string str2)">Locale based string comparison</phpsyntax>
2297         <phpsyntax function="strcspn" usage="int strcspn ( string str1, string str2)">Find length of initial segment not matching mask </phpsyntax>
2298         <phpsyntax function="streammp3"></phpsyntax>
2299         <phpsyntax function="strerror"></phpsyntax>
2300         <phpsyntax function="strftime"></phpsyntax>
2301         <phpsyntax function="strftime"></phpsyntax>
2302         <phpsyntax function="strip_tags" usage="string strip_tags ( string str [, string allowable_tags])">Strip HTML and PHP tags from a string</phpsyntax>
2303         <phpsyntax function="stripcslashes" usage="string stripcslashes ( string str)">Un-quote string quoted with addcslashes() </phpsyntax>
2304         <phpsyntax function="stripslashes" usage="string stripslashes ( string str)">Un-quote string quoted with addslashes() </phpsyntax>
2305         <phpsyntax function="stristr" usage="string stristr ( string haystack, string needle)">Case-insensitive strstr() </phpsyntax>
2306         <phpsyntax function="strlen" usage="int strlen ( string str)">Get string length</phpsyntax>
2307         <phpsyntax function="strnatcasecmp" usage="int strnatcasecmp ( string str1, string str2)">Case insensitive string comparisons using a "natural order" algorithm </phpsyntax>
2308         <phpsyntax function="strnatcmp" usage="int strnatcmp ( string str1, string str2)">String comparisons using a "natural order" algorithm </phpsyntax>
2309         <phpsyntax function="strncasecmp" usage="int strncasecmp ( string str1, string str2, int len)">Binary safe case-insensitive string comparison of the first n characters </phpsyntax>
2310         <phpsyntax function="strncmp" usage="int strncmp ( string str1, string str2, int len)">Binary safe string comparison of the first n characters </phpsyntax>
2311         <phpsyntax function="strpos" usage="int strpos ( string haystack, string needle [, int offset])">Find position of first occurrence of a string </phpsyntax>
2312         <phpsyntax function="strrchr" usage="string strrchr ( string haystack, string needle)">Find the last occurrence of a character in a string </phpsyntax>
2313         <phpsyntax function="strrev" usage="string strrev ( string string)">Reverse a string</phpsyntax>
2314         <phpsyntax function="strrpos" usage="int strrpos ( string haystack, char needle)">Find position of last occurrence of a char in a string </phpsyntax>
2315         <phpsyntax function="strspn" usage="int strspn ( string str1, string str2)">Find length of initial segment matching mask </phpsyntax>
2316         <phpsyntax function="strstr" usage="string strstr ( string haystack, string needle)">Find first occurrence of a string</phpsyntax>
2317         <phpsyntax function="strtok" usage="string strtok ( string arg1, string arg2)">Tokenize string</phpsyntax>
2318         <phpsyntax function="strtolower" usage="string strtolower ( string str)">Make a string lowercase</phpsyntax>
2319         <phpsyntax function="strtotime"></phpsyntax>
2320         <phpsyntax function="strtoupper" usage="string strtoupper ( string string)">Make a string uppercase</phpsyntax>
2321         <phpsyntax function="strtr" usage="string strtr ( string str, string from, string to) - string strtr ( string str, array replace_pairs)">Translate certain characters</phpsyntax>
2322         <phpsyntax function="strval"></phpsyntax>
2323         <phpsyntax function="substr" usage="string substr(string str, int start [, int length])">Returns part of a string</phpsyntax>
2324         <phpsyntax function="substr_count" usage="int substr_count ( string haystack, string needle)">Count the number of substring occurrences</phpsyntax>
2325         <phpsyntax function="substr_replace" usage="string substr_replace ( string string, string replacement, int start [, int length])">Replace text within a portion of a string</phpsyntax>
2326         <phpsyntax function="swf_actiongeturl"></phpsyntax>
2327         <phpsyntax function="swf_actiongotoframe"></phpsyntax>
2328         <phpsyntax function="swf_actiongotolabel"></phpsyntax>
2329         <phpsyntax function="swf_actionnextframe"></phpsyntax>
2330         <phpsyntax function="swf_actionplay"></phpsyntax>
2331         <phpsyntax function="swf_actionprevframe"></phpsyntax>
2332         <phpsyntax function="swf_actionsettarget"></phpsyntax>
2333         <phpsyntax function="swf_actionstop"></phpsyntax>
2334         <phpsyntax function="swf_actiontogglequality"></phpsyntax>
2335         <phpsyntax function="swf_actionwaitforframe"></phpsyntax>
2336         <phpsyntax function="swf_addbuttonrecord"></phpsyntax>
2337         <phpsyntax function="swf_addcolor"></phpsyntax>
2338         <phpsyntax function="swf_closefile"></phpsyntax>
2339         <phpsyntax function="swf_definebitmap"></phpsyntax>
2340         <phpsyntax function="swf_definefont"></phpsyntax>
2341         <phpsyntax function="swf_defineline"></phpsyntax>
2342         <phpsyntax function="swf_definepoly"></phpsyntax>
2343         <phpsyntax function="swf_definerect"></phpsyntax>
2344         <phpsyntax function="swf_definetext"></phpsyntax>
2345         <phpsyntax function="swf_endbutton"></phpsyntax>
2346         <phpsyntax function="swf_enddoaction"></phpsyntax>
2347         <phpsyntax function="swf_endshape"></phpsyntax>
2348         <phpsyntax function="swf_endsymbol"></phpsyntax>
2349         <phpsyntax function="swf_fontsize"></phpsyntax>
2350         <phpsyntax function="swf_fontslant"></phpsyntax>
2351         <phpsyntax function="swf_fonttracking"></phpsyntax>
2352         <phpsyntax function="swf_getbitmapinfo"></phpsyntax>
2353         <phpsyntax function="swf_getfontinfo"></phpsyntax>
2354         <phpsyntax function="swf_getframe"></phpsyntax>
2355         <phpsyntax function="swf_labelframe"></phpsyntax>
2356         <phpsyntax function="swf_lookat"></phpsyntax>
2357         <phpsyntax function="swf_modifyobject"></phpsyntax>
2358         <phpsyntax function="swf_mulcolor"></phpsyntax>
2359         <phpsyntax function="swf_nextid"></phpsyntax>
2360         <phpsyntax function="swf_oncondition"></phpsyntax>
2361         <phpsyntax function="swf_openfile"></phpsyntax>
2362         <phpsyntax function="swf_ortho"></phpsyntax>
2363         <phpsyntax function="swf_ortho2"></phpsyntax>
2364         <phpsyntax function="swf_perspective"></phpsyntax>
2365         <phpsyntax function="swf_placeobject"></phpsyntax>
2366         <phpsyntax function="swf_polarview"></phpsyntax>
2367         <phpsyntax function="swf_popmatrix"></phpsyntax>
2368         <phpsyntax function="swf_posround"></phpsyntax>
2369         <phpsyntax function="swf_pushmatrix"></phpsyntax>
2370         <phpsyntax function="swf_removeobject"></phpsyntax>
2371         <phpsyntax function="swf_rotate"></phpsyntax>
2372         <phpsyntax function="swf_scale"></phpsyntax>
2373         <phpsyntax function="swf_setfont"></phpsyntax>
2374         <phpsyntax function="swf_setframe"></phpsyntax>
2375         <phpsyntax function="swf_shapearc"></phpsyntax>
2376         <phpsyntax function="swf_shapecurveto"></phpsyntax>
2377         <phpsyntax function="swf_shapecurveto3"></phpsyntax>
2378         <phpsyntax function="swf_shapefillbitmapclip"></phpsyntax>
2379         <phpsyntax function="swf_shapefillbitmaptile"></phpsyntax>
2380         <phpsyntax function="swf_shapefilloff"></phpsyntax>
2381         <phpsyntax function="swf_shapefillsolid"></phpsyntax>
2382         <phpsyntax function="swf_shapelinesolid"></phpsyntax>
2383         <phpsyntax function="swf_shapelineto"></phpsyntax>
2384         <phpsyntax function="swf_shapemoveto"></phpsyntax>
2385         <phpsyntax function="swf_showframe"></phpsyntax>
2386         <phpsyntax function="swf_startbutton"></phpsyntax>
2387         <phpsyntax function="swf_startdoaction"></phpsyntax>
2388         <phpsyntax function="swf_startshape"></phpsyntax>
2389         <phpsyntax function="swf_startsymbol"></phpsyntax>
2390         <phpsyntax function="swf_textwidth"></phpsyntax>
2391         <phpsyntax function="swf_translate"></phpsyntax>
2392         <phpsyntax function="swf_viewport"></phpsyntax>
2393         <phpsyntax function="swfaction"></phpsyntax>
2394         <phpsyntax function="swfbitmap"></phpsyntax>
2395         <phpsyntax function="swfbutton"></phpsyntax>
2396         <phpsyntax function="swfbutton_keypress"></phpsyntax>
2397         <phpsyntax function="swffill"></phpsyntax>
2398         <phpsyntax function="swffont"></phpsyntax>
2399         <phpsyntax function="swfgradient"></phpsyntax>
2400         <phpsyntax function="swfmorph"></phpsyntax>
2401         <phpsyntax function="swfmovie"></phpsyntax>
2402         <phpsyntax function="swfshape"></phpsyntax>
2403         <phpsyntax function="swfsprite"></phpsyntax>
2404         <phpsyntax function="swftext"></phpsyntax>
2405         <phpsyntax function="swftextfield"></phpsyntax>
2406         <phpsyntax function="sybase_affected_rows"></phpsyntax>
2407         <phpsyntax function="sybase_affected_rows"></phpsyntax>
2408         <phpsyntax function="sybase_close"></phpsyntax>
2409         <phpsyntax function="sybase_close"></phpsyntax>
2410         <phpsyntax function="sybase_connect"></phpsyntax>
2411         <phpsyntax function="sybase_connect"></phpsyntax>
2412         <phpsyntax function="sybase_data_seek"></phpsyntax>
2413         <phpsyntax function="sybase_data_seek"></phpsyntax>
2414         <phpsyntax function="sybase_fetch_array"></phpsyntax>
2415         <phpsyntax function="sybase_fetch_array"></phpsyntax>
2416         <phpsyntax function="sybase_fetch_field"></phpsyntax>
2417         <phpsyntax function="sybase_fetch_field"></phpsyntax>
2418         <phpsyntax function="sybase_fetch_object"></phpsyntax>
2419         <phpsyntax function="sybase_fetch_object"></phpsyntax>
2420         <phpsyntax function="sybase_fetch_row"></phpsyntax>
2421         <phpsyntax function="sybase_fetch_row"></phpsyntax>
2422         <phpsyntax function="sybase_field_seek"></phpsyntax>
2423         <phpsyntax function="sybase_field_seek"></phpsyntax>
2424         <phpsyntax function="sybase_free_result"></phpsyntax>
2425         <phpsyntax function="sybase_free_result"></phpsyntax>
2426         <phpsyntax function="sybase_get_last_message"></phpsyntax>
2427         <phpsyntax function="sybase_get_last_message"></phpsyntax>
2428         <phpsyntax function="sybase_min_client_severity"></phpsyntax>
2429         <phpsyntax function="sybase_min_error_severity"></phpsyntax>
2430         <phpsyntax function="sybase_min_message_severity"></phpsyntax>
2431         <phpsyntax function="sybase_min_server_severity"></phpsyntax>
2432         <phpsyntax function="sybase_num_fields"></phpsyntax>
2433         <phpsyntax function="sybase_num_fields"></phpsyntax>
2434         <phpsyntax function="sybase_num_rows"></phpsyntax>
2435         <phpsyntax function="sybase_num_rows"></phpsyntax>
2436         <phpsyntax function="sybase_pconnect"></phpsyntax>
2437         <phpsyntax function="sybase_pconnect"></phpsyntax>
2438         <phpsyntax function="sybase_query"></phpsyntax>
2439         <phpsyntax function="sybase_query"></phpsyntax>
2440         <phpsyntax function="sybase_result"></phpsyntax>
2441         <phpsyntax function="sybase_result"></phpsyntax>
2442         <phpsyntax function="sybase_select_db"></phpsyntax>
2443         <phpsyntax function="sybase_select_db"></phpsyntax>
2444         <phpsyntax function="symlink"></phpsyntax>
2445         <phpsyntax function="symlink"></phpsyntax>
2446         <phpsyntax function="syslog"></phpsyntax>
2447         <phpsyntax function="system"></phpsyntax>
2448         <phpsyntax function="tan"></phpsyntax>
2449         <phpsyntax function="tempnam"></phpsyntax>
2450         <phpsyntax function="textdomain"></phpsyntax>
2451         <phpsyntax function="time"></phpsyntax>
2452         <phpsyntax function="tmpfile"></phpsyntax>
2453         <phpsyntax function="touch"></phpsyntax>
2454         <phpsyntax function="trigger_error"></phpsyntax>
2455         <phpsyntax function="trim" usage="string trim ( string str [, string charlist])">Strip whitespace from the beginning and end of a string </phpsyntax>
2456         <phpsyntax function="uasort" usage="void uasort ( array array, callback cmp_function)">Sort an array with a user-defined comparison function and maintain index association </phpsyntax>
2457         <phpsyntax function="ucfirst" usage="string ucfirst ( string str)">Make a string's first character uppercase</phpsyntax>
2458         <phpsyntax function="ucwords" usage="string ucwords ( string str)">Uppercase the first character of each word in a string </phpsyntax>
2459         <phpsyntax function="udm_add_search_limit"></phpsyntax>
2460         <phpsyntax function="udm_alloc_agent"></phpsyntax>
2461         <phpsyntax function="udm_api_version"></phpsyntax>
2462         <phpsyntax function="udm_clear_search_limits"></phpsyntax>
2463         <phpsyntax function="udm_errno"></phpsyntax>
2464         <phpsyntax function="udm_error"></phpsyntax>
2465         <phpsyntax function="udm_find"></phpsyntax>
2466         <phpsyntax function="udm_free_agent"></phpsyntax>
2467         <phpsyntax function="udm_free_ispell_data"></phpsyntax>
2468         <phpsyntax function="udm_free_res"></phpsyntax>
2469         <phpsyntax function="udm_get_doc_count"></phpsyntax>
2470         <phpsyntax function="udm_get_res_field"></phpsyntax>
2471         <phpsyntax function="udm_get_res_param"></phpsyntax>
2472         <phpsyntax function="udm_load_ispell_data"></phpsyntax>
2473         <phpsyntax function="udm_set_agent_param"></phpsyntax>
2474         <phpsyntax function="uksort" usage="void uksort ( array array, callback cmp_function)">Sort an array by keys using a user-defined comparison function </phpsyntax>
2475         <phpsyntax function="umask"></phpsyntax>
2476         <phpsyntax function="uniqid"></phpsyntax>
2477         <phpsyntax function="unixtojd"></phpsyntax>
2478         <phpsyntax function="unlink"></phpsyntax>
2479         <phpsyntax function="unpack"></phpsyntax>
2480         <phpsyntax function="unregister_tick_function"></phpsyntax>
2481         <phpsyntax function="unserialize"></phpsyntax>
2482         <phpsyntax function="urldecode"></phpsyntax>
2483         <phpsyntax function="urlencode"></phpsyntax>
2484         <phpsyntax function="user_error"></phpsyntax>
2485         <phpsyntax function="usleep"></phpsyntax>
2486         <phpsyntax function="usort" usage="void usort ( array array, callback cmp_function)">Sort an array by values using a user-defined comparison function</phpsyntax>
2487         <phpsyntax function="utf8_decode"></phpsyntax>
2488         <phpsyntax function="utf8_encode"></phpsyntax>
2489         <phpsyntax function="var_dump"></phpsyntax>
2490         <phpsyntax function="velocis_autocommit"></phpsyntax>
2491         <phpsyntax function="velocis_close"></phpsyntax>
2492         <phpsyntax function="velocis_commit"></phpsyntax>
2493         <phpsyntax function="velocis_connect"></phpsyntax>
2494         <phpsyntax function="velocis_exec"></phpsyntax>
2495         <phpsyntax function="velocis_fetch"></phpsyntax>
2496         <phpsyntax function="velocis_fieldname"></phpsyntax>
2497         <phpsyntax function="velocis_fieldnum"></phpsyntax>
2498         <phpsyntax function="velocis_freeresult"></phpsyntax>
2499         <phpsyntax function="velocis_off_autocommit"></phpsyntax>
2500         <phpsyntax function="velocis_result"></phpsyntax>
2501         <phpsyntax function="velocis_rollback"></phpsyntax>
2502         <phpsyntax function="virtual"></phpsyntax>
2503         <phpsyntax function="vpopmail_add_alias_domain"></phpsyntax>
2504         <phpsyntax function="vpopmail_add_alias_domain_ex"></phpsyntax>
2505         <phpsyntax function="vpopmail_add_domain"></phpsyntax>
2506         <phpsyntax function="vpopmail_add_domain_ex"></phpsyntax>
2507         <phpsyntax function="vpopmail_add_user"></phpsyntax>
2508         <phpsyntax function="vpopmail_auth_user"></phpsyntax>
2509         <phpsyntax function="vpopmail_del_domain"></phpsyntax>
2510         <phpsyntax function="vpopmail_del_domain_ex"></phpsyntax>
2511         <phpsyntax function="vpopmail_del_user"></phpsyntax>
2512         <phpsyntax function="vpopmail_error"></phpsyntax>
2513         <phpsyntax function="vpopmail_passwd"></phpsyntax>
2514         <phpsyntax function="vpopmail_set_user_quota"></phpsyntax>
2515         <phpsyntax function="vprintf" usage="void vprintf ( string format, array args)">Output a formatted string</phpsyntax>
2516         <phpsyntax function="vsprintf" usage="string vsprintf ( string format, array args)">Output a formatted string</phpsyntax>
2517         <phpsyntax function="wddx_add_vars"></phpsyntax>
2518         <phpsyntax function="wddx_deserialize"></phpsyntax>
2519         <phpsyntax function="wddx_packet_end"></phpsyntax>
2520         <phpsyntax function="wddx_packet_start"></phpsyntax>
2521         <phpsyntax function="wddx_serialize_value"></phpsyntax>
2522         <phpsyntax function="wddx_serialize_vars"></phpsyntax>
2523         <phpsyntax function="wordwrap" usage="string wordwrap ( string str [, int width [, string break [, int cut]]])">Wraps a string to a given number of characters using a string break character</phpsyntax>
2524         <phpsyntax function="write"></phpsyntax>
2525         <phpsyntax function="writev"></phpsyntax>
2526         <phpsyntax function="xml_error_string"></phpsyntax>
2527         <phpsyntax function="xml_get_current_byte_index"></phpsyntax>
2528         <phpsyntax function="xml_get_current_column_number"></phpsyntax>
2529         <phpsyntax function="xml_get_current_line_number"></phpsyntax>
2530         <phpsyntax function="xml_get_error_code"></phpsyntax>
2531         <phpsyntax function="xml_parse"></phpsyntax>
2532         <phpsyntax function="xml_parse_into_struct"></phpsyntax>
2533         <phpsyntax function="xml_parser_create"></phpsyntax>
2534         <phpsyntax function="xml_parser_create_ns"></phpsyntax>
2535         <phpsyntax function="xml_parser_free"></phpsyntax>
2536         <phpsyntax function="xml_parser_get_option"></phpsyntax>
2537         <phpsyntax function="xml_parser_set_option"></phpsyntax>
2538         <phpsyntax function="xml_set_character_data_handler"></phpsyntax>
2539         <phpsyntax function="xml_set_default_handler"></phpsyntax>
2540         <phpsyntax function="xml_set_element_handler"></phpsyntax>
2541         <phpsyntax function="xml_set_end_namespace_decl_handler"></phpsyntax>
2542         <phpsyntax function="xml_set_external_entity_ref_handler"></phpsyntax>
2543         <phpsyntax function="xml_set_notation_decl_handler"></phpsyntax>
2544         <phpsyntax function="xml_set_object"></phpsyntax>
2545         <phpsyntax function="xml_set_processing_instruction_handler"></phpsyntax>
2546         <phpsyntax function="xml_set_start_namespace_decl_handler"></phpsyntax>
2547         <phpsyntax function="xml_set_unparsed_entity_decl_handler"></phpsyntax>
2548         <phpsyntax function="xmldoc"></phpsyntax>
2549         <phpsyntax function="xmldocfile"></phpsyntax>
2550         <phpsyntax function="xmltree"></phpsyntax>
2551         <phpsyntax function="xpath_eval"></phpsyntax>
2552         <phpsyntax function="xpath_eval_expression"></phpsyntax>
2553         <phpsyntax function="xptr_eval"></phpsyntax>
2554         <phpsyntax function="xslt_closelog"></phpsyntax>
2555         <phpsyntax function="xslt_create"></phpsyntax>
2556         <phpsyntax function="xslt_errno"></phpsyntax>
2557         <phpsyntax function="xslt_error"></phpsyntax>
2558         <phpsyntax function="xslt_fetch_result"></phpsyntax>
2559         <phpsyntax function="xslt_free"></phpsyntax>
2560         <phpsyntax function="xslt_openlog"></phpsyntax>
2561         <phpsyntax function="xslt_output_begintransform"></phpsyntax>
2562         <phpsyntax function="xslt_output_endtransform"></phpsyntax>
2563         <phpsyntax function="xslt_process"></phpsyntax>
2564         <phpsyntax function="xslt_run"></phpsyntax>
2565         <phpsyntax function="xslt_set_base"></phpsyntax>
2566         <phpsyntax function="xslt_set_encoding"></phpsyntax>
2567         <phpsyntax function="xslt_set_error_handler"></phpsyntax>
2568         <phpsyntax function="xslt_set_sax_handler"></phpsyntax>
2569         <phpsyntax function="xslt_set_scheme_handler"></phpsyntax>
2570         <phpsyntax function="xslt_transform"></phpsyntax>
2571         <phpsyntax function="yaz_addinfo"></phpsyntax>
2572         <phpsyntax function="yaz_ccl_conf"></phpsyntax>
2573         <phpsyntax function="yaz_ccl_parse"></phpsyntax>
2574         <phpsyntax function="yaz_close"></phpsyntax>
2575         <phpsyntax function="yaz_connect"></phpsyntax>
2576         <phpsyntax function="yaz_database"></phpsyntax>
2577         <phpsyntax function="yaz_element"></phpsyntax>
2578         <phpsyntax function="yaz_errno"></phpsyntax>
2579         <phpsyntax function="yaz_error"></phpsyntax>
2580         <phpsyntax function="yaz_hits"></phpsyntax>
2581         <phpsyntax function="yaz_itemorder"></phpsyntax>
2582         <phpsyntax function="yaz_present"></phpsyntax>
2583         <phpsyntax function="yaz_range"></phpsyntax>
2584         <phpsyntax function="yaz_record"></phpsyntax>
2585         <phpsyntax function="yaz_scan"></phpsyntax>
2586         <phpsyntax function="yaz_scan_result"></phpsyntax>
2587         <phpsyntax function="yaz_search"></phpsyntax>
2588         <phpsyntax function="yaz_syntax"></phpsyntax>
2589         <phpsyntax function="yaz_wait"></phpsyntax>
2590         <phpsyntax function="yp_all"></phpsyntax>
2591         <phpsyntax function="yp_cat"></phpsyntax>
2592         <phpsyntax function="yp_err_string"></phpsyntax>
2593         <phpsyntax function="yp_errno"></phpsyntax>
2594         <phpsyntax function="yp_first"></phpsyntax>
2595         <phpsyntax function="yp_get_default_domain"></phpsyntax>
2596         <phpsyntax function="yp_master"></phpsyntax>
2597         <phpsyntax function="yp_match"></phpsyntax>
2598         <phpsyntax function="yp_next"></phpsyntax>
2599         <phpsyntax function="yp_order"></phpsyntax>
2600         <phpsyntax function="zend_logo_guid"></phpsyntax>
2601         <phpsyntax function="zend_test_func"></phpsyntax>
2602         <phpsyntax function="zend_version"></phpsyntax>
2603         <phpsyntax function="zzip_close"></phpsyntax>
2604         <phpsyntax function="zzip_closedir"></phpsyntax>
2605         <phpsyntax function="zzip_entry_compressedsize"></phpsyntax>
2606         <phpsyntax function="zzip_entry_compressionmethod"></phpsyntax>
2607         <phpsyntax function="zzip_entry_filesize"></phpsyntax>
2608         <phpsyntax function="zzip_entry_name"></phpsyntax>
2609         <phpsyntax function="zzip_open"></phpsyntax>
2610         <phpsyntax function="zzip_opendir"></phpsyntax>
2611         <phpsyntax function="zzip_read"></phpsyntax>
2612         <phpsyntax function="zzip_readdir"></phpsyntax>
2613 ==================================================        
2614 *Below this are the various PHP-specific keywords *
2615 ==================================================     
2616         <phpsyntax keyword="if" tokenval="1001"></phpsyntax>
2617         <phpsyntax keyword="elseif" tokenval="1002"></phpsyntax>
2618         <phpsyntax keyword="else" tokenval="1003"></phpsyntax>
2619         <phpsyntax keyword="endif" tokenval="1004"></phpsyntax>
2620         <phpsyntax keyword="for" tokenval="1005"></phpsyntax>
2621         <phpsyntax keyword="endfor" tokenval="1005"></phpsyntax>
2622         <phpsyntax keyword="while" tokenval="1007"></phpsyntax>
2623         <phpsyntax keyword="endwhile" tokenval="1008"></phpsyntax>
2624         <phpsyntax keyword="switch" tokenval="1009"></phpsyntax>
2625         <phpsyntax keyword="case" tokenval="1010"></phpsyntax>
2626         <phpsyntax keyword="endswitch" tokenval="1011"></phpsyntax>
2627         <phpsyntax keyword="break" tokenval="1012"></phpsyntax>
2628         <phpsyntax keyword="continue" tokenval="1013"></phpsyntax>
2629         <phpsyntax keyword="return" tokenval="1014"></phpsyntax>
2630         <phpsyntax keyword="define" tokenval="1015"></phpsyntax>
2631         <phpsyntax keyword="include" tokenval="1016"></phpsyntax>
2632         <phpsyntax keyword="include_once" tokenval="1017"></phpsyntax>
2633         <phpsyntax keyword="require" tokenval="1018"></phpsyntax>
2634         <phpsyntax keyword="require_once" tokenval="1019"></phpsyntax>
2635         <phpsyntax keyword="function" tokenval="1020"></phpsyntax>
2636         <phpsyntax keyword="class" tokenval="1021"></phpsyntax>
2637         <phpsyntax keyword="new" tokenval="1022"></phpsyntax>
2638         <phpsyntax keyword="do" tokenval="1023"></phpsyntax>
2639         <phpsyntax keyword="old_function" tokenval="1024"></phpsyntax>
2640         <phpsyntax keyword="default" tokenval="1025"></phpsyntax>
2641         <phpsyntax keyword="global" tokenval="1026"></phpsyntax>
2642         <phpsyntax keyword="static" tokenval="1027"></phpsyntax>
2643         <phpsyntax keyword="foreach" tokenval="1028"></phpsyntax>
2644         <phpsyntax keyword="endforeach" tokenval="1029"></phpsyntax>
2645         <phpsyntax keyword="extends" tokenval="1030"></phpsyntax>
2646         <phpsyntax keyword="empty" tokenval="1031"></phpsyntax>
2647         <phpsyntax keyword="array" tokenval="1032"></phpsyntax>
2648         <phpsyntax keyword="echo" tokenval="1033"></phpsyntax>
2649         <phpsyntax keyword="var" tokenval="1034"></phpsyntax>
2650         <phpsyntax keyword="as" tokenval="1035"></phpsyntax> 
2651         <phpsyntax keyword="print" tokenval="1036"></phpsyntax> 
2652         <phpsyntax keyword="unset" tokenval="1037"></phpsyntax>
2653         <phpsyntax keyword="exit" tokenval="1038"></phpsyntax>
2654         <phpsyntax keyword="die" tokenval="1039"></phpsyntax>
2655         <phpsyntax keyword="and" tokenval="1040"></phpsyntax>
2656         <phpsyntax keyword="or" tokenval="1041"></phpsyntax>
2657         <phpsyntax keyword="xor" tokenval="1042"></phpsyntax>
2658         <phpsyntax keyword="list" tokenval="1043"></phpsyntax> 
2659         <phpsyntax keyword="null" tokenval="1044"></phpsyntax>
2660         <phpsyntax keyword="false" tokenval="1045"></phpsyntax>
2661         <phpsyntax keyword="true" tokenval="1046"></phpsyntax>
2662 =========================================================        
2663 *Below this are the various PHP-specific variable types *
2664 =========================================================
2665         <phpsyntax type="string"></phpsyntax>         
2666         <phpsyntax type="unset"></phpsyntax> 
2667         <phpsyntax type="object"></phpsyntax>         
2668         <phpsyntax type="bool"></phpsyntax>         
2669         <phpsyntax type="boolean"></phpsyntax>         
2670         <phpsyntax type="real"></phpsyntax>         
2671         <phpsyntax type="double"></phpsyntax>         
2672         <phpsyntax type="float"></phpsyntax>         
2673         <phpsyntax type="int"></phpsyntax>         
2674         <phpsyntax type="integer"></phpsyntax>        
2675 ===================================================        
2676 *Below this are the various PHP-specific constants *
2677 ===================================================
2678         <phpsyntax constant="__LINE__"></phpsyntax>
2679         <phpsyntax constant="__FILE__"></phpsyntax>
2680         <phpsyntax constant="true"></phpsyntax>
2681         <phpsyntax constant="false"></phpsyntax>
2682         <phpsyntax constant="null"></phpsyntax>
2683         <phpsyntax constant="object"></phpsyntax>
2684         <phpsyntax constant="array"></phpsyntax>
2685
2686 </phpstandardsyntax>