blob: 2ba7a4d80aa7e01a580feaa84b2d5857873ae26d [file] [log] [blame]
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001" Vim completion script
2" Language: PHP
3" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl )
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004" Last Change: 2006 Mar 9
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005"
6"
7" - outside of <?php?> getting parent tag may cause problems. Heh, even in
8" perfect conditions GetLastOpenTag doesn't cooperate... Inside of
9" phpStrings this can be even a bonus but outside of <?php?> it is not the
10" best situation
11" - Switching to HTML completion (SQL) inside of phpStrings
12
13function! phpcomplete#CompletePHP(findstart, base)
14 if a:findstart
15 unlet! b:php_menu
16 " Check if we are inside of PHP markup
17 let pos = getpos('.')
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000018 let phpbegin = searchpairpos('<?', '', '?>', 'bWn','synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"')
19 let phpend = searchpairpos('<?', '', '?>', 'Wn','synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"')
Bram Moolenaar362e1a32006-03-06 23:29:24 +000020 " TODO: deal with opened <? but without closing ?>
21
22 if phpbegin == [0,0] && phpend == [0,0]
23 " We are outside of any PHP markup. Complete HTML
24 let htmlbegin = htmlcomplete#CompleteTags(1, '')
25 let cursor_col = pos[2]
26 let base = getline('.')[htmlbegin : cursor_col]
27 let b:php_menu = htmlcomplete#CompleteTags(0, base)
28 return htmlbegin
Bram Moolenaar362e1a32006-03-06 23:29:24 +000029 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +000030 " locate the start of the word
31 let line = getline('.')
32 let start = col('.') - 1
33 let curline = line('.')
34 let compl_begin = col('.') - 2
35 while start >= 0 && line[start - 1] =~ '[a-zA-Z_0-9\x7f-\xff$]'
36 let start -= 1
37 endwhile
38 let b:compl_context = getline('.')[0:compl_begin]
39 return start
40
41 " We can be also inside of phpString with HTML tags. Deal with
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000042 " it later (time, not lines).
Bram Moolenaar362e1a32006-03-06 23:29:24 +000043 endif
44 else
45 " If exists b:php_menu it means completion was already constructed we
46 " don't need to do anything more
47 if exists("b:php_menu")
48 return b:php_menu
49 endif
50 " Initialize base return lists
51 let res = []
52 let res2 = []
53 " a:base is very short - we need context
54 if exists("b:compl_context")
55 let context = b:compl_context
56 unlet! b:compl_context
57 endif
58
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000059 let scontext = substitute(context, '\$\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*$', '', '')
60
61 if scontext =~ 'new\s*$'
62 " Complete class name
63 " Internal solution for finding classes in current file.
64 let file = getline(1, '$')
65 call filter(file, 'v:val =~ "class\\s\\+[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("')
66 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
67 let jfile = join(file, ' ')
68 let int_values = split(jfile, 'class\s\+')
69 let int_classes = {}
70 for i in int_values
71 let c_name = matchstr(i, '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
72 let int_classes[c_name] = ''
73 endfor
74
75 " Prepare list of functions from tags file
76 let ext_classes = {}
77 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
78 if fnames != ''
79 exe 'silent! vimgrep /^'.a:base.'.*\tc\(\t\|$\)/j '.fnames
80 let qflist = getqflist()
81 for field in qflist
82 let item = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
83 " Don't show name - in PHP classes usually are in their
84 " own files, showing names will only add clutter
85 " let fname = matchstr(field['text'],
86 " \ '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze')
87 let ext_classes[item] = ''
88 endfor
89 endif
90
91 call extend(int_classes, ext_classes)
92
93 for m in sort(keys(int_classes))
94 if m =~ '^'.a:base
95 call add(res, m)
96 elseif m =~ a:base
97 call add(res2, m)
98 endif
99 endfor
100
101 let int_list = res + res2
102
103 let final_menu = []
104 for i in int_list
105 let final_menu += [{'word':i, 'menu':int_classes[i]}, 'kind':'c']
106 endfor
107
108 return final_menu
109
110 elseif scontext =~ '\(->\|::\)$'
111 " Complete user functions and variables
112 " Internal solution for current file.
113 " That seems as unnecessary repeating of functions but there are
114 " few not so subtle differences as not appeding of $ and addition
115 " of 'kind' tag (not necessary in regular completion)
116 let file = getline(1, '$')
117 let jfile = join(file, ' ')
118 let int_vals = split(jfile, '\$')
119 "call map(int_values, 'matchstr(v:val, "^[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*")')
120 let int_values = []
121 for i in int_vals
122 if i =~ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*=\s*new'
123 let val = matchstr(i, '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*').'->'
124 else
125 let val = matchstr(i, '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
126 endif
127 let int_values += [val]
128 endfor
129
130 let int_vars = {}
131 for i in int_values
132 if i != ''
133 let int_vars[i] = ''
134 endif
135 endfor
136
137 " ctags has good support for PHP, use tags file for external
138 " variables
139 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
140 let ext_vars = {}
141 if fnames != ''
142 let sbase = substitute(a:base, '^\$', '', '')
143 exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames
144 let qflist = getqflist()
145 for field in qflist
146 " Add space to make more space between 'word' and 'menu'
147 let item = matchstr(field['text'], '^\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
148 " Filename is unnecessary - and even darkens situation
149 " let fname = ' '.matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze')
150 " Add -> if it is possible object declaration
151 if field['text'] =~ item.'\s*=\s*new\s*'
152 let item = item.'->'
153 let classname = matchstr(field['text'],
154 \ '=\s*new\s*\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
155 endif
156 let ext_vars[item] = classname
157 endfor
158 endif
159
160 " Now we have all variables in int_vars dictionary
161 call extend(int_vars, ext_vars)
162
163 " Internal solution for finding functions in current file.
164 let file = getline(1, '$')
165 call filter(file, 'v:val =~ "function\\s\\+&\\?[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("')
166 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
167 let jfile = join(file, ' ')
168 let int_values = split(jfile, 'function\s\+')
169 let int_functions = {}
170 for i in int_values
171 let f_name = matchstr(i, '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
172 let f_args = matchstr(i, '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)')
173 let int_functions[f_name.'('] = f_args
174 endfor
175
176 " Prepare list of functions from tags file
177 let ext_functions = {}
178 if fnames != ''
179 exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames
180 let qflist = getqflist()
181 let ext_functions = {}
182 for field in qflist
183 " File name
184 let item = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
185 let fname = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze')
186 let prototype = matchstr(field['text'], 'function\s\+[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)')
187 if prototype == ''
188 let prototype = '()'
189 endif
190 let ext_functions[item.'('] = prototype.' - '.fname
191 endfor
192 endif
193
194 let all_values = {}
195 call extend(all_values, int_functions)
196 call extend(all_values, ext_functions)
197 call extend(all_values, int_vars)
198
199 for m in sort(keys(all_values))
200 if m =~ '^'.a:base
201 call add(res, m)
202 elseif m =~ a:base
203 call add(res2, m)
204 endif
205 endfor
206
207 let start_list = res + res2
208
209 let final_list = []
210 for i in start_list
211 if has_key(int_vars, i)
212 let final_list += [{'word':i, 'menu':all_values[i], 'kind':'v'}]
213 else
214 let final_list += [{'word':i, 'menu':all_values[i], 'kind':'f'}]
215 endif
216 endfor
217
218 return final_list
219 endif
220
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000221 if a:base =~ '^\$'
222 " Complete variables
223 let b:php_builtin_vars = ['$GLOBALS', '$_SERVER', '$_GET', '$_POST', '$_COOKIE',
224 \ '$_FILES', '$_ENV', '$_REQUEST', '$_SESSION', '$HTTP_SERVER_VARS',
225 \ '$HTTP_ENV_VARS', '$HTTP_COOKIE_VARS', '$HTTP_GET_VARS', '$HTTP_POST_VARS',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000226 \ '$HTTP_POST_FILES', '$HTTP_SESSION_VARS', '$php_errormsg', '$this',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000227 \ ]
228
229 " Internal solution for current file.
230 let file = getline(1, '$')
231 let jfile = join(file, ' ')
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000232 let int_vals = split(jfile, '\ze\$')
233 " call map(int_values, 'matchstr(v:val, "^\\$[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*")')
234 let int_values = []
235 for i in int_vals
236 if i =~ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*=\s*new'
237 let val = matchstr(i, '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*').'->'
238 else
239 let val = matchstr(i, '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
240 endif
241 let int_values += [val]
242 endfor
243
244
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000245 "call map(int_values, '"$".v:val')
246 "
247 let int_values += b:php_builtin_vars
248
249
250 for m in sort(int_values)
251 if m =~ '^'.a:base
252 call add(res, m)
253 elseif m =~ a:base
254 call add(res2, m)
255 endif
256 endfor
257
258 let int_list = res + res2
259
260 let int_dict = []
261 for i in int_list
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000262 let int_dict += [{'word':i, 'kind':'v'}]
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000263 endfor
264
265 " ctags has good support for PHP, use tags file for external
266 " variables
267 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
268 if fnames != ''
269 let sbase = substitute(a:base, '^\$', '', '')
270 exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames
271 let qflist = getqflist()
272 let ext_dict = []
273 for field in qflist
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000274 " Filename is unnecessary - and even darkens situation
275 " let m_menu = matchstr(field['text'],
276 " \ '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze')
277 let m_menu = ''
278 let item = '$'.matchstr(field['text'],
279 \ '^\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
280 " Add -> if it is possible object declaration
281 if field['text'] =~ item.'\s*=\s*new\s*'
282 let item = item.'->'
283 let classname = matchstr(field['text'],
284 \ '=\s*new\s*\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
285 let m_menu = classname
286 endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000287
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000288 let ext_dict += [{'word':item, 'menu':m_menu, 'kind':'v'}]
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000289 endfor
290 else
291 let ext_dict = []
292 endif
293
294 let b:php_menu = int_dict + ext_dict
295
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000296 return b:php_menu
297
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000298 else
299 " Complete everything else -
300 " + functions, DONE
301 " + keywords of language DONE
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000302 " + defines (constant definitions), DONE
303 " + extend keywords for predefined constants, DONE
304 " + classes (after new), DONE
305 " - limit choice after -> and :: to funcs and vars
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000306 if !exists('b:php_builtin_functions')
307 call phpcomplete#LoadData()
308 endif
309
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000310 " Internal solution for finding functions in current file.
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000311 let file = getline(1, '$')
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000312 call filter(file, 'v:val =~ "function\\s\\+&\\?[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("')
313 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000314 let jfile = join(file, ' ')
315 let int_values = split(jfile, 'function\s\+')
316 let int_functions = {}
317 for i in int_values
318 let f_name = matchstr(i, '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
319 let f_args = matchstr(i, '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)')
320 let int_functions[f_name.'('] = f_args
321 endfor
322
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000323 " Prepare list of functions from tags file
324 let ext_functions = {}
325 if fnames != ''
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000326 exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames
327 let qflist = getqflist()
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000328 for field in qflist
329 " File name
330 let item = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
331 let fname = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze')
332 let prototype = matchstr(field['text'], 'function\s\+[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)')
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000333 if prototype == ''
334 let prototype = '()'
335 endif
336 let ext_functions[item.'('] = prototype.' - '.fname
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000337 endfor
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000338 endif
339
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000340 " All functions
341 call extend(int_functions, ext_functions)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000342 call extend(int_functions, b:php_builtin_functions)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000343
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000344 " Internal solution for finding constants in current file
345 let file = getline(1, '$')
346 call filter(file, 'v:val =~ "define\\s*("')
347 let jfile = join(file, ' ')
348 let int_values = split(jfile, 'define\s*(\s*')
349 let int_constants = {}
350 for i in int_values
351 let c_name = matchstr(i, '\(["'']\)\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze\1')
352 " let c_value = matchstr(i,
353 " \ '\(["'']\)[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\1\s*,\s*\zs.\{-}\ze\s*)')
354 let int_constants[c_name] = '' " c_value
355 endfor
356
357 " Prepare list of constants from tags file
358 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
359 let ext_constants = {}
360 if fnames != ''
361 exe 'silent! vimgrep /^'.a:base.'.*\td\(\t\|$\)/j '.fnames
362 let qflist = getqflist()
363 let ext_constants = {}
364 for field in qflist
365 " File name
366 let item = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
367 " Origin of definition and value only are only darkening
368 " image - drop it but leave regexps. They may be needed in
369 " future.
370 " let fname = matchstr(field['text'],
371 " \ '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze')
372 " let cvalue = matchstr(field['text'],
373 " \ 'define\s*(\s*\(["'']\)[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\1\s*,\s*\zs.\{-}\ze\s*)')
374 let ext_constants[item] = ''
375 endfor
376 endif
377
378 " All constants
379 call extend(int_constants, ext_constants)
380 " Treat keywords as constants
381 call extend(int_constants, b:php_keywords)
382
383 let all_values = {}
384
385 " One big dictionary of functions
386 call extend(all_values, int_functions)
387
388 " Add constants
389 call extend(all_values, int_constants)
390
391 for m in sort(keys(all_values))
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000392 if m =~ '^'.a:base
393 call add(res, m)
394 elseif m =~ a:base
395 call add(res2, m)
396 endif
397 endfor
398
399 let int_list = res + res2
400
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000401 let final_list = []
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000402 for i in int_list
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000403 if has_key(int_functions, i)
404 let final_list += [{'word':i, 'menu':int_functions[i], 'kind':'f'}]
405 elseif has_key(int_constants, i)
406 let final_list += [{'word':i, 'menu':int_constants[i], 'kind':'d'}]
407 else
408 let final_list += [{'word':i}]
409 endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000410 endfor
411
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000412 return final_list
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000413
414 endif
415
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000416 endif
417endfunction
418
419function! phpcomplete#LoadData() " {{{
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000420" Keywords/reserved words, all other special things {{{
421" Later it is possible to add some help to values, or type of
422" defined variable
423let b:php_keywords = {
424\ 'PHP_SELF':'',
425\ 'argv':'',
426\ 'argc':'',
427\ 'GATEWAY_INTERFACE':'',
428\ 'SERVER_ADDR':'',
429\ 'SERVER_NAME':'',
430\ 'SERVER_SOFTWARE':'',
431\ 'SERVER_PROTOCOL':'',
432\ 'REQUEST_METHOD':'',
433\ 'REQUEST_TIME':'',
434\ 'QUERY_STRING':'',
435\ 'DOCUMENT_ROOT':'',
436\ 'HTTP_ACCEPT':'',
437\ 'HTTP_ACCEPT_CHARSET':'',
438\ 'HTTP_ACCEPT_ENCODING':'',
439\ 'HTTP_ACCEPT_LANGUAGE':'',
440\ 'HTTP_CONNECTION':'',
441\ 'HTTP_POST':'',
442\ 'HTTP_REFERER':'',
443\ 'HTTP_USER_AGENT':'',
444\ 'HTTPS':'',
445\ 'REMOTE_ADDR':'',
446\ 'REMOTE_HOST':'',
447\ 'REMOTE_PORT':'',
448\ 'SCRIPT_FILENAME':'',
449\ 'SERVER_ADMIN':'',
450\ 'SERVER_PORT':'',
451\ 'SERVER_SIGNATURE':'',
452\ 'PATH_TRANSLATED':'',
453\ 'SCRIPT_NAME':'',
454\ 'REQUEST_URI':'',
455\ 'PHP_AUTH_DIGEST':'',
456\ 'PHP_AUTH_USER':'',
457\ 'PHP_AUTH_PW':'',
458\ 'AUTH_TYPE':'',
459\ 'and':'',
460\ 'or':'',
461\ 'xor':'',
462\ '__FILE__':'',
463\ 'exception':'',
464\ '__LINE__':'',
465\ 'as':'',
466\ 'break':'',
467\ 'case':'',
468\ 'class':'',
469\ 'const':'',
470\ 'continue':'',
471\ 'declare':'',
472\ 'default':'',
473\ 'do':'',
474\ 'echo':'',
475\ 'else':'',
476\ 'elseif':'',
477\ 'enddeclare':'',
478\ 'endfor':'',
479\ 'endforeach':'',
480\ 'endif':'',
481\ 'endswitch':'',
482\ 'endwhile':'',
483\ 'extends':'',
484\ 'for':'',
485\ 'foreach':'',
486\ 'function':'',
487\ 'global':'',
488\ 'if':'',
489\ 'new':'',
490\ 'static':'',
491\ 'switch':'',
492\ 'use':'',
493\ 'var':'',
494\ 'while':'',
495\ '__FUNCTION__':'',
496\ '__CLASS__':'',
497\ '__METHOD__':'',
498\ 'final':'',
499\ 'php_user_filter':'',
500\ 'interface':'',
501\ 'implements':'',
502\ 'public':'',
503\ 'private':'',
504\ 'protected':'',
505\ 'abstract':'',
506\ 'clone':'',
507\ 'try':'',
508\ 'catch':'',
509\ 'throw':'',
510\ 'cfunction':'',
511\ 'old_function':'',
512\ 'this':'',
513\ 'PHP_VERSION': '',
514\ 'PHP_OS': '',
515\ 'PHP_SAPI': '',
516\ 'PHP_EOL': '',
517\ 'PHP_INT_MAX': '',
518\ 'PHP_INT_SIZE': '',
519\ 'DEFAULT_INCLUDE_PATH': '',
520\ 'PEAR_INSTALL_DIR': '',
521\ 'PEAR_EXTENSION_DIR': '',
522\ 'PHP_EXTENSION_DIR': '',
523\ 'PHP_PREFIX': '',
524\ 'PHP_BINDIR': '',
525\ 'PHP_LIBDIR': '',
526\ 'PHP_DATADIR': '',
527\ 'PHP_SYSCONFDIR': '',
528\ 'PHP_LOCALSTATEDIR': '',
529\ 'PHP_CONFIG_FILE_PATH': '',
530\ 'PHP_CONFIG_FILE_SCAN_DIR': '',
531\ 'PHP_SHLIB_SUFFIX': '',
532\ 'PHP_OUTPUT_HANDLER_START': '',
533\ 'PHP_OUTPUT_HANDLER_CONT': '',
534\ 'PHP_OUTPUT_HANDLER_END': '',
535\ 'E_ERROR': '',
536\ 'E_WARNING': '',
537\ 'E_PARSE': '',
538\ 'E_NOTICE': '',
539\ 'E_CORE_ERROR': '',
540\ 'E_CORE_WARNING': '',
541\ 'E_COMPILE_ERROR': '',
542\ 'E_COMPILE_WARNING': '',
543\ 'E_USER_ERROR': '',
544\ 'E_USER_WARNING': '',
545\ 'E_USER_NOTICE': '',
546\ 'E_ALL': '',
547\ 'E_STRICT': '',
548\ '__COMPILER_HALT_OFFSET__': '',
549\ 'EXTR_OVERWRITE': '',
550\ 'EXTR_SKIP': '',
551\ 'EXTR_PREFIX_SAME': '',
552\ 'EXTR_PREFIX_ALL': '',
553\ 'EXTR_PREFIX_INVALID': '',
554\ 'EXTR_PREFIX_IF_EXISTS': '',
555\ 'EXTR_IF_EXISTS': '',
556\ 'SORT_ASC': '',
557\ 'SORT_DESC': '',
558\ 'SORT_REGULAR': '',
559\ 'SORT_NUMERIC': '',
560\ 'SORT_STRING': '',
561\ 'CASE_LOWER': '',
562\ 'CASE_UPPER': '',
563\ 'COUNT_NORMAL': '',
564\ 'COUNT_RECURSIVE': '',
565\ 'ASSERT_ACTIVE': '',
566\ 'ASSERT_CALLBACK': '',
567\ 'ASSERT_BAIL': '',
568\ 'ASSERT_WARNING': '',
569\ 'ASSERT_QUIET_EVAL': '',
570\ 'CONNECTION_ABORTED': '',
571\ 'CONNECTION_NORMAL': '',
572\ 'CONNECTION_TIMEOUT': '',
573\ 'INI_USER': '',
574\ 'INI_PERDIR': '',
575\ 'INI_SYSTEM': '',
576\ 'INI_ALL': '',
577\ 'M_E': '',
578\ 'M_LOG2E': '',
579\ 'M_LOG10E': '',
580\ 'M_LN2': '',
581\ 'M_LN10': '',
582\ 'M_PI': '',
583\ 'M_PI_2': '',
584\ 'M_PI_4': '',
585\ 'M_1_PI': '',
586\ 'M_2_PI': '',
587\ 'M_2_SQRTPI': '',
588\ 'M_SQRT2': '',
589\ 'M_SQRT1_2': '',
590\ 'CRYPT_SALT_LENGTH': '',
591\ 'CRYPT_STD_DES': '',
592\ 'CRYPT_EXT_DES': '',
593\ 'CRYPT_MD5': '',
594\ 'CRYPT_BLOWFISH': '',
595\ 'DIRECTORY_SEPARATOR': '',
596\ 'SEEK_SET': '',
597\ 'SEEK_CUR': '',
598\ 'SEEK_END': '',
599\ 'LOCK_SH': '',
600\ 'LOCK_EX': '',
601\ 'LOCK_UN': '',
602\ 'LOCK_NB': '',
603\ 'HTML_SPECIALCHARS': '',
604\ 'HTML_ENTITIES': '',
605\ 'ENT_COMPAT': '',
606\ 'ENT_QUOTES': '',
607\ 'ENT_NOQUOTES': '',
608\ 'INFO_GENERAL': '',
609\ 'INFO_CREDITS': '',
610\ 'INFO_CONFIGURATION': '',
611\ 'INFO_MODULES': '',
612\ 'INFO_ENVIRONMENT': '',
613\ 'INFO_VARIABLES': '',
614\ 'INFO_LICENSE': '',
615\ 'INFO_ALL': '',
616\ 'CREDITS_GROUP': '',
617\ 'CREDITS_GENERAL': '',
618\ 'CREDITS_SAPI': '',
619\ 'CREDITS_MODULES': '',
620\ 'CREDITS_DOCS': '',
621\ 'CREDITS_FULLPAGE': '',
622\ 'CREDITS_QA': '',
623\ 'CREDITS_ALL': '',
624\ 'STR_PAD_LEFT': '',
625\ 'STR_PAD_RIGHT': '',
626\ 'STR_PAD_BOTH': '',
627\ 'PATHINFO_DIRNAME': '',
628\ 'PATHINFO_BASENAME': '',
629\ 'PATHINFO_EXTENSION': '',
630\ 'PATH_SEPARATOR': '',
631\ 'CHAR_MAX': '',
632\ 'LC_CTYPE': '',
633\ 'LC_NUMERIC': '',
634\ 'LC_TIME': '',
635\ 'LC_COLLATE': '',
636\ 'LC_MONETARY': '',
637\ 'LC_ALL': '',
638\ 'LC_MESSAGES': '',
639\ 'ABDAY_1': '',
640\ 'ABDAY_2': '',
641\ 'ABDAY_3': '',
642\ 'ABDAY_4': '',
643\ 'ABDAY_5': '',
644\ 'ABDAY_6': '',
645\ 'ABDAY_7': '',
646\ 'DAY_1': '',
647\ 'DAY_2': '',
648\ 'DAY_3': '',
649\ 'DAY_4': '',
650\ 'DAY_5': '',
651\ 'DAY_6': '',
652\ 'DAY_7': '',
653\ 'ABMON_1': '',
654\ 'ABMON_2': '',
655\ 'ABMON_3': '',
656\ 'ABMON_4': '',
657\ 'ABMON_5': '',
658\ 'ABMON_6': '',
659\ 'ABMON_7': '',
660\ 'ABMON_8': '',
661\ 'ABMON_9': '',
662\ 'ABMON_10': '',
663\ 'ABMON_11': '',
664\ 'ABMON_12': '',
665\ 'MON_1': '',
666\ 'MON_2': '',
667\ 'MON_3': '',
668\ 'MON_4': '',
669\ 'MON_5': '',
670\ 'MON_6': '',
671\ 'MON_7': '',
672\ 'MON_8': '',
673\ 'MON_9': '',
674\ 'MON_10': '',
675\ 'MON_11': '',
676\ 'MON_12': '',
677\ 'AM_STR': '',
678\ 'PM_STR': '',
679\ 'D_T_FMT': '',
680\ 'D_FMT': '',
681\ 'T_FMT': '',
682\ 'T_FMT_AMPM': '',
683\ 'ERA': '',
684\ 'ERA_YEAR': '',
685\ 'ERA_D_T_FMT': '',
686\ 'ERA_D_FMT': '',
687\ 'ERA_T_FMT': '',
688\ 'ALT_DIGITS': '',
689\ 'INT_CURR_SYMBOL': '',
690\ 'CURRENCY_SYMBOL': '',
691\ 'CRNCYSTR': '',
692\ 'MON_DECIMAL_POINT': '',
693\ 'MON_THOUSANDS_SEP': '',
694\ 'MON_GROUPING': '',
695\ 'POSITIVE_SIGN': '',
696\ 'NEGATIVE_SIGN': '',
697\ 'INT_FRAC_DIGITS': '',
698\ 'FRAC_DIGITS': '',
699\ 'P_CS_PRECEDES': '',
700\ 'P_SEP_BY_SPACE': '',
701\ 'N_CS_PRECEDES': '',
702\ 'N_SEP_BY_SPACE': '',
703\ 'P_SIGN_POSN': '',
704\ 'N_SIGN_POSN': '',
705\ 'DECIMAL_POINT': '',
706\ 'RADIXCHAR': '',
707\ 'THOUSANDS_SEP': '',
708\ 'THOUSEP': '',
709\ 'GROUPING': '',
710\ 'YESEXPR': '',
711\ 'NOEXPR': '',
712\ 'YESSTR': '',
713\ 'NOSTR': '',
714\ 'CODESET': '',
715\ 'LOG_EMERG': '',
716\ 'LOG_ALERT': '',
717\ 'LOG_CRIT': '',
718\ 'LOG_ERR': '',
719\ 'LOG_WARNING': '',
720\ 'LOG_NOTICE': '',
721\ 'LOG_INFO': '',
722\ 'LOG_DEBUG': '',
723\ 'LOG_KERN': '',
724\ 'LOG_USER': '',
725\ 'LOG_MAIL': '',
726\ 'LOG_DAEMON': '',
727\ 'LOG_AUTH': '',
728\ 'LOG_SYSLOG': '',
729\ 'LOG_LPR': '',
730\ 'LOG_NEWS': '',
731\ 'LOG_UUCP': '',
732\ 'LOG_CRON': '',
733\ 'LOG_AUTHPRIV': '',
734\ 'LOG_LOCAL0': '',
735\ 'LOG_LOCAL1': '',
736\ 'LOG_LOCAL2': '',
737\ 'LOG_LOCAL3': '',
738\ 'LOG_LOCAL4': '',
739\ 'LOG_LOCAL5': '',
740\ 'LOG_LOCAL6': '',
741\ 'LOG_LOCAL7': '',
742\ 'LOG_PID': '',
743\ 'LOG_CONS': '',
744\ 'LOG_ODELAY': '',
745\ 'LOG_NDELAY': '',
746\ 'LOG_NOWAIT': '',
747\ 'LOG_PERROR': '',
748\ }
749" }}}
750" PHP builtin functions {{{
751" To create from scratch list of functions:
752" 1. Download multi html file PHP documentation
753" 2. run for i in `ls | grep "^function\."`; do grep -A4 Description $i >> funcs; done
754" 3. Open funcs in Vim and
755" a) g/Description/normal! 5J
756" b) remove all html tags (it will require few s/// and g//)
757" c) :%s/^\([^[:space:]]\+\) \([^[:space:]]\+\) ( \(.*\))/\\ '\2(': '\3| \1',
758" This will create Dictionary
759" d) remove all /^[^\\] lines
760let b:php_builtin_functions = {
761\ 'abs(': 'mixed number | number',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000762\ 'acosh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000763\ 'acos(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000764\ 'addcslashes(': 'string str, string charlist | string',
765\ 'addslashes(': 'string str | string',
766\ 'aggregate(': 'object object, string class_name | void',
767\ 'aggregate_info(': 'object object | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000768\ 'aggregate_methods_by_list(': 'object object, string class_name, array methods_list [, bool exclude] | void',
769\ 'aggregate_methods_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000770\ 'aggregate_methods(': 'object object, string class_name | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000771\ 'aggregate_properties_by_list(': 'object object, string class_name, array properties_list [, bool exclude] | void',
772\ 'aggregate_properties_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000773\ 'aggregate_properties(': 'object object, string class_name | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000774\ 'apache_child_terminate(': 'void | bool',
775\ 'apache_getenv(': 'string variable [, bool walk_to_top] | string',
776\ 'apache_get_modules(': 'void | array',
777\ 'apache_get_version(': 'void | string',
778\ 'apache_lookup_uri(': 'string filename | object',
779\ 'apache_note(': 'string note_name [, string note_value] | string',
780\ 'apache_request_headers(': 'void | array',
781\ 'apache_reset_timeout(': 'void | bool',
782\ 'apache_response_headers(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000783\ 'apache_setenv(': 'string variable, string value [, bool walk_to_top] | bool',
784\ 'apc_cache_info(': '[string cache_type] | array',
785\ 'apc_clear_cache(': '[string cache_type] | bool',
786\ 'apc_define_constants(': 'string key, array constants [, bool case_sensitive] | bool',
787\ 'apc_delete(': 'string key | bool',
788\ 'apc_fetch(': 'string key | mixed',
789\ 'apc_load_constants(': 'string key [, bool case_sensitive] | bool',
790\ 'apc_sma_info(': 'void | array',
791\ 'apc_store(': 'string key, mixed var [, int ttl] | bool',
792\ 'apd_breakpoint(': 'int debug_level | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000793\ 'apd_callstack(': 'void | array',
794\ 'apd_clunk(': 'string warning [, string delimiter] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000795\ 'apd_continue(': 'int debug_level | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000796\ 'apd_croak(': 'string warning [, string delimiter] | void',
797\ 'apd_dump_function_table(': 'void | void',
798\ 'apd_dump_persistent_resources(': 'void | array',
799\ 'apd_dump_regular_resources(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000800\ 'apd_echo(': 'string output | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000801\ 'apd_get_active_symbols(': ' | array',
802\ 'apd_set_pprof_trace(': '[string dump_directory] | void',
803\ 'apd_set_session(': 'int debug_level | void',
804\ 'apd_set_session_trace(': 'int debug_level [, string dump_directory] | void',
805\ 'apd_set_socket_session_trace(': 'string ip_address_or_unix_socket_file, int socket_type, int port, int debug_level | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000806\ 'array_change_key_case(': 'array input [, int case] | array',
807\ 'array_chunk(': 'array input, int size [, bool preserve_keys] | array',
808\ 'array_combine(': 'array keys, array values | array',
809\ 'array_count_values(': 'array input | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000810\ 'array_diff_assoc(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000811\ 'array_diff(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000812\ 'array_diff_key(': 'array array1, array array2 [, array ...] | array',
813\ 'array_diff_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
814\ 'array_diff_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
815\ 'array_fill(': 'int start_index, int num, mixed value | array',
816\ 'array_filter(': 'array input [, callback callback] | array',
817\ 'array_flip(': 'array trans | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000818\ 'array(': '[mixed ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000819\ 'array_intersect_assoc(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000820\ 'array_intersect(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000821\ 'array_intersect_key(': 'array array1, array array2 [, array ...] | array',
822\ 'array_intersect_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
823\ 'array_intersect_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000824\ 'ArrayIterator::current(': 'void | mixed',
825\ 'ArrayIterator::key(': 'void | mixed',
826\ 'ArrayIterator::next(': 'void | void',
827\ 'ArrayIterator::rewind(': 'void | void',
828\ 'ArrayIterator::seek(': 'int position | void',
829\ 'ArrayIterator::valid(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000830\ 'array_key_exists(': 'mixed key, array search | bool',
831\ 'array_keys(': 'array input [, mixed search_value [, bool strict]] | array',
832\ 'array_map(': 'callback callback, array arr1 [, array ...] | array',
833\ 'array_merge(': 'array array1 [, array array2 [, array ...]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000834\ 'array_merge_recursive(': 'array array1 [, array ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000835\ 'array_multisort(': 'array ar1 [, mixed arg [, mixed ... [, array ...]]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000836\ 'ArrayObject::append(': 'mixed newval | void',
837\ 'ArrayObject::__construct(': 'mixed input | ArrayObject',
838\ 'ArrayObject::count(': 'void | int',
839\ 'ArrayObject::getIterator(': 'void | ArrayIterator',
840\ 'ArrayObject::offsetExists(': 'mixed index | bool',
841\ 'ArrayObject::offsetGet(': 'mixed index | bool',
842\ 'ArrayObject::offsetSet(': 'mixed index, mixed newval | void',
843\ 'ArrayObject::offsetUnset(': 'mixed index | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000844\ 'array_pad(': 'array input, int pad_size, mixed pad_value | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000845\ 'array_pop(': 'array &#38;array | mixed',
846\ 'array_product(': 'array array | number',
847\ 'array_push(': 'array &#38;array, mixed var [, mixed ...] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000848\ 'array_rand(': 'array input [, int num_req] | mixed',
849\ 'array_reduce(': 'array input, callback function [, int initial] | mixed',
850\ 'array_reverse(': 'array array [, bool preserve_keys] | array',
851\ 'array_search(': 'mixed needle, array haystack [, bool strict] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000852\ 'array_shift(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000853\ 'array_slice(': 'array array, int offset [, int length [, bool preserve_keys]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000854\ 'array_splice(': 'array &#38;input, int offset [, int length [, array replacement]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000855\ 'array_sum(': 'array array | number',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000856\ 'array_udiff_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000857\ 'array_udiff(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000858\ 'array_udiff_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000859\ 'array_uintersect_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000860\ 'array_uintersect(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000861\ 'array_uintersect_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array',
862\ 'array_unique(': 'array array | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000863\ 'array_unshift(': 'array &#38;array, mixed var [, mixed ...] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000864\ 'array_values(': 'array input | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000865\ 'array_walk(': 'array &#38;array, callback funcname [, mixed userdata] | bool',
866\ 'array_walk_recursive(': 'array &#38;input, callback funcname [, mixed userdata] | bool',
867\ 'arsort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000868\ 'ascii2ebcdic(': 'string ascii_str | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000869\ 'asinh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000870\ 'asin(': 'float arg | float',
871\ 'asort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000872\ 'aspell_check(': 'int dictionary_link, string word | bool',
873\ 'aspell_check_raw(': 'int dictionary_link, string word | bool',
874\ 'aspell_new(': 'string master [, string personal] | int',
875\ 'aspell_suggest(': 'int dictionary_link, string word | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000876\ 'assert(': 'mixed assertion | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000877\ 'assert_options(': 'int what [, mixed value] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000878\ 'atan2(': 'float y, float x | float',
879\ 'atanh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000880\ 'atan(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000881\ 'base64_decode(': 'string encoded_data | string',
882\ 'base64_encode(': 'string data | string',
883\ 'base_convert(': 'string number, int frombase, int tobase | string',
884\ 'basename(': 'string path [, string suffix] | string',
885\ 'bcadd(': 'string left_operand, string right_operand [, int scale] | string',
886\ 'bccomp(': 'string left_operand, string right_operand [, int scale] | int',
887\ 'bcdiv(': 'string left_operand, string right_operand [, int scale] | string',
888\ 'bcmod(': 'string left_operand, string modulus | string',
889\ 'bcmul(': 'string left_operand, string right_operand [, int scale] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000890\ 'bcompiler_load_exe(': 'string filename | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000891\ 'bcompiler_load(': 'string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000892\ 'bcompiler_parse_class(': 'string class, string callback | bool',
893\ 'bcompiler_read(': 'resource filehandle | bool',
894\ 'bcompiler_write_class(': 'resource filehandle, string className [, string extends] | bool',
895\ 'bcompiler_write_constant(': 'resource filehandle, string constantName | bool',
896\ 'bcompiler_write_exe_footer(': 'resource filehandle, int startpos | bool',
897\ 'bcompiler_write_file(': 'resource filehandle, string filename | bool',
898\ 'bcompiler_write_footer(': 'resource filehandle | bool',
899\ 'bcompiler_write_function(': 'resource filehandle, string functionName | bool',
900\ 'bcompiler_write_functions_from_file(': 'resource filehandle, string fileName | bool',
901\ 'bcompiler_write_header(': 'resource filehandle [, string write_ver] | bool',
902\ 'bcpow(': 'string x, string y [, int scale] | string',
903\ 'bcpowmod(': 'string x, string y, string modulus [, int scale] | string',
904\ 'bcscale(': 'int scale | bool',
905\ 'bcsqrt(': 'string operand [, int scale] | string',
906\ 'bcsub(': 'string left_operand, string right_operand [, int scale] | string',
907\ 'bin2hex(': 'string str | string',
908\ 'bindec(': 'string binary_string | number',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000909\ 'bind_textdomain_codeset(': 'string domain, string codeset | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000910\ 'bindtextdomain(': 'string domain, string directory | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000911\ 'bzclose(': 'resource bz | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000912\ 'bzcompress(': 'string source [, int blocksize [, int workfactor]] | mixed',
913\ 'bzdecompress(': 'string source [, int small] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000914\ 'bzerrno(': 'resource bz | int',
915\ 'bzerror(': 'resource bz | array',
916\ 'bzerrstr(': 'resource bz | string',
917\ 'bzflush(': 'resource bz | int',
918\ 'bzopen(': 'string filename, string mode | resource',
919\ 'bzread(': 'resource bz [, int length] | string',
920\ 'bzwrite(': 'resource bz, string data [, int length] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000921\ 'CachingIterator::hasNext(': 'void | bool',
922\ 'CachingIterator::next(': 'void | void',
923\ 'CachingIterator::rewind(': 'void | void',
924\ 'CachingIterator::__toString(': 'void | string',
925\ 'CachingIterator::valid(': 'void | bool',
926\ 'CachingRecursiveIterator::getChildren(': 'void | CachingRecursiveIterator',
927\ 'CachingRecursiveIterator::hasChildren(': 'void | bolean',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000928\ 'cal_days_in_month(': 'int calendar, int month, int year | int',
929\ 'cal_from_jd(': 'int jd, int calendar | array',
930\ 'cal_info(': '[int calendar] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000931\ 'call_user_func_array(': 'callback function, array param_arr | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000932\ 'call_user_func(': 'callback function [, mixed parameter [, mixed ...]] | mixed',
933\ 'call_user_method_array(': 'string method_name, object &#38;obj, array paramarr | mixed',
934\ 'call_user_method(': 'string method_name, object &#38;obj [, mixed parameter [, mixed ...]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000935\ 'cal_to_jd(': 'int calendar, int month, int day, int year | int',
936\ 'ccvs_add(': 'string session, string invoice, string argtype, string argval | string',
937\ 'ccvs_auth(': 'string session, string invoice | string',
938\ 'ccvs_command(': 'string session, string type, string argval | string',
939\ 'ccvs_count(': 'string session, string type | int',
940\ 'ccvs_delete(': 'string session, string invoice | string',
941\ 'ccvs_done(': 'string sess | string',
942\ 'ccvs_init(': 'string name | string',
943\ 'ccvs_lookup(': 'string session, string invoice, int inum | string',
944\ 'ccvs_new(': 'string session, string invoice | string',
945\ 'ccvs_report(': 'string session, string type | string',
946\ 'ccvs_return(': 'string session, string invoice | string',
947\ 'ccvs_reverse(': 'string session, string invoice | string',
948\ 'ccvs_sale(': 'string session, string invoice | string',
949\ 'ccvs_status(': 'string session, string invoice | string',
950\ 'ccvs_textvalue(': 'string session | string',
951\ 'ccvs_void(': 'string session, string invoice | string',
952\ 'ceil(': 'float value | float',
953\ 'chdir(': 'string directory | bool',
954\ 'checkdate(': 'int month, int day, int year | bool',
955\ 'checkdnsrr(': 'string host [, string type] | int',
956\ 'chgrp(': 'string filename, mixed group | bool',
957\ 'chmod(': 'string filename, int mode | bool',
958\ 'chown(': 'string filename, mixed user | bool',
959\ 'chr(': 'int ascii | string',
960\ 'chroot(': 'string directory | bool',
961\ 'chunk_split(': 'string body [, int chunklen [, string end]] | string',
962\ 'class_exists(': 'string class_name [, bool autoload] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000963\ 'class_implements(': 'mixed class [, bool autoload] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000964\ 'classkit_import(': 'string filename | array',
965\ 'classkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool',
966\ 'classkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool',
967\ 'classkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool',
968\ 'classkit_method_remove(': 'string classname, string methodname | bool',
969\ 'classkit_method_rename(': 'string classname, string methodname, string newname | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000970\ 'class_parents(': 'mixed class [, bool autoload] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000971\ 'clearstatcache(': 'void | void',
972\ 'closedir(': 'resource dir_handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000973\ 'closelog(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000974\ 'com_addref(': 'void | void',
975\ 'com_create_guid(': 'void | string',
976\ 'com_event_sink(': 'variant comobject, object sinkobject [, mixed sinkinterface] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000977\ 'com_get_active_object(': 'string progid [, int code_page] | variant',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000978\ 'com_get(': 'resource com_object, string property | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000979\ 'com_invoke(': 'resource com_object, string function_name [, mixed function_parameters] | mixed',
980\ 'com_isenum(': 'variant com_module | bool',
981\ 'com_load(': 'string module_name [, string server_name [, int codepage]] | resource',
982\ 'com_load_typelib(': 'string typelib_name [, bool case_insensitive] | bool',
983\ 'com_message_pump(': '[int timeoutms] | bool',
984\ 'compact(': 'mixed varname [, mixed ...] | array',
985\ 'com_print_typeinfo(': 'object comobject [, string dispinterface [, bool wantsink]] | bool',
986\ 'com_release(': 'void | void',
987\ 'com_set(': 'resource com_object, string property, mixed value | void',
988\ 'connection_aborted(': 'void | int',
989\ 'connection_status(': 'void | int',
990\ 'connection_timeout(': 'void | bool',
991\ 'constant(': 'string name | mixed',
992\ 'convert_cyr_string(': 'string str, string from, string to | string',
993\ 'convert_uudecode(': 'string data | string',
994\ 'convert_uuencode(': 'string data | string',
995\ 'copy(': 'string source, string dest | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000996\ 'cosh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000997\ 'cos(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000998\ 'count_chars(': 'string string [, int mode] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000999\ 'count(': 'mixed var [, int mode] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001000\ 'cpdf_add_annotation(': 'int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode] | bool',
1001\ 'cpdf_add_outline(': 'int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text | int',
1002\ 'cpdf_arc(': 'int pdf_document, float x_coor, float y_coor, float radius, float start, float end [, int mode] | bool',
1003\ 'cpdf_begin_text(': 'int pdf_document | bool',
1004\ 'cpdf_circle(': 'int pdf_document, float x_coor, float y_coor, float radius [, int mode] | bool',
1005\ 'cpdf_clip(': 'int pdf_document | bool',
1006\ 'cpdf_close(': 'int pdf_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001007\ 'cpdf_closepath_fill_stroke(': 'int pdf_document | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001008\ 'cpdf_closepath(': 'int pdf_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001009\ 'cpdf_closepath_stroke(': 'int pdf_document | bool',
1010\ 'cpdf_continue_text(': 'int pdf_document, string text | bool',
1011\ 'cpdf_curveto(': 'int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode] | bool',
1012\ 'cpdf_end_text(': 'int pdf_document | bool',
1013\ 'cpdf_fill(': 'int pdf_document | bool',
1014\ 'cpdf_fill_stroke(': 'int pdf_document | bool',
1015\ 'cpdf_finalize(': 'int pdf_document | bool',
1016\ 'cpdf_finalize_page(': 'int pdf_document, int page_number | bool',
1017\ 'cpdf_global_set_document_limits(': 'int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001018\ 'cpdf_import_jpeg(': 'int pdf_document, string file_name, float x_coor, float y_coor, float angle, float width, float height, float x_scale, float y_scale, int gsave [, int mode] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001019\ 'cpdf_lineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1020\ 'cpdf_moveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1021\ 'cpdf_newpath(': 'int pdf_document | bool',
1022\ 'cpdf_open(': 'int compression [, string filename [, array doc_limits]] | int',
1023\ 'cpdf_output_buffer(': 'int pdf_document | bool',
1024\ 'cpdf_page_init(': 'int pdf_document, int page_number, int orientation, float height, float width [, float unit] | bool',
1025\ 'cpdf_place_inline_image(': 'int pdf_document, int image, float x_coor, float y_coor, float angle, float width, float height, int gsave [, int mode] | bool',
1026\ 'cpdf_rect(': 'int pdf_document, float x_coor, float y_coor, float width, float height [, int mode] | bool',
1027\ 'cpdf_restore(': 'int pdf_document | bool',
1028\ 'cpdf_rlineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1029\ 'cpdf_rmoveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1030\ 'cpdf_rotate(': 'int pdf_document, float angle | bool',
1031\ 'cpdf_rotate_text(': 'int pdfdoc, float angle | bool',
1032\ 'cpdf_save(': 'int pdf_document | bool',
1033\ 'cpdf_save_to_file(': 'int pdf_document, string filename | bool',
1034\ 'cpdf_scale(': 'int pdf_document, float x_scale, float y_scale | bool',
1035\ 'cpdf_set_action_url(': 'int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode] | bool',
1036\ 'cpdf_set_char_spacing(': 'int pdf_document, float space | bool',
1037\ 'cpdf_set_creator(': 'int pdf_document, string creator | bool',
1038\ 'cpdf_set_current_page(': 'int pdf_document, int page_number | bool',
1039\ 'cpdf_setdash(': 'int pdf_document, float white, float black | bool',
1040\ 'cpdf_setflat(': 'int pdf_document, float value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001041\ 'cpdf_set_font_directories(': 'int pdfdoc, string pfmdir, string pfbdir | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001042\ 'cpdf_set_font(': 'int pdf_document, string font_name, float size, string encoding | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001043\ 'cpdf_set_font_map_file(': 'int pdfdoc, string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001044\ 'cpdf_setgray_fill(': 'int pdf_document, float value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001045\ 'cpdf_setgray(': 'int pdf_document, float gray_value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001046\ 'cpdf_setgray_stroke(': 'int pdf_document, float gray_value | bool',
1047\ 'cpdf_set_horiz_scaling(': 'int pdf_document, float scale | bool',
1048\ 'cpdf_set_keywords(': 'int pdf_document, string keywords | bool',
1049\ 'cpdf_set_leading(': 'int pdf_document, float distance | bool',
1050\ 'cpdf_setlinecap(': 'int pdf_document, int value | bool',
1051\ 'cpdf_setlinejoin(': 'int pdf_document, int value | bool',
1052\ 'cpdf_setlinewidth(': 'int pdf_document, float width | bool',
1053\ 'cpdf_setmiterlimit(': 'int pdf_document, float value | bool',
1054\ 'cpdf_set_page_animation(': 'int pdf_document, int transition, float duration, float direction, int orientation, int inout | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001055\ 'cpdf_setrgbcolor_fill(': 'int pdf_document, float red_value, float green_value, float blue_value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001056\ 'cpdf_setrgbcolor(': 'int pdf_document, float red_value, float green_value, float blue_value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001057\ 'cpdf_setrgbcolor_stroke(': 'int pdf_document, float red_value, float green_value, float blue_value | bool',
1058\ 'cpdf_set_subject(': 'int pdf_document, string subject | bool',
1059\ 'cpdf_set_text_matrix(': 'int pdf_document, array matrix | bool',
1060\ 'cpdf_set_text_pos(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1061\ 'cpdf_set_text_rendering(': 'int pdf_document, int rendermode | bool',
1062\ 'cpdf_set_text_rise(': 'int pdf_document, float value | bool',
1063\ 'cpdf_set_title(': 'int pdf_document, string title | bool',
1064\ 'cpdf_set_viewer_preferences(': 'int pdfdoc, array preferences | bool',
1065\ 'cpdf_set_word_spacing(': 'int pdf_document, float space | bool',
1066\ 'cpdf_show(': 'int pdf_document, string text | bool',
1067\ 'cpdf_show_xy(': 'int pdf_document, string text, float x_coor, float y_coor [, int mode] | bool',
1068\ 'cpdf_stringwidth(': 'int pdf_document, string text | float',
1069\ 'cpdf_stroke(': 'int pdf_document | bool',
1070\ 'cpdf_text(': 'int pdf_document, string text [, float x_coor, float y_coor [, int mode [, float orientation [, int alignmode]]]] | bool',
1071\ 'cpdf_translate(': 'int pdf_document, float x_coor, float y_coor | bool',
1072\ 'crack_check(': 'resource dictionary, string password | bool',
1073\ 'crack_closedict(': '[resource dictionary] | bool',
1074\ 'crack_getlastmessage(': 'void | string',
1075\ 'crack_opendict(': 'string dictionary | resource',
1076\ 'crc32(': 'string str | int',
1077\ 'create_function(': 'string args, string code | string',
1078\ 'crypt(': 'string str [, string salt] | string',
1079\ 'ctype_alnum(': 'string text | bool',
1080\ 'ctype_alpha(': 'string text | bool',
1081\ 'ctype_cntrl(': 'string text | bool',
1082\ 'ctype_digit(': 'string text | bool',
1083\ 'ctype_graph(': 'string text | bool',
1084\ 'ctype_lower(': 'string text | bool',
1085\ 'ctype_print(': 'string text | bool',
1086\ 'ctype_punct(': 'string text | bool',
1087\ 'ctype_space(': 'string text | bool',
1088\ 'ctype_upper(': 'string text | bool',
1089\ 'ctype_xdigit(': 'string text | bool',
1090\ 'curl_close(': 'resource ch | void',
1091\ 'curl_copy_handle(': 'resource ch | resource',
1092\ 'curl_errno(': 'resource ch | int',
1093\ 'curl_error(': 'resource ch | string',
1094\ 'curl_exec(': 'resource ch | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001095\ 'curl_getinfo(': 'resource ch [, int opt] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001096\ 'curl_init(': '[string url] | resource',
1097\ 'curl_multi_add_handle(': 'resource mh, resource ch | int',
1098\ 'curl_multi_close(': 'resource mh | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001099\ 'curl_multi_exec(': 'resource mh, int &#38;still_running | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001100\ 'curl_multi_getcontent(': 'resource ch | string',
1101\ 'curl_multi_info_read(': 'resource mh | array',
1102\ 'curl_multi_init(': 'void | resource',
1103\ 'curl_multi_remove_handle(': 'resource mh, resource ch | int',
1104\ 'curl_multi_select(': 'resource mh [, float timeout] | int',
1105\ 'curl_setopt(': 'resource ch, int option, mixed value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001106\ 'curl_version(': '[int version] | array',
1107\ 'current(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001108\ 'cybercash_base64_decode(': 'string inbuff | string',
1109\ 'cybercash_base64_encode(': 'string inbuff | string',
1110\ 'cybercash_decr(': 'string wmk, string sk, string inbuff | array',
1111\ 'cybercash_encr(': 'string wmk, string sk, string inbuff | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001112\ 'cybermut_creerformulairecm(': 'string url_cm, string version, string tpe, string price, string ref_command, string text_free, string url_return, string url_return_ok, string url_return_err, string language, string code_company, string text_button | string',
1113\ 'cybermut_creerreponsecm(': 'string sentence | string',
1114\ 'cybermut_testmac(': 'string code_mac, string version, string tpe, string cdate, string price, string ref_command, string text_free, string code_return | bool',
1115\ 'cyrus_authenticate(': 'resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf [, string authname [, string password]]]]]]] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001116\ 'cyrus_bind(': 'resource connection, array callbacks | bool',
1117\ 'cyrus_close(': 'resource connection | bool',
1118\ 'cyrus_connect(': '[string host [, string port [, int flags]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001119\ 'cyrus_query(': 'resource connection, string query | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001120\ 'cyrus_unbind(': 'resource connection, string trigger_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001121\ 'date_default_timezone_get(': 'void | string',
1122\ 'date_default_timezone_set(': 'string timezone_identifier | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001123\ 'date(': 'string format [, int timestamp] | string',
1124\ 'date_sunrise(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed',
1125\ 'date_sunset(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001126\ 'db2_autocommit(': 'resource connection [, bool value] | mixed',
1127\ 'db2_bind_param(': 'resource stmt, int parameter-number, string variable-name [, int parameter-type [, int data-type [, int precision [, int scale]]]] | bool',
1128\ 'db2_client_info(': 'resource connection | object',
1129\ 'db2_close(': 'resource connection | bool',
1130\ 'db2_column_privileges(': 'resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]] | resource',
1131\ 'db2_columns(': 'resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]] | resource',
1132\ 'db2_commit(': 'resource connection | bool',
1133\ 'db2_connect(': 'string database, string username, string password [, array options] | resource',
1134\ 'db2_conn_error(': '[resource connection] | string',
1135\ 'db2_conn_errormsg(': '[resource connection] | string',
1136\ 'db2_cursor_type(': 'resource stmt | int',
1137\ 'db2_exec(': 'resource connection, string statement [, array options] | resource',
1138\ 'db2_execute(': 'resource stmt [, array parameters] | bool',
1139\ 'db2_fetch_array(': 'resource stmt [, int row_number] | array',
1140\ 'db2_fetch_assoc(': 'resource stmt [, int row_number] | array',
1141\ 'db2_fetch_both(': 'resource stmt [, int row_number] | array',
1142\ 'db2_fetch_object(': 'resource stmt [, int row_number] | object',
1143\ 'db2_fetch_row(': 'resource stmt [, int row_number] | bool',
1144\ 'db2_field_display_size(': 'resource stmt, mixed column | int',
1145\ 'db2_field_name(': 'resource stmt, mixed column | string',
1146\ 'db2_field_num(': 'resource stmt, mixed column | int',
1147\ 'db2_field_precision(': 'resource stmt, mixed column | int',
1148\ 'db2_field_scale(': 'resource stmt, mixed column | int',
1149\ 'db2_field_type(': 'resource stmt, mixed column | string',
1150\ 'db2_field_width(': 'resource stmt, mixed column | int',
1151\ 'db2_foreign_keys(': 'resource connection, string qualifier, string schema, string table-name | resource',
1152\ 'db2_free_result(': 'resource stmt | bool',
1153\ 'db2_free_stmt(': 'resource stmt | bool',
1154\ 'db2_next_result(': 'resource stmt | resource',
1155\ 'db2_num_fields(': 'resource stmt | int',
1156\ 'db2_num_rows(': 'resource stmt | int',
1157\ 'db2_pconnect(': 'string database, string username, string password [, array options] | resource',
1158\ 'db2_prepare(': 'resource connection, string statement [, array options] | resource',
1159\ 'db2_primary_keys(': 'resource connection, string qualifier, string schema, string table-name | resource',
1160\ 'db2_procedure_columns(': 'resource connection, string qualifier, string schema, string procedure, string parameter | resource',
1161\ 'db2_procedures(': 'resource connection, string qualifier, string schema, string procedure | resource',
1162\ 'db2_result(': 'resource stmt, mixed column | mixed',
1163\ 'db2_rollback(': 'resource connection | bool',
1164\ 'db2_server_info(': 'resource connection | object',
1165\ 'db2_special_columns(': 'resource connection, string qualifier, string schema, string table_name, int scope | resource',
1166\ 'db2_statistics(': 'resource connection, string qualifier, string schema, string table-name, bool unique | resource',
1167\ 'db2_stmt_error(': '[resource stmt] | string',
1168\ 'db2_stmt_errormsg(': '[resource stmt] | string',
1169\ 'db2_table_privileges(': 'resource connection [, string qualifier [, string schema [, string table_name]]] | resource',
1170\ 'db2_tables(': 'resource connection [, string qualifier [, string schema [, string table-name [, string table-type]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001171\ 'dba_close(': 'resource handle | void',
1172\ 'dba_delete(': 'string key, resource handle | bool',
1173\ 'dba_exists(': 'string key, resource handle | bool',
1174\ 'dba_fetch(': 'string key, resource handle | string',
1175\ 'dba_firstkey(': 'resource handle | string',
1176\ 'dba_handlers(': '[bool full_info] | array',
1177\ 'dba_insert(': 'string key, string value, resource handle | bool',
1178\ 'dba_key_split(': 'mixed key | mixed',
1179\ 'dba_list(': 'void | array',
1180\ 'dba_nextkey(': 'resource handle | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001181\ 'dba_open(': 'string path, string mode [, string handler [, mixed ...]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001182\ 'dba_optimize(': 'resource handle | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001183\ 'dba_popen(': 'string path, string mode [, string handler [, mixed ...]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001184\ 'dba_replace(': 'string key, string value, resource handle | bool',
1185\ 'dbase_add_record(': 'int dbase_identifier, array record | bool',
1186\ 'dbase_close(': 'int dbase_identifier | bool',
1187\ 'dbase_create(': 'string filename, array fields | int',
1188\ 'dbase_delete_record(': 'int dbase_identifier, int record_number | bool',
1189\ 'dbase_get_header_info(': 'int dbase_identifier | array',
1190\ 'dbase_get_record(': 'int dbase_identifier, int record_number | array',
1191\ 'dbase_get_record_with_names(': 'int dbase_identifier, int record_number | array',
1192\ 'dbase_numfields(': 'int dbase_identifier | int',
1193\ 'dbase_numrecords(': 'int dbase_identifier | int',
1194\ 'dbase_open(': 'string filename, int mode | int',
1195\ 'dbase_pack(': 'int dbase_identifier | bool',
1196\ 'dbase_replace_record(': 'int dbase_identifier, array record, int record_number | bool',
1197\ 'dba_sync(': 'resource handle | bool',
1198\ 'dblist(': 'void | string',
1199\ 'dbmclose(': 'resource dbm_identifier | bool',
1200\ 'dbmdelete(': 'resource dbm_identifier, string key | bool',
1201\ 'dbmexists(': 'resource dbm_identifier, string key | bool',
1202\ 'dbmfetch(': 'resource dbm_identifier, string key | string',
1203\ 'dbmfirstkey(': 'resource dbm_identifier | string',
1204\ 'dbminsert(': 'resource dbm_identifier, string key, string value | int',
1205\ 'dbmnextkey(': 'resource dbm_identifier, string key | string',
1206\ 'dbmopen(': 'string filename, string flags | resource',
1207\ 'dbmreplace(': 'resource dbm_identifier, string key, string value | int',
1208\ 'dbplus_add(': 'resource relation, array tuple | int',
1209\ 'dbplus_aql(': 'string query [, string server [, string dbpath]] | resource',
1210\ 'dbplus_chdir(': '[string newdir] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001211\ 'dbplus_close(': 'resource relation | mixed',
1212\ 'dbplus_curr(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001213\ 'dbplus_errcode(': '[int errno] | string',
1214\ 'dbplus_errno(': 'void | int',
1215\ 'dbplus_find(': 'resource relation, array constraints, mixed tuple | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001216\ 'dbplus_first(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001217\ 'dbplus_flush(': 'resource relation | int',
1218\ 'dbplus_freealllocks(': 'void | int',
1219\ 'dbplus_freelock(': 'resource relation, string tname | int',
1220\ 'dbplus_freerlocks(': 'resource relation | int',
1221\ 'dbplus_getlock(': 'resource relation, string tname | int',
1222\ 'dbplus_getunique(': 'resource relation, int uniqueid | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001223\ 'dbplus_info(': 'resource relation, string key, array &#38;result | int',
1224\ 'dbplus_last(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001225\ 'dbplus_lockrel(': 'resource relation | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001226\ 'dbplus_next(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001227\ 'dbplus_open(': 'string name | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001228\ 'dbplus_prev(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001229\ 'dbplus_rchperm(': 'resource relation, int mask, string user, string group | int',
1230\ 'dbplus_rcreate(': 'string name, mixed domlist [, bool overwrite] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001231\ 'dbplus_rcrtexact(': 'string name, resource relation [, bool overwrite] | mixed',
1232\ 'dbplus_rcrtlike(': 'string name, resource relation [, int overwrite] | mixed',
1233\ 'dbplus_resolve(': 'string relation_name | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001234\ 'dbplus_restorepos(': 'resource relation, array tuple | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001235\ 'dbplus_rkeys(': 'resource relation, mixed domlist | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001236\ 'dbplus_ropen(': 'string name | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001237\ 'dbplus_rquery(': 'string query [, string dbpath] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001238\ 'dbplus_rrename(': 'resource relation, string name | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001239\ 'dbplus_rsecindex(': 'resource relation, mixed domlist, int type | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001240\ 'dbplus_runlink(': 'resource relation | int',
1241\ 'dbplus_rzap(': 'resource relation | int',
1242\ 'dbplus_savepos(': 'resource relation | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001243\ 'dbplus_setindexbynumber(': 'resource relation, int idx_number | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001244\ 'dbplus_setindex(': 'resource relation, string idx_name | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001245\ 'dbplus_sql(': 'string query [, string server [, string dbpath]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001246\ 'dbplus_tcl(': 'int sid, string script | string',
1247\ 'dbplus_tremove(': 'resource relation, array tuple [, array &#38;current] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001248\ 'dbplus_undo(': 'resource relation | int',
1249\ 'dbplus_undoprepare(': 'resource relation | int',
1250\ 'dbplus_unlockrel(': 'resource relation | int',
1251\ 'dbplus_unselect(': 'resource relation | int',
1252\ 'dbplus_update(': 'resource relation, array old, array new | int',
1253\ 'dbplus_xlockrel(': 'resource relation | int',
1254\ 'dbplus_xunlockrel(': 'resource relation | int',
1255\ 'dbx_close(': 'object link_identifier | bool',
1256\ 'dbx_compare(': 'array row_a, array row_b, string column_key [, int flags] | int',
1257\ 'dbx_connect(': 'mixed module, string host, string database, string username, string password [, int persistent] | object',
1258\ 'dbx_error(': 'object link_identifier | string',
1259\ 'dbx_escape_string(': 'object link_identifier, string text | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001260\ 'dbx_fetch_row(': 'object result_identifier | mixed',
1261\ 'dbx_query(': 'object link_identifier, string sql_statement [, int flags] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001262\ 'dbx_sort(': 'object result, string user_compare_function | bool',
1263\ 'dcgettext(': 'string domain, string message, int category | string',
1264\ 'dcngettext(': 'string domain, string msgid1, string msgid2, int n, int category | string',
1265\ 'deaggregate(': 'object object [, string class_name] | void',
1266\ 'debug_backtrace(': 'void | array',
1267\ 'debugger_off(': 'void | int',
1268\ 'debugger_on(': 'string address | int',
1269\ 'debug_print_backtrace(': 'void | void',
1270\ 'debug_zval_dump(': 'mixed variable | void',
1271\ 'decbin(': 'int number | string',
1272\ 'dechex(': 'int number | string',
1273\ 'decoct(': 'int number | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001274\ 'defined(': 'string name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001275\ 'define(': 'string name, mixed value [, bool case_insensitive] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001276\ 'define_syslog_variables(': 'void | void',
1277\ 'deg2rad(': 'float number | float',
1278\ 'delete(': 'string file | void',
1279\ 'dgettext(': 'string domain, string message | string',
1280\ 'dio_close(': 'resource fd | void',
1281\ 'dio_fcntl(': 'resource fd, int cmd [, mixed args] | mixed',
1282\ 'dio_open(': 'string filename, int flags [, int mode] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001283\ 'dio_read(': 'resource fd [, int len] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001284\ 'dio_seek(': 'resource fd, int pos [, int whence] | int',
1285\ 'dio_stat(': 'resource fd | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001286\ 'dio_tcsetattr(': 'resource fd, array options | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001287\ 'dio_truncate(': 'resource fd, int offset | bool',
1288\ 'dio_write(': 'resource fd, string data [, int len] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001289\ 'DirectoryIterator::__construct(': 'string path | DirectoryIterator',
1290\ 'DirectoryIterator::current(': 'void | DirectoryIterator',
1291\ 'DirectoryIterator::getATime(': 'void | int',
1292\ 'DirectoryIterator::getChildren(': 'void | RecursiveDirectoryIterator',
1293\ 'DirectoryIterator::getCTime(': 'void | int',
1294\ 'DirectoryIterator::getFilename(': 'void | string',
1295\ 'DirectoryIterator::getGroup(': 'void | int',
1296\ 'DirectoryIterator::getInode(': 'void | int',
1297\ 'DirectoryIterator::getMTime(': 'void | int',
1298\ 'DirectoryIterator::getOwner(': 'void | int',
1299\ 'DirectoryIterator::getPath(': 'void | string',
1300\ 'DirectoryIterator::getPathname(': 'void | string',
1301\ 'DirectoryIterator::getPerms(': 'void | int',
1302\ 'DirectoryIterator::getSize(': 'void | int',
1303\ 'DirectoryIterator::getType(': 'void | string',
1304\ 'DirectoryIterator::isDir(': 'void | bool',
1305\ 'DirectoryIterator::isDot(': 'void | bool',
1306\ 'DirectoryIterator::isExecutable(': 'void | bool',
1307\ 'DirectoryIterator::isFile(': 'void | bool',
1308\ 'DirectoryIterator::isLink(': 'void | bool',
1309\ 'DirectoryIterator::isReadable(': 'void | bool',
1310\ 'DirectoryIterator::isWritable(': 'void | bool',
1311\ 'DirectoryIterator::key(': 'void | string',
1312\ 'DirectoryIterator::next(': 'void | void',
1313\ 'DirectoryIterator::rewind(': 'void | void',
1314\ 'DirectoryIterator::valid(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001315\ 'dirname(': 'string path | string',
1316\ 'disk_free_space(': 'string directory | float',
1317\ 'disk_total_space(': 'string directory | float',
1318\ 'dl(': 'string library | int',
1319\ 'dngettext(': 'string domain, string msgid1, string msgid2, int n | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001320\ 'dns_check_record(': 'string host [, string type] | bool',
1321\ 'dns_get_mx(': 'string hostname, array &#38;mxhosts [, array &#38;weight] | bool',
1322\ 'dns_get_record(': 'string hostname [, int type [, array &#38;authns, array &#38;addtl]] | array',
1323\ 'DomDocument-&#62;add_root(': 'string name | domelement',
1324\ 'DomDocument-&#62;create_attribute(': 'string name, string value | domattribute',
1325\ 'DomDocument-&#62;create_cdata_section(': 'string content | domcdata',
1326\ 'DomDocument-&#62;create_comment(': 'string content | domcomment',
1327\ 'DomDocument-&#62;create_element(': 'string name | domelement',
1328\ 'DomDocument-&#62;create_element_ns(': 'string uri, string name [, string prefix] | domelement',
1329\ 'DomDocument-&#62;create_entity_reference(': 'string content | domentityreference',
1330\ 'DomDocument-&#62;create_processing_instruction(': 'string content | domprocessinginstruction',
1331\ 'DomDocument-&#62;create_text_node(': 'string content | domtext',
1332\ 'DomDocument-&#62;doctype(': 'void | domdocumenttype',
1333\ 'DomDocument-&#62;document_element(': 'void | domelement',
1334\ 'DomDocument-&#62;dump_file(': 'string filename [, bool compressionmode [, bool format]] | string',
1335\ 'DomDocument-&#62;dump_mem(': '[bool format [, string encoding]] | string',
1336\ 'DomDocument-&#62;get_element_by_id(': 'string id | domelement',
1337\ 'DomDocument-&#62;get_elements_by_tagname(': 'string name | array',
1338\ 'DomDocument-&#62;html_dump_mem(': 'void | string',
1339\ 'DomDocument-&#62;xinclude(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001340\ 'dom_import_simplexml(': 'SimpleXMLElement node | DOMElement',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001341\ 'DomNode-&#62;append_sibling(': 'domelement newnode | domelement',
1342\ 'DomNode-&#62;attributes(': 'void | array',
1343\ 'DomNode-&#62;child_nodes(': 'void | array',
1344\ 'DomNode-&#62;clone_node(': 'void | domelement',
1345\ 'DomNode-&#62;dump_node(': 'void | string',
1346\ 'DomNode-&#62;first_child(': 'void | domelement',
1347\ 'DomNode-&#62;get_content(': 'void | string',
1348\ 'DomNode-&#62;has_attributes(': 'void | bool',
1349\ 'DomNode-&#62;has_child_nodes(': 'void | bool',
1350\ 'DomNode-&#62;insert_before(': 'domelement newnode, domelement refnode | domelement',
1351\ 'DomNode-&#62;is_blank_node(': 'void | bool',
1352\ 'DomNode-&#62;last_child(': 'void | domelement',
1353\ 'DomNode-&#62;next_sibling(': 'void | domelement',
1354\ 'DomNode-&#62;node_name(': 'void | string',
1355\ 'DomNode-&#62;node_type(': 'void | int',
1356\ 'DomNode-&#62;node_value(': 'void | string',
1357\ 'DomNode-&#62;owner_document(': 'void | domdocument',
1358\ 'DomNode-&#62;parent_node(': 'void | domnode',
1359\ 'DomNode-&#62;prefix(': 'void | string',
1360\ 'DomNode-&#62;previous_sibling(': 'void | domelement',
1361\ 'DomNode-&#62;remove_child(': 'domtext oldchild | domtext',
1362\ 'DomNode-&#62;replace_child(': 'domelement oldnode, domelement newnode | domelement',
1363\ 'DomNode-&#62;replace_node(': 'domelement newnode | domelement',
1364\ 'DomNode-&#62;set_content(': 'string content | bool',
1365\ 'DomNode-&#62;set_name(': 'void | bool',
1366\ 'DomNode-&#62;set_namespace(': 'string uri [, string prefix] | void',
1367\ 'DomNode-&#62;unlink_node(': 'void | void',
1368\ 'domxml_new_doc(': 'string version | DomDocument',
1369\ 'domxml_open_file(': 'string filename [, int mode [, array &#38;error]] | DomDocument',
1370\ 'domxml_open_mem(': 'string str [, int mode [, array &#38;error]] | DomDocument',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001371\ 'domxml_version(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001372\ 'domxml_xmltree(': 'string str | DomDocument',
1373\ 'domxml_xslt_stylesheet_doc(': 'DomDocument xsl_doc | DomXsltStylesheet',
1374\ 'domxml_xslt_stylesheet_file(': 'string xsl_file | DomXsltStylesheet',
1375\ 'domxml_xslt_stylesheet(': 'string xsl_buf | DomXsltStylesheet',
1376\ 'domxml_xslt_version(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001377\ 'dotnet_load(': 'string assembly_name [, string datatype_name [, int codepage]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001378\ 'each(': 'array &#38;array | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001379\ 'easter_date(': '[int year] | int',
1380\ 'easter_days(': '[int year [, int method]] | int',
1381\ 'ebcdic2ascii(': 'string ebcdic_str | int',
1382\ 'echo(': 'string arg1 [, string ...] | void',
1383\ 'empty(': 'mixed var | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001384\ 'end(': 'array &#38;array | mixed',
1385\ 'ereg(': 'string pattern, string string [, array &#38;regs] | int',
1386\ 'eregi(': 'string pattern, string string [, array &#38;regs] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001387\ 'eregi_replace(': 'string pattern, string replacement, string string | string',
1388\ 'ereg_replace(': 'string pattern, string replacement, string string | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001389\ 'error_log(': 'string message [, int message_type [, string destination [, string extra_headers]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001390\ 'error_reporting(': '[int level] | int',
1391\ 'escapeshellarg(': 'string arg | string',
1392\ 'escapeshellcmd(': 'string command | string',
1393\ 'eval(': 'string code_str | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001394\ 'exec(': 'string command [, array &#38;output [, int &#38;return_var]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001395\ 'exif_imagetype(': 'string filename | int',
1396\ 'exif_read_data(': 'string filename [, string sections [, bool arrays [, bool thumbnail]]] | array',
1397\ 'exif_tagname(': 'string index | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001398\ 'exif_thumbnail(': 'string filename [, int &#38;width [, int &#38;height [, int &#38;imagetype]]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001399\ 'exit(': '[string status] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001400\ 'expect_expectl(': 'resource expect, array cases, string &#38;match | mixed',
1401\ 'expect_popen(': 'string command | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001402\ 'exp(': 'float arg | float',
1403\ 'explode(': 'string separator, string string [, int limit] | array',
1404\ 'expm1(': 'float number | float',
1405\ 'extension_loaded(': 'string name | bool',
1406\ 'extract(': 'array var_array [, int extract_type [, string prefix]] | int',
1407\ 'ezmlm_hash(': 'string addr | int',
1408\ 'fam_cancel_monitor(': 'resource fam, resource fam_monitor | bool',
1409\ 'fam_close(': 'resource fam | void',
1410\ 'fam_monitor_collection(': 'resource fam, string dirname, int depth, string mask | resource',
1411\ 'fam_monitor_directory(': 'resource fam, string dirname | resource',
1412\ 'fam_monitor_file(': 'resource fam, string filename | resource',
1413\ 'fam_next_event(': 'resource fam | array',
1414\ 'fam_open(': '[string appname] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001415\ 'fam_pending(': 'resource fam | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001416\ 'fam_resume_monitor(': 'resource fam, resource fam_monitor | bool',
1417\ 'fam_suspend_monitor(': 'resource fam, resource fam_monitor | bool',
1418\ 'fbsql_affected_rows(': '[resource link_identifier] | int',
1419\ 'fbsql_autocommit(': 'resource link_identifier [, bool OnOff] | bool',
1420\ 'fbsql_blob_size(': 'string blob_handle [, resource link_identifier] | int',
1421\ 'fbsql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | resource',
1422\ 'fbsql_clob_size(': 'string clob_handle [, resource link_identifier] | int',
1423\ 'fbsql_close(': '[resource link_identifier] | bool',
1424\ 'fbsql_commit(': '[resource link_identifier] | bool',
1425\ 'fbsql_connect(': '[string hostname [, string username [, string password]]] | resource',
1426\ 'fbsql_create_blob(': 'string blob_data [, resource link_identifier] | string',
1427\ 'fbsql_create_clob(': 'string clob_data [, resource link_identifier] | string',
1428\ 'fbsql_create_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool',
1429\ 'fbsql_database(': 'resource link_identifier [, string database] | string',
1430\ 'fbsql_database_password(': 'resource link_identifier [, string database_password] | string',
1431\ 'fbsql_data_seek(': 'resource result_identifier, int row_number | bool',
1432\ 'fbsql_db_query(': 'string database, string query [, resource link_identifier] | resource',
1433\ 'fbsql_db_status(': 'string database_name [, resource link_identifier] | int',
1434\ 'fbsql_drop_db(': 'string database_name [, resource link_identifier] | bool',
1435\ 'fbsql_errno(': '[resource link_identifier] | int',
1436\ 'fbsql_error(': '[resource link_identifier] | string',
1437\ 'fbsql_fetch_array(': 'resource result [, int result_type] | array',
1438\ 'fbsql_fetch_assoc(': 'resource result | array',
1439\ 'fbsql_fetch_field(': 'resource result [, int field_offset] | object',
1440\ 'fbsql_fetch_lengths(': 'resource result | array',
1441\ 'fbsql_fetch_object(': 'resource result [, int result_type] | object',
1442\ 'fbsql_fetch_row(': 'resource result | array',
1443\ 'fbsql_field_flags(': 'resource result [, int field_offset] | string',
1444\ 'fbsql_field_len(': 'resource result [, int field_offset] | int',
1445\ 'fbsql_field_name(': 'resource result [, int field_index] | string',
1446\ 'fbsql_field_seek(': 'resource result [, int field_offset] | bool',
1447\ 'fbsql_field_table(': 'resource result [, int field_offset] | string',
1448\ 'fbsql_field_type(': 'resource result [, int field_offset] | string',
1449\ 'fbsql_free_result(': 'resource result | bool',
1450\ 'fbsql_get_autostart_info(': '[resource link_identifier] | array',
1451\ 'fbsql_hostname(': 'resource link_identifier [, string host_name] | string',
1452\ 'fbsql_insert_id(': '[resource link_identifier] | int',
1453\ 'fbsql_list_dbs(': '[resource link_identifier] | resource',
1454\ 'fbsql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource',
1455\ 'fbsql_list_tables(': 'string database [, resource link_identifier] | resource',
1456\ 'fbsql_next_result(': 'resource result_id | bool',
1457\ 'fbsql_num_fields(': 'resource result | int',
1458\ 'fbsql_num_rows(': 'resource result | int',
1459\ 'fbsql_password(': 'resource link_identifier [, string password] | string',
1460\ 'fbsql_pconnect(': '[string hostname [, string username [, string password]]] | resource',
1461\ 'fbsql_query(': 'string query [, resource link_identifier [, int batch_size]] | resource',
1462\ 'fbsql_read_blob(': 'string blob_handle [, resource link_identifier] | string',
1463\ 'fbsql_read_clob(': 'string clob_handle [, resource link_identifier] | string',
1464\ 'fbsql_result(': 'resource result [, int row [, mixed field]] | mixed',
1465\ 'fbsql_rollback(': '[resource link_identifier] | bool',
1466\ 'fbsql_select_db(': '[string database_name [, resource link_identifier]] | bool',
1467\ 'fbsql_set_lob_mode(': 'resource result, string database_name | bool',
1468\ 'fbsql_set_password(': 'resource link_identifier, string user, string password, string old_password | bool',
1469\ 'fbsql_set_transaction(': 'resource link_identifier, int Locking, int Isolation | void',
1470\ 'fbsql_start_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool',
1471\ 'fbsql_stop_db(': 'string database_name [, resource link_identifier] | bool',
1472\ 'fbsql_tablename(': 'resource result, int i | string',
1473\ 'fbsql_username(': 'resource link_identifier [, string username] | string',
1474\ 'fbsql_warnings(': '[bool OnOff] | bool',
1475\ 'fclose(': 'resource handle | bool',
1476\ 'fdf_add_doc_javascript(': 'resource fdfdoc, string script_name, string script_code | bool',
1477\ 'fdf_add_template(': 'resource fdfdoc, int newpage, string filename, string template, int rename | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001478\ 'fdf_close(': 'resource fdf_document | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001479\ 'fdf_create(': 'void | resource',
1480\ 'fdf_enum_values(': 'resource fdfdoc, callback function [, mixed userdata] | bool',
1481\ 'fdf_errno(': 'void | int',
1482\ 'fdf_error(': '[int error_code] | string',
1483\ 'fdf_get_ap(': 'resource fdf_document, string field, int face, string filename | bool',
1484\ 'fdf_get_attachment(': 'resource fdf_document, string fieldname, string savepath | array',
1485\ 'fdf_get_encoding(': 'resource fdf_document | string',
1486\ 'fdf_get_file(': 'resource fdf_document | string',
1487\ 'fdf_get_flags(': 'resource fdfdoc, string fieldname, int whichflags | int',
1488\ 'fdf_get_opt(': 'resource fdfdof, string fieldname [, int element] | mixed',
1489\ 'fdf_get_status(': 'resource fdf_document | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001490\ 'fdf_get_value(': 'resource fdf_document, string fieldname [, int which] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001491\ 'fdf_get_version(': '[resource fdf_document] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001492\ 'fdf_header(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001493\ 'fdf_next_field_name(': 'resource fdf_document [, string fieldname] | string',
1494\ 'fdf_open(': 'string filename | resource',
1495\ 'fdf_open_string(': 'string fdf_data | resource',
1496\ 'fdf_remove_item(': 'resource fdfdoc, string fieldname, int item | bool',
1497\ 'fdf_save(': 'resource fdf_document [, string filename] | bool',
1498\ 'fdf_save_string(': 'resource fdf_document | string',
1499\ 'fdf_set_ap(': 'resource fdf_document, string field_name, int face, string filename, int page_number | bool',
1500\ 'fdf_set_encoding(': 'resource fdf_document, string encoding | bool',
1501\ 'fdf_set_file(': 'resource fdf_document, string url [, string target_frame] | bool',
1502\ 'fdf_set_flags(': 'resource fdf_document, string fieldname, int whichFlags, int newFlags | bool',
1503\ 'fdf_set_javascript_action(': 'resource fdf_document, string fieldname, int trigger, string script | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001504\ 'fdf_set_on_import_javascript(': 'resource fdfdoc, string script, bool before_data_import | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001505\ 'fdf_set_opt(': 'resource fdf_document, string fieldname, int element, string str1, string str2 | bool',
1506\ 'fdf_set_status(': 'resource fdf_document, string status | bool',
1507\ 'fdf_set_submit_form_action(': 'resource fdf_document, string fieldname, int trigger, string script, int flags | bool',
1508\ 'fdf_set_target_frame(': 'resource fdf_document, string frame_name | bool',
1509\ 'fdf_set_value(': 'resource fdf_document, string fieldname, mixed value [, int isName] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001510\ 'fdf_set_version(': 'resource fdf_document, string version | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001511\ 'feof(': 'resource handle | bool',
1512\ 'fflush(': 'resource handle | bool',
1513\ 'fgetc(': 'resource handle | string',
1514\ 'fgetcsv(': 'resource handle [, int length [, string delimiter [, string enclosure]]] | array',
1515\ 'fgets(': 'resource handle [, int length] | string',
1516\ 'fgetss(': 'resource handle [, int length [, string allowable_tags]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001517\ 'fileatime(': 'string filename | int',
1518\ 'filectime(': 'string filename | int',
1519\ 'file_exists(': 'string filename | bool',
1520\ 'file_get_contents(': 'string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]] | string',
1521\ 'filegroup(': 'string filename | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001522\ 'file(': 'string filename [, int use_include_path [, resource context]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001523\ 'fileinode(': 'string filename | int',
1524\ 'filemtime(': 'string filename | int',
1525\ 'fileowner(': 'string filename | int',
1526\ 'fileperms(': 'string filename | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001527\ 'filepro_fieldcount(': 'void | int',
1528\ 'filepro_fieldname(': 'int field_number | string',
1529\ 'filepro_fieldtype(': 'int field_number | string',
1530\ 'filepro_fieldwidth(': 'int field_number | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001531\ 'filepro(': 'string directory | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001532\ 'filepro_retrieve(': 'int row_number, int field_number | string',
1533\ 'filepro_rowcount(': 'void | int',
1534\ 'file_put_contents(': 'string filename, mixed data [, int flags [, resource context]] | int',
1535\ 'filesize(': 'string filename | int',
1536\ 'filetype(': 'string filename | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001537\ 'FilterIterator::current(': 'void | mixed',
1538\ 'FilterIterator::getInnerIterator(': 'void | Iterator',
1539\ 'FilterIterator::key(': 'void | mixed',
1540\ 'FilterIterator::next(': 'void | void',
1541\ 'FilterIterator::rewind(': 'void | void',
1542\ 'FilterIterator::valid(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001543\ 'floatval(': 'mixed var | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001544\ 'flock(': 'resource handle, int operation [, int &#38;wouldblock] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001545\ 'floor(': 'float value | float',
1546\ 'flush(': 'void | void',
1547\ 'fmod(': 'float x, float y | float',
1548\ 'fnmatch(': 'string pattern, string string [, int flags] | bool',
1549\ 'fopen(': 'string filename, string mode [, bool use_include_path [, resource zcontext]] | resource',
1550\ 'fpassthru(': 'resource handle | int',
1551\ 'fprintf(': 'resource handle, string format [, mixed args [, mixed ...]] | int',
1552\ 'fputcsv(': 'resource handle [, array fields [, string delimiter [, string enclosure]]] | int',
1553\ 'fread(': 'resource handle, int length | string',
1554\ 'frenchtojd(': 'int month, int day, int year | int',
1555\ 'fribidi_log2vis(': 'string str, string direction, int charset | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001556\ 'fscanf(': 'resource handle, string format [, mixed &#38;...] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001557\ 'fseek(': 'resource handle, int offset [, int whence] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001558\ 'fsockopen(': 'string target [, int port [, int &#38;errno [, string &#38;errstr [, float timeout]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001559\ 'fstat(': 'resource handle | array',
1560\ 'ftell(': 'resource handle | int',
1561\ 'ftok(': 'string pathname, string proj | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001562\ 'ftp_alloc(': 'resource ftp_stream, int filesize [, string &#38;result] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001563\ 'ftp_cdup(': 'resource ftp_stream | bool',
1564\ 'ftp_chdir(': 'resource ftp_stream, string directory | bool',
1565\ 'ftp_chmod(': 'resource ftp_stream, int mode, string filename | int',
1566\ 'ftp_close(': 'resource ftp_stream | bool',
1567\ 'ftp_connect(': 'string host [, int port [, int timeout]] | resource',
1568\ 'ftp_delete(': 'resource ftp_stream, string path | bool',
1569\ 'ftp_exec(': 'resource ftp_stream, string command | bool',
1570\ 'ftp_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | bool',
1571\ 'ftp_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | bool',
1572\ 'ftp_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | bool',
1573\ 'ftp_get_option(': 'resource ftp_stream, int option | mixed',
1574\ 'ftp_login(': 'resource ftp_stream, string username, string password | bool',
1575\ 'ftp_mdtm(': 'resource ftp_stream, string remote_file | int',
1576\ 'ftp_mkdir(': 'resource ftp_stream, string directory | string',
1577\ 'ftp_nb_continue(': 'resource ftp_stream | int',
1578\ 'ftp_nb_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | int',
1579\ 'ftp_nb_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | int',
1580\ 'ftp_nb_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | int',
1581\ 'ftp_nb_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | int',
1582\ 'ftp_nlist(': 'resource ftp_stream, string directory | array',
1583\ 'ftp_pasv(': 'resource ftp_stream, bool pasv | bool',
1584\ 'ftp_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | bool',
1585\ 'ftp_pwd(': 'resource ftp_stream | string',
1586\ 'ftp_raw(': 'resource ftp_stream, string command | array',
1587\ 'ftp_rawlist(': 'resource ftp_stream, string directory [, bool recursive] | array',
1588\ 'ftp_rename(': 'resource ftp_stream, string oldname, string newname | bool',
1589\ 'ftp_rmdir(': 'resource ftp_stream, string directory | bool',
1590\ 'ftp_set_option(': 'resource ftp_stream, int option, mixed value | bool',
1591\ 'ftp_site(': 'resource ftp_stream, string command | bool',
1592\ 'ftp_size(': 'resource ftp_stream, string remote_file | int',
1593\ 'ftp_ssl_connect(': 'string host [, int port [, int timeout]] | resource',
1594\ 'ftp_systype(': 'resource ftp_stream | string',
1595\ 'ftruncate(': 'resource handle, int size | bool',
1596\ 'func_get_arg(': 'int arg_num | mixed',
1597\ 'func_get_args(': 'void | array',
1598\ 'func_num_args(': 'void | int',
1599\ 'function_exists(': 'string function_name | bool',
1600\ 'fwrite(': 'resource handle, string string [, int length] | int',
1601\ 'gd_info(': 'void | array',
1602\ 'getallheaders(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001603\ 'get_browser(': '[string user_agent [, bool return_array]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001604\ 'get_cfg_var(': 'string varname | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001605\ 'get_class(': '[object obj] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001606\ 'get_class_methods(': 'mixed class_name | array',
1607\ 'get_class_vars(': 'string class_name | array',
1608\ 'get_current_user(': 'void | string',
1609\ 'getcwd(': 'void | string',
1610\ 'getdate(': '[int timestamp] | array',
1611\ 'get_declared_classes(': 'void | array',
1612\ 'get_declared_interfaces(': 'void | array',
1613\ 'get_defined_constants(': '[mixed categorize] | array',
1614\ 'get_defined_functions(': 'void | array',
1615\ 'get_defined_vars(': 'void | array',
1616\ 'getenv(': 'string varname | string',
1617\ 'get_extension_funcs(': 'string module_name | array',
1618\ 'get_headers(': 'string url [, int format] | array',
1619\ 'gethostbyaddr(': 'string ip_address | string',
1620\ 'gethostbyname(': 'string hostname | string',
1621\ 'gethostbynamel(': 'string hostname | array',
1622\ 'get_html_translation_table(': '[int table [, int quote_style]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001623\ 'getimagesize(': 'string filename [, array &#38;imageinfo] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001624\ 'get_included_files(': 'void | array',
1625\ 'get_include_path(': 'void | string',
1626\ 'getlastmod(': 'void | int',
1627\ 'get_loaded_extensions(': 'void | array',
1628\ 'get_magic_quotes_gpc(': 'void | int',
1629\ 'get_magic_quotes_runtime(': 'void | int',
1630\ 'get_meta_tags(': 'string filename [, bool use_include_path] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001631\ 'getmxrr(': 'string hostname, array &#38;mxhosts [, array &#38;weight] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001632\ 'getmygid(': 'void | int',
1633\ 'getmyinode(': 'void | int',
1634\ 'getmypid(': 'void | int',
1635\ 'getmyuid(': 'void | int',
1636\ 'get_object_vars(': 'object obj | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001637\ 'getopt(': 'string options | array',
1638\ 'get_parent_class(': '[mixed obj] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001639\ 'getprotobyname(': 'string name | int',
1640\ 'getprotobynumber(': 'int number | string',
1641\ 'getrandmax(': 'void | int',
1642\ 'get_resource_type(': 'resource handle | string',
1643\ 'getrusage(': '[int who] | array',
1644\ 'getservbyname(': 'string service, string protocol | int',
1645\ 'getservbyport(': 'int port, string protocol | string',
1646\ 'gettext(': 'string message | string',
1647\ 'gettimeofday(': '[bool return_float] | mixed',
1648\ 'gettype(': 'mixed var | string',
1649\ 'glob(': 'string pattern [, int flags] | array',
1650\ 'gmdate(': 'string format [, int timestamp] | string',
1651\ 'gmmktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int',
1652\ 'gmp_abs(': 'resource a | resource',
1653\ 'gmp_add(': 'resource a, resource b | resource',
1654\ 'gmp_and(': 'resource a, resource b | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001655\ 'gmp_clrbit(': 'resource &#38;a, int index | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001656\ 'gmp_cmp(': 'resource a, resource b | int',
1657\ 'gmp_com(': 'resource a | resource',
1658\ 'gmp_divexact(': 'resource n, resource d | resource',
1659\ 'gmp_div_q(': 'resource a, resource b [, int round] | resource',
1660\ 'gmp_div_qr(': 'resource n, resource d [, int round] | array',
1661\ 'gmp_div_r(': 'resource n, resource d [, int round] | resource',
1662\ 'gmp_fact(': 'int a | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001663\ 'gmp_gcdext(': 'resource a, resource b | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001664\ 'gmp_gcd(': 'resource a, resource b | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001665\ 'gmp_hamdist(': 'resource a, resource b | int',
1666\ 'gmp_init(': 'mixed number [, int base] | resource',
1667\ 'gmp_intval(': 'resource gmpnumber | int',
1668\ 'gmp_invert(': 'resource a, resource b | resource',
1669\ 'gmp_jacobi(': 'resource a, resource p | int',
1670\ 'gmp_legendre(': 'resource a, resource p | int',
1671\ 'gmp_mod(': 'resource n, resource d | resource',
1672\ 'gmp_mul(': 'resource a, resource b | resource',
1673\ 'gmp_neg(': 'resource a | resource',
1674\ 'gmp_or(': 'resource a, resource b | resource',
1675\ 'gmp_perfect_square(': 'resource a | bool',
1676\ 'gmp_popcount(': 'resource a | int',
1677\ 'gmp_pow(': 'resource base, int exp | resource',
1678\ 'gmp_powm(': 'resource base, resource exp, resource mod | resource',
1679\ 'gmp_prob_prime(': 'resource a [, int reps] | int',
1680\ 'gmp_random(': 'int limiter | resource',
1681\ 'gmp_scan0(': 'resource a, int start | int',
1682\ 'gmp_scan1(': 'resource a, int start | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001683\ 'gmp_setbit(': 'resource &#38;a, int index [, bool set_clear] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001684\ 'gmp_sign(': 'resource a | int',
1685\ 'gmp_sqrt(': 'resource a | resource',
1686\ 'gmp_sqrtrem(': 'resource a | array',
1687\ 'gmp_strval(': 'resource gmpnumber [, int base] | string',
1688\ 'gmp_sub(': 'resource a, resource b | resource',
1689\ 'gmp_xor(': 'resource a, resource b | resource',
1690\ 'gmstrftime(': 'string format [, int timestamp] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001691\ 'gnupg_adddecryptkey(': 'resource identifier, string fingerprint, string passphrase | bool',
1692\ 'gnupg_addencryptkey(': 'resource identifier, string fingerprint | bool',
1693\ 'gnupg_addsignkey(': 'resource identifier, string fingerprint [, string passphrase] | bool',
1694\ 'gnupg_cleardecryptkeys(': 'resource identifier | bool',
1695\ 'gnupg_clearencryptkeys(': 'resource identifier | bool',
1696\ 'gnupg_clearsignkeys(': 'resource identifier | bool',
1697\ 'gnupg_decrypt(': 'resource identifier, string text | string',
1698\ 'gnupg_decryptverify(': 'resource identifier, string text, string plaintext | array',
1699\ 'gnupg_encrypt(': 'resource identifier, string plaintext | string',
1700\ 'gnupg_encryptsign(': 'resource identifier, string plaintext | string',
1701\ 'gnupg_export(': 'resource identifier, string fingerprint | string',
1702\ 'gnupg_geterror(': 'resource identifier | string',
1703\ 'gnupg_getprotocol(': 'resource identifier | int',
1704\ 'gnupg_import(': 'resource identifier, string keydata | array',
1705\ 'gnupg_keyinfo(': 'resource identifier, string pattern | array',
1706\ 'gnupg_setarmor(': 'resource identifier, int armor | bool',
1707\ 'gnupg_seterrormode(': 'resource identifier, int errormode | void',
1708\ 'gnupg_setsignmode(': 'resource identifier, int signmode | bool',
1709\ 'gnupg_sign(': 'resource identifier, string plaintext | string',
1710\ 'gnupg_verify(': 'resource identifier, string signed_text, string signature [, string plaintext] | array',
1711\ 'gopher_parsedir(': 'string dirent | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001712\ 'gregoriantojd(': 'int month, int day, int year | int',
1713\ 'gzclose(': 'resource zp | bool',
1714\ 'gzcompress(': 'string data [, int level] | string',
1715\ 'gzdeflate(': 'string data [, int level] | string',
1716\ 'gzencode(': 'string data [, int level [, int encoding_mode]] | string',
1717\ 'gzeof(': 'resource zp | int',
1718\ 'gzfile(': 'string filename [, int use_include_path] | array',
1719\ 'gzgetc(': 'resource zp | string',
1720\ 'gzgets(': 'resource zp, int length | string',
1721\ 'gzgetss(': 'resource zp, int length [, string allowable_tags] | string',
1722\ 'gzinflate(': 'string data [, int length] | string',
1723\ 'gzopen(': 'string filename, string mode [, int use_include_path] | resource',
1724\ 'gzpassthru(': 'resource zp | int',
1725\ 'gzread(': 'resource zp, int length | string',
1726\ 'gzrewind(': 'resource zp | bool',
1727\ 'gzseek(': 'resource zp, int offset | int',
1728\ 'gztell(': 'resource zp | int',
1729\ 'gzuncompress(': 'string data [, int length] | string',
1730\ 'gzwrite(': 'resource zp, string string [, int length] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001731\ '__halt_compiler(': 'void | void',
1732\ 'hash_algos(': 'void | array',
1733\ 'hash_file(': 'string algo, string filename [, bool raw_output] | string',
1734\ 'hash_final(': 'resource context [, bool raw_output] | string',
1735\ 'hash_hmac_file(': 'string algo, string filename, string key [, bool raw_output] | string',
1736\ 'hash_hmac(': 'string algo, string data, string key [, bool raw_output] | string',
1737\ 'hash(': 'string algo, string data [, bool raw_output] | string',
1738\ 'hash_init(': 'string algo [, int options, string key] | resource',
1739\ 'hash_update_file(': 'resource context, string filename [, resource context] | bool',
1740\ 'hash_update(': 'resource context, string data | bool',
1741\ 'hash_update_stream(': 'resource context, resource handle [, int length] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001742\ 'header(': 'string string [, bool replace [, int http_response_code]] | void',
1743\ 'headers_list(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001744\ 'headers_sent(': '[string &#38;file [, int &#38;line]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001745\ 'hebrevc(': 'string hebrew_text [, int max_chars_per_line] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001746\ 'hebrev(': 'string hebrew_text [, int max_chars_per_line] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001747\ 'hexdec(': 'string hex_string | number',
1748\ 'highlight_file(': 'string filename [, bool return] | mixed',
1749\ 'highlight_string(': 'string str [, bool return] | mixed',
1750\ 'htmlentities(': 'string string [, int quote_style [, string charset]] | string',
1751\ 'html_entity_decode(': 'string string [, int quote_style [, string charset]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001752\ 'htmlspecialchars_decode(': 'string string [, int quote_style] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001753\ 'htmlspecialchars(': 'string string [, int quote_style [, string charset]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001754\ 'http_build_query(': 'array formdata [, string numeric_prefix] | string',
1755\ 'hw_api_attribute(': '[string name [, string value]] | HW_API_Attribute',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001756\ 'hw_api_attribute-&#62;key(': 'void | string',
1757\ 'hw_api_attribute-&#62;langdepvalue(': 'string language | string',
1758\ 'hw_api_attribute-&#62;value(': 'void | string',
1759\ 'hw_api_attribute-&#62;values(': 'void | array',
1760\ 'hw_api-&#62;checkin(': 'array parameter | bool',
1761\ 'hw_api-&#62;checkout(': 'array parameter | bool',
1762\ 'hw_api-&#62;children(': 'array parameter | array',
1763\ 'hw_api-&#62;content(': 'array parameter | HW_API_Content',
1764\ 'hw_api_content-&#62;mimetype(': 'void | string',
1765\ 'hw_api_content-&#62;read(': 'string buffer, int len | string',
1766\ 'hw_api-&#62;copy(': 'array parameter | hw_api_object',
1767\ 'hw_api-&#62;dbstat(': 'array parameter | hw_api_object',
1768\ 'hw_api-&#62;dcstat(': 'array parameter | hw_api_object',
1769\ 'hw_api-&#62;dstanchors(': 'array parameter | array',
1770\ 'hw_api-&#62;dstofsrcanchor(': 'array parameter | hw_api_object',
1771\ 'hw_api_error-&#62;count(': 'void | int',
1772\ 'hw_api_error-&#62;reason(': 'void | HW_API_Reason',
1773\ 'hw_api-&#62;find(': 'array parameter | array',
1774\ 'hw_api-&#62;ftstat(': 'array parameter | hw_api_object',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001775\ 'hwapi_hgcsp(': 'string hostname [, int port] | HW_API',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001776\ 'hw_api-&#62;hwstat(': 'array parameter | hw_api_object',
1777\ 'hw_api-&#62;identify(': 'array parameter | bool',
1778\ 'hw_api-&#62;info(': 'array parameter | array',
1779\ 'hw_api-&#62;insertanchor(': 'array parameter | hw_api_object',
1780\ 'hw_api-&#62;insertcollection(': 'array parameter | hw_api_object',
1781\ 'hw_api-&#62;insertdocument(': 'array parameter | hw_api_object',
1782\ 'hw_api-&#62;insert(': 'array parameter | hw_api_object',
1783\ 'hw_api-&#62;link(': 'array parameter | bool',
1784\ 'hw_api-&#62;lock(': 'array parameter | bool',
1785\ 'hw_api-&#62;move(': 'array parameter | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001786\ 'hw_api_content(': 'string content, string mimetype | HW_API_Content',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001787\ 'hw_api_object-&#62;assign(': 'array parameter | bool',
1788\ 'hw_api_object-&#62;attreditable(': 'array parameter | bool',
1789\ 'hw_api-&#62;objectbyanchor(': 'array parameter | hw_api_object',
1790\ 'hw_api_object-&#62;count(': 'array parameter | int',
1791\ 'hw_api-&#62;object(': 'array parameter | hw_api_object',
1792\ 'hw_api_object-&#62;insert(': 'HW_API_Attribute attribute | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001793\ 'hw_api_object(': 'array parameter | hw_api_object',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001794\ 'hw_api_object-&#62;remove(': 'string name | bool',
1795\ 'hw_api_object-&#62;title(': 'array parameter | string',
1796\ 'hw_api_object-&#62;value(': 'string name | string',
1797\ 'hw_api-&#62;parents(': 'array parameter | array',
1798\ 'hw_api_reason-&#62;description(': 'void | string',
1799\ 'hw_api_reason-&#62;type(': 'void | HW_API_Reason',
1800\ 'hw_api-&#62;remove(': 'array parameter | bool',
1801\ 'hw_api-&#62;replace(': 'array parameter | hw_api_object',
1802\ 'hw_api-&#62;setcommittedversion(': 'array parameter | hw_api_object',
1803\ 'hw_api-&#62;srcanchors(': 'array parameter | array',
1804\ 'hw_api-&#62;srcsofdst(': 'array parameter | array',
1805\ 'hw_api-&#62;unlock(': 'array parameter | bool',
1806\ 'hw_api-&#62;user(': 'array parameter | hw_api_object',
1807\ 'hw_api-&#62;userlist(': 'array parameter | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001808\ 'hw_array2objrec(': 'array object_array | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001809\ 'hw_changeobject(': 'int link, int objid, array attributes | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001810\ 'hw_children(': 'int connection, int objectID | array',
1811\ 'hw_childrenobj(': 'int connection, int objectID | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001812\ 'hw_close(': 'int connection | bool',
1813\ 'hw_connect(': 'string host, int port [, string username, string password] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001814\ 'hw_connection_info(': 'int link | void',
1815\ 'hw_cp(': 'int connection, array object_id_array, int destination_id | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001816\ 'hw_deleteobject(': 'int connection, int object_to_delete | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001817\ 'hw_docbyanchor(': 'int connection, int anchorID | int',
1818\ 'hw_docbyanchorobj(': 'int connection, int anchorID | string',
1819\ 'hw_document_attributes(': 'int hw_document | string',
1820\ 'hw_document_bodytag(': 'int hw_document [, string prefix] | string',
1821\ 'hw_document_content(': 'int hw_document | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001822\ 'hw_document_setcontent(': 'int hw_document, string content | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001823\ 'hw_document_size(': 'int hw_document | int',
1824\ 'hw_dummy(': 'int link, int id, int msgid | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001825\ 'hw_edittext(': 'int connection, int hw_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001826\ 'hw_error(': 'int connection | int',
1827\ 'hw_errormsg(': 'int connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001828\ 'hw_free_document(': 'int hw_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001829\ 'hw_getanchors(': 'int connection, int objectID | array',
1830\ 'hw_getanchorsobj(': 'int connection, int objectID | array',
1831\ 'hw_getandlock(': 'int connection, int objectID | string',
1832\ 'hw_getchildcoll(': 'int connection, int objectID | array',
1833\ 'hw_getchildcollobj(': 'int connection, int objectID | array',
1834\ 'hw_getchilddoccoll(': 'int connection, int objectID | array',
1835\ 'hw_getchilddoccollobj(': 'int connection, int objectID | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001836\ 'hw_getobjectbyquerycoll(': 'int connection, int objectID, string query, int max_hits | array',
1837\ 'hw_getobjectbyquerycollobj(': 'int connection, int objectID, string query, int max_hits | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001838\ 'hw_getobjectbyquery(': 'int connection, string query, int max_hits | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001839\ 'hw_getobjectbyqueryobj(': 'int connection, string query, int max_hits | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001840\ 'hw_getobject(': 'int connection, mixed objectID [, string query] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001841\ 'hw_getparents(': 'int connection, int objectID | array',
1842\ 'hw_getparentsobj(': 'int connection, int objectID | array',
1843\ 'hw_getrellink(': 'int link, int rootid, int sourceid, int destid | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001844\ 'hw_getremotechildren(': 'int connection, string object_record | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001845\ 'hw_getremote(': 'int connection, int objectID | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001846\ 'hw_getsrcbydestobj(': 'int connection, int objectID | array',
1847\ 'hw_gettext(': 'int connection, int objectID [, mixed rootID/prefix] | int',
1848\ 'hw_getusername(': 'int connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001849\ 'hw_identify(': 'int link, string username, string password | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001850\ 'hw_incollections(': 'int connection, array object_id_array, array collection_id_array, int return_collections | array',
1851\ 'hw_info(': 'int connection | string',
1852\ 'hw_inscoll(': 'int connection, int objectID, array object_array | int',
1853\ 'hw_insdoc(': 'resource connection, int parentID, string object_record [, string text] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001854\ 'hw_insertanchors(': 'int hwdoc, array anchorecs, array dest [, array urlprefixes] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001855\ 'hw_insertdocument(': 'int connection, int parent_id, int hw_document | int',
1856\ 'hw_insertobject(': 'int connection, string object_rec, string parameter | int',
1857\ 'hw_mapid(': 'int connection, int server_id, int object_id | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001858\ 'hw_modifyobject(': 'int connection, int object_to_change, array remove, array add [, int mode] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001859\ 'hw_mv(': 'int connection, array object_id_array, int source_id, int destination_id | int',
1860\ 'hw_new_document(': 'string object_record, string document_data, int document_size | int',
1861\ 'hw_objrec2array(': 'string object_record [, array format] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001862\ 'hw_output_document(': 'int hw_document | bool',
1863\ 'hw_pconnect(': 'string host, int port [, string username, string password] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001864\ 'hw_pipedocument(': 'int connection, int objectID [, array url_prefixes] | int',
1865\ 'hw_root(': ' | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001866\ 'hw_setlinkroot(': 'int link, int rootid | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001867\ 'hw_stat(': 'int link | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001868\ 'hw_unlock(': 'int connection, int objectID | bool',
1869\ 'hw_who(': 'int connection | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001870\ 'hypot(': 'float x, float y | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001871\ 'i18n_loc_get_default(': 'void | string',
1872\ 'i18n_loc_set_default(': 'string name | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001873\ 'ibase_add_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool',
1874\ 'ibase_affected_rows(': '[resource link_identifier] | int',
1875\ 'ibase_backup(': 'resource service_handle, string source_db, string dest_file [, int options [, bool verbose]] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001876\ 'ibase_blob_add(': 'resource blob_handle, string data | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001877\ 'ibase_blob_cancel(': 'resource blob_handle | bool',
1878\ 'ibase_blob_close(': 'resource blob_handle | mixed',
1879\ 'ibase_blob_create(': '[resource link_identifier] | resource',
1880\ 'ibase_blob_echo(': 'resource link_identifier, string blob_id | bool',
1881\ 'ibase_blob_get(': 'resource blob_handle, int len | string',
1882\ 'ibase_blob_import(': 'resource link_identifier, resource file_handle | string',
1883\ 'ibase_blob_info(': 'resource link_identifier, string blob_id | array',
1884\ 'ibase_blob_open(': 'resource link_identifier, string blob_id | resource',
1885\ 'ibase_close(': '[resource connection_id] | bool',
1886\ 'ibase_commit(': '[resource link_or_trans_identifier] | bool',
1887\ 'ibase_commit_ret(': '[resource link_or_trans_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001888\ 'ibase_connect(': '[string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001889\ 'ibase_db_info(': 'resource service_handle, string db, int action [, int argument] | string',
1890\ 'ibase_delete_user(': 'resource service_handle, string user_name | bool',
1891\ 'ibase_drop_db(': '[resource connection] | bool',
1892\ 'ibase_errcode(': 'void | int',
1893\ 'ibase_errmsg(': 'void | string',
1894\ 'ibase_execute(': 'resource query [, mixed bind_arg [, mixed ...]] | resource',
1895\ 'ibase_fetch_assoc(': 'resource result [, int fetch_flag] | array',
1896\ 'ibase_fetch_object(': 'resource result_id [, int fetch_flag] | object',
1897\ 'ibase_fetch_row(': 'resource result_identifier [, int fetch_flag] | array',
1898\ 'ibase_field_info(': 'resource result, int field_number | array',
1899\ 'ibase_free_event_handler(': 'resource event | bool',
1900\ 'ibase_free_query(': 'resource query | bool',
1901\ 'ibase_free_result(': 'resource result_identifier | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001902\ 'ibase_gen_id(': 'string generator [, int increment [, resource link_identifier]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001903\ 'ibase_maintain_db(': 'resource service_handle, string db, int action [, int argument] | bool',
1904\ 'ibase_modify_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool',
1905\ 'ibase_name_result(': 'resource result, string name | bool',
1906\ 'ibase_num_fields(': 'resource result_id | int',
1907\ 'ibase_num_params(': 'resource query | int',
1908\ 'ibase_param_info(': 'resource query, int param_number | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001909\ 'ibase_pconnect(': '[string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001910\ 'ibase_prepare(': 'string query | resource',
1911\ 'ibase_query(': '[resource link_identifier, string query [, int bind_args]] | resource',
1912\ 'ibase_restore(': 'resource service_handle, string source_file, string dest_db [, int options [, bool verbose]] | mixed',
1913\ 'ibase_rollback(': '[resource link_or_trans_identifier] | bool',
1914\ 'ibase_rollback_ret(': '[resource link_or_trans_identifier] | bool',
1915\ 'ibase_server_info(': 'resource service_handle, int action | string',
1916\ 'ibase_service_attach(': 'string host, string dba_username, string dba_password | resource',
1917\ 'ibase_service_detach(': 'resource service_handle | bool',
1918\ 'ibase_set_event_handler(': 'callback event_handler, string event_name1 [, string event_name2 [, string ...]] | resource',
1919\ 'ibase_timefmt(': 'string format [, int columntype] | int',
1920\ 'ibase_trans(': '[int trans_args [, resource link_identifier]] | resource',
1921\ 'ibase_wait_event(': 'string event_name1 [, string event_name2 [, string ...]] | string',
1922\ 'icap_close(': 'int icap_stream [, int flags] | int',
1923\ 'icap_create_calendar(': 'int stream_id, string calendar | string',
1924\ 'icap_delete_calendar(': 'int stream_id, string calendar | string',
1925\ 'icap_delete_event(': 'int stream_id, int uid | string',
1926\ 'icap_fetch_event(': 'int stream_id, int event_id [, int options] | int',
1927\ 'icap_list_alarms(': 'int stream_id, array date, array time | int',
1928\ 'icap_list_events(': 'int stream_id, int begin_date [, int end_date] | array',
1929\ 'icap_open(': 'string calendar, string username, string password, string options | resource',
1930\ 'icap_rename_calendar(': 'int stream_id, string old_name, string new_name | string',
1931\ 'icap_reopen(': 'int stream_id, string calendar [, int options] | int',
1932\ 'icap_snooze(': 'int stream_id, int uid | string',
1933\ 'icap_store_event(': 'int stream_id, object event | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001934\ 'iconv_get_encoding(': '[string type] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001935\ 'iconv(': 'string in_charset, string out_charset, string str | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001936\ 'iconv_mime_decode_headers(': 'string encoded_headers [, int mode [, string charset]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001937\ 'iconv_mime_decode(': 'string encoded_header [, int mode [, string charset]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001938\ 'iconv_mime_encode(': 'string field_name, string field_value [, array preferences] | string',
1939\ 'iconv_set_encoding(': 'string type, string charset | bool',
1940\ 'iconv_strlen(': 'string str [, string charset] | int',
1941\ 'iconv_strpos(': 'string haystack, string needle [, int offset [, string charset]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001942\ 'iconv_strrpos(': 'string haystack, string needle [, string charset] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001943\ 'iconv_substr(': 'string str, int offset [, int length [, string charset]] | string',
1944\ 'id3_get_frame_long_name(': 'string frameId | string',
1945\ 'id3_get_frame_short_name(': 'string frameId | string',
1946\ 'id3_get_genre_id(': 'string genre | int',
1947\ 'id3_get_genre_list(': 'void | array',
1948\ 'id3_get_genre_name(': 'int genre_id | string',
1949\ 'id3_get_tag(': 'string filename [, int version] | array',
1950\ 'id3_get_version(': 'string filename | int',
1951\ 'id3_remove_tag(': 'string filename [, int version] | bool',
1952\ 'id3_set_tag(': 'string filename, array tag [, int version] | bool',
1953\ 'idate(': 'string format [, int timestamp] | int',
1954\ 'ifx_affected_rows(': 'int result_id | int',
1955\ 'ifx_blobinfile_mode(': 'int mode | void',
1956\ 'ifx_byteasvarchar(': 'int mode | void',
1957\ 'ifx_close(': '[int link_identifier] | int',
1958\ 'ifx_connect(': '[string database [, string userid [, string password]]] | int',
1959\ 'ifx_copy_blob(': 'int bid | int',
1960\ 'ifx_create_blob(': 'int type, int mode, string param | int',
1961\ 'ifx_create_char(': 'string param | int',
1962\ 'ifx_do(': 'int result_id | int',
1963\ 'ifx_error(': 'void | string',
1964\ 'ifx_errormsg(': '[int errorcode] | string',
1965\ 'ifx_fetch_row(': 'int result_id [, mixed position] | array',
1966\ 'ifx_fieldproperties(': 'int result_id | array',
1967\ 'ifx_fieldtypes(': 'int result_id | array',
1968\ 'ifx_free_blob(': 'int bid | int',
1969\ 'ifx_free_char(': 'int bid | int',
1970\ 'ifx_free_result(': 'int result_id | int',
1971\ 'ifx_get_blob(': 'int bid | int',
1972\ 'ifx_get_char(': 'int bid | int',
1973\ 'ifx_getsqlca(': 'int result_id | array',
1974\ 'ifx_htmltbl_result(': 'int result_id [, string html_table_options] | int',
1975\ 'ifx_nullformat(': 'int mode | void',
1976\ 'ifx_num_fields(': 'int result_id | int',
1977\ 'ifx_num_rows(': 'int result_id | int',
1978\ 'ifx_pconnect(': '[string database [, string userid [, string password]]] | int',
1979\ 'ifx_prepare(': 'string query, int conn_id [, int cursor_def, mixed blobidarray] | int',
1980\ 'ifx_query(': 'string query, int link_identifier [, int cursor_type [, mixed blobidarray]] | int',
1981\ 'ifx_textasvarchar(': 'int mode | void',
1982\ 'ifx_update_blob(': 'int bid, string content | bool',
1983\ 'ifx_update_char(': 'int bid, string content | int',
1984\ 'ifxus_close_slob(': 'int bid | int',
1985\ 'ifxus_create_slob(': 'int mode | int',
1986\ 'ifxus_free_slob(': 'int bid | int',
1987\ 'ifxus_open_slob(': 'int bid, int mode | int',
1988\ 'ifxus_read_slob(': 'int bid, int nbytes | int',
1989\ 'ifxus_seek_slob(': 'int bid, int mode, int offset | int',
1990\ 'ifxus_tell_slob(': 'int bid | int',
1991\ 'ifxus_write_slob(': 'int bid, string content | int',
1992\ 'ignore_user_abort(': '[bool setting] | int',
1993\ 'iis_add_server(': 'string path, string comment, string server_ip, int port, string host_name, int rights, int start_server | int',
1994\ 'iis_get_dir_security(': 'int server_instance, string virtual_path | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001995\ 'iis_get_script_map(': 'int server_instance, string virtual_path, string script_extension | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001996\ 'iis_get_server_by_comment(': 'string comment | int',
1997\ 'iis_get_server_by_path(': 'string path | int',
1998\ 'iis_get_server_rights(': 'int server_instance, string virtual_path | int',
1999\ 'iis_get_service_state(': 'string service_id | int',
2000\ 'iis_remove_server(': 'int server_instance | int',
2001\ 'iis_set_app_settings(': 'int server_instance, string virtual_path, string application_scope | int',
2002\ 'iis_set_dir_security(': 'int server_instance, string virtual_path, int directory_flags | int',
2003\ 'iis_set_script_map(': 'int server_instance, string virtual_path, string script_extension, string engine_path, int allow_scripting | int',
2004\ 'iis_set_server_rights(': 'int server_instance, string virtual_path, int directory_flags | int',
2005\ 'iis_start_server(': 'int server_instance | int',
2006\ 'iis_start_service(': 'string service_id | int',
2007\ 'iis_stop_server(': 'int server_instance | int',
2008\ 'iis_stop_service(': 'string service_id | int',
2009\ 'image2wbmp(': 'resource image [, string filename [, int threshold]] | int',
2010\ 'imagealphablending(': 'resource image, bool blendmode | bool',
2011\ 'imageantialias(': 'resource im, bool on | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002012\ 'imagearc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color | bool',
2013\ 'imagechar(': 'resource image, int font, int x, int y, string c, int color | bool',
2014\ 'imagecharup(': 'resource image, int font, int x, int y, string c, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002015\ 'imagecolorallocatealpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002016\ 'imagecolorallocate(': 'resource image, int red, int green, int blue | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002017\ 'imagecolorat(': 'resource image, int x, int y | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002018\ 'imagecolorclosestalpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002019\ 'imagecolorclosest(': 'resource image, int red, int green, int blue | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002020\ 'imagecolorclosesthwb(': 'resource image, int red, int green, int blue | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002021\ 'imagecolordeallocate(': 'resource image, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002022\ 'imagecolorexactalpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002023\ 'imagecolorexact(': 'resource image, int red, int green, int blue | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002024\ 'imagecolormatch(': 'resource image1, resource image2 | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002025\ 'imagecolorresolvealpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002026\ 'imagecolorresolve(': 'resource image, int red, int green, int blue | int',
2027\ 'imagecolorset(': 'resource image, int index, int red, int green, int blue | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002028\ 'imagecolorsforindex(': 'resource image, int index | array',
2029\ 'imagecolorstotal(': 'resource image | int',
2030\ 'imagecolortransparent(': 'resource image [, int color] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002031\ 'imageconvolution(': 'resource image, array matrix3x3, float div, float offset | bool',
2032\ 'imagecopy(': 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h | bool',
2033\ 'imagecopymergegray(': 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct | bool',
2034\ 'imagecopymerge(': 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002035\ 'imagecopyresampled(': 'resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002036\ 'imagecopyresized(': 'resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002037\ 'imagecreatefromgd2(': 'string filename | resource',
2038\ 'imagecreatefromgd2part(': 'string filename, int srcX, int srcY, int width, int height | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002039\ 'imagecreatefromgd(': 'string filename | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002040\ 'imagecreatefromgif(': 'string filename | resource',
2041\ 'imagecreatefromjpeg(': 'string filename | resource',
2042\ 'imagecreatefrompng(': 'string filename | resource',
2043\ 'imagecreatefromstring(': 'string image | resource',
2044\ 'imagecreatefromwbmp(': 'string filename | resource',
2045\ 'imagecreatefromxbm(': 'string filename | resource',
2046\ 'imagecreatefromxpm(': 'string filename | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002047\ 'imagecreate(': 'int x_size, int y_size | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002048\ 'imagecreatetruecolor(': 'int x_size, int y_size | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002049\ 'imagedashedline(': 'resource image, int x1, int y1, int x2, int y2, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002050\ 'imagedestroy(': 'resource image | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002051\ 'imageellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002052\ 'imagefilledarc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color, int style | bool',
2053\ 'imagefilledellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002054\ 'imagefilledpolygon(': 'resource image, array points, int num_points, int color | bool',
2055\ 'imagefilledrectangle(': 'resource image, int x1, int y1, int x2, int y2, int color | bool',
2056\ 'imagefill(': 'resource image, int x, int y, int color | bool',
2057\ 'imagefilltoborder(': 'resource image, int x, int y, int border, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002058\ 'imagefilter(': 'resource src_im, int filtertype [, int arg1 [, int arg2 [, int arg3]]] | bool',
2059\ 'imagefontheight(': 'int font | int',
2060\ 'imagefontwidth(': 'int font | int',
2061\ 'imageftbbox(': 'float size, float angle, string font_file, string text [, array extrainfo] | array',
2062\ 'imagefttext(': 'resource image, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002063\ 'imagegammacorrect(': 'resource image, float inputgamma, float outputgamma | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002064\ 'imagegd2(': 'resource image [, string filename [, int chunk_size [, int type]]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002065\ 'imagegd(': 'resource image [, string filename] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002066\ 'imagegif(': 'resource image [, string filename] | bool',
2067\ 'imageinterlace(': 'resource image [, int interlace] | int',
2068\ 'imageistruecolor(': 'resource image | bool',
2069\ 'imagejpeg(': 'resource image [, string filename [, int quality]] | bool',
2070\ 'imagelayereffect(': 'resource image, int effect | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002071\ 'imageline(': 'resource image, int x1, int y1, int x2, int y2, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002072\ 'imageloadfont(': 'string file | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002073\ 'imagepalettecopy(': 'resource destination, resource source | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002074\ 'imagepng(': 'resource image [, string filename] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002075\ 'imagepolygon(': 'resource image, array points, int num_points, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002076\ 'imagepsbbox(': 'string text, int font, int size [, int space, int tightness, float angle] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002077\ 'imagepscopyfont(': 'resource fontindex | int',
2078\ 'imagepsencodefont(': 'resource font_index, string encodingfile | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002079\ 'imagepsextendfont(': 'int font_index, float extend | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002080\ 'imagepsfreefont(': 'resource fontindex | bool',
2081\ 'imagepsloadfont(': 'string filename | resource',
2082\ 'imagepsslantfont(': 'resource font_index, float slant | bool',
2083\ 'imagepstext(': 'resource image, string text, resource font, int size, int foreground, int background, int x, int y [, int space, int tightness, float angle, int antialias_steps] | array',
2084\ 'imagerectangle(': 'resource image, int x1, int y1, int x2, int y2, int col | bool',
2085\ 'imagerotate(': 'resource src_im, float angle, int bgd_color [, int ignore_transparent] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002086\ 'imagesavealpha(': 'resource image, bool saveflag | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002087\ 'imagesetbrush(': 'resource image, resource brush | bool',
2088\ 'imagesetpixel(': 'resource image, int x, int y, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002089\ 'imagesetstyle(': 'resource image, array style | bool',
2090\ 'imagesetthickness(': 'resource image, int thickness | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002091\ 'imagesettile(': 'resource image, resource tile | bool',
2092\ 'imagestring(': 'resource image, int font, int x, int y, string s, int col | bool',
2093\ 'imagestringup(': 'resource image, int font, int x, int y, string s, int col | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002094\ 'imagesx(': 'resource image | int',
2095\ 'imagesy(': 'resource image | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002096\ 'imagetruecolortopalette(': 'resource image, bool dither, int ncolors | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002097\ 'imagettfbbox(': 'float size, float angle, string fontfile, string text | array',
2098\ 'imagettftext(': 'resource image, float size, float angle, int x, int y, int color, string fontfile, string text | array',
2099\ 'imagetypes(': 'void | int',
2100\ 'image_type_to_extension(': 'int imagetype [, bool include_dot] | string',
2101\ 'image_type_to_mime_type(': 'int imagetype | string',
2102\ 'imagewbmp(': 'resource image [, string filename [, int foreground]] | bool',
2103\ 'imagexbm(': 'resource image, string filename [, int foreground] | bool',
2104\ 'imap_8bit(': 'string string | string',
2105\ 'imap_alerts(': 'void | array',
2106\ 'imap_append(': 'resource imap_stream, string mbox, string message [, string options] | bool',
2107\ 'imap_base64(': 'string text | string',
2108\ 'imap_binary(': 'string string | string',
2109\ 'imap_body(': 'resource imap_stream, int msg_number [, int options] | string',
2110\ 'imap_bodystruct(': 'resource stream_id, int msg_no, string section | object',
2111\ 'imap_check(': 'resource imap_stream | object',
2112\ 'imap_clearflag_full(': 'resource stream, string sequence, string flag [, string options] | bool',
2113\ 'imap_close(': 'resource imap_stream [, int flag] | bool',
2114\ 'imap_createmailbox(': 'resource imap_stream, string mbox | bool',
2115\ 'imap_delete(': 'int imap_stream, int msg_number [, int options] | bool',
2116\ 'imap_deletemailbox(': 'resource imap_stream, string mbox | bool',
2117\ 'imap_errors(': 'void | array',
2118\ 'imap_expunge(': 'resource imap_stream | bool',
2119\ 'imap_fetchbody(': 'resource imap_stream, int msg_number, string part_number [, int options] | string',
2120\ 'imap_fetchheader(': 'resource imap_stream, int msgno [, int options] | string',
2121\ 'imap_fetch_overview(': 'resource imap_stream, string sequence [, int options] | array',
2122\ 'imap_fetchstructure(': 'resource imap_stream, int msg_number [, int options] | object',
2123\ 'imap_getacl(': 'resource stream_id, string mailbox | array',
2124\ 'imap_getmailboxes(': 'resource imap_stream, string ref, string pattern | array',
2125\ 'imap_get_quota(': 'resource imap_stream, string quota_root | array',
2126\ 'imap_get_quotaroot(': 'resource imap_stream, string quota_root | array',
2127\ 'imap_getsubscribed(': 'resource imap_stream, string ref, string pattern | array',
2128\ 'imap_headerinfo(': 'resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]] | object',
2129\ 'imap_headers(': 'resource imap_stream | array',
2130\ 'imap_last_error(': 'void | string',
2131\ 'imap_list(': 'resource imap_stream, string ref, string pattern | array',
2132\ 'imap_listscan(': 'resource imap_stream, string ref, string pattern, string content | array',
2133\ 'imap_lsub(': 'resource imap_stream, string ref, string pattern | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002134\ 'imap_mailboxmsginfo(': 'resource imap_stream | object',
2135\ 'imap_mail_compose(': 'array envelope, array body | string',
2136\ 'imap_mail_copy(': 'resource imap_stream, string msglist, string mbox [, int options] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002137\ 'imap_mail(': 'string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002138\ 'imap_mail_move(': 'resource imap_stream, string msglist, string mbox [, int options] | bool',
2139\ 'imap_mime_header_decode(': 'string text | array',
2140\ 'imap_msgno(': 'resource imap_stream, int uid | int',
2141\ 'imap_num_msg(': 'resource imap_stream | int',
2142\ 'imap_num_recent(': 'resource imap_stream | int',
2143\ 'imap_open(': 'string mailbox, string username, string password [, int options] | resource',
2144\ 'imap_ping(': 'resource imap_stream | bool',
2145\ 'imap_qprint(': 'string string | string',
2146\ 'imap_renamemailbox(': 'resource imap_stream, string old_mbox, string new_mbox | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002147\ 'imap_reopen(': 'resource imap_stream, string mailbox [, int options] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002148\ 'imap_rfc822_parse_adrlist(': 'string address, string default_host | array',
2149\ 'imap_rfc822_parse_headers(': 'string headers [, string defaulthost] | object',
2150\ 'imap_rfc822_write_address(': 'string mailbox, string host, string personal | string',
2151\ 'imap_search(': 'resource imap_stream, string criteria [, int options [, string charset]] | array',
2152\ 'imap_setacl(': 'resource stream_id, string mailbox, string id, string rights | bool',
2153\ 'imap_setflag_full(': 'resource stream, string sequence, string flag [, string options] | bool',
2154\ 'imap_set_quota(': 'resource imap_stream, string quota_root, int quota_limit | bool',
2155\ 'imap_sort(': 'resource stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]] | array',
2156\ 'imap_status(': 'resource imap_stream, string mailbox, int options | object',
2157\ 'imap_subscribe(': 'resource imap_stream, string mbox | bool',
2158\ 'imap_thread(': 'resource stream_id [, int options] | array',
2159\ 'imap_timeout(': 'int timeout_type [, int timeout] | mixed',
2160\ 'imap_uid(': 'resource imap_stream, int msgno | int',
2161\ 'imap_undelete(': 'resource imap_stream, int msg_number [, int flags] | bool',
2162\ 'imap_unsubscribe(': 'string imap_stream, string mbox | bool',
2163\ 'imap_utf7_decode(': 'string text | string',
2164\ 'imap_utf7_encode(': 'string data | string',
2165\ 'imap_utf8(': 'string mime_encoded_text | string',
2166\ 'implode(': 'string glue, array pieces | string',
2167\ 'import_request_variables(': 'string types [, string prefix] | bool',
2168\ 'in_array(': 'mixed needle, array haystack [, bool strict] | bool',
2169\ 'inet_ntop(': 'string in_addr | string',
2170\ 'inet_pton(': 'string address | string',
2171\ 'ingres_autocommit(': '[resource link] | bool',
2172\ 'ingres_close(': '[resource link] | bool',
2173\ 'ingres_commit(': '[resource link] | bool',
2174\ 'ingres_connect(': '[string database [, string username [, string password]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002175\ 'ingres_cursor(': '[resource link] | string',
2176\ 'ingres_errno(': '[resource link] | int',
2177\ 'ingres_error(': '[resource link] | string',
2178\ 'ingres_errsqlstate(': '[resource link] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002179\ 'ingres_fetch_array(': '[int result_type [, resource link]] | array',
2180\ 'ingres_fetch_object(': '[int result_type [, resource link]] | object',
2181\ 'ingres_fetch_row(': '[resource link] | array',
2182\ 'ingres_field_length(': 'int index [, resource link] | int',
2183\ 'ingres_field_name(': 'int index [, resource link] | string',
2184\ 'ingres_field_nullable(': 'int index [, resource link] | bool',
2185\ 'ingres_field_precision(': 'int index [, resource link] | int',
2186\ 'ingres_field_scale(': 'int index [, resource link] | int',
2187\ 'ingres_field_type(': 'int index [, resource link] | string',
2188\ 'ingres_num_fields(': '[resource link] | int',
2189\ 'ingres_num_rows(': '[resource link] | int',
2190\ 'ingres_pconnect(': '[string database [, string username [, string password]]] | resource',
2191\ 'ingres_query(': 'string query [, resource link] | bool',
2192\ 'ingres_rollback(': '[resource link] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002193\ 'ini_get_all(': '[string extension] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002194\ 'ini_get(': 'string varname | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002195\ 'ini_restore(': 'string varname | void',
2196\ 'ini_set(': 'string varname, string newvalue | string',
2197\ 'interface_exists(': 'string interface_name [, bool autoload] | bool',
2198\ 'intval(': 'mixed var [, int base] | int',
2199\ 'ip2long(': 'string ip_address | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002200\ 'iptcembed(': 'string iptcdata, string jpeg_file_name [, int spool] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002201\ 'iptcparse(': 'string iptcblock | array',
2202\ 'ircg_channel_mode(': 'resource connection, string channel, string mode_spec, string nick | bool',
2203\ 'ircg_disconnect(': 'resource connection, string reason | bool',
2204\ 'ircg_eval_ecmascript_params(': 'string params | array',
2205\ 'ircg_fetch_error_msg(': 'resource connection | array',
2206\ 'ircg_get_username(': 'resource connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002207\ 'ircg_html_encode(': 'string html_string [, bool auto_links [, bool conv_br]] | string',
2208\ 'ircg_ignore_add(': 'resource connection, string nick | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002209\ 'ircg_ignore_del(': 'resource connection, string nick | bool',
2210\ 'ircg_invite(': 'resource connection, string channel, string nickname | bool',
2211\ 'ircg_is_conn_alive(': 'resource connection | bool',
2212\ 'ircg_join(': 'resource connection, string channel [, string key] | bool',
2213\ 'ircg_kick(': 'resource connection, string channel, string nick, string reason | bool',
2214\ 'ircg_list(': 'resource connection, string channel | bool',
2215\ 'ircg_lookup_format_messages(': 'string name | bool',
2216\ 'ircg_lusers(': 'resource connection | bool',
2217\ 'ircg_msg(': 'resource connection, string recipient, string message [, bool suppress] | bool',
2218\ 'ircg_names(': 'int connection, string channel [, string target] | bool',
2219\ 'ircg_nick(': 'resource connection, string nick | bool',
2220\ 'ircg_nickname_escape(': 'string nick | string',
2221\ 'ircg_nickname_unescape(': 'string nick | string',
2222\ 'ircg_notice(': 'resource connection, string recipient, string message | bool',
2223\ 'ircg_oper(': 'resource connection, string name, string password | bool',
2224\ 'ircg_part(': 'resource connection, string channel | bool',
2225\ 'ircg_pconnect(': 'string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings [, bool bailout_on_trivial]]]]]] | resource',
2226\ 'ircg_register_format_messages(': 'string name, array messages | bool',
2227\ 'ircg_set_current(': 'resource connection | bool',
2228\ 'ircg_set_file(': 'resource connection, string path | bool',
2229\ 'ircg_set_on_die(': 'resource connection, string host, int port, string data | bool',
2230\ 'ircg_topic(': 'resource connection, string channel, string new_topic | bool',
2231\ 'ircg_who(': 'resource connection, string mask [, bool ops_only] | bool',
2232\ 'ircg_whois(': 'resource connection, string nick | bool',
2233\ 'is_a(': 'object object, string class_name | bool',
2234\ 'is_array(': 'mixed var | bool',
2235\ 'is_bool(': 'mixed var | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002236\ 'is_callable(': 'mixed var [, bool syntax_only [, string &#38;callable_name]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002237\ 'is_dir(': 'string filename | bool',
2238\ 'is_executable(': 'string filename | bool',
2239\ 'is_file(': 'string filename | bool',
2240\ 'is_finite(': 'float val | bool',
2241\ 'is_float(': 'mixed var | bool',
2242\ 'is_infinite(': 'float val | bool',
2243\ 'is_int(': 'mixed var | bool',
2244\ 'is_link(': 'string filename | bool',
2245\ 'is_nan(': 'float val | bool',
2246\ 'is_null(': 'mixed var | bool',
2247\ 'is_numeric(': 'mixed var | bool',
2248\ 'is_object(': 'mixed var | bool',
2249\ 'is_readable(': 'string filename | bool',
2250\ 'is_resource(': 'mixed var | bool',
2251\ 'is_scalar(': 'mixed var | bool',
2252\ 'isset(': 'mixed var [, mixed var [, ...]] | bool',
2253\ 'is_soap_fault(': 'mixed obj | bool',
2254\ 'is_string(': 'mixed var | bool',
2255\ 'is_subclass_of(': 'mixed object, string class_name | bool',
2256\ 'is_uploaded_file(': 'string filename | bool',
2257\ 'is_writable(': 'string filename | bool',
2258\ 'iterator_count(': 'IteratorAggregate iterator | int',
2259\ 'iterator_to_array(': 'IteratorAggregate iterator | array',
2260\ 'java_last_exception_clear(': 'void | void',
2261\ 'java_last_exception_get(': 'void | object',
2262\ 'jddayofweek(': 'int julianday [, int mode] | mixed',
2263\ 'jdmonthname(': 'int julianday, int mode | string',
2264\ 'jdtofrench(': 'int juliandaycount | string',
2265\ 'jdtogregorian(': 'int julianday | string',
2266\ 'jdtojewish(': 'int juliandaycount [, bool hebrew [, int fl]] | string',
2267\ 'jdtojulian(': 'int julianday | string',
2268\ 'jdtounix(': 'int jday | int',
2269\ 'jewishtojd(': 'int month, int day, int year | int',
2270\ 'jpeg2wbmp(': 'string jpegname, string wbmpname, int d_height, int d_width, int threshold | int',
2271\ 'juliantojd(': 'int month, int day, int year | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002272\ 'kadm5_chpass_principal(': 'resource handle, string principal, string password | bool',
2273\ 'kadm5_create_principal(': 'resource handle, string principal [, string password [, array options]] | bool',
2274\ 'kadm5_delete_principal(': 'resource handle, string principal | bool',
2275\ 'kadm5_destroy(': 'resource handle | bool',
2276\ 'kadm5_flush(': 'resource handle | bool',
2277\ 'kadm5_get_policies(': 'resource handle | array',
2278\ 'kadm5_get_principal(': 'resource handle, string principal | array',
2279\ 'kadm5_get_principals(': 'resource handle | array',
2280\ 'kadm5_init_with_password(': 'string admin_server, string realm, string principal, string password | resource',
2281\ 'kadm5_modify_principal(': 'resource handle, string principal, array options | bool',
2282\ 'key(': 'array &#38;array | mixed',
2283\ 'krsort(': 'array &#38;array [, int sort_flags] | bool',
2284\ 'ksort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002285\ 'lcg_value(': 'void | float',
2286\ 'ldap_8859_to_t61(': 'string value | string',
2287\ 'ldap_add(': 'resource link_identifier, string dn, array entry | bool',
2288\ 'ldap_bind(': 'resource link_identifier [, string bind_rdn [, string bind_password]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002289\ 'ldap_compare(': 'resource link_identifier, string dn, string attribute, string value | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002290\ 'ldap_connect(': '[string hostname [, int port]] | resource',
2291\ 'ldap_count_entries(': 'resource link_identifier, resource result_identifier | int',
2292\ 'ldap_delete(': 'resource link_identifier, string dn | bool',
2293\ 'ldap_dn2ufn(': 'string dn | string',
2294\ 'ldap_err2str(': 'int errno | string',
2295\ 'ldap_errno(': 'resource link_identifier | int',
2296\ 'ldap_error(': 'resource link_identifier | string',
2297\ 'ldap_explode_dn(': 'string dn, int with_attrib | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002298\ 'ldap_first_attribute(': 'resource link_identifier, resource result_entry_identifier, int &#38;ber_identifier | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002299\ 'ldap_first_entry(': 'resource link_identifier, resource result_identifier | resource',
2300\ 'ldap_first_reference(': 'resource link, resource result | resource',
2301\ 'ldap_free_result(': 'resource result_identifier | bool',
2302\ 'ldap_get_attributes(': 'resource link_identifier, resource result_entry_identifier | array',
2303\ 'ldap_get_dn(': 'resource link_identifier, resource result_entry_identifier | string',
2304\ 'ldap_get_entries(': 'resource link_identifier, resource result_identifier | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002305\ 'ldap_get_option(': 'resource link_identifier, int option, mixed &#38;retval | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002306\ 'ldap_get_values(': 'resource link_identifier, resource result_entry_identifier, string attribute | array',
2307\ 'ldap_get_values_len(': 'resource link_identifier, resource result_entry_identifier, string attribute | array',
2308\ 'ldap_list(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource',
2309\ 'ldap_mod_add(': 'resource link_identifier, string dn, array entry | bool',
2310\ 'ldap_mod_del(': 'resource link_identifier, string dn, array entry | bool',
2311\ 'ldap_modify(': 'resource link_identifier, string dn, array entry | bool',
2312\ 'ldap_mod_replace(': 'resource link_identifier, string dn, array entry | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002313\ 'ldap_next_attribute(': 'resource link_identifier, resource result_entry_identifier, resource &#38;ber_identifier | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002314\ 'ldap_next_entry(': 'resource link_identifier, resource result_entry_identifier | resource',
2315\ 'ldap_next_reference(': 'resource link, resource entry | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002316\ 'ldap_parse_reference(': 'resource link, resource entry, array &#38;referrals | bool',
2317\ 'ldap_parse_result(': 'resource link, resource result, int &#38;errcode [, string &#38;matcheddn [, string &#38;errmsg [, array &#38;referrals]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002318\ 'ldap_read(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource',
2319\ 'ldap_rename(': 'resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002320\ 'ldap_sasl_bind(': 'resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authz_id [, string props]]]]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002321\ 'ldap_search(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource',
2322\ 'ldap_set_option(': 'resource link_identifier, int option, mixed newval | bool',
2323\ 'ldap_set_rebind_proc(': 'resource link, callback callback | bool',
2324\ 'ldap_sort(': 'resource link, resource result, string sortfilter | bool',
2325\ 'ldap_start_tls(': 'resource link | bool',
2326\ 'ldap_t61_to_8859(': 'string value | string',
2327\ 'ldap_unbind(': 'resource link_identifier | bool',
2328\ 'levenshtein(': 'string str1, string str2 [, int cost_ins [, int cost_rep, int cost_del]] | int',
2329\ 'libxml_clear_errors(': 'void | void',
2330\ 'libxml_get_errors(': 'void | array',
2331\ 'libxml_get_last_error(': 'void | LibXMLError',
2332\ 'libxml_set_streams_context(': 'resource streams_context | void',
2333\ 'libxml_use_internal_errors(': '[bool use_errors] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002334\ 'LimitIterator::getPosition(': 'void | int',
2335\ 'LimitIterator::next(': 'void | void',
2336\ 'LimitIterator::rewind(': 'void | void',
2337\ 'LimitIterator::seek(': 'int position | void',
2338\ 'LimitIterator::valid(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002339\ 'link(': 'string target, string link | bool',
2340\ 'linkinfo(': 'string path | int',
2341\ 'list(': 'mixed varname, mixed ... | void',
2342\ 'localeconv(': 'void | array',
2343\ 'localtime(': '[int timestamp [, bool is_associative]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002344\ 'log10(': 'float arg | float',
2345\ 'log1p(': 'float number | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002346\ 'log(': 'float arg [, float base] | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002347\ 'long2ip(': 'int proper_address | string',
2348\ 'lstat(': 'string filename | array',
2349\ 'ltrim(': 'string str [, string charlist] | string',
2350\ 'lzf_compress(': 'string data | string',
2351\ 'lzf_decompress(': 'string data | string',
2352\ 'lzf_optimized_for(': 'void | int',
2353\ 'mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameters]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002354\ 'mailparse_determine_best_xfer_encoding(': 'resource fp | string',
2355\ 'mailparse_msg_create(': 'void | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002356\ 'mailparse_msg_extract_part_file(': 'resource rfc2045, string filename [, callback callbackfunc] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002357\ 'mailparse_msg_extract_part(': 'resource rfc2045, string msgbody [, callback callbackfunc] | void',
2358\ 'mailparse_msg_free(': 'resource rfc2045buf | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002359\ 'mailparse_msg_get_part_data(': 'resource rfc2045 | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002360\ 'mailparse_msg_get_part(': 'resource rfc2045, string mimesection | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002361\ 'mailparse_msg_get_structure(': 'resource rfc2045 | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002362\ 'mailparse_msg_parse_file(': 'string filename | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002363\ 'mailparse_msg_parse(': 'resource rfc2045buf, string data | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002364\ 'mailparse_rfc822_parse_addresses(': 'string addresses | array',
2365\ 'mailparse_stream_encode(': 'resource sourcefp, resource destfp, string encoding | bool',
2366\ 'mailparse_uudecode_all(': 'resource fp | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002367\ 'maxdb_connect_errno(': 'void | int',
2368\ 'maxdb_connect_error(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002369\ 'maxdb_debug(': 'string debug | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002370\ 'maxdb_disable_rpl_parse(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002371\ 'maxdb_dump_debug_info(': 'resource link | bool',
2372\ 'maxdb_embedded_connect(': '[string dbname] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002373\ 'maxdb_enable_reads_from_master(': 'resource link | bool',
2374\ 'maxdb_enable_rpl_parse(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002375\ 'maxdb_get_client_info(': 'void | string',
2376\ 'maxdb_get_client_version(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002377\ 'maxdb_init(': 'void | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002378\ 'maxdb_master_query(': 'resource link, string query | bool',
2379\ 'maxdb_more_results(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002380\ 'maxdb_next_result(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002381\ 'maxdb_report(': 'int flags | bool',
2382\ 'maxdb_rollback(': 'resource link | bool',
2383\ 'maxdb_rpl_parse_enabled(': 'resource link | int',
2384\ 'maxdb_rpl_probe(': 'resource link | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002385\ 'maxdb_rpl_query_type(': 'resource link | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002386\ 'maxdb_select_db(': 'resource link, string dbname | bool',
2387\ 'maxdb_send_query(': 'resource link, string query | bool',
2388\ 'maxdb_server_end(': 'void | void',
2389\ 'maxdb_server_init(': '[array server [, array groups]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002390\ 'maxdb_stmt_sqlstate(': 'resource stmt | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002391\ 'max(': 'number arg1, number arg2 [, number ...] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002392\ 'mb_convert_case(': 'string str, int mode [, string encoding] | string',
2393\ 'mb_convert_encoding(': 'string str, string to_encoding [, mixed from_encoding] | string',
2394\ 'mb_convert_kana(': 'string str [, string option [, string encoding]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002395\ 'mb_convert_variables(': 'string to_encoding, mixed from_encoding, mixed &#38;vars [, mixed &#38;...] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002396\ 'mb_decode_mimeheader(': 'string str | string',
2397\ 'mb_decode_numericentity(': 'string str, array convmap [, string encoding] | string',
2398\ 'mb_detect_encoding(': 'string str [, mixed encoding_list [, bool strict]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002399\ 'mb_detect_order(': '[mixed encoding_list] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002400\ 'mb_encode_mimeheader(': 'string str [, string charset [, string transfer_encoding [, string linefeed]]] | string',
2401\ 'mb_encode_numericentity(': 'string str, array convmap [, string encoding] | string',
2402\ 'mb_ereg(': 'string pattern, string string [, array regs] | int',
2403\ 'mb_eregi(': 'string pattern, string string [, array regs] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002404\ 'mb_eregi_replace(': 'string pattern, string replace, string string [, string option] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002405\ 'mb_ereg_match(': 'string pattern, string string [, string option] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002406\ 'mb_ereg_replace(': 'string pattern, string replacement, string string [, string option] | string',
2407\ 'mb_ereg_search_getpos(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002408\ 'mb_ereg_search_getregs(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002409\ 'mb_ereg_search(': '[string pattern [, string option]] | bool',
2410\ 'mb_ereg_search_init(': 'string string [, string pattern [, string option]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002411\ 'mb_ereg_search_pos(': '[string pattern [, string option]] | array',
2412\ 'mb_ereg_search_regs(': '[string pattern [, string option]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002413\ 'mb_ereg_search_setpos(': 'int position | bool',
2414\ 'mb_get_info(': '[string type] | mixed',
2415\ 'mb_http_input(': '[string type] | mixed',
2416\ 'mb_http_output(': '[string encoding] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002417\ 'mb_internal_encoding(': '[string encoding] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002418\ 'mb_language(': '[string language] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002419\ 'mb_list_encodings(': 'void | array',
2420\ 'mb_output_handler(': 'string contents, int status | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002421\ 'mb_parse_str(': 'string encoded_string [, array &#38;result] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002422\ 'mb_preferred_mime_name(': 'string encoding | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002423\ 'mb_regex_encoding(': '[string encoding] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002424\ 'mb_regex_set_options(': '[string options] | string',
2425\ 'mb_send_mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameter]] | bool',
2426\ 'mb_split(': 'string pattern, string string [, int limit] | array',
2427\ 'mb_strcut(': 'string str, int start [, int length [, string encoding]] | string',
2428\ 'mb_strimwidth(': 'string str, int start, int width [, string trimmarker [, string encoding]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002429\ 'mb_strlen(': 'string str [, string encoding] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002430\ 'mb_strpos(': 'string haystack, string needle [, int offset [, string encoding]] | int',
2431\ 'mb_strrpos(': 'string haystack, string needle [, string encoding] | int',
2432\ 'mb_strtolower(': 'string str [, string encoding] | string',
2433\ 'mb_strtoupper(': 'string str [, string encoding] | string',
2434\ 'mb_strwidth(': 'string str [, string encoding] | int',
2435\ 'mb_substitute_character(': '[mixed substrchar] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002436\ 'mb_substr_count(': 'string haystack, string needle [, string encoding] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002437\ 'mb_substr(': 'string str, int start [, int length [, string encoding]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002438\ 'mcal_append_event(': 'int mcal_stream | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002439\ 'mcal_close(': 'int mcal_stream [, int flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002440\ 'mcal_create_calendar(': 'int stream, string calendar | bool',
2441\ 'mcal_date_compare(': 'int a_year, int a_month, int a_day, int b_year, int b_month, int b_day | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002442\ 'mcal_date_valid(': 'int year, int month, int day | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002443\ 'mcal_day_of_week(': 'int year, int month, int day | int',
2444\ 'mcal_day_of_year(': 'int year, int month, int day | int',
2445\ 'mcal_days_in_month(': 'int month, int leap_year | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002446\ 'mcal_delete_calendar(': 'int stream, string calendar | bool',
2447\ 'mcal_delete_event(': 'int mcal_stream, int event_id | bool',
2448\ 'mcal_event_add_attribute(': 'int stream, string attribute, string value | bool',
2449\ 'mcal_event_init(': 'int stream | void',
2450\ 'mcal_event_set_alarm(': 'int stream, int alarm | void',
2451\ 'mcal_event_set_category(': 'int stream, string category | void',
2452\ 'mcal_event_set_class(': 'int stream, int class | void',
2453\ 'mcal_event_set_description(': 'int stream, string description | void',
2454\ 'mcal_event_set_end(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | void',
2455\ 'mcal_event_set_recur_daily(': 'int stream, int year, int month, int day, int interval | void',
2456\ 'mcal_event_set_recur_monthly_mday(': 'int stream, int year, int month, int day, int interval | void',
2457\ 'mcal_event_set_recur_monthly_wday(': 'int stream, int year, int month, int day, int interval | void',
2458\ 'mcal_event_set_recur_none(': 'int stream | void',
2459\ 'mcal_event_set_recur_weekly(': 'int stream, int year, int month, int day, int interval, int weekdays | void',
2460\ 'mcal_event_set_recur_yearly(': 'int stream, int year, int month, int day, int interval | void',
2461\ 'mcal_event_set_start(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | void',
2462\ 'mcal_event_set_title(': 'int stream, string title | void',
2463\ 'mcal_expunge(': 'int stream | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002464\ 'mcal_fetch_current_stream_event(': 'int stream | object',
2465\ 'mcal_fetch_event(': 'int mcal_stream, int event_id [, int options] | object',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002466\ 'mcal_is_leap_year(': 'int year | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002467\ 'mcal_list_alarms(': 'int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day] | array',
2468\ 'mcal_list_events(': 'int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002469\ 'mcal_next_recurrence(': 'int stream, int weekstart, array next | object',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002470\ 'mcal_open(': 'string calendar, string username, string password [, int options] | int',
2471\ 'mcal_popen(': 'string calendar, string username, string password [, int options] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002472\ 'mcal_rename_calendar(': 'int stream, string old_name, string new_name | bool',
2473\ 'mcal_reopen(': 'int mcal_stream, string calendar [, int options] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002474\ 'mcal_snooze(': 'int stream_id, int event_id | bool',
2475\ 'mcal_store_event(': 'int mcal_stream | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002476\ 'mcal_time_valid(': 'int hour, int minutes, int seconds | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002477\ 'mcal_week_of_year(': 'int day, int month, int year | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002478\ 'm_checkstatus(': 'resource conn, int identifier | int',
2479\ 'm_completeauthorizations(': 'resource conn, int &#38;array | int',
2480\ 'm_connect(': 'resource conn | int',
2481\ 'm_connectionerror(': 'resource conn | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002482\ 'mcrypt_cbc(': 'int cipher, string key, string data, int mode [, string iv] | string',
2483\ 'mcrypt_cfb(': 'int cipher, string key, string data, int mode, string iv | string',
2484\ 'mcrypt_create_iv(': 'int size [, int source] | string',
2485\ 'mcrypt_decrypt(': 'string cipher, string key, string data, string mode [, string iv] | string',
2486\ 'mcrypt_ecb(': 'int cipher, string key, string data, int mode | string',
2487\ 'mcrypt_enc_get_algorithms_name(': 'resource td | string',
2488\ 'mcrypt_enc_get_block_size(': 'resource td | int',
2489\ 'mcrypt_enc_get_iv_size(': 'resource td | int',
2490\ 'mcrypt_enc_get_key_size(': 'resource td | int',
2491\ 'mcrypt_enc_get_modes_name(': 'resource td | string',
2492\ 'mcrypt_enc_get_supported_key_sizes(': 'resource td | array',
2493\ 'mcrypt_enc_is_block_algorithm(': 'resource td | bool',
2494\ 'mcrypt_enc_is_block_algorithm_mode(': 'resource td | bool',
2495\ 'mcrypt_enc_is_block_mode(': 'resource td | bool',
2496\ 'mcrypt_encrypt(': 'string cipher, string key, string data, string mode [, string iv] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002497\ 'mcrypt_enc_self_test(': 'resource td | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002498\ 'mcrypt_generic_deinit(': 'resource td | bool',
2499\ 'mcrypt_generic_end(': 'resource td | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002500\ 'mcrypt_generic(': 'resource td, string data | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002501\ 'mcrypt_generic_init(': 'resource td, string key, string iv | int',
2502\ 'mcrypt_get_block_size(': 'int cipher | int',
2503\ 'mcrypt_get_cipher_name(': 'int cipher | string',
2504\ 'mcrypt_get_iv_size(': 'string cipher, string mode | int',
2505\ 'mcrypt_get_key_size(': 'int cipher | int',
2506\ 'mcrypt_list_algorithms(': '[string lib_dir] | array',
2507\ 'mcrypt_list_modes(': '[string lib_dir] | array',
2508\ 'mcrypt_module_close(': 'resource td | bool',
2509\ 'mcrypt_module_get_algo_block_size(': 'string algorithm [, string lib_dir] | int',
2510\ 'mcrypt_module_get_algo_key_size(': 'string algorithm [, string lib_dir] | int',
2511\ 'mcrypt_module_get_supported_key_sizes(': 'string algorithm [, string lib_dir] | array',
2512\ 'mcrypt_module_is_block_algorithm(': 'string algorithm [, string lib_dir] | bool',
2513\ 'mcrypt_module_is_block_algorithm_mode(': 'string mode [, string lib_dir] | bool',
2514\ 'mcrypt_module_is_block_mode(': 'string mode [, string lib_dir] | bool',
2515\ 'mcrypt_module_open(': 'string algorithm, string algorithm_directory, string mode, string mode_directory | resource',
2516\ 'mcrypt_module_self_test(': 'string algorithm [, string lib_dir] | bool',
2517\ 'mcrypt_ofb(': 'int cipher, string key, string data, int mode, string iv | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002518\ 'md5_file(': 'string filename [, bool raw_output] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002519\ 'md5(': 'string str [, bool raw_output] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002520\ 'mdecrypt_generic(': 'resource td, string data | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002521\ 'm_deletetrans(': 'resource conn, int identifier | bool',
2522\ 'm_destroyconn(': 'resource conn | bool',
2523\ 'm_destroyengine(': 'void | void',
2524\ 'Memcache::add(': 'string key, mixed var [, int flag [, int expire]] | bool',
2525\ 'Memcache::addServer(': 'string host [, int port [, bool persistent [, int weight [, int timeout [, int retry_interval]]]]] | bool',
2526\ 'Memcache::close(': 'void | bool',
2527\ 'Memcache::connect(': 'string host [, int port [, int timeout]] | bool',
2528\ 'memcache_debug(': 'bool on_off | bool',
2529\ 'Memcache::decrement(': 'string key [, int value] | int',
2530\ 'Memcache::delete(': 'string key [, int timeout] | bool',
2531\ 'Memcache::flush(': 'void | bool',
2532\ 'Memcache::getExtendedStats(': 'void | array',
2533\ 'Memcache::get(': 'string key | string',
2534\ 'Memcache::getStats(': 'void | array',
2535\ 'Memcache::getVersion(': 'void | string',
2536\ 'Memcache::increment(': 'string key [, int value] | int',
2537\ 'Memcache::pconnect(': 'string host [, int port [, int timeout]] | bool',
2538\ 'Memcache::replace(': 'string key, mixed var [, int flag [, int expire]] | bool',
2539\ 'Memcache::setCompressThreshold(': 'int threshold [, float min_savings] | bool',
2540\ 'Memcache::set(': 'string key, mixed var [, int flag [, int expire]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002541\ 'memory_get_usage(': 'void | int',
2542\ 'metaphone(': 'string str [, int phones] | string',
2543\ 'method_exists(': 'object object, string method_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002544\ 'm_getcellbynum(': 'resource conn, int identifier, int column, int row | string',
2545\ 'm_getcell(': 'resource conn, int identifier, string column, int row | string',
2546\ 'm_getcommadelimited(': 'resource conn, int identifier | string',
2547\ 'm_getheader(': 'resource conn, int identifier, int column_num | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002548\ 'mhash_count(': 'void | int',
2549\ 'mhash_get_block_size(': 'int hash | int',
2550\ 'mhash_get_hash_name(': 'int hash | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002551\ 'mhash(': 'int hash, string data [, string key] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002552\ 'mhash_keygen_s2k(': 'int hash, string password, string salt, int bytes | string',
2553\ 'microtime(': '[bool get_as_float] | mixed',
2554\ 'mime_content_type(': 'string filename | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002555\ 'ming_keypress(': 'string str | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002556\ 'ming_setcubicthreshold(': 'int threshold | void',
2557\ 'ming_setscale(': 'int scale | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002558\ 'ming_useConstants(': 'int use | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002559\ 'ming_useswfversion(': 'int version | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002560\ 'min(': 'number arg1, number arg2 [, number ...] | mixed',
2561\ 'm_initconn(': 'void | resource',
2562\ 'm_initengine(': 'string location | int',
2563\ 'm_iscommadelimited(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002564\ 'mkdir(': 'string pathname [, int mode [, bool recursive [, resource context]]] | bool',
2565\ 'mktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002566\ 'm_maxconntimeout(': 'resource conn, int secs | bool',
2567\ 'm_monitor(': 'resource conn | int',
2568\ 'm_numcolumns(': 'resource conn, int identifier | int',
2569\ 'm_numrows(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002570\ 'money_format(': 'string format, float number | string',
2571\ 'move_uploaded_file(': 'string filename, string destination | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002572\ 'm_parsecommadelimited(': 'resource conn, int identifier | int',
2573\ 'm_responsekeys(': 'resource conn, int identifier | array',
2574\ 'm_responseparam(': 'resource conn, int identifier, string key | string',
2575\ 'm_returnstatus(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002576\ 'msession_connect(': 'string host, string port | bool',
2577\ 'msession_count(': 'void | int',
2578\ 'msession_create(': 'string session | bool',
2579\ 'msession_destroy(': 'string name | bool',
2580\ 'msession_disconnect(': 'void | void',
2581\ 'msession_find(': 'string name, string value | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002582\ 'msession_get_array(': 'string session | array',
2583\ 'msession_get_data(': 'string session | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002584\ 'msession_get(': 'string session, string name, string value | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002585\ 'msession_inc(': 'string session, string name | string',
2586\ 'msession_list(': 'void | array',
2587\ 'msession_listvar(': 'string name | array',
2588\ 'msession_lock(': 'string name | int',
2589\ 'msession_plugin(': 'string session, string val [, string param] | string',
2590\ 'msession_randstr(': 'int param | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002591\ 'msession_set_array(': 'string session, array tuples | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002592\ 'msession_set_data(': 'string session, string value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002593\ 'msession_set(': 'string session, string name, string value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002594\ 'msession_timeout(': 'string session [, int param] | int',
2595\ 'msession_uniq(': 'int param | string',
2596\ 'msession_unlock(': 'string session, int key | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002597\ 'm_setblocking(': 'resource conn, int tf | int',
2598\ 'm_setdropfile(': 'resource conn, string directory | int',
2599\ 'm_setip(': 'resource conn, string host, int port | int',
2600\ 'm_setssl_cafile(': 'resource conn, string cafile | int',
2601\ 'm_setssl_files(': 'resource conn, string sslkeyfile, string sslcertfile | int',
2602\ 'm_setssl(': 'resource conn, string host, int port | int',
2603\ 'm_settimeout(': 'resource conn, int seconds | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002604\ 'msg_get_queue(': 'int key [, int perms] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002605\ 'msg_receive(': 'resource queue, int desiredmsgtype, int &#38;msgtype, int maxsize, mixed &#38;message [, bool unserialize [, int flags [, int &#38;errorcode]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002606\ 'msg_remove_queue(': 'resource queue | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002607\ 'msg_send(': 'resource queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int &#38;errorcode]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002608\ 'msg_set_queue(': 'resource queue, array data | bool',
2609\ 'msg_stat_queue(': 'resource queue | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002610\ 'msql_affected_rows(': 'resource result | int',
2611\ 'msql_close(': '[resource link_identifier] | bool',
2612\ 'msql_connect(': '[string hostname] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002613\ 'msql_create_db(': 'string database_name [, resource link_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002614\ 'msql_data_seek(': 'resource result, int row_number | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002615\ 'msql_db_query(': 'string database, string query [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002616\ 'msql_drop_db(': 'string database_name [, resource link_identifier] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002617\ 'msql_error(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002618\ 'msql_fetch_array(': 'resource result [, int result_type] | array',
2619\ 'msql_fetch_field(': 'resource result [, int field_offset] | object',
2620\ 'msql_fetch_object(': 'resource result | object',
2621\ 'msql_fetch_row(': 'resource result | array',
2622\ 'msql_field_flags(': 'resource result, int field_offset | string',
2623\ 'msql_field_len(': 'resource result, int field_offset | int',
2624\ 'msql_field_name(': 'resource result, int field_offset | string',
2625\ 'msql_field_seek(': 'resource result, int field_offset | bool',
2626\ 'msql_field_table(': 'resource result, int field_offset | int',
2627\ 'msql_field_type(': 'resource result, int field_offset | string',
2628\ 'msql_free_result(': 'resource result | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002629\ 'msql_list_dbs(': '[resource link_identifier] | resource',
2630\ 'msql_list_fields(': 'string database, string tablename [, resource link_identifier] | resource',
2631\ 'msql_list_tables(': 'string database [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002632\ 'msql_num_fields(': 'resource result | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002633\ 'msql_num_rows(': 'resource query_identifier | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002634\ 'msql_pconnect(': '[string hostname] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002635\ 'msql_query(': 'string query [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002636\ 'msql_result(': 'resource result, int row [, mixed field] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002637\ 'msql_select_db(': 'string database_name [, resource link_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002638\ 'm_sslcert_gen_hash(': 'string filename | string',
2639\ 'mssql_bind(': 'resource stmt, string param_name, mixed &#38;var, int type [, int is_output [, int is_null [, int maxlen]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002640\ 'mssql_close(': '[resource link_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002641\ 'mssql_connect(': '[string servername [, string username [, string password]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002642\ 'mssql_data_seek(': 'resource result_identifier, int row_number | bool',
2643\ 'mssql_execute(': 'resource stmt [, bool skip_results] | mixed',
2644\ 'mssql_fetch_array(': 'resource result [, int result_type] | array',
2645\ 'mssql_fetch_assoc(': 'resource result_id | array',
2646\ 'mssql_fetch_batch(': 'resource result_index | int',
2647\ 'mssql_fetch_field(': 'resource result [, int field_offset] | object',
2648\ 'mssql_fetch_object(': 'resource result | object',
2649\ 'mssql_fetch_row(': 'resource result | array',
2650\ 'mssql_field_length(': 'resource result [, int offset] | int',
2651\ 'mssql_field_name(': 'resource result [, int offset] | string',
2652\ 'mssql_field_seek(': 'resource result, int field_offset | bool',
2653\ 'mssql_field_type(': 'resource result [, int offset] | string',
2654\ 'mssql_free_result(': 'resource result | bool',
2655\ 'mssql_free_statement(': 'resource statement | bool',
2656\ 'mssql_get_last_message(': 'void | string',
2657\ 'mssql_guid_string(': 'string binary [, int short_format] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002658\ 'mssql_init(': 'string sp_name [, resource conn_id] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002659\ 'mssql_min_error_severity(': 'int severity | void',
2660\ 'mssql_min_message_severity(': 'int severity | void',
2661\ 'mssql_next_result(': 'resource result_id | bool',
2662\ 'mssql_num_fields(': 'resource result | int',
2663\ 'mssql_num_rows(': 'resource result | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002664\ 'mssql_pconnect(': '[string servername [, string username [, string password]]] | resource',
2665\ 'mssql_query(': 'string query [, resource link_identifier [, int batch_size]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002666\ 'mssql_result(': 'resource result, int row, mixed field | string',
2667\ 'mssql_rows_affected(': 'resource conn_id | int',
2668\ 'mssql_select_db(': 'string database_name [, resource link_identifier] | bool',
2669\ 'mt_getrandmax(': 'void | int',
2670\ 'mt_rand(': '[int min, int max] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002671\ 'm_transactionssent(': 'resource conn | int',
2672\ 'm_transinqueue(': 'resource conn | int',
2673\ 'm_transkeyval(': 'resource conn, int identifier, string key, string value | int',
2674\ 'm_transnew(': 'resource conn | int',
2675\ 'm_transsend(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002676\ 'mt_srand(': '[int seed] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002677\ 'muscat_close(': 'resource muscat_handle | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002678\ 'muscat_get(': 'resource muscat_handle | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002679\ 'muscat_give(': 'resource muscat_handle, string string | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002680\ 'muscat_setup(': 'int size [, string muscat_dir] | resource',
2681\ 'muscat_setup_net(': 'string muscat_host | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002682\ 'm_uwait(': 'int microsecs | int',
2683\ 'm_validateidentifier(': 'resource conn, int tf | int',
2684\ 'm_verifyconnection(': 'resource conn, int tf | bool',
2685\ 'm_verifysslcert(': 'resource conn, int tf | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002686\ 'mysql_affected_rows(': '[resource link_identifier] | int',
2687\ 'mysql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | int',
2688\ 'mysql_client_encoding(': '[resource link_identifier] | string',
2689\ 'mysql_close(': '[resource link_identifier] | bool',
2690\ 'mysql_connect(': '[string server [, string username [, string password [, bool new_link [, int client_flags]]]]] | resource',
2691\ 'mysql_create_db(': 'string database_name [, resource link_identifier] | bool',
2692\ 'mysql_data_seek(': 'resource result, int row_number | bool',
2693\ 'mysql_db_name(': 'resource result, int row [, mixed field] | string',
2694\ 'mysql_db_query(': 'string database, string query [, resource link_identifier] | resource',
2695\ 'mysql_drop_db(': 'string database_name [, resource link_identifier] | bool',
2696\ 'mysql_errno(': '[resource link_identifier] | int',
2697\ 'mysql_error(': '[resource link_identifier] | string',
2698\ 'mysql_escape_string(': 'string unescaped_string | string',
2699\ 'mysql_fetch_array(': 'resource result [, int result_type] | array',
2700\ 'mysql_fetch_assoc(': 'resource result | array',
2701\ 'mysql_fetch_field(': 'resource result [, int field_offset] | object',
2702\ 'mysql_fetch_lengths(': 'resource result | array',
2703\ 'mysql_fetch_object(': 'resource result | object',
2704\ 'mysql_fetch_row(': 'resource result | array',
2705\ 'mysql_field_flags(': 'resource result, int field_offset | string',
2706\ 'mysql_field_len(': 'resource result, int field_offset | int',
2707\ 'mysql_field_name(': 'resource result, int field_offset | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002708\ 'mysql_field_seek(': 'resource result, int field_offset | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002709\ 'mysql_field_table(': 'resource result, int field_offset | string',
2710\ 'mysql_field_type(': 'resource result, int field_offset | string',
2711\ 'mysql_free_result(': 'resource result | bool',
2712\ 'mysql_get_client_info(': 'void | string',
2713\ 'mysql_get_host_info(': '[resource link_identifier] | string',
2714\ 'mysql_get_proto_info(': '[resource link_identifier] | int',
2715\ 'mysql_get_server_info(': '[resource link_identifier] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002716\ 'mysqli_connect_errno(': 'void | int',
2717\ 'mysqli_connect_error(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002718\ 'mysqli_debug(': 'string debug | bool',
2719\ 'mysqli_disable_rpl_parse(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002720\ 'mysqli_dump_debug_info(': 'mysqli link | bool',
2721\ 'mysqli_embedded_connect(': '[string dbname] | mysqli',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002722\ 'mysqli_enable_reads_from_master(': 'mysqli link | bool',
2723\ 'mysqli_enable_rpl_parse(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002724\ 'mysqli_get_client_info(': 'void | string',
2725\ 'mysqli_get_client_version(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002726\ 'mysqli_init(': 'void | mysqli',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002727\ 'mysqli_master_query(': 'mysqli link, string query | bool',
2728\ 'mysqli_more_results(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002729\ 'mysqli_next_result(': 'mysqli link | bool',
2730\ 'mysql_info(': '[resource link_identifier] | string',
2731\ 'mysql_insert_id(': '[resource link_identifier] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002732\ 'mysqli_report(': 'int flags | bool',
2733\ 'mysqli_rollback(': 'mysqli link | bool',
2734\ 'mysqli_rpl_parse_enabled(': 'mysqli link | int',
2735\ 'mysqli_rpl_probe(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002736\ 'mysqli_select_db(': 'mysqli link, string dbname | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002737\ 'mysqli_server_end(': 'void | void',
2738\ 'mysqli_server_init(': '[array server [, array groups]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002739\ 'mysqli_set_charset(': 'mysqli link, string charset | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002740\ 'mysqli_stmt_sqlstate(': 'mysqli_stmt stmt | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002741\ 'mysql_list_dbs(': '[resource link_identifier] | resource',
2742\ 'mysql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource',
2743\ 'mysql_list_processes(': '[resource link_identifier] | resource',
2744\ 'mysql_list_tables(': 'string database [, resource link_identifier] | resource',
2745\ 'mysql_num_fields(': 'resource result | int',
2746\ 'mysql_num_rows(': 'resource result | int',
2747\ 'mysql_pconnect(': '[string server [, string username [, string password [, int client_flags]]]] | resource',
2748\ 'mysql_ping(': '[resource link_identifier] | bool',
2749\ 'mysql_query(': 'string query [, resource link_identifier] | resource',
2750\ 'mysql_real_escape_string(': 'string unescaped_string [, resource link_identifier] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002751\ 'mysql_result(': 'resource result, int row [, mixed field] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002752\ 'mysql_select_db(': 'string database_name [, resource link_identifier] | bool',
2753\ 'mysql_stat(': '[resource link_identifier] | string',
2754\ 'mysql_tablename(': 'resource result, int i | string',
2755\ 'mysql_thread_id(': '[resource link_identifier] | int',
2756\ 'mysql_unbuffered_query(': 'string query [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002757\ 'natcasesort(': 'array &#38;array | bool',
2758\ 'natsort(': 'array &#38;array | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002759\ 'ncurses_addch(': 'int ch | int',
2760\ 'ncurses_addchnstr(': 'string s, int n | int',
2761\ 'ncurses_addchstr(': 'string s | int',
2762\ 'ncurses_addnstr(': 'string s, int n | int',
2763\ 'ncurses_addstr(': 'string text | int',
2764\ 'ncurses_assume_default_colors(': 'int fg, int bg | int',
2765\ 'ncurses_attroff(': 'int attributes | int',
2766\ 'ncurses_attron(': 'int attributes | int',
2767\ 'ncurses_attrset(': 'int attributes | int',
2768\ 'ncurses_baudrate(': 'void | int',
2769\ 'ncurses_beep(': 'void | int',
2770\ 'ncurses_bkgd(': 'int attrchar | int',
2771\ 'ncurses_bkgdset(': 'int attrchar | void',
2772\ 'ncurses_border(': 'int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner | int',
2773\ 'ncurses_bottom_panel(': 'resource panel | int',
2774\ 'ncurses_can_change_color(': 'void | bool',
2775\ 'ncurses_cbreak(': 'void | bool',
2776\ 'ncurses_clear(': 'void | bool',
2777\ 'ncurses_clrtobot(': 'void | bool',
2778\ 'ncurses_clrtoeol(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002779\ 'ncurses_color_content(': 'int color, int &#38;r, int &#38;g, int &#38;b | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002780\ 'ncurses_color_set(': 'int pair | int',
2781\ 'ncurses_curs_set(': 'int visibility | int',
2782\ 'ncurses_define_key(': 'string definition, int keycode | int',
2783\ 'ncurses_def_prog_mode(': 'void | bool',
2784\ 'ncurses_def_shell_mode(': 'void | bool',
2785\ 'ncurses_delay_output(': 'int milliseconds | int',
2786\ 'ncurses_delch(': 'void | bool',
2787\ 'ncurses_deleteln(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002788\ 'ncurses_del_panel(': 'resource panel | bool',
2789\ 'ncurses_delwin(': 'resource window | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002790\ 'ncurses_doupdate(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002791\ 'ncurses_echochar(': 'int character | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002792\ 'ncurses_echo(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002793\ 'ncurses_end(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002794\ 'ncurses_erasechar(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002795\ 'ncurses_erase(': 'void | bool',
2796\ 'ncurses_filter(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002797\ 'ncurses_flash(': 'void | bool',
2798\ 'ncurses_flushinp(': 'void | bool',
2799\ 'ncurses_getch(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002800\ 'ncurses_getmaxyx(': 'resource window, int &#38;y, int &#38;x | void',
2801\ 'ncurses_getmouse(': 'array &#38;mevent | bool',
2802\ 'ncurses_getyx(': 'resource window, int &#38;y, int &#38;x | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002803\ 'ncurses_halfdelay(': 'int tenth | int',
2804\ 'ncurses_has_colors(': 'void | bool',
2805\ 'ncurses_has_ic(': 'void | bool',
2806\ 'ncurses_has_il(': 'void | bool',
2807\ 'ncurses_has_key(': 'int keycode | int',
2808\ 'ncurses_hide_panel(': 'resource panel | int',
2809\ 'ncurses_hline(': 'int charattr, int n | int',
2810\ 'ncurses_inch(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002811\ 'ncurses_init_color(': 'int color, int r, int g, int b | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002812\ 'ncurses_init(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002813\ 'ncurses_init_pair(': 'int pair, int fg, int bg | int',
2814\ 'ncurses_insch(': 'int character | int',
2815\ 'ncurses_insdelln(': 'int count | int',
2816\ 'ncurses_insertln(': 'void | bool',
2817\ 'ncurses_insstr(': 'string text | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002818\ 'ncurses_instr(': 'string &#38;buffer | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002819\ 'ncurses_isendwin(': 'void | bool',
2820\ 'ncurses_keyok(': 'int keycode, bool enable | int',
2821\ 'ncurses_keypad(': 'resource window, bool bf | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002822\ 'ncurses_killchar(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002823\ 'ncurses_longname(': 'void | string',
2824\ 'ncurses_meta(': 'resource window, bool 8bit | int',
2825\ 'ncurses_mouseinterval(': 'int milliseconds | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002826\ 'ncurses_mousemask(': 'int newmask, int &#38;oldmask | int',
2827\ 'ncurses_mouse_trafo(': 'int &#38;y, int &#38;x, bool toscreen | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002828\ 'ncurses_move(': 'int y, int x | int',
2829\ 'ncurses_move_panel(': 'resource panel, int startx, int starty | int',
2830\ 'ncurses_mvaddch(': 'int y, int x, int c | int',
2831\ 'ncurses_mvaddchnstr(': 'int y, int x, string s, int n | int',
2832\ 'ncurses_mvaddchstr(': 'int y, int x, string s | int',
2833\ 'ncurses_mvaddnstr(': 'int y, int x, string s, int n | int',
2834\ 'ncurses_mvaddstr(': 'int y, int x, string s | int',
2835\ 'ncurses_mvcur(': 'int old_y, int old_x, int new_y, int new_x | int',
2836\ 'ncurses_mvdelch(': 'int y, int x | int',
2837\ 'ncurses_mvgetch(': 'int y, int x | int',
2838\ 'ncurses_mvhline(': 'int y, int x, int attrchar, int n | int',
2839\ 'ncurses_mvinch(': 'int y, int x | int',
2840\ 'ncurses_mvvline(': 'int y, int x, int attrchar, int n | int',
2841\ 'ncurses_mvwaddstr(': 'resource window, int y, int x, string text | int',
2842\ 'ncurses_napms(': 'int milliseconds | int',
2843\ 'ncurses_newpad(': 'int rows, int cols | resource',
2844\ 'ncurses_new_panel(': 'resource window | resource',
2845\ 'ncurses_newwin(': 'int rows, int cols, int y, int x | resource',
2846\ 'ncurses_nl(': 'void | bool',
2847\ 'ncurses_nocbreak(': 'void | bool',
2848\ 'ncurses_noecho(': 'void | bool',
2849\ 'ncurses_nonl(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002850\ 'ncurses_noqiflush(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002851\ 'ncurses_noraw(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002852\ 'ncurses_pair_content(': 'int pair, int &#38;f, int &#38;b | int',
2853\ 'ncurses_panel_above(': 'resource panel | resource',
2854\ 'ncurses_panel_below(': 'resource panel | resource',
2855\ 'ncurses_panel_window(': 'resource panel | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002856\ 'ncurses_pnoutrefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int',
2857\ 'ncurses_prefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int',
2858\ 'ncurses_putp(': 'string text | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002859\ 'ncurses_qiflush(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002860\ 'ncurses_raw(': 'void | bool',
2861\ 'ncurses_refresh(': 'int ch | int',
2862\ 'ncurses_replace_panel(': 'resource panel, resource window | int',
2863\ 'ncurses_reset_prog_mode(': 'void | int',
2864\ 'ncurses_reset_shell_mode(': 'void | int',
2865\ 'ncurses_resetty(': 'void | bool',
2866\ 'ncurses_savetty(': 'void | bool',
2867\ 'ncurses_scr_dump(': 'string filename | int',
2868\ 'ncurses_scr_init(': 'string filename | int',
2869\ 'ncurses_scrl(': 'int count | int',
2870\ 'ncurses_scr_restore(': 'string filename | int',
2871\ 'ncurses_scr_set(': 'string filename | int',
2872\ 'ncurses_show_panel(': 'resource panel | int',
2873\ 'ncurses_slk_attr(': 'void | bool',
2874\ 'ncurses_slk_attroff(': 'int intarg | int',
2875\ 'ncurses_slk_attron(': 'int intarg | int',
2876\ 'ncurses_slk_attrset(': 'int intarg | int',
2877\ 'ncurses_slk_clear(': 'void | bool',
2878\ 'ncurses_slk_color(': 'int intarg | int',
2879\ 'ncurses_slk_init(': 'int format | bool',
2880\ 'ncurses_slk_noutrefresh(': 'void | bool',
2881\ 'ncurses_slk_refresh(': 'void | bool',
2882\ 'ncurses_slk_restore(': 'void | bool',
2883\ 'ncurses_slk_set(': 'int labelnr, string label, int format | bool',
2884\ 'ncurses_slk_touch(': 'void | bool',
2885\ 'ncurses_standend(': 'void | int',
2886\ 'ncurses_standout(': 'void | int',
2887\ 'ncurses_start_color(': 'void | int',
2888\ 'ncurses_termattrs(': 'void | bool',
2889\ 'ncurses_termname(': 'void | string',
2890\ 'ncurses_timeout(': 'int millisec | void',
2891\ 'ncurses_top_panel(': 'resource panel | int',
2892\ 'ncurses_typeahead(': 'int fd | int',
2893\ 'ncurses_ungetch(': 'int keycode | int',
2894\ 'ncurses_ungetmouse(': 'array mevent | bool',
2895\ 'ncurses_update_panels(': 'void | void',
2896\ 'ncurses_use_default_colors(': 'void | bool',
2897\ 'ncurses_use_env(': 'bool flag | void',
2898\ 'ncurses_use_extended_names(': 'bool flag | int',
2899\ 'ncurses_vidattr(': 'int intarg | int',
2900\ 'ncurses_vline(': 'int charattr, int n | int',
2901\ 'ncurses_waddch(': 'resource window, int ch | int',
2902\ 'ncurses_waddstr(': 'resource window, string str [, int n] | int',
2903\ 'ncurses_wattroff(': 'resource window, int attrs | int',
2904\ 'ncurses_wattron(': 'resource window, int attrs | int',
2905\ 'ncurses_wattrset(': 'resource window, int attrs | int',
2906\ 'ncurses_wborder(': 'resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner | int',
2907\ 'ncurses_wclear(': 'resource window | int',
2908\ 'ncurses_wcolor_set(': 'resource window, int color_pair | int',
2909\ 'ncurses_werase(': 'resource window | int',
2910\ 'ncurses_wgetch(': 'resource window | int',
2911\ 'ncurses_whline(': 'resource window, int charattr, int n | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002912\ 'ncurses_wmouse_trafo(': 'resource window, int &#38;y, int &#38;x, bool toscreen | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002913\ 'ncurses_wmove(': 'resource window, int y, int x | int',
2914\ 'ncurses_wnoutrefresh(': 'resource window | int',
2915\ 'ncurses_wrefresh(': 'resource window | int',
2916\ 'ncurses_wstandend(': 'resource window | int',
2917\ 'ncurses_wstandout(': 'resource window | int',
2918\ 'ncurses_wvline(': 'resource window, int charattr, int n | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002919\ 'newt_bell(': 'void | void',
2920\ 'newt_button_bar(': 'array &#38;buttons | resource',
2921\ 'newt_button(': 'int left, int top, string text | resource',
2922\ 'newt_centered_window(': 'int width, int height [, string title] | int',
2923\ 'newt_checkbox_get_value(': 'resource checkbox | string',
2924\ 'newt_checkbox(': 'int left, int top, string text, string def_value [, string seq] | resource',
2925\ 'newt_checkbox_set_flags(': 'resource checkbox, int flags, int sense | void',
2926\ 'newt_checkbox_set_value(': 'resource checkbox, string value | void',
2927\ 'newt_checkbox_tree_add_item(': 'resource checkboxtree, string text, mixed data, int flags, int index [, int ...] | void',
2928\ 'newt_checkbox_tree_find_item(': 'resource checkboxtree, mixed data | array',
2929\ 'newt_checkbox_tree_get_current(': 'resource checkboxtree | mixed',
2930\ 'newt_checkbox_tree_get_entry_value(': 'resource checkboxtree, mixed data | string',
2931\ 'newt_checkbox_tree_get_multi_selection(': 'resource checkboxtree, string seqnum | array',
2932\ 'newt_checkbox_tree_get_selection(': 'resource checkboxtree | array',
2933\ 'newt_checkbox_tree(': 'int left, int top, int height [, int flags] | resource',
2934\ 'newt_checkbox_tree_multi(': 'int left, int top, int height, string seq [, int flags] | resource',
2935\ 'newt_checkbox_tree_set_current(': 'resource checkboxtree, mixed data | void',
2936\ 'newt_checkbox_tree_set_entry(': 'resource checkboxtree, mixed data, string text | void',
2937\ 'newt_checkbox_tree_set_entry_value(': 'resource checkboxtree, mixed data, string value | void',
2938\ 'newt_checkbox_tree_set_width(': 'resource checkbox_tree, int width | void',
2939\ 'newt_clear_key_buffer(': 'void | void',
2940\ 'newt_cls(': 'void | void',
2941\ 'newt_compact_button(': 'int left, int top, string text | resource',
2942\ 'newt_component_add_callback(': 'resource component, mixed func_name, mixed data | void',
2943\ 'newt_component_takes_focus(': 'resource component, bool takes_focus | void',
2944\ 'newt_create_grid(': 'int cols, int rows | resource',
2945\ 'newt_cursor_off(': 'void | void',
2946\ 'newt_cursor_on(': 'void | void',
2947\ 'newt_delay(': 'int microseconds | void',
2948\ 'newt_draw_form(': 'resource form | void',
2949\ 'newt_draw_root_text(': 'int left, int top, string text | void',
2950\ 'newt_entry_get_value(': 'resource entry | string',
2951\ 'newt_entry(': 'int left, int top, int width [, string init_value [, int flags]] | resource',
2952\ 'newt_entry_set_filter(': 'resource entry, callback filter, mixed data | void',
2953\ 'newt_entry_set_flags(': 'resource entry, int flags, int sense | void',
2954\ 'newt_entry_set(': 'resource entry, string value [, bool cursor_at_end] | void',
2955\ 'newt_finished(': 'void | int',
2956\ 'newt_form_add_component(': 'resource form, resource component | void',
2957\ 'newt_form_add_components(': 'resource form, array components | void',
2958\ 'newt_form_add_host_key(': 'resource form, int key | void',
2959\ 'newt_form_destroy(': 'resource form | void',
2960\ 'newt_form_get_current(': 'resource form | resource',
2961\ 'newt_form(': '[resource vert_bar [, string help [, int flags]]] | resource',
2962\ 'newt_form_run(': 'resource form, array &#38;exit_struct | void',
2963\ 'newt_form_set_background(': 'resource from, int background | void',
2964\ 'newt_form_set_height(': 'resource form, int height | void',
2965\ 'newt_form_set_size(': 'resource form | void',
2966\ 'newt_form_set_timer(': 'resource form, int milliseconds | void',
2967\ 'newt_form_set_width(': 'resource form, int width | void',
2968\ 'newt_form_watch_fd(': 'resource form, resource stream [, int flags] | void',
2969\ 'newt_get_screen_size(': 'int &#38;cols, int &#38;rows | void',
2970\ 'newt_grid_add_components_to_form(': 'resource grid, resource form, bool recurse | void',
2971\ 'newt_grid_basic_window(': 'resource text, resource middle, resource buttons | resource',
2972\ 'newt_grid_free(': 'resource grid, bool recurse | void',
2973\ 'newt_grid_get_size(': 'resouce grid, int &#38;width, int &#38;height | void',
2974\ 'newt_grid_h_close_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
2975\ 'newt_grid_h_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
2976\ 'newt_grid_place(': 'resource grid, int left, int top | void',
2977\ 'newt_grid_set_field(': 'resource grid, int col, int row, int type, resource val, int pad_left, int pad_top, int pad_right, int pad_bottom, int anchor [, int flags] | void',
2978\ 'newt_grid_simple_window(': 'resource text, resource middle, resource buttons | resource',
2979\ 'newt_grid_v_close_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
2980\ 'newt_grid_v_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
2981\ 'newt_grid_wrapped_window_at(': 'resource grid, string title, int left, int top | void',
2982\ 'newt_grid_wrapped_window(': 'resource grid, string title | void',
2983\ 'newt_init(': 'void | int',
2984\ 'newt_label(': 'int left, int top, string text | resource',
2985\ 'newt_label_set_text(': 'resource label, string text | void',
2986\ 'newt_listbox_append_entry(': 'resource listbox, string text, mixed data | void',
2987\ 'newt_listbox_clear(': 'resource listobx | void',
2988\ 'newt_listbox_clear_selection(': 'resource listbox | void',
2989\ 'newt_listbox_delete_entry(': 'resource listbox, mixed key | void',
2990\ 'newt_listbox_get_current(': 'resource listbox | string',
2991\ 'newt_listbox_get_selection(': 'resource listbox | array',
2992\ 'newt_listbox(': 'int left, int top, int height [, int flags] | resource',
2993\ 'newt_listbox_insert_entry(': 'resource listbox, string text, mixed data, mixed key | void',
2994\ 'newt_listbox_item_count(': 'resource listbox | int',
2995\ 'newt_listbox_select_item(': 'resource listbox, mixed key, int sense | void',
2996\ 'newt_listbox_set_current_by_key(': 'resource listbox, mixed key | void',
2997\ 'newt_listbox_set_current(': 'resource listbox, int num | void',
2998\ 'newt_listbox_set_data(': 'resource listbox, int num, mixed data | void',
2999\ 'newt_listbox_set_entry(': 'resource listbox, int num, string text | void',
3000\ 'newt_listbox_set_width(': 'resource listbox, int width | void',
3001\ 'newt_listitem_get_data(': 'resource item | mixed',
3002\ 'newt_listitem(': 'int left, int top, string text, bool is_default, resouce prev_item, mixed data [, int flags] | resource',
3003\ 'newt_listitem_set(': 'resource item, string text | void',
3004\ 'newt_open_window(': 'int left, int top, int width, int height [, string title] | int',
3005\ 'newt_pop_help_line(': 'void | void',
3006\ 'newt_pop_window(': 'void | void',
3007\ 'newt_push_help_line(': '[string text] | void',
3008\ 'newt_radiobutton(': 'int left, int top, string text, bool is_default [, resource prev_button] | resource',
3009\ 'newt_radio_get_current(': 'resource set_member | resource',
3010\ 'newt_redraw_help_line(': 'void | void',
3011\ 'newt_reflow_text(': 'string text, int width, int flex_down, int flex_up, int &#38;actual_width, int &#38;actual_height | string',
3012\ 'newt_refresh(': 'void | void',
3013\ 'newt_resize_screen(': '[bool redraw] | void',
3014\ 'newt_resume(': 'void | void',
3015\ 'newt_run_form(': 'resource form | resource',
3016\ 'newt_scale(': 'int left, int top, int width, int full_value | resource',
3017\ 'newt_scale_set(': 'resource scale, int amount | void',
3018\ 'newt_scrollbar_set(': 'resource scrollbar, int where, int total | void',
3019\ 'newt_set_help_callback(': 'mixed function | void',
3020\ 'newt_set_suspend_callback(': 'callback function, mixed data | void',
3021\ 'newt_suspend(': 'void | void',
3022\ 'newt_texbox_set_text(': 'resource textbox, string text | void',
3023\ 'newt_textbox_get_num_lines(': 'resource textbox | int',
3024\ 'newt_textbox(': 'int left, int top, int width, int height [, int flags] | resource',
3025\ 'newt_textbox_reflowed(': 'int left, int top, char *text, int width, int flex_down, int flex_up [, int flags] | resource',
3026\ 'newt_textbox_set_height(': 'resource textbox, int height | void',
3027\ 'newt_vertical_scrollbar(': 'int left, int top, int height [, int normal_colorset [, int thumb_colorset]] | resource',
3028\ 'newt_wait_for_key(': 'void | void',
3029\ 'newt_win_choice(': 'string title, string button1_text, string button2_text, string format [, mixed args [, mixed ...]] | int',
3030\ 'newt_win_entries(': 'string title, string text, int suggested_width, int flex_down, int flex_up, int data_width, array &#38;items, string button1 [, string ...] | int',
3031\ 'newt_win_menu(': 'string title, string text, int suggestedWidth, int flexDown, int flexUp, int maxListHeight, array items, int &#38;listItem [, string button1 [, string ...]] | int',
3032\ 'newt_win_message(': 'string title, string button_text, string format [, mixed args [, mixed ...]] | void',
3033\ 'newt_win_messagev(': 'string title, string button_text, string format, array args | void',
3034\ 'newt_win_ternary(': 'string title, string button1_text, string button2_text, string button3_text, string format [, mixed args [, mixed ...]] | int',
3035\ 'next(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003036\ 'ngettext(': 'string msgid1, string msgid2, int n | string',
3037\ 'nl2br(': 'string string | string',
3038\ 'nl_langinfo(': 'int item | string',
3039\ 'notes_body(': 'string server, string mailbox, int msg_number | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003040\ 'notes_copy_db(': 'string from_database_name, string to_database_name | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003041\ 'notes_create_db(': 'string database_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003042\ 'notes_create_note(': 'string database_name, string form_name | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003043\ 'notes_drop_db(': 'string database_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003044\ 'notes_find_note(': 'string database_name, string name [, string type] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003045\ 'notes_header_info(': 'string server, string mailbox, int msg_number | object',
3046\ 'notes_list_msgs(': 'string db | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003047\ 'notes_mark_read(': 'string database_name, string user_name, string note_id | bool',
3048\ 'notes_mark_unread(': 'string database_name, string user_name, string note_id | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003049\ 'notes_nav_create(': 'string database_name, string name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003050\ 'notes_search(': 'string database_name, string keywords | array',
3051\ 'notes_unread(': 'string database_name, string user_name | array',
3052\ 'notes_version(': 'string database_name | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003053\ 'nsapi_request_headers(': 'void | array',
3054\ 'nsapi_response_headers(': 'void | array',
3055\ 'nsapi_virtual(': 'string uri | bool',
3056\ 'number_format(': 'float number [, int decimals [, string dec_point, string thousands_sep]] | string',
3057\ 'ob_clean(': 'void | void',
3058\ 'ob_end_clean(': 'void | bool',
3059\ 'ob_end_flush(': 'void | bool',
3060\ 'ob_flush(': 'void | void',
3061\ 'ob_get_clean(': 'void | string',
3062\ 'ob_get_contents(': 'void | string',
3063\ 'ob_get_flush(': 'void | string',
3064\ 'ob_get_length(': 'void | int',
3065\ 'ob_get_level(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003066\ 'ob_gzhandler(': 'string buffer, int mode | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003067\ 'ob_iconv_handler(': 'string contents, int status | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003068\ 'ob_implicit_flush(': '[int flag] | void',
3069\ 'ob_list_handlers(': 'void | array',
3070\ 'ob_start(': '[callback output_callback [, int chunk_size [, bool erase]]] | bool',
3071\ 'ob_tidyhandler(': 'string input [, int mode] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003072\ 'oci_bind_by_name(': 'resource stmt, string ph_name, mixed &#38;variable [, int maxlength [, int type]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003073\ 'oci_cancel(': 'resource stmt | bool',
3074\ 'oci_close(': 'resource connection | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003075\ 'oci_commit(': 'resource connection | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003076\ 'oci_connect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource',
3077\ 'oci_define_by_name(': 'resource statement, string column_name, mixed &#38;variable [, int type] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003078\ 'oci_error(': '[resource source] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003079\ 'oci_execute(': 'resource stmt [, int mode] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003080\ 'oci_fetch_all(': 'resource statement, array &#38;output [, int skip [, int maxrows [, int flags]]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003081\ 'oci_fetch_array(': 'resource statement [, int mode] | array',
3082\ 'oci_fetch_assoc(': 'resource statement | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003083\ 'oci_fetch(': 'resource statement | bool',
3084\ 'ocifetchinto(': 'resource statement, array &#38;result [, int mode] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003085\ 'oci_fetch_object(': 'resource statement | object',
3086\ 'oci_fetch_row(': 'resource statement | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003087\ 'oci_field_is_null(': 'resource stmt, mixed field | bool',
3088\ 'oci_field_name(': 'resource statement, int field | string',
3089\ 'oci_field_precision(': 'resource statement, int field | int',
3090\ 'oci_field_scale(': 'resource statement, int field | int',
3091\ 'oci_field_size(': 'resource stmt, mixed field | int',
3092\ 'oci_field_type(': 'resource stmt, int field | mixed',
3093\ 'oci_field_type_raw(': 'resource statement, int field | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003094\ 'oci_free_statement(': 'resource statement | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003095\ 'oci_internal_debug(': 'int onoff | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003096\ 'oci_lob_copy(': 'OCI-Lob lob_to, OCI-Lob lob_from [, int length] | bool',
3097\ 'oci_lob_is_equal(': 'OCI-Lob lob1, OCI-Lob lob2 | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003098\ 'oci_new_collection(': 'resource connection, string tdo [, string schema] | OCI-Collection',
3099\ 'oci_new_connect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003100\ 'oci_new_cursor(': 'resource connection | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003101\ 'oci_new_descriptor(': 'resource connection [, int type] | OCI-Lob',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003102\ 'oci_num_fields(': 'resource statement | int',
3103\ 'oci_num_rows(': 'resource stmt | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003104\ 'oci_parse(': 'resource connection, string query | resource',
3105\ 'oci_password_change(': 'resource connection, string username, string old_password, string new_password | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003106\ 'oci_pconnect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003107\ 'oci_result(': 'resource statement, mixed field | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003108\ 'oci_rollback(': 'resource connection | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003109\ 'oci_server_version(': 'resource connection | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003110\ 'oci_set_prefetch(': 'resource statement [, int rows] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003111\ 'oci_statement_type(': 'resource statement | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003112\ 'octdec(': 'string octal_string | number',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003113\ 'odbc_autocommit(': 'resource connection_id [, bool OnOff] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003114\ 'odbc_binmode(': 'resource result_id, int mode | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003115\ 'odbc_close_all(': 'void | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003116\ 'odbc_close(': 'resource connection_id | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003117\ 'odbc_columnprivileges(': 'resource connection_id, string qualifier, string owner, string table_name, string column_name | resource',
3118\ 'odbc_columns(': 'resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]] | resource',
3119\ 'odbc_commit(': 'resource connection_id | bool',
3120\ 'odbc_connect(': 'string dsn, string user, string password [, int cursor_type] | resource',
3121\ 'odbc_cursor(': 'resource result_id | string',
3122\ 'odbc_data_source(': 'resource connection_id, int fetch_type | array',
3123\ 'odbc_do(': 'resource conn_id, string query | resource',
3124\ 'odbc_error(': '[resource connection_id] | string',
3125\ 'odbc_errormsg(': '[resource connection_id] | string',
3126\ 'odbc_exec(': 'resource connection_id, string query_string [, int flags] | resource',
3127\ 'odbc_execute(': 'resource result_id [, array parameters_array] | bool',
3128\ 'odbc_fetch_array(': 'resource result [, int rownumber] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003129\ 'odbc_fetch_into(': 'resource result_id, array &#38;result_array [, int rownumber] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003130\ 'odbc_fetch_object(': 'resource result [, int rownumber] | object',
3131\ 'odbc_fetch_row(': 'resource result_id [, int row_number] | bool',
3132\ 'odbc_field_len(': 'resource result_id, int field_number | int',
3133\ 'odbc_field_name(': 'resource result_id, int field_number | string',
3134\ 'odbc_field_num(': 'resource result_id, string field_name | int',
3135\ 'odbc_field_precision(': 'resource result_id, int field_number | int',
3136\ 'odbc_field_scale(': 'resource result_id, int field_number | int',
3137\ 'odbc_field_type(': 'resource result_id, int field_number | string',
3138\ 'odbc_foreignkeys(': 'resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table | resource',
3139\ 'odbc_free_result(': 'resource result_id | bool',
3140\ 'odbc_gettypeinfo(': 'resource connection_id [, int data_type] | resource',
3141\ 'odbc_longreadlen(': 'resource result_id, int length | bool',
3142\ 'odbc_next_result(': 'resource result_id | bool',
3143\ 'odbc_num_fields(': 'resource result_id | int',
3144\ 'odbc_num_rows(': 'resource result_id | int',
3145\ 'odbc_pconnect(': 'string dsn, string user, string password [, int cursor_type] | resource',
3146\ 'odbc_prepare(': 'resource connection_id, string query_string | resource',
3147\ 'odbc_primarykeys(': 'resource connection_id, string qualifier, string owner, string table | resource',
3148\ 'odbc_procedurecolumns(': 'resource connection_id [, string qualifier, string owner, string proc, string column] | resource',
3149\ 'odbc_procedures(': 'resource connection_id [, string qualifier, string owner, string name] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003150\ 'odbc_result_all(': 'resource result_id [, string format] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003151\ 'odbc_result(': 'resource result_id, mixed field | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003152\ 'odbc_rollback(': 'resource connection_id | bool',
3153\ 'odbc_setoption(': 'resource id, int function, int option, int param | bool',
3154\ 'odbc_specialcolumns(': 'resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable | resource',
3155\ 'odbc_statistics(': 'resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy | resource',
3156\ 'odbc_tableprivileges(': 'resource connection_id, string qualifier, string owner, string name | resource',
3157\ 'odbc_tables(': 'resource connection_id [, string qualifier [, string owner [, string name [, string types]]]] | resource',
3158\ 'openal_buffer_create(': 'void | resource',
3159\ 'openal_buffer_data(': 'resource buffer, int format, string data, int freq | bool',
3160\ 'openal_buffer_destroy(': 'resource buffer | bool',
3161\ 'openal_buffer_get(': 'resource buffer, int property | int',
3162\ 'openal_buffer_loadwav(': 'resource buffer, string wavfile | bool',
3163\ 'openal_context_create(': 'resource device | resource',
3164\ 'openal_context_current(': 'resource context | bool',
3165\ 'openal_context_destroy(': 'resource context | bool',
3166\ 'openal_context_process(': 'resource context | bool',
3167\ 'openal_context_suspend(': 'resource context | bool',
3168\ 'openal_device_close(': 'resource device | bool',
3169\ 'openal_device_open(': '[string device_desc] | resource',
3170\ 'openal_listener_get(': 'int property | mixed',
3171\ 'openal_listener_set(': 'int property, mixed setting | bool',
3172\ 'openal_source_create(': 'void | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003173\ 'openal_source_destroy(': 'resource source | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003174\ 'openal_source_get(': 'resource source, int property | mixed',
3175\ 'openal_source_pause(': 'resource source | bool',
3176\ 'openal_source_play(': 'resource source | bool',
3177\ 'openal_source_rewind(': 'resource source | bool',
3178\ 'openal_source_set(': 'resource source, int property, mixed setting | bool',
3179\ 'openal_source_stop(': 'resource source | bool',
3180\ 'openal_stream(': 'resource source, int format, int rate | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003181\ 'opendir(': 'string path [, resource context] | resource',
3182\ 'openlog(': 'string ident, int option, int facility | bool',
3183\ 'openssl_csr_export(': 'resource csr, string &#38;out [, bool notext] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003184\ 'openssl_csr_export_to_file(': 'resource csr, string outfilename [, bool notext] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003185\ 'openssl_csr_new(': 'array dn, resource &#38;privkey [, array configargs [, array extraattribs]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003186\ 'openssl_csr_sign(': 'mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003187\ 'openssl_error_string(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003188\ 'openssl_free_key(': 'resource key_identifier | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003189\ 'openssl_open(': 'string sealed_data, string &#38;open_data, string env_key, mixed priv_key_id | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003190\ 'openssl_pkcs7_decrypt(': 'string infilename, string outfilename, mixed recipcert [, mixed recipkey] | bool',
3191\ 'openssl_pkcs7_encrypt(': 'string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid]] | bool',
3192\ 'openssl_pkcs7_sign(': 'string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003193\ 'openssl_pkcs7_verify(': 'string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]] | mixed',
3194\ 'openssl_pkey_export(': 'mixed key, string &#38;out [, string passphrase [, array configargs]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003195\ 'openssl_pkey_export_to_file(': 'mixed key, string outfilename [, string passphrase [, array configargs]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003196\ 'openssl_pkey_free(': 'resource key | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003197\ 'openssl_pkey_get_private(': 'mixed key [, string passphrase] | resource',
3198\ 'openssl_pkey_get_public(': 'mixed certificate | resource',
3199\ 'openssl_pkey_new(': '[array configargs] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003200\ 'openssl_private_decrypt(': 'string data, string &#38;decrypted, mixed key [, int padding] | bool',
3201\ 'openssl_private_encrypt(': 'string data, string &#38;crypted, mixed key [, int padding] | bool',
3202\ 'openssl_public_decrypt(': 'string data, string &#38;decrypted, mixed key [, int padding] | bool',
3203\ 'openssl_public_encrypt(': 'string data, string &#38;crypted, mixed key [, int padding] | bool',
3204\ 'openssl_seal(': 'string data, string &#38;sealed_data, array &#38;env_keys, array pub_key_ids | int',
3205\ 'openssl_sign(': 'string data, string &#38;signature, mixed priv_key_id [, int signature_alg] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003206\ 'openssl_verify(': 'string data, string signature, mixed pub_key_id | int',
3207\ 'openssl_x509_check_private_key(': 'mixed cert, mixed key | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003208\ 'openssl_x509_checkpurpose(': 'mixed x509cert, int purpose [, array cainfo [, string untrustedfile]] | int',
3209\ 'openssl_x509_export(': 'mixed x509, string &#38;output [, bool notext] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003210\ 'openssl_x509_export_to_file(': 'mixed x509, string outfilename [, bool notext] | bool',
3211\ 'openssl_x509_free(': 'resource x509cert | void',
3212\ 'openssl_x509_parse(': 'mixed x509cert [, bool shortnames] | array',
3213\ 'openssl_x509_read(': 'mixed x509certdata | resource',
3214\ 'ora_bind(': 'resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type] | bool',
3215\ 'ora_close(': 'resource cursor | bool',
3216\ 'ora_columnname(': 'resource cursor, int column | string',
3217\ 'ora_columnsize(': 'resource cursor, int column | int',
3218\ 'ora_columntype(': 'resource cursor, int column | string',
3219\ 'ora_commit(': 'resource conn | bool',
3220\ 'ora_commitoff(': 'resource conn | bool',
3221\ 'ora_commiton(': 'resource conn | bool',
3222\ 'ora_do(': 'resource conn, string query | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003223\ 'ora_errorcode(': '[resource cursor_or_connection] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003224\ 'ora_error(': '[resource cursor_or_connection] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003225\ 'ora_exec(': 'resource cursor | bool',
3226\ 'ora_fetch(': 'resource cursor | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003227\ 'ora_fetch_into(': 'resource cursor, array &#38;result [, int flags] | int',
3228\ 'ora_getcolumn(': 'resource cursor, int column | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003229\ 'ora_logoff(': 'resource connection | bool',
3230\ 'ora_logon(': 'string user, string password | resource',
3231\ 'ora_numcols(': 'resource cursor | int',
3232\ 'ora_numrows(': 'resource cursor | int',
3233\ 'ora_open(': 'resource connection | resource',
3234\ 'ora_parse(': 'resource cursor, string sql_statement [, int defer] | bool',
3235\ 'ora_plogon(': 'string user, string password | resource',
3236\ 'ora_rollback(': 'resource connection | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003237\ 'OrbitEnum(': 'string id | new',
3238\ 'OrbitObject(': 'string ior | new',
3239\ 'OrbitStruct(': 'string id | new',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003240\ 'ord(': 'string string | int',
3241\ 'output_add_rewrite_var(': 'string name, string value | bool',
3242\ 'output_reset_rewrite_vars(': 'void | bool',
3243\ 'overload(': '[string class_name] | void',
3244\ 'override_function(': 'string function_name, string function_args, string function_code | bool',
3245\ 'ovrimos_close(': 'int connection | void',
3246\ 'ovrimos_commit(': 'int connection_id | bool',
3247\ 'ovrimos_connect(': 'string host, string db, string user, string password | int',
3248\ 'ovrimos_cursor(': 'int result_id | string',
3249\ 'ovrimos_exec(': 'int connection_id, string query | int',
3250\ 'ovrimos_execute(': 'int result_id [, array parameters_array] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003251\ 'ovrimos_fetch_into(': 'int result_id, array &#38;result_array [, string how [, int rownumber]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003252\ 'ovrimos_fetch_row(': 'int result_id [, int how [, int row_number]] | bool',
3253\ 'ovrimos_field_len(': 'int result_id, int field_number | int',
3254\ 'ovrimos_field_name(': 'int result_id, int field_number | string',
3255\ 'ovrimos_field_num(': 'int result_id, string field_name | int',
3256\ 'ovrimos_field_type(': 'int result_id, int field_number | int',
3257\ 'ovrimos_free_result(': 'int result_id | bool',
3258\ 'ovrimos_longreadlen(': 'int result_id, int length | bool',
3259\ 'ovrimos_num_fields(': 'int result_id | int',
3260\ 'ovrimos_num_rows(': 'int result_id | int',
3261\ 'ovrimos_prepare(': 'int connection_id, string query | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003262\ 'ovrimos_result_all(': 'int result_id [, string format] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003263\ 'ovrimos_result(': 'int result_id, mixed field | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003264\ 'ovrimos_rollback(': 'int connection_id | bool',
3265\ 'pack(': 'string format [, mixed args [, mixed ...]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003266\ 'ParentIterator::getChildren(': 'void | ParentIterator',
3267\ 'ParentIterator::hasChildren(': 'void | bool',
3268\ 'ParentIterator::next(': 'void | void',
3269\ 'ParentIterator::rewind(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003270\ 'parse_ini_file(': 'string filename [, bool process_sections] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003271\ 'parsekit_compile_file(': 'string filename [, array &#38;errors [, int options]] | array',
3272\ 'parsekit_compile_string(': 'string phpcode [, array &#38;errors [, int options]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003273\ 'parsekit_func_arginfo(': 'mixed function | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003274\ 'parse_str(': 'string str [, array &#38;arr] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003275\ 'parse_url(': 'string url | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003276\ 'passthru(': 'string command [, int &#38;return_var] | void',
3277\ 'pathinfo(': 'string path [, int options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003278\ 'pclose(': 'resource handle | int',
3279\ 'pcntl_alarm(': 'int seconds | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003280\ 'pcntl_exec(': 'string path [, array args [, array envs]] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003281\ 'pcntl_fork(': 'void | int',
3282\ 'pcntl_getpriority(': '[int pid [, int process_identifier]] | int',
3283\ 'pcntl_setpriority(': 'int priority [, int pid [, int process_identifier]] | bool',
3284\ 'pcntl_signal(': 'int signo, callback handle [, bool restart_syscalls] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003285\ 'pcntl_wait(': 'int &#38;status [, int options] | int',
3286\ 'pcntl_waitpid(': 'int pid, int &#38;status [, int options] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003287\ 'pcntl_wexitstatus(': 'int status | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003288\ 'pcntl_wifexited(': 'int status | bool',
3289\ 'pcntl_wifsignaled(': 'int status | bool',
3290\ 'pcntl_wifstopped(': 'int status | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003291\ 'pcntl_wstopsig(': 'int status | int',
3292\ 'pcntl_wtermsig(': 'int status | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003293\ 'pdf_activate_item(': 'resource pdfdoc, int id | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003294\ 'pdf_add_launchlink(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename | bool',
3295\ 'pdf_add_locallink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003296\ 'pdf_add_nameddest(': 'resource pdfdoc, string name, string optlist | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003297\ 'pdf_add_note(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool',
3298\ 'pdf_add_pdflink(': 'resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest | bool',
3299\ 'pdf_add_thumbnail(': 'resource pdfdoc, int image | bool',
3300\ 'pdf_add_weblink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003301\ 'pdf_arc(': 'resource p, float x, float y, float r, float alpha, float beta | bool',
3302\ 'pdf_arcn(': 'resource p, float x, float y, float r, float alpha, float beta | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003303\ 'pdf_attach_file(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003304\ 'pdf_begin_document(': 'resource pdfdoc, string filename, string optlist | int',
3305\ 'pdf_begin_font(': 'resource pdfdoc, string filename, float a, float b, float c, float d, float e, float f, string optlist | bool',
3306\ 'pdf_begin_glyph(': 'resource pdfdoc, string glyphname, float wx, float llx, float lly, float urx, float ury | bool',
3307\ 'pdf_begin_item(': 'resource pdfdoc, string tag, string optlist | int',
3308\ 'pdf_begin_layer(': 'resource pdfdoc, int layer | bool',
3309\ 'pdf_begin_page_ext(': 'resource pdfdoc, float width, float height, string optlist | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003310\ 'pdf_begin_page(': 'resource pdfdoc, float width, float height | bool',
3311\ 'pdf_begin_pattern(': 'resource pdfdoc, float width, float height, float xstep, float ystep, int painttype | int',
3312\ 'pdf_begin_template(': 'resource pdfdoc, float width, float height | int',
3313\ 'pdf_circle(': 'resource pdfdoc, float x, float y, float r | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003314\ 'pdf_clip(': 'resource p | bool',
3315\ 'pdf_close(': 'resource p | bool',
3316\ 'pdf_close_image(': 'resource p, int image | void',
3317\ 'pdf_closepath_fill_stroke(': 'resource p | bool',
3318\ 'pdf_closepath(': 'resource p | bool',
3319\ 'pdf_closepath_stroke(': 'resource p | bool',
3320\ 'pdf_close_pdi(': 'resource p, int doc | bool',
3321\ 'pdf_close_pdi_page(': 'resource p, int page | bool',
3322\ 'pdf_concat(': 'resource p, float a, float b, float c, float d, float e, float f | bool',
3323\ 'pdf_continue_text(': 'resource p, string text | bool',
3324\ 'pdf_create_action(': 'resource pdfdoc, string type, string optlist | int',
3325\ 'pdf_create_annotation(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string type, string optlist | bool',
3326\ 'pdf_create_bookmark(': 'resource pdfdoc, string text, string optlist | int',
3327\ 'pdf_create_fieldgroup(': 'resource pdfdoc, string name, string optlist | bool',
3328\ 'pdf_create_field(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string name, string type, string optlist | bool',
3329\ 'pdf_create_gstate(': 'resource pdfdoc, string optlist | int',
3330\ 'pdf_create_pvf(': 'resource pdfdoc, string filename, string data, string optlist | bool',
3331\ 'pdf_create_textflow(': 'resource pdfdoc, string text, string optlist | int',
3332\ 'pdf_curveto(': 'resource p, float x1, float y1, float x2, float y2, float x3, float y3 | bool',
3333\ 'pdf_define_layer(': 'resource pdfdoc, string name, string optlist | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003334\ 'pdf_delete(': 'resource pdfdoc | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003335\ 'pdf_delete_pvf(': 'resource pdfdoc, string filename | int',
3336\ 'pdf_delete_textflow(': 'resource pdfdoc, int textflow | bool',
3337\ 'pdf_encoding_set_char(': 'resource pdfdoc, string encoding, int slot, string glyphname, int uv | bool',
3338\ 'pdf_end_document(': 'resource pdfdoc, string optlist | bool',
3339\ 'pdf_end_font(': 'resource pdfdoc | bool',
3340\ 'pdf_end_glyph(': 'resource pdfdoc | bool',
3341\ 'pdf_end_item(': 'resource pdfdoc, int id | bool',
3342\ 'pdf_end_layer(': 'resource pdfdoc | bool',
3343\ 'pdf_end_page_ext(': 'resource pdfdoc, string optlist | bool',
3344\ 'pdf_end_page(': 'resource p | bool',
3345\ 'pdf_end_pattern(': 'resource p | bool',
3346\ 'pdf_end_template(': 'resource p | bool',
3347\ 'pdf_fill(': 'resource p | bool',
3348\ 'pdf_fill_imageblock(': 'resource pdfdoc, int page, string blockname, int image, string optlist | int',
3349\ 'pdf_fill_pdfblock(': 'resource pdfdoc, int page, string blockname, int contents, string optlist | int',
3350\ 'pdf_fill_stroke(': 'resource p | bool',
3351\ 'pdf_fill_textblock(': 'resource pdfdoc, int page, string blockname, string text, string optlist | int',
3352\ 'pdf_findfont(': 'resource p, string fontname, string encoding, int embed | int',
3353\ 'pdf_fit_image(': 'resource pdfdoc, int image, float x, float y, string optlist | bool',
3354\ 'pdf_fit_pdi_page(': 'resource pdfdoc, int page, float x, float y, string optlist | bool',
3355\ 'pdf_fit_textflow(': 'resource pdfdoc, int textflow, float llx, float lly, float urx, float ury, string optlist | string',
3356\ 'pdf_fit_textline(': 'resource pdfdoc, string text, float x, float y, string optlist | bool',
3357\ 'pdf_get_apiname(': 'resource pdfdoc | string',
3358\ 'pdf_get_buffer(': 'resource p | string',
3359\ 'pdf_get_errmsg(': 'resource pdfdoc | string',
3360\ 'pdf_get_errnum(': 'resource pdfdoc | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003361\ 'pdf_get_majorversion(': 'void | int',
3362\ 'pdf_get_minorversion(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003363\ 'pdf_get_parameter(': 'resource p, string key, float modifier | string',
3364\ 'pdf_get_pdi_parameter(': 'resource p, string key, int doc, int page, int reserved | string',
3365\ 'pdf_get_pdi_value(': 'resource p, string key, int doc, int page, int reserved | float',
3366\ 'pdf_get_value(': 'resource p, string key, float modifier | float',
3367\ 'pdf_info_textflow(': 'resource pdfdoc, int textflow, string keyword | float',
3368\ 'pdf_initgraphics(': 'resource p | bool',
3369\ 'pdf_lineto(': 'resource p, float x, float y | bool',
3370\ 'pdf_load_font(': 'resource pdfdoc, string fontname, string encoding, string optlist | int',
3371\ 'pdf_load_iccprofile(': 'resource pdfdoc, string profilename, string optlist | int',
3372\ 'pdf_load_image(': 'resource pdfdoc, string imagetype, string filename, string optlist | int',
3373\ 'pdf_makespotcolor(': 'resource p, string spotname | int',
3374\ 'pdf_moveto(': 'resource p, float x, float y | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003375\ 'pdf_new(': ' | resource',
3376\ 'pdf_open_ccitt(': 'resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1 | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003377\ 'pdf_open_file(': 'resource p, string filename | bool',
3378\ 'pdf_open_image_file(': 'resource p, string imagetype, string filename, string stringparam, int intparam | int',
3379\ 'pdf_open_image(': 'resource p, string imagetype, string source, string data, int length, int width, int height, int components, int bpc, string params | int',
3380\ 'pdf_open_memory_image(': 'resource p, resource image | int',
3381\ 'pdf_open_pdi(': 'resource pdfdoc, string filename, string optlist, int len | int',
3382\ 'pdf_open_pdi_page(': 'resource p, int doc, int pagenumber, string optlist | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003383\ 'pdf_place_image(': 'resource pdfdoc, int image, float x, float y, float scale | bool',
3384\ 'pdf_place_pdi_page(': 'resource pdfdoc, int page, float x, float y, float sx, float sy | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003385\ 'pdf_process_pdi(': 'resource pdfdoc, int doc, int page, string optlist | int',
3386\ 'pdf_rect(': 'resource p, float x, float y, float width, float height | bool',
3387\ 'pdf_restore(': 'resource p | bool',
3388\ 'pdf_resume_page(': 'resource pdfdoc, string optlist | bool',
3389\ 'pdf_rotate(': 'resource p, float phi | bool',
3390\ 'pdf_save(': 'resource p | bool',
3391\ 'pdf_scale(': 'resource p, float sx, float sy | bool',
3392\ 'pdf_set_border_color(': 'resource p, float red, float green, float blue | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003393\ 'pdf_set_border_dash(': 'resource pdfdoc, float black, float white | bool',
3394\ 'pdf_set_border_style(': 'resource pdfdoc, string style, float width | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003395\ 'pdf_setcolor(': 'resource p, string fstype, string colorspace, float c1, float c2, float c3, float c4 | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003396\ 'pdf_setdash(': 'resource pdfdoc, float b, float w | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003397\ 'pdf_setdashpattern(': 'resource pdfdoc, string optlist | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003398\ 'pdf_setflat(': 'resource pdfdoc, float flatness | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003399\ 'pdf_setfont(': 'resource pdfdoc, int font, float fontsize | bool',
3400\ 'pdf_setgray_fill(': 'resource p, float g | bool',
3401\ 'pdf_setgray(': 'resource p, float g | bool',
3402\ 'pdf_setgray_stroke(': 'resource p, float g | bool',
3403\ 'pdf_set_gstate(': 'resource pdfdoc, int gstate | bool',
3404\ 'pdf_set_info(': 'resource p, string key, string value | bool',
3405\ 'pdf_set_layer_dependency(': 'resource pdfdoc, string type, string optlist | bool',
3406\ 'pdf_setlinecap(': 'resource p, int linecap | bool',
3407\ 'pdf_setlinejoin(': 'resource p, int value | bool',
3408\ 'pdf_setlinewidth(': 'resource p, float width | bool',
3409\ 'pdf_setmatrix(': 'resource p, float a, float b, float c, float d, float e, float f | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003410\ 'pdf_setmiterlimit(': 'resource pdfdoc, float miter | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003411\ 'pdf_set_parameter(': 'resource p, string key, string value | bool',
3412\ 'pdf_setrgbcolor_fill(': 'resource p, float red, float green, float blue | bool',
3413\ 'pdf_setrgbcolor(': 'resource p, float red, float green, float blue | bool',
3414\ 'pdf_setrgbcolor_stroke(': 'resource p, float red, float green, float blue | bool',
3415\ 'pdf_set_text_pos(': 'resource p, float x, float y | bool',
3416\ 'pdf_set_value(': 'resource p, string key, float value | bool',
3417\ 'pdf_shading(': 'resource pdfdoc, string shtype, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist | int',
3418\ 'pdf_shading_pattern(': 'resource pdfdoc, int shading, string optlist | int',
3419\ 'pdf_shfill(': 'resource pdfdoc, int shading | bool',
3420\ 'pdf_show_boxed(': 'resource p, string text, float left, float top, float width, float height, string mode, string feature | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003421\ 'pdf_show(': 'resource pdfdoc, string text | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003422\ 'pdf_show_xy(': 'resource p, string text, float x, float y | bool',
3423\ 'pdf_skew(': 'resource p, float alpha, float beta | bool',
3424\ 'pdf_stringwidth(': 'resource p, string text, int font, float fontsize | float',
3425\ 'pdf_stroke(': 'resource p | bool',
3426\ 'pdf_suspend_page(': 'resource pdfdoc, string optlist | bool',
3427\ 'pdf_translate(': 'resource p, float tx, float ty | bool',
3428\ 'pdf_utf16_to_utf8(': 'resource pdfdoc, string utf16string | string',
3429\ 'pdf_utf8_to_utf16(': 'resource pdfdoc, string utf8string, string ordering | string',
3430\ 'pdf_xshow(': 'resource pdfdoc, string text | bool',
3431\ 'PDO::beginTransaction(': 'void | bool',
3432\ 'PDO::commit(': 'void | bool',
3433\ 'PDO::__construct(': 'string dsn [, string username [, string password [, array driver_options]]] | PDO',
3434\ 'PDO::errorCode(': 'void | string',
3435\ 'PDO::errorInfo(': 'void | array',
3436\ 'PDO::exec(': 'string statement | int',
3437\ 'PDO::getAttribute(': 'int attribute | mixed',
3438\ 'PDO::getAvailableDrivers(': 'void | array',
3439\ 'PDO::lastInsertId(': '[string name] | string',
3440\ 'PDO::prepare(': 'string statement [, array driver_options] | PDOStatement',
3441\ 'PDO::query(': 'string statement | PDOStatement',
3442\ 'PDO::quote(': 'string string [, int parameter_type] | string',
3443\ 'PDO::rollBack(': 'void | bool',
3444\ 'PDO::setAttribute(': 'int attribute, mixed value | bool',
3445\ 'PDO::sqliteCreateAggregate(': 'string function_name, callback step_func, callback finalize_func [, int num_args] | bool',
3446\ 'PDO::sqliteCreateFunction(': 'string function_name, callback callback [, int num_args] | bool',
3447\ 'PDOStatement::bindColumn(': 'mixed column, mixed &#38;param [, int type] | bool',
3448\ 'PDOStatement::bindParam(': 'mixed parameter, mixed &#38;variable [, int data_type [, int length [, mixed driver_options]]] | bool',
3449\ 'PDOStatement::bindValue(': 'mixed parameter, mixed value [, int data_type] | bool',
3450\ 'PDOStatement::closeCursor(': 'void | bool',
3451\ 'PDOStatement::columnCount(': 'void | int',
3452\ 'PDOStatement::errorCode(': 'void | string',
3453\ 'PDOStatement::errorInfo(': 'void | array',
3454\ 'PDOStatement::execute(': '[array input_parameters] | bool',
3455\ 'PDOStatement::fetchAll(': '[int fetch_style [, int column_index]] | array',
3456\ 'PDOStatement::fetchColumn(': '[int column_number] | string',
3457\ 'PDOStatement::fetch(': '[int fetch_style [, int cursor_orientation [, int cursor_offset]]] | mixed',
3458\ 'PDOStatement::fetchObject(': '[string class_name [, array ctor_args]] | mixed',
3459\ 'PDOStatement::getAttribute(': 'int attribute | mixed',
3460\ 'PDOStatement::getColumnMeta(': 'int column | mixed',
3461\ 'PDOStatement::nextRowset(': 'void | bool',
3462\ 'PDOStatement::rowCount(': 'void | int',
3463\ 'PDOStatement::setAttribute(': 'int attribute, mixed value | bool',
3464\ 'PDOStatement::setFetchMode(': 'int mode | bool',
3465\ 'pfpro_cleanup(': 'void | bool',
3466\ 'pfpro_init(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003467\ 'pfpro_process(': 'array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | array',
3468\ 'pfpro_process_raw(': 'string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | string',
3469\ 'pfpro_version(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003470\ 'pfsockopen(': 'string hostname [, int port [, int &#38;errno [, string &#38;errstr [, float timeout]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003471\ 'pg_affected_rows(': 'resource result | int',
3472\ 'pg_cancel_query(': 'resource connection | bool',
3473\ 'pg_client_encoding(': '[resource connection] | string',
3474\ 'pg_close(': '[resource connection] | bool',
3475\ 'pg_connect(': 'string connection_string [, int connect_type] | resource',
3476\ 'pg_connection_busy(': 'resource connection | bool',
3477\ 'pg_connection_reset(': 'resource connection | bool',
3478\ 'pg_connection_status(': 'resource connection | int',
3479\ 'pg_convert(': 'resource connection, string table_name, array assoc_array [, int options] | array',
3480\ 'pg_copy_from(': 'resource connection, string table_name, array rows [, string delimiter [, string null_as]] | bool',
3481\ 'pg_copy_to(': 'resource connection, string table_name [, string delimiter [, string null_as]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003482\ 'pg_dbname(': '[resource connection] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003483\ 'pg_delete(': 'resource connection, string table_name, array assoc_array [, int options] | mixed',
3484\ 'pg_end_copy(': '[resource connection] | bool',
3485\ 'pg_escape_bytea(': 'string data | string',
3486\ 'pg_escape_string(': 'string data | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003487\ 'pg_execute(': 'resource connection, string stmtname, array params | resource',
3488\ 'pg_fetch_all_columns(': 'resource result [, int column] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003489\ 'pg_fetch_all(': 'resource result | array',
3490\ 'pg_fetch_array(': 'resource result [, int row [, int result_type]] | array',
3491\ 'pg_fetch_assoc(': 'resource result [, int row] | array',
3492\ 'pg_fetch_object(': 'resource result [, int row [, int result_type]] | object',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003493\ 'pg_fetch_result(': 'resource result, int row, mixed field | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003494\ 'pg_fetch_row(': 'resource result [, int row] | array',
3495\ 'pg_field_is_null(': 'resource result, int row, mixed field | int',
3496\ 'pg_field_name(': 'resource result, int field_number | string',
3497\ 'pg_field_num(': 'resource result, string field_name | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003498\ 'pg_field_prtlen(': 'resource result, int row_number, mixed field_name_or_number | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003499\ 'pg_field_size(': 'resource result, int field_number | int',
3500\ 'pg_field_type(': 'resource result, int field_number | string',
3501\ 'pg_field_type_oid(': 'resource result, int field_number | int',
3502\ 'pg_free_result(': 'resource result | bool',
3503\ 'pg_get_notify(': 'resource connection [, int result_type] | array',
3504\ 'pg_get_pid(': 'resource connection | int',
3505\ 'pg_get_result(': '[resource connection] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003506\ 'pg_host(': '[resource connection] | string',
3507\ 'pg_insert(': 'resource connection, string table_name, array assoc_array [, int options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003508\ 'pg_last_error(': '[resource connection] | string',
3509\ 'pg_last_notice(': 'resource connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003510\ 'pg_last_oid(': 'resource result | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003511\ 'pg_lo_close(': 'resource large_object | bool',
3512\ 'pg_lo_create(': '[resource connection] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003513\ 'pg_lo_export(': 'resource connection, int oid, string pathname | bool',
3514\ 'pg_lo_import(': 'resource connection, string pathname | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003515\ 'pg_lo_open(': 'resource connection, int oid, string mode | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003516\ 'pg_lo_read_all(': 'resource large_object | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003517\ 'pg_lo_read(': 'resource large_object [, int len] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003518\ 'pg_lo_seek(': 'resource large_object, int offset [, int whence] | bool',
3519\ 'pg_lo_tell(': 'resource large_object | int',
3520\ 'pg_lo_unlink(': 'resource connection, int oid | bool',
3521\ 'pg_lo_write(': 'resource large_object, string data [, int len] | int',
3522\ 'pg_meta_data(': 'resource connection, string table_name | array',
3523\ 'pg_num_fields(': 'resource result | int',
3524\ 'pg_num_rows(': 'resource result | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003525\ 'pg_options(': '[resource connection] | string',
3526\ 'pg_parameter_status(': 'resource connection, string param_name | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003527\ 'pg_pconnect(': 'string connection_string [, int connect_type] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003528\ 'pg_ping(': '[resource connection] | bool',
3529\ 'pg_port(': '[resource connection] | int',
3530\ 'pg_prepare(': 'resource connection, string stmtname, string query | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003531\ 'pg_put_line(': 'string data | bool',
3532\ 'pg_query(': 'string query | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003533\ 'pg_query_params(': 'resource connection, string query, array params | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003534\ 'pg_result_error_field(': 'resource result, int fieldcode | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003535\ 'pg_result_error(': 'resource result | string',
3536\ 'pg_result_seek(': 'resource result, int offset | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003537\ 'pg_result_status(': 'resource result [, int type] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003538\ 'pg_select(': 'resource connection, string table_name, array assoc_array [, int options] | mixed',
3539\ 'pg_send_execute(': 'resource connection, string stmtname, array params | bool',
3540\ 'pg_send_prepare(': 'resource connection, string stmtname, string query | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003541\ 'pg_send_query(': 'resource connection, string query | bool',
3542\ 'pg_send_query_params(': 'resource connection, string query, array params | bool',
3543\ 'pg_set_client_encoding(': 'string encoding | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003544\ 'pg_set_error_verbosity(': 'resource connection, int verbosity | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003545\ 'pg_trace(': 'string pathname [, string mode [, resource connection]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003546\ 'pg_transaction_status(': 'resource connection | int',
3547\ 'pg_tty(': '[resource connection] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003548\ 'pg_unescape_bytea(': 'string data | string',
3549\ 'pg_untrace(': '[resource connection] | bool',
3550\ 'pg_update(': 'resource connection, string table_name, array data, array condition [, int options] | mixed',
3551\ 'pg_version(': '[resource connection] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003552\ 'php_check_syntax(': 'string file_name [, string &#38;error_message] | bool',
3553\ 'phpcredits(': '[int flag] | bool',
3554\ 'phpinfo(': '[int what] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003555\ 'php_ini_scanned_files(': 'void | string',
3556\ 'php_logo_guid(': 'void | string',
3557\ 'php_sapi_name(': 'void | string',
3558\ 'php_strip_whitespace(': 'string filename | string',
3559\ 'php_uname(': '[string mode] | string',
3560\ 'phpversion(': '[string extension] | string',
3561\ 'pi(': 'void | float',
3562\ 'png2wbmp(': 'string pngname, string wbmpname, int d_height, int d_width, int threshold | int',
3563\ 'popen(': 'string command, string mode | resource',
3564\ 'posix_access(': 'string file [, int mode] | bool',
3565\ 'posix_ctermid(': 'void | string',
3566\ 'posix_getcwd(': 'void | string',
3567\ 'posix_getegid(': 'void | int',
3568\ 'posix_geteuid(': 'void | int',
3569\ 'posix_getgid(': 'void | int',
3570\ 'posix_getgrgid(': 'int gid | array',
3571\ 'posix_getgrnam(': 'string name | array',
3572\ 'posix_getgroups(': 'void | array',
3573\ 'posix_get_last_error(': 'void | int',
3574\ 'posix_getlogin(': 'void | string',
3575\ 'posix_getpgid(': 'int pid | int',
3576\ 'posix_getpgrp(': 'void | int',
3577\ 'posix_getpid(': 'void | int',
3578\ 'posix_getppid(': 'void | int',
3579\ 'posix_getpwnam(': 'string username | array',
3580\ 'posix_getpwuid(': 'int uid | array',
3581\ 'posix_getrlimit(': 'void | array',
3582\ 'posix_getsid(': 'int pid | int',
3583\ 'posix_getuid(': 'void | int',
3584\ 'posix_isatty(': 'int fd | bool',
3585\ 'posix_kill(': 'int pid, int sig | bool',
3586\ 'posix_mkfifo(': 'string pathname, int mode | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003587\ 'posix_mknod(': 'string pathname, int mode [, int major [, int minor]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003588\ 'posix_setegid(': 'int gid | bool',
3589\ 'posix_seteuid(': 'int uid | bool',
3590\ 'posix_setgid(': 'int gid | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003591\ 'posix_setpgid(': 'int pid, int pgid | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003592\ 'posix_setsid(': 'void | int',
3593\ 'posix_setuid(': 'int uid | bool',
3594\ 'posix_strerror(': 'int errno | string',
3595\ 'posix_times(': 'void | array',
3596\ 'posix_ttyname(': 'int fd | string',
3597\ 'posix_uname(': 'void | array',
3598\ 'pow(': 'number base, number exp | number',
3599\ 'preg_grep(': 'string pattern, array input [, int flags] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003600\ 'preg_match_all(': 'string pattern, string subject, array &#38;matches [, int flags [, int offset]] | int',
3601\ 'preg_match(': 'string pattern, string subject [, array &#38;matches [, int flags [, int offset]]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003602\ 'preg_quote(': 'string str [, string delimiter] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003603\ 'preg_replace_callback(': 'mixed pattern, callback callback, mixed subject [, int limit [, int &#38;count]] | mixed',
3604\ 'preg_replace(': 'mixed pattern, mixed replacement, mixed subject [, int limit [, int &#38;count]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003605\ 'preg_split(': 'string pattern, string subject [, int limit [, int flags]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003606\ 'prev(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003607\ 'printer_abort(': 'resource handle | void',
3608\ 'printer_close(': 'resource handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003609\ 'printer_create_brush(': 'int style, string color | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003610\ 'printer_create_dc(': 'resource handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003611\ 'printer_create_font(': 'string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation | resource',
3612\ 'printer_create_pen(': 'int style, int width, string color | resource',
3613\ 'printer_delete_brush(': 'resource handle | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003614\ 'printer_delete_dc(': 'resource handle | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003615\ 'printer_delete_font(': 'resource handle | void',
3616\ 'printer_delete_pen(': 'resource handle | void',
3617\ 'printer_draw_bmp(': 'resource handle, string filename, int x, int y [, int width, int height] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003618\ 'printer_draw_chord(': 'resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1 | void',
3619\ 'printer_draw_elipse(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void',
3620\ 'printer_draw_line(': 'resource printer_handle, int from_x, int from_y, int to_x, int to_y | void',
3621\ 'printer_draw_pie(': 'resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y | void',
3622\ 'printer_draw_rectangle(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void',
3623\ 'printer_draw_roundrect(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height | void',
3624\ 'printer_draw_text(': 'resource printer_handle, string text, int x, int y | void',
3625\ 'printer_end_doc(': 'resource handle | bool',
3626\ 'printer_end_page(': 'resource handle | bool',
3627\ 'printer_get_option(': 'resource handle, string option | mixed',
3628\ 'printer_list(': 'int enumtype [, string name [, int level]] | array',
3629\ 'printer_logical_fontheight(': 'resource handle, int height | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003630\ 'printer_open(': '[string devicename] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003631\ 'printer_select_brush(': 'resource printer_handle, resource brush_handle | void',
3632\ 'printer_select_font(': 'resource printer_handle, resource font_handle | void',
3633\ 'printer_select_pen(': 'resource printer_handle, resource pen_handle | void',
3634\ 'printer_set_option(': 'resource handle, int option, mixed value | bool',
3635\ 'printer_start_doc(': 'resource handle [, string document] | bool',
3636\ 'printer_start_page(': 'resource handle | bool',
3637\ 'printer_write(': 'resource handle, string content | bool',
3638\ 'printf(': 'string format [, mixed args [, mixed ...]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003639\ 'print(': 'string arg | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003640\ 'print_r(': 'mixed expression [, bool return] | bool',
3641\ 'proc_close(': 'resource process | int',
3642\ 'proc_get_status(': 'resource process | array',
3643\ 'proc_nice(': 'int increment | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003644\ 'proc_open(': 'string cmd, array descriptorspec, array &#38;pipes [, string cwd [, array env [, array other_options]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003645\ 'proc_terminate(': 'resource process [, int signal] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003646\ 'property_exists(': 'mixed class, string property | bool',
3647\ 'ps_add_bookmark(': 'resource psdoc, string text [, int parent [, int open]] | int',
3648\ 'ps_add_launchlink(': 'resource psdoc, float llx, float lly, float urx, float ury, string filename | bool',
3649\ 'ps_add_locallink(': 'resource psdoc, float llx, float lly, float urx, float ury, int page, string dest | bool',
3650\ 'ps_add_note(': 'resource psdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool',
3651\ 'ps_add_pdflink(': 'resource psdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest | bool',
3652\ 'ps_add_weblink(': 'resource psdoc, float llx, float lly, float urx, float ury, string url | bool',
3653\ 'ps_arc(': 'resource psdoc, float x, float y, float radius, float alpha, float beta | bool',
3654\ 'ps_arcn(': 'resource psdoc, float x, float y, float radius, float alpha, float beta | bool',
3655\ 'ps_begin_page(': 'resource psdoc, float width, float height | bool',
3656\ 'ps_begin_pattern(': 'resource psdoc, float width, float height, float xstep, float ystep, int painttype | bool',
3657\ 'ps_begin_template(': 'resource psdoc, float width, float height | bool',
3658\ 'ps_circle(': 'resource psdoc, float x, float y, float radius | bool',
3659\ 'ps_clip(': 'resource psdoc | bool',
3660\ 'ps_close(': 'resource psdoc | bool',
3661\ 'ps_close_image(': 'resource psdoc, int imageid | void',
3662\ 'ps_closepath(': 'resource psdoc | bool',
3663\ 'ps_closepath_stroke(': 'resource psdoc | bool',
3664\ 'ps_continue_text(': 'resource psdoc, string text | bool',
3665\ 'ps_curveto(': 'resource psdoc, float x1, float y1, float x2, float y2, float x3, float y3 | bool',
3666\ 'ps_delete(': 'resource psdoc | bool',
3667\ 'ps_end_page(': 'resource psdoc | bool',
3668\ 'ps_end_pattern(': 'resource psdoc | bool',
3669\ 'ps_end_template(': 'resource psdoc | bool',
3670\ 'ps_fill(': 'resource psdoc | bool',
3671\ 'ps_fill_stroke(': 'resource psdoc | bool',
3672\ 'ps_findfont(': 'resource psdoc, string fontname, string encoding [, bool embed] | int',
3673\ 'ps_get_buffer(': 'resource psdoc | string',
3674\ 'ps_get_parameter(': 'resource psdoc, string name [, float modifier] | string',
3675\ 'ps_get_value(': 'resource psdoc, string name [, float modifier] | float',
3676\ 'ps_hyphenate(': 'resource psdoc, string text | array',
3677\ 'ps_lineto(': 'resource psdoc, float x, float y | bool',
3678\ 'ps_makespotcolor(': 'resource psdoc, string name [, float reserved] | int',
3679\ 'ps_moveto(': 'resource psdoc, float x, float y | bool',
3680\ 'ps_new(': 'void | resource',
3681\ 'ps_open_file(': 'resource psdoc [, string filename] | bool',
3682\ 'ps_open_image_file(': 'resource psdoc, string type, string filename [, string stringparam [, int intparam]] | int',
3683\ 'ps_open_image(': 'resource psdoc, string type, string source, string data, int lenght, int width, int height, int components, int bpc, string params | int',
3684\ 'pspell_add_to_personal(': 'int dictionary_link, string word | bool',
3685\ 'pspell_add_to_session(': 'int dictionary_link, string word | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003686\ 'pspell_check(': 'int dictionary_link, string word | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003687\ 'pspell_clear_session(': 'int dictionary_link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003688\ 'pspell_config_create(': 'string language [, string spelling [, string jargon [, string encoding]]] | int',
3689\ 'pspell_config_data_dir(': 'int conf, string directory | bool',
3690\ 'pspell_config_dict_dir(': 'int conf, string directory | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003691\ 'pspell_config_ignore(': 'int dictionary_link, int n | bool',
3692\ 'pspell_config_mode(': 'int dictionary_link, int mode | bool',
3693\ 'pspell_config_personal(': 'int dictionary_link, string file | bool',
3694\ 'pspell_config_repl(': 'int dictionary_link, string file | bool',
3695\ 'pspell_config_runtogether(': 'int dictionary_link, bool flag | bool',
3696\ 'pspell_config_save_repl(': 'int dictionary_link, bool flag | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003697\ 'pspell_new_config(': 'int config | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003698\ 'pspell_new(': 'string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003699\ 'pspell_new_personal(': 'string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003700\ 'pspell_save_wordlist(': 'int dictionary_link | bool',
3701\ 'pspell_store_replacement(': 'int dictionary_link, string misspelled, string correct | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003702\ 'pspell_suggest(': 'int dictionary_link, string word | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003703\ 'ps_place_image(': 'resource psdoc, int imageid, float x, float y, float scale | bool',
3704\ 'ps_rect(': 'resource psdoc, float x, float y, float width, float height | bool',
3705\ 'ps_restore(': 'resource psdoc | bool',
3706\ 'ps_rotate(': 'resource psdoc, float rot | bool',
3707\ 'ps_save(': 'resource psdoc | bool',
3708\ 'ps_scale(': 'resource psdoc, float x, float y | bool',
3709\ 'ps_set_border_color(': 'resource psdoc, float red, float green, float blue | bool',
3710\ 'ps_set_border_dash(': 'resource psdoc, float black, float white | bool',
3711\ 'ps_set_border_style(': 'resource psdoc, string style, float width | bool',
3712\ 'ps_setcolor(': 'resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4 | bool',
3713\ 'ps_setdash(': 'resource psdoc, float on, float off | bool',
3714\ 'ps_setflat(': 'resource psdoc, float value | bool',
3715\ 'ps_setfont(': 'resource psdoc, int fontid, float size | bool',
3716\ 'ps_setgray(': 'resource psdoc, float gray | bool',
3717\ 'ps_set_info(': 'resource p, string key, string val | bool',
3718\ 'ps_setlinecap(': 'resource psdoc, int type | bool',
3719\ 'ps_setlinejoin(': 'resource psdoc, int type | bool',
3720\ 'ps_setlinewidth(': 'resource psdoc, float width | bool',
3721\ 'ps_setmiterlimit(': 'resource psdoc, float value | bool',
3722\ 'ps_set_parameter(': 'resource psdoc, string name, string value | bool',
3723\ 'ps_setpolydash(': 'resource psdoc, float arr | bool',
3724\ 'ps_set_text_pos(': 'resource psdoc, float x, float y | bool',
3725\ 'ps_set_value(': 'resource psdoc, string name, float value | bool',
3726\ 'ps_shading(': 'resource psdoc, string type, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist | int',
3727\ 'ps_shading_pattern(': 'resource psdoc, int shadingid, string optlist | int',
3728\ 'ps_shfill(': 'resource psdoc, int shadingid | bool',
3729\ 'ps_show_boxed(': 'resource psdoc, string text, float left, float bottom, float width, float height, string hmode [, string feature] | int',
3730\ 'ps_show(': 'resource psdoc, string text | bool',
3731\ 'ps_show_xy(': 'resource psdoc, string text, float x, float y | bool',
3732\ 'ps_string_geometry(': 'resource psdoc, string text [, int fontid [, float size]] | array',
3733\ 'ps_stringwidth(': 'resource psdoc, string text [, int fontid [, float size]] | float',
3734\ 'ps_stroke(': 'resource psdoc | bool',
3735\ 'ps_symbol(': 'resource psdoc, int ord | bool',
3736\ 'ps_symbol_name(': 'resource psdoc, int ord [, int fontid] | string',
3737\ 'ps_symbol_width(': 'resource psdoc, int ord [, int fontid [, float size]] | float',
3738\ 'ps_translate(': 'resource psdoc, float x, float y | bool',
3739\ 'putenv(': 'string setting | bool',
3740\ 'px_close(': 'resource pxdoc | bool',
3741\ 'px_create_fp(': 'resource pxdoc, resource file, array fielddesc | bool',
3742\ 'px_date2string(': 'resource pxdoc, int value, string format | string',
3743\ 'px_delete(': 'resource pxdoc | bool',
3744\ 'px_delete_record(': 'resource pxdoc, int num | bool',
3745\ 'px_get_field(': 'resource pxdoc, int fieldno | array',
3746\ 'px_get_info(': 'resource pxdoc | array',
3747\ 'px_get_parameter(': 'resource pxdoc, string name | string',
3748\ 'px_get_record(': 'resource pxdoc, int num [, int mode] | array',
3749\ 'px_get_schema(': 'resource pxdoc [, int mode] | array',
3750\ 'px_get_value(': 'resource pxdoc, string name | float',
3751\ 'px_insert_record(': 'resource pxdoc, array data | int',
3752\ 'px_new(': 'void | resource',
3753\ 'px_numfields(': 'resource pxdoc | int',
3754\ 'px_numrecords(': 'resource pxdoc | int',
3755\ 'px_open_fp(': 'resource pxdoc, resource file | bool',
3756\ 'px_put_record(': 'resource pxdoc, array record [, int recpos] | bool',
3757\ 'px_retrieve_record(': 'resource pxdoc, int num [, int mode] | array',
3758\ 'px_set_blob_file(': 'resource pxdoc, string filename | bool',
3759\ 'px_set_parameter(': 'resource pxdoc, string name, string value | bool',
3760\ 'px_set_tablename(': 'resource pxdoc, string name | void',
3761\ 'px_set_targetencoding(': 'resource pxdoc, string encoding | bool',
3762\ 'px_set_value(': 'resource pxdoc, string name, float value | bool',
3763\ 'px_timestamp2string(': 'resource pxdoc, float value, string format | string',
3764\ 'px_update_record(': 'resource pxdoc, array data, int num | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003765\ 'qdom_error(': 'void | string',
3766\ 'qdom_tree(': 'string doc | QDomDocument',
3767\ 'quoted_printable_decode(': 'string str | string',
3768\ 'quotemeta(': 'string str | string',
3769\ 'rad2deg(': 'float number | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003770\ 'radius_acct_open(': 'void | resource',
3771\ 'radius_add_server(': 'resource radius_handle, string hostname, int port, string secret, int timeout, int max_tries | bool',
3772\ 'radius_auth_open(': 'void | resource',
3773\ 'radius_close(': 'resource radius_handle | bool',
3774\ 'radius_config(': 'resource radius_handle, string file | bool',
3775\ 'radius_create_request(': 'resource radius_handle, int type | bool',
3776\ 'radius_cvt_addr(': 'string data | string',
3777\ 'radius_cvt_int(': 'string data | int',
3778\ 'radius_cvt_string(': 'string data | string',
3779\ 'radius_demangle(': 'resource radius_handle, string mangled | string',
3780\ 'radius_demangle_mppe_key(': 'resource radius_handle, string mangled | string',
3781\ 'radius_get_attr(': 'resource radius_handle | mixed',
3782\ 'radius_get_vendor_attr(': 'string data | array',
3783\ 'radius_put_addr(': 'resource radius_handle, int type, string addr | bool',
3784\ 'radius_put_attr(': 'resource radius_handle, int type, string value | bool',
3785\ 'radius_put_int(': 'resource radius_handle, int type, int value | bool',
3786\ 'radius_put_string(': 'resource radius_handle, int type, string value | bool',
3787\ 'radius_put_vendor_addr(': 'resource radius_handle, int vendor, int type, string addr | bool',
3788\ 'radius_put_vendor_attr(': 'resource radius_handle, int vendor, int type, string value | bool',
3789\ 'radius_put_vendor_int(': 'resource radius_handle, int vendor, int type, int value | bool',
3790\ 'radius_put_vendor_string(': 'resource radius_handle, int vendor, int type, string value | bool',
3791\ 'radius_request_authenticator(': 'resource radius_handle | string',
3792\ 'radius_send_request(': 'resource radius_handle | int',
3793\ 'radius_server_secret(': 'resource radius_handle | string',
3794\ 'radius_strerror(': 'resource radius_handle | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003795\ 'rand(': '[int min, int max] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003796\ 'range(': 'mixed low, mixed high [, number step] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003797\ 'rar_close(': 'resource rar_file | bool',
3798\ 'rar_entry_get(': 'resource rar_file, string entry_name | RarEntry',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003799\ 'Rar::extract(': 'string dir [, string filepath] | bool',
3800\ 'Rar::getAttr(': 'void | int',
3801\ 'Rar::getCrc(': 'void | int',
3802\ 'Rar::getFileTime(': 'void | string',
3803\ 'Rar::getHostOs(': 'void | int',
3804\ 'Rar::getMethod(': 'void | int',
3805\ 'Rar::getName(': 'void | string',
3806\ 'Rar::getPackedSize(': 'void | int',
3807\ 'Rar::getUnpackedSize(': 'void | int',
3808\ 'Rar::getVersion(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003809\ 'rar_list(': 'resource rar_file | array',
3810\ 'rar_open(': 'string filename [, string password] | resource',
3811\ 'rawurldecode(': 'string str | string',
3812\ 'rawurlencode(': 'string str | string',
3813\ 'readdir(': 'resource dir_handle | string',
3814\ 'readfile(': 'string filename [, bool use_include_path [, resource context]] | int',
3815\ 'readgzfile(': 'string filename [, int use_include_path] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003816\ 'readline_add_history(': 'string line | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003817\ 'readline_callback_handler_install(': 'string prompt, callback callback | bool',
3818\ 'readline_callback_handler_remove(': 'void | bool',
3819\ 'readline_callback_read_char(': 'void | void',
3820\ 'readline_clear_history(': 'void | bool',
3821\ 'readline_completion_function(': 'callback function | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003822\ 'readline(': 'string prompt | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003823\ 'readline_info(': '[string varname [, string newvalue]] | mixed',
3824\ 'readline_list_history(': 'void | array',
3825\ 'readline_on_new_line(': 'void | void',
3826\ 'readline_read_history(': '[string filename] | bool',
3827\ 'readline_redisplay(': 'void | void',
3828\ 'readline_write_history(': '[string filename] | bool',
3829\ 'readlink(': 'string path | string',
3830\ 'realpath(': 'string path | string',
3831\ 'recode_file(': 'string request, resource input, resource output | bool',
3832\ 'recode_string(': 'string request, string string | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003833\ 'RecursiveDirectoryIterator::getChildren(': 'void | object',
3834\ 'RecursiveDirectoryIterator::hasChildren(': '[bool allow_links] | bool',
3835\ 'RecursiveDirectoryIterator::key(': 'void | string',
3836\ 'RecursiveDirectoryIterator::next(': 'void | void',
3837\ 'RecursiveDirectoryIterator::rewind(': 'void | void',
3838\ 'RecursiveIteratorIterator::current(': 'void | mixed',
3839\ 'RecursiveIteratorIterator::getDepth(': 'void | int',
3840\ 'RecursiveIteratorIterator::getSubIterator(': 'void | RecursiveIterator',
3841\ 'RecursiveIteratorIterator::key(': 'void | mixed',
3842\ 'RecursiveIteratorIterator::next(': 'void | void',
3843\ 'RecursiveIteratorIterator::rewind(': 'void | void',
3844\ 'RecursiveIteratorIterator::valid(': 'void | bolean',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003845\ 'register_shutdown_function(': 'callback function [, mixed parameter [, mixed ...]] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003846\ 'register_tick_function(': 'callback function [, mixed arg [, mixed ...]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003847\ 'rename_function(': 'string original_name, string new_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003848\ 'rename(': 'string oldname, string newname [, resource context] | bool',
3849\ 'reset(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003850\ 'restore_error_handler(': 'void | bool',
3851\ 'restore_exception_handler(': 'void | bool',
3852\ 'restore_include_path(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003853\ 'rewinddir(': 'resource dir_handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003854\ 'rewind(': 'resource handle | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003855\ 'rmdir(': 'string dirname [, resource context] | bool',
3856\ 'round(': 'float val [, int precision] | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003857\ 'rpm_close(': 'resource rpmr | boolean',
3858\ 'rpm_get_tag(': 'resource rpmr, int tagnum | mixed',
3859\ 'rpm_is_valid(': 'string filename | boolean',
3860\ 'rpm_open(': 'string filename | resource',
3861\ 'rpm_version(': 'void | string',
3862\ 'rsort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003863\ 'rtrim(': 'string str [, string charlist] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003864\ 'runkit_class_adopt(': 'string classname, string parentname | bool',
3865\ 'runkit_class_emancipate(': 'string classname | bool',
3866\ 'runkit_constant_add(': 'string constname, mixed value | bool',
3867\ 'runkit_constant_redefine(': 'string constname, mixed newvalue | bool',
3868\ 'runkit_constant_remove(': 'string constname | bool',
3869\ 'runkit_function_add(': 'string funcname, string arglist, string code | bool',
3870\ 'runkit_function_copy(': 'string funcname, string targetname | bool',
3871\ 'runkit_function_redefine(': 'string funcname, string arglist, string code | bool',
3872\ 'runkit_function_remove(': 'string funcname | bool',
3873\ 'runkit_function_rename(': 'string funcname, string newname | bool',
3874\ 'runkit_import(': 'string filename [, int flags] | bool',
3875\ 'runkit_lint_file(': 'string filename | bool',
3876\ 'runkit_lint(': 'string code | bool',
3877\ 'runkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool',
3878\ 'runkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool',
3879\ 'runkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool',
3880\ 'runkit_method_remove(': 'string classname, string methodname | bool',
3881\ 'runkit_method_rename(': 'string classname, string methodname, string newname | bool',
3882\ 'runkit_return_value_used(': 'void | bool',
3883\ 'runkit_sandbox_output_handler(': 'object sandbox [, mixed callback] | mixed',
3884\ 'runkit_superglobals(': 'void | array',
3885\ 'satellite_caught_exception(': 'void | bool',
3886\ 'satellite_exception_id(': 'void | string',
3887\ 'satellite_exception_value(': 'void | OrbitStruct',
3888\ 'satellite_get_repository_id(': 'object obj | int',
3889\ 'satellite_load_idl(': 'string file | bool',
3890\ 'satellite_object_to_string(': 'object obj | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003891\ 'scandir(': 'string directory [, int sorting_order [, resource context]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003892\ 'SDO_DAS_ChangeSummary::beginLogging(': 'void | void',
3893\ 'SDO_DAS_ChangeSummary::endLogging(': 'void | void',
3894\ 'SDO_DAS_ChangeSummary::getChangedDataObjects(': 'void | SDO_List',
3895\ 'SDO_DAS_ChangeSummary::getChangeType(': 'SDO_DataObject dataObject | int',
3896\ 'SDO_DAS_ChangeSummary::getOldContainer(': 'SDO_DataObject data_object | SDO_DataObject',
3897\ 'SDO_DAS_ChangeSummary::getOldValues(': 'SDO_DataObject data_object | SDO_List',
3898\ 'SDO_DAS_ChangeSummary::isLogging(': 'void | bool',
3899\ 'SDO_DAS_DataFactory::addPropertyToType(': 'string parent_type_namespace_uri, string parent_type_name, string property_name, string type_namespace_uri, string type_name [, array options] | void',
3900\ 'SDO_DAS_DataFactory::addType(': 'string type_namespace_uri, string type_name [, array options] | void',
3901\ 'SDO_DAS_DataFactory::getDataFactory(': 'void | SDO_DAS_DataFactory',
3902\ 'SDO_DAS_DataObject::getChangeSummary(': 'void | SDO_DAS_ChangeSummary',
3903\ 'SDO_DAS_Relational::applyChanges(': 'PDO database_handle, SDODataObject root_data_object | void',
3904\ 'SDO_DAS_Relational::__construct(': 'array database_metadata [, string application_root_type [, array SDO_containment_references_metadata]] | SDO_DAS_Relational',
3905\ 'SDO_DAS_Relational::createRootDataObject(': 'void | SDODataObject',
3906\ 'SDO_DAS_Relational::executePreparedQuery(': 'PDO database_handle, PDOStatement prepared_statement, array value_list [, array column_specifier] | SDODataObject',
3907\ 'SDO_DAS_Relational::executeQuery(': 'PDO database_handle, string SQL_statement [, array column_specifier] | SDODataObject',
3908\ 'SDO_DAS_Setting::getListIndex(': 'void | int',
3909\ 'SDO_DAS_Setting::getPropertyIndex(': 'void | int',
3910\ 'SDO_DAS_Setting::getPropertyName(': 'void | string',
3911\ 'SDO_DAS_Setting::getValue(': 'void | mixed',
3912\ 'SDO_DAS_Setting::isSet(': 'void | bool',
3913\ 'SDO_DAS_XML::addTypes(': 'string xsd_file | void',
3914\ 'SDO_DAS_XML::createDataObject(': 'string namespace_uri, string type_name | SDO_DataObject',
3915\ 'SDO_DAS_XML::createDocument(': '[string document_element_name] | SDO_DAS_XML_Document',
3916\ 'SDO_DAS_XML::create(': '[string xsd_file] | SDO_DAS_XML',
3917\ 'SDO_DAS_XML_Document::getRootDataObject(': 'void | SDO_DataObject',
3918\ 'SDO_DAS_XML_Document::getRootElementName(': 'void | string',
3919\ 'SDO_DAS_XML_Document::getRootElementURI(': 'void | string',
3920\ 'SDO_DAS_XML_Document::setEncoding(': 'string encoding | void',
3921\ 'SDO_DAS_XML_Document::setXMLDeclaration(': 'bool xmlDeclatation | void',
3922\ 'SDO_DAS_XML_Document::setXMLVersion(': 'string xmlVersion | void',
3923\ 'SDO_DAS_XML::loadFile(': 'string xml_file | SDO_XMLDocument',
3924\ 'SDO_DAS_XML::loadString(': 'string xml_string | SDO_DAS_XML_Document',
3925\ 'SDO_DAS_XML::saveFile(': 'SDO_XMLDocument xdoc, string xml_file [, int indent] | void',
3926\ 'SDO_DAS_XML::saveString(': 'SDO_XMLDocument xdoc [, int indent] | string',
3927\ 'SDO_DataFactory::create(': 'string type_namespace_uri, string type_name | void',
3928\ 'SDO_DataObject::clear(': 'void | void',
3929\ 'SDO_DataObject::createDataObject(': 'mixed identifier | SDO_DataObject',
3930\ 'SDO_DataObject::getContainer(': 'void | SDO_DataObject',
3931\ 'SDO_DataObject::getSequence(': 'void | SDO_Sequence',
3932\ 'SDO_DataObject::getTypeName(': 'void | string',
3933\ 'SDO_DataObject::getTypeNamespaceURI(': 'void | string',
3934\ 'SDO_Exception::getCause(': 'void | mixed',
3935\ 'SDO_List::insert(': 'mixed value [, int index] | void',
3936\ 'SDO_Model_Property::getContainingType(': 'void | SDO_Model_Type',
3937\ 'SDO_Model_Property::getDefault(': 'void | mixed',
3938\ 'SDO_Model_Property::getName(': 'void | string',
3939\ 'SDO_Model_Property::getType(': 'void | SDO_Model_Type',
3940\ 'SDO_Model_Property::isContainment(': 'void | bool',
3941\ 'SDO_Model_Property::isMany(': 'void | bool',
3942\ 'SDO_Model_ReflectionDataObject::__construct(': 'SDO_DataObject data_object | SDO_Model_ReflectionDataObject',
3943\ 'SDO_Model_ReflectionDataObject::export(': 'SDO_Model_ReflectionDataObject rdo [, bool return] | mixed',
3944\ 'SDO_Model_ReflectionDataObject::getContainmentProperty(': 'void | SDO_Model_Property',
3945\ 'SDO_Model_ReflectionDataObject::getInstanceProperties(': 'void | array',
3946\ 'SDO_Model_ReflectionDataObject::getType(': 'void | SDO_Model_Type',
3947\ 'SDO_Model_Type::getBaseType(': 'void | SDO_Model_Type',
3948\ 'SDO_Model_Type::getName(': 'void | string',
3949\ 'SDO_Model_Type::getNamespaceURI(': 'void | string',
3950\ 'SDO_Model_Type::getProperties(': 'void | array',
3951\ 'SDO_Model_Type::getProperty(': 'mixed identifier | SDO_Model_Property',
3952\ 'SDO_Model_Type::isAbstractType(': 'void | bool',
3953\ 'SDO_Model_Type::isDataType(': 'void | bool',
3954\ 'SDO_Model_Type::isInstance(': 'SDO_DataObject data_object | bool',
3955\ 'SDO_Model_Type::isOpenType(': 'void | bool',
3956\ 'SDO_Model_Type::isSequencedType(': 'void | bool',
3957\ 'SDO_Sequence::getProperty(': 'int sequence_index | SDO_Model_Property',
3958\ 'SDO_Sequence::insert(': 'mixed value [, int sequenceIndex [, mixed propertyIdentifier]] | void',
3959\ 'SDO_Sequence::move(': 'int toIndex, int fromIndex | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003960\ 'sem_acquire(': 'resource sem_identifier | bool',
3961\ 'sem_get(': 'int key [, int max_acquire [, int perm [, int auto_release]]] | resource',
3962\ 'sem_release(': 'resource sem_identifier | bool',
3963\ 'sem_remove(': 'resource sem_identifier | bool',
3964\ 'serialize(': 'mixed value | string',
3965\ 'sesam_affected_rows(': 'string result_id | int',
3966\ 'sesam_commit(': 'void | bool',
3967\ 'sesam_connect(': 'string catalog, string schema, string user | bool',
3968\ 'sesam_diagnostic(': 'void | array',
3969\ 'sesam_disconnect(': 'void | bool',
3970\ 'sesam_errormsg(': 'void | string',
3971\ 'sesam_execimm(': 'string query | string',
3972\ 'sesam_fetch_array(': 'string result_id [, int whence [, int offset]] | array',
3973\ 'sesam_fetch_result(': 'string result_id [, int max_rows] | mixed',
3974\ 'sesam_fetch_row(': 'string result_id [, int whence [, int offset]] | array',
3975\ 'sesam_field_array(': 'string result_id | array',
3976\ 'sesam_field_name(': 'string result_id, int index | int',
3977\ 'sesam_free_result(': 'string result_id | int',
3978\ 'sesam_num_fields(': 'string result_id | int',
3979\ 'sesam_query(': 'string query [, bool scrollable] | string',
3980\ 'sesam_rollback(': 'void | bool',
3981\ 'sesam_seek_row(': 'string result_id, int whence [, int offset] | bool',
3982\ 'sesam_settransaction(': 'int isolation_level, int read_only | bool',
3983\ 'session_cache_expire(': '[int new_cache_expire] | int',
3984\ 'session_cache_limiter(': '[string cache_limiter] | string',
3985\ 'session_decode(': 'string data | bool',
3986\ 'session_destroy(': 'void | bool',
3987\ 'session_encode(': 'void | string',
3988\ 'session_get_cookie_params(': 'void | array',
3989\ 'session_id(': '[string id] | string',
3990\ 'session_is_registered(': 'string name | bool',
3991\ 'session_module_name(': '[string module] | string',
3992\ 'session_name(': '[string name] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003993\ 'session_pgsql_add_error(': 'int error_level [, string error_message] | bool',
3994\ 'session_pgsql_get_error(': '[bool with_error_message] | array',
3995\ 'session_pgsql_get_field(': 'void | string',
3996\ 'session_pgsql_reset(': 'void | bool',
3997\ 'session_pgsql_set_field(': 'string value | bool',
3998\ 'session_pgsql_status(': 'void | array',
3999\ 'session_regenerate_id(': '[bool delete_old_session] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004000\ 'session_register(': 'mixed name [, mixed ...] | bool',
4001\ 'session_save_path(': '[string path] | string',
4002\ 'session_set_cookie_params(': 'int lifetime [, string path [, string domain [, bool secure]]] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004003\ 'session_set_save_handler(': 'callback open, callback close, callback read, callback write, callback destroy, callback gc | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004004\ 'session_start(': 'void | bool',
4005\ 'session_unregister(': 'string name | bool',
4006\ 'session_unset(': 'void | void',
4007\ 'session_write_close(': 'void | void',
4008\ 'setcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool',
4009\ 'set_error_handler(': 'callback error_handler [, int error_types] | mixed',
4010\ 'set_exception_handler(': 'callback exception_handler | string',
4011\ 'set_include_path(': 'string new_include_path | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004012\ 'setlocale(': 'int category, string locale [, string ...] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004013\ 'set_magic_quotes_runtime(': 'int new_setting | bool',
4014\ 'setrawcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool',
4015\ 'set_time_limit(': 'int seconds | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004016\ 'settype(': 'mixed &#38;var, string type | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004017\ 'sha1_file(': 'string filename [, bool raw_output] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004018\ 'sha1(': 'string str [, bool raw_output] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004019\ 'shell_exec(': 'string cmd | string',
4020\ 'shm_attach(': 'int key [, int memsize [, int perm]] | int',
4021\ 'shm_detach(': 'int shm_identifier | bool',
4022\ 'shm_get_var(': 'int shm_identifier, int variable_key | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004023\ 'shmop_close(': 'int shmid | void',
4024\ 'shmop_delete(': 'int shmid | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004025\ 'shmop_open(': 'int key, string flags, int mode, int size | int',
4026\ 'shmop_read(': 'int shmid, int start, int count | string',
4027\ 'shmop_size(': 'int shmid | int',
4028\ 'shmop_write(': 'int shmid, string data, int offset | int',
4029\ 'shm_put_var(': 'int shm_identifier, int variable_key, mixed variable | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004030\ 'shm_remove(': 'int shm_identifier | bool',
4031\ 'shm_remove_var(': 'int shm_identifier, int variable_key | bool',
4032\ 'shuffle(': 'array &#38;array | bool',
4033\ 'similar_text(': 'string first, string second [, float &#38;percent] | int',
4034\ 'SimpleXMLElement-&#62;asXML(': '[string filename] | mixed',
4035\ 'simplexml_element-&#62;attributes(': '[string data] | SimpleXMLElement',
4036\ 'simplexml_element-&#62;children(': '[string nsprefix] | SimpleXMLElement',
4037\ 'SimpleXMLElement-&#62;xpath(': 'string path | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004038\ 'simplexml_import_dom(': 'DOMNode node [, string class_name] | SimpleXMLElement',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004039\ 'SimpleXMLIterator::current(': 'void | mixed',
4040\ 'SimpleXMLIterator::getChildren(': 'void | object',
4041\ 'SimpleXMLIterator::hasChildren(': 'void | bool',
4042\ 'SimpleXMLIterator::key(': 'void | mixed',
4043\ 'SimpleXMLIterator::next(': 'void | void',
4044\ 'SimpleXMLIterator::rewind(': 'void | void',
4045\ 'SimpleXMLIterator::valid(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004046\ 'simplexml_load_file(': 'string filename [, string class_name [, int options]] | object',
4047\ 'simplexml_load_string(': 'string data [, string class_name [, int options]] | object',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004048\ 'sinh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004049\ 'sin(': 'float arg | float',
4050\ 'sleep(': 'int seconds | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004051\ 'snmpget(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | string',
4052\ 'snmpgetnext(': 'string host, string community, string object_id [, int timeout [, int retries]] | string',
4053\ 'snmp_get_quick_print(': 'void | bool',
4054\ 'snmp_get_valueretrieval(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004055\ 'snmp_read_mib(': 'string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004056\ 'snmprealwalk(': 'string host, string community, string object_id [, int timeout [, int retries]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004057\ 'snmp_set_enum_print(': 'int enum_print | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004058\ 'snmpset(': 'string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004059\ 'snmp_set_oid_numeric_print(': 'int oid_numeric_print | void',
4060\ 'snmp_set_quick_print(': 'bool quick_print | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004061\ 'snmp_set_valueretrieval(': 'int method | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004062\ 'snmpwalk(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array',
4063\ 'snmpwalkoid(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array',
4064\ 'socket_accept(': 'resource socket | resource',
4065\ 'socket_bind(': 'resource socket, string address [, int port] | bool',
4066\ 'socket_clear_error(': '[resource socket] | void',
4067\ 'socket_close(': 'resource socket | void',
4068\ 'socket_connect(': 'resource socket, string address [, int port] | bool',
4069\ 'socket_create(': 'int domain, int type, int protocol | resource',
4070\ 'socket_create_listen(': 'int port [, int backlog] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004071\ 'socket_create_pair(': 'int domain, int type, int protocol, array &#38;fd | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004072\ 'socket_get_option(': 'resource socket, int level, int optname | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004073\ 'socket_getpeername(': 'resource socket, string &#38;addr [, int &#38;port] | bool',
4074\ 'socket_getsockname(': 'resource socket, string &#38;addr [, int &#38;port] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004075\ 'socket_last_error(': '[resource socket] | int',
4076\ 'socket_listen(': 'resource socket [, int backlog] | bool',
4077\ 'socket_read(': 'resource socket, int length [, int type] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004078\ 'socket_recvfrom(': 'resource socket, string &#38;buf, int len, int flags, string &#38;name [, int &#38;port] | int',
4079\ 'socket_recv(': 'resource socket, string &#38;buf, int len, int flags | int',
4080\ 'socket_select(': 'array &#38;read, array &#38;write, array &#38;except, int tv_sec [, int tv_usec] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004081\ 'socket_send(': 'resource socket, string buf, int len, int flags | int',
4082\ 'socket_sendto(': 'resource socket, string buf, int len, int flags, string addr [, int port] | int',
4083\ 'socket_set_block(': 'resource socket | bool',
4084\ 'socket_set_nonblock(': 'resource socket | bool',
4085\ 'socket_set_option(': 'resource socket, int level, int optname, mixed optval | bool',
4086\ 'socket_shutdown(': 'resource socket [, int how] | bool',
4087\ 'socket_strerror(': 'int errno | string',
4088\ 'socket_write(': 'resource socket, string buffer [, int length] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004089\ 'sort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004090\ 'soundex(': 'string str | string',
4091\ 'spl_classes(': 'void | array',
4092\ 'split(': 'string pattern, string string [, int limit] | array',
4093\ 'spliti(': 'string pattern, string string [, int limit] | array',
4094\ 'sprintf(': 'string format [, mixed args [, mixed ...]] | string',
4095\ 'sqlite_array_query(': 'resource dbhandle, string query [, int result_type [, bool decode_binary]] | array',
4096\ 'sqlite_busy_timeout(': 'resource dbhandle, int milliseconds | void',
4097\ 'sqlite_changes(': 'resource dbhandle | int',
4098\ 'sqlite_close(': 'resource dbhandle | void',
4099\ 'sqlite_column(': 'resource result, mixed index_or_name [, bool decode_binary] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004100\ 'sqlite_create_aggregate(': 'resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args] | void',
4101\ 'sqlite_create_function(': 'resource dbhandle, string function_name, callback callback [, int num_args] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004102\ 'sqlite_current(': 'resource result [, int result_type [, bool decode_binary]] | array',
4103\ 'sqlite_error_string(': 'int error_code | string',
4104\ 'sqlite_escape_string(': 'string item | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004105\ 'sqlite_exec(': 'resource dbhandle, string query [, string &#38;error_msg] | bool',
4106\ 'sqlite_factory(': 'string filename [, int mode [, string &#38;error_message]] | SQLiteDatabase',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004107\ 'sqlite_fetch_all(': 'resource result [, int result_type [, bool decode_binary]] | array',
4108\ 'sqlite_fetch_array(': 'resource result [, int result_type [, bool decode_binary]] | array',
4109\ 'sqlite_fetch_column_types(': 'string table_name, resource dbhandle [, int result_type] | array',
4110\ 'sqlite_fetch_object(': 'resource result [, string class_name [, array ctor_params [, bool decode_binary]]] | object',
4111\ 'sqlite_fetch_single(': 'resource result [, bool decode_binary] | string',
4112\ 'sqlite_field_name(': 'resource result, int field_index | string',
4113\ 'sqlite_has_more(': 'resource result | bool',
4114\ 'sqlite_has_prev(': 'resource result | bool',
4115\ 'sqlite_key(': 'resource result | int',
4116\ 'sqlite_last_error(': 'resource dbhandle | int',
4117\ 'sqlite_last_insert_rowid(': 'resource dbhandle | int',
4118\ 'sqlite_libencoding(': 'void | string',
4119\ 'sqlite_libversion(': 'void | string',
4120\ 'sqlite_next(': 'resource result | bool',
4121\ 'sqlite_num_fields(': 'resource result | int',
4122\ 'sqlite_num_rows(': 'resource result | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004123\ 'sqlite_open(': 'string filename [, int mode [, string &#38;error_message]] | resource',
4124\ 'sqlite_popen(': 'string filename [, int mode [, string &#38;error_message]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004125\ 'sqlite_prev(': 'resource result | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004126\ 'sqlite_query(': 'resource dbhandle, string query [, int result_type [, string &#38;error_msg]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004127\ 'sqlite_rewind(': 'resource result | bool',
4128\ 'sqlite_seek(': 'resource result, int rownum | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004129\ 'sqlite_single_query(': 'resource db, string query [, bool first_row_only [, bool decode_binary]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004130\ 'sqlite_udf_decode_binary(': 'string data | string',
4131\ 'sqlite_udf_encode_binary(': 'string data | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004132\ 'sqlite_unbuffered_query(': 'resource dbhandle, string query [, int result_type [, string &#38;error_msg]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004133\ 'sqlite_valid(': 'resource result | bool',
4134\ 'sql_regcase(': 'string string | string',
4135\ 'sqrt(': 'float arg | float',
4136\ 'srand(': '[int seed] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004137\ 'sscanf(': 'string str, string format [, mixed &#38;...] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004138\ 'ssh2_auth_hostbased_file(': 'resource session, string username, string hostname, string pubkeyfile, string privkeyfile [, string passphrase [, string local_username]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004139\ 'ssh2_auth_none(': 'resource session, string username | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004140\ 'ssh2_auth_password(': 'resource session, string username, string password | bool',
4141\ 'ssh2_auth_pubkey_file(': 'resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase] | bool',
4142\ 'ssh2_connect(': 'string host [, int port [, array methods [, array callbacks]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004143\ 'ssh2_exec(': 'resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]] | resource',
4144\ 'ssh2_fetch_stream(': 'resource channel, int streamid | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004145\ 'ssh2_fingerprint(': 'resource session [, int flags] | string',
4146\ 'ssh2_methods_negotiated(': 'resource session | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004147\ 'ssh2_publickey_add(': 'resource pkey, string algoname, string blob [, bool overwrite [, array attributes]] | bool',
4148\ 'ssh2_publickey_init(': 'resource session | resource',
4149\ 'ssh2_publickey_list(': 'resource pkey | array',
4150\ 'ssh2_publickey_remove(': 'resource pkey, string algoname, string blob | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004151\ 'ssh2_scp_recv(': 'resource session, string remote_file, string local_file | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004152\ 'ssh2_scp_send(': 'resource session, string local_file, string remote_file [, int create_mode] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004153\ 'ssh2_sftp(': 'resource session | resource',
4154\ 'ssh2_sftp_lstat(': 'resource sftp, string path | array',
4155\ 'ssh2_sftp_mkdir(': 'resource sftp, string dirname [, int mode [, bool recursive]] | bool',
4156\ 'ssh2_sftp_readlink(': 'resource sftp, string link | string',
4157\ 'ssh2_sftp_realpath(': 'resource sftp, string filename | string',
4158\ 'ssh2_sftp_rename(': 'resource sftp, string from, string to | bool',
4159\ 'ssh2_sftp_rmdir(': 'resource sftp, string dirname | bool',
4160\ 'ssh2_sftp_stat(': 'resource sftp, string path | array',
4161\ 'ssh2_sftp_symlink(': 'resource sftp, string target, string link | bool',
4162\ 'ssh2_sftp_unlink(': 'resource sftp, string filename | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004163\ 'ssh2_shell(': 'resource session [, string term_type [, array env [, int width [, int height [, int width_height_type]]]]] | resource',
4164\ 'ssh2_tunnel(': 'resource session, string host, int port | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004165\ 'stat(': 'string filename | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004166\ 'stats_absolute_deviation(': 'array a | float',
4167\ 'stats_cdf_beta(': 'float par1, float par2, float par3, int which | float',
4168\ 'stats_cdf_binomial(': 'float par1, float par2, float par3, int which | float',
4169\ 'stats_cdf_cauchy(': 'float par1, float par2, float par3, int which | float',
4170\ 'stats_cdf_chisquare(': 'float par1, float par2, int which | float',
4171\ 'stats_cdf_exponential(': 'float par1, float par2, int which | float',
4172\ 'stats_cdf_f(': 'float par1, float par2, float par3, int which | float',
4173\ 'stats_cdf_gamma(': 'float par1, float par2, float par3, int which | float',
4174\ 'stats_cdf_laplace(': 'float par1, float par2, float par3, int which | float',
4175\ 'stats_cdf_logistic(': 'float par1, float par2, float par3, int which | float',
4176\ 'stats_cdf_negative_binomial(': 'float par1, float par2, float par3, int which | float',
4177\ 'stats_cdf_noncentral_chisquare(': 'float par1, float par2, float par3, int which | float',
4178\ 'stats_cdf_noncentral_f(': 'float par1, float par2, float par3, float par4, int which | float',
4179\ 'stats_cdf_poisson(': 'float par1, float par2, int which | float',
4180\ 'stats_cdf_t(': 'float par1, float par2, int which | float',
4181\ 'stats_cdf_uniform(': 'float par1, float par2, float par3, int which | float',
4182\ 'stats_cdf_weibull(': 'float par1, float par2, float par3, int which | float',
4183\ 'stats_covariance(': 'array a, array b | float',
4184\ 'stats_dens_beta(': 'float x, float a, float b | float',
4185\ 'stats_dens_cauchy(': 'float x, float ave, float stdev | float',
4186\ 'stats_dens_chisquare(': 'float x, float dfr | float',
4187\ 'stats_dens_exponential(': 'float x, float scale | float',
4188\ 'stats_dens_f(': 'float x, float dfr1, float dfr2 | float',
4189\ 'stats_dens_gamma(': 'float x, float shape, float scale | float',
4190\ 'stats_dens_laplace(': 'float x, float ave, float stdev | float',
4191\ 'stats_dens_logistic(': 'float x, float ave, float stdev | float',
4192\ 'stats_dens_negative_binomial(': 'float x, float n, float pi | float',
4193\ 'stats_dens_normal(': 'float x, float ave, float stdev | float',
4194\ 'stats_dens_pmf_binomial(': 'float x, float n, float pi | float',
4195\ 'stats_dens_pmf_hypergeometric(': 'float n1, float n2, float N1, float N2 | float',
4196\ 'stats_dens_pmf_poisson(': 'float x, float lb | float',
4197\ 'stats_dens_t(': 'float x, float dfr | float',
4198\ 'stats_dens_weibull(': 'float x, float a, float b | float',
4199\ 'stats_den_uniform(': 'float x, float a, float b | float',
4200\ 'stats_harmonic_mean(': 'array a | number',
4201\ 'stats_kurtosis(': 'array a | float',
4202\ 'stats_rand_gen_beta(': 'float a, float b | float',
4203\ 'stats_rand_gen_chisquare(': 'float df | float',
4204\ 'stats_rand_gen_exponential(': 'float av | float',
4205\ 'stats_rand_gen_f(': 'float dfn, float dfd | float',
4206\ 'stats_rand_gen_funiform(': 'float low, float high | float',
4207\ 'stats_rand_gen_gamma(': 'float a, float r | float',
4208\ 'stats_rand_gen_ibinomial(': 'int n, float pp | int',
4209\ 'stats_rand_gen_ibinomial_negative(': 'int n, float p | int',
4210\ 'stats_rand_gen_int(': 'void | int',
4211\ 'stats_rand_gen_ipoisson(': 'float mu | int',
4212\ 'stats_rand_gen_iuniform(': 'int low, int high | int',
4213\ 'stats_rand_gen_noncenral_chisquare(': 'float df, float xnonc | float',
4214\ 'stats_rand_gen_noncentral_f(': 'float dfn, float dfd, float xnonc | float',
4215\ 'stats_rand_gen_noncentral_t(': 'float df, float xnonc | float',
4216\ 'stats_rand_gen_normal(': 'float av, float sd | float',
4217\ 'stats_rand_gen_t(': 'float df | float',
4218\ 'stats_rand_get_seeds(': 'void | array',
4219\ 'stats_rand_phrase_to_seeds(': 'string phrase | array',
4220\ 'stats_rand_ranf(': 'void | float',
4221\ 'stats_rand_setall(': 'int iseed1, int iseed2 | void',
4222\ 'stats_skew(': 'array a | float',
4223\ 'stats_standard_deviation(': 'array a [, bool sample] | float',
4224\ 'stats_stat_binomial_coef(': 'int x, int n | float',
4225\ 'stats_stat_correlation(': 'array arr1, array arr2 | float',
4226\ 'stats_stat_gennch(': 'int n | float',
4227\ 'stats_stat_independent_t(': 'array arr1, array arr2 | float',
4228\ 'stats_stat_innerproduct(': 'array arr1, array arr2 | float',
4229\ 'stats_stat_noncentral_t(': 'float par1, float par2, float par3, int which | float',
4230\ 'stats_stat_paired_t(': 'array arr1, array arr2 | float',
4231\ 'stats_stat_percentile(': 'float df, float xnonc | float',
4232\ 'stats_stat_powersum(': 'array arr, float power | float',
4233\ 'stats_variance(': 'array a [, bool sample] | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004234\ 'strcasecmp(': 'string str1, string str2 | int',
4235\ 'strcmp(': 'string str1, string str2 | int',
4236\ 'strcoll(': 'string str1, string str2 | int',
4237\ 'strcspn(': 'string str1, string str2 [, int start [, int length]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004238\ 'stream_bucket_append(': 'resource brigade, resource bucket | void',
4239\ 'stream_bucket_make_writeable(': 'resource brigade | object',
4240\ 'stream_bucket_new(': 'resource stream, string buffer | object',
4241\ 'stream_bucket_prepend(': 'resource brigade, resource bucket | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004242\ 'stream_context_create(': '[array options] | resource',
4243\ 'stream_context_get_default(': '[array options] | resource',
4244\ 'stream_context_get_options(': 'resource stream_or_context | array',
4245\ 'stream_context_set_option(': 'resource stream_or_context, string wrapper, string option, mixed value | bool',
4246\ 'stream_context_set_params(': 'resource stream_or_context, array params | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004247\ 'stream_copy_to_stream(': 'resource source, resource dest [, int maxlength [, int offset]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004248\ 'stream_filter_append(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource',
4249\ 'stream_filter_prepend(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource',
4250\ 'stream_filter_register(': 'string filtername, string classname | bool',
4251\ 'stream_filter_remove(': 'resource stream_filter | bool',
4252\ 'stream_get_contents(': 'resource handle [, int maxlength [, int offset]] | string',
4253\ 'stream_get_filters(': 'void | array',
4254\ 'stream_get_line(': 'resource handle, int length [, string ending] | string',
4255\ 'stream_get_meta_data(': 'resource stream | array',
4256\ 'stream_get_transports(': 'void | array',
4257\ 'stream_get_wrappers(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004258\ 'stream_select(': 'array &#38;read, array &#38;write, array &#38;except, int tv_sec [, int tv_usec] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004259\ 'stream_set_blocking(': 'resource stream, int mode | bool',
4260\ 'stream_set_timeout(': 'resource stream, int seconds [, int microseconds] | bool',
4261\ 'stream_set_write_buffer(': 'resource stream, int buffer | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004262\ 'stream_socket_accept(': 'resource server_socket [, float timeout [, string &#38;peername]] | resource',
4263\ 'stream_socket_client(': 'string remote_socket [, int &#38;errno [, string &#38;errstr [, float timeout [, int flags [, resource context]]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004264\ 'stream_socket_enable_crypto(': 'resource stream, bool enable [, int crypto_type [, resource session_stream]] | mixed',
4265\ 'stream_socket_get_name(': 'resource handle, bool want_peer | string',
4266\ 'stream_socket_pair(': 'int domain, int type, int protocol | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004267\ 'stream_socket_recvfrom(': 'resource socket, int length [, int flags [, string &#38;address]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004268\ 'stream_socket_sendto(': 'resource socket, string data [, int flags [, string address]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004269\ 'stream_socket_server(': 'string local_socket [, int &#38;errno [, string &#38;errstr [, int flags [, resource context]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004270\ 'stream_wrapper_register(': 'string protocol, string classname | bool',
4271\ 'stream_wrapper_restore(': 'string protocol | bool',
4272\ 'stream_wrapper_unregister(': 'string protocol | bool',
4273\ 'strftime(': 'string format [, int timestamp] | string',
4274\ 'stripcslashes(': 'string str | string',
4275\ 'stripos(': 'string haystack, string needle [, int offset] | int',
4276\ 'stripslashes(': 'string str | string',
4277\ 'strip_tags(': 'string str [, string allowable_tags] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004278\ 'str_ireplace(': 'mixed search, mixed replace, mixed subject [, int &#38;count] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004279\ 'stristr(': 'string haystack, string needle | string',
4280\ 'strlen(': 'string string | int',
4281\ 'strnatcasecmp(': 'string str1, string str2 | int',
4282\ 'strnatcmp(': 'string str1, string str2 | int',
4283\ 'strncasecmp(': 'string str1, string str2, int len | int',
4284\ 'strncmp(': 'string str1, string str2, int len | int',
4285\ 'str_pad(': 'string input, int pad_length [, string pad_string [, int pad_type]] | string',
4286\ 'strpbrk(': 'string haystack, string char_list | string',
4287\ 'strpos(': 'string haystack, mixed needle [, int offset] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004288\ 'strptime(': 'string date, string format | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004289\ 'strrchr(': 'string haystack, string needle | string',
4290\ 'str_repeat(': 'string input, int multiplier | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004291\ 'str_replace(': 'mixed search, mixed replace, mixed subject [, int &#38;count] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004292\ 'strrev(': 'string string | string',
4293\ 'strripos(': 'string haystack, string needle [, int offset] | int',
4294\ 'str_rot13(': 'string str | string',
4295\ 'strrpos(': 'string haystack, string needle [, int offset] | int',
4296\ 'str_shuffle(': 'string str | string',
4297\ 'str_split(': 'string string [, int split_length] | array',
4298\ 'strspn(': 'string str1, string str2 [, int start [, int length]] | int',
4299\ 'strstr(': 'string haystack, string needle | string',
4300\ 'strtok(': 'string str, string token | string',
4301\ 'strtolower(': 'string str | string',
4302\ 'strtotime(': 'string time [, int now] | int',
4303\ 'strtoupper(': 'string string | string',
4304\ 'strtr(': 'string str, string from, string to | string',
4305\ 'strval(': 'mixed var | string',
4306\ 'str_word_count(': 'string string [, int format [, string charlist]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004307\ 'substr_compare(': 'string main_str, string str, int offset [, int length [, bool case_insensitivity]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004308\ 'substr_count(': 'string haystack, string needle [, int offset [, int length]] | int',
4309\ 'substr(': 'string string, int start [, int length] | string',
4310\ 'substr_replace(': 'mixed string, string replacement, int start [, int length] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004311\ 'swf_actiongeturl(': 'string url, string target | void',
4312\ 'swf_actiongotoframe(': 'int framenumber | void',
4313\ 'swf_actiongotolabel(': 'string label | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004314\ 'swfaction(': 'string script | SWFAction',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004315\ 'swf_actionnextframe(': 'void | void',
4316\ 'swf_actionplay(': 'void | void',
4317\ 'swf_actionprevframe(': 'void | void',
4318\ 'swf_actionsettarget(': 'string target | void',
4319\ 'swf_actionstop(': 'void | void',
4320\ 'swf_actiontogglequality(': 'void | void',
4321\ 'swf_actionwaitforframe(': 'int framenumber, int skipcount | void',
4322\ 'swf_addbuttonrecord(': 'int states, int shapeid, int depth | void',
4323\ 'swf_addcolor(': 'float r, float g, float b, float a | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004324\ 'swfbitmap-&#62;getheight(': 'void | float',
4325\ 'swfbitmap-&#62;getwidth(': 'void | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004326\ 'swfbitmap(': 'mixed file [, mixed alphafile] | SWFBitmap',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004327\ 'swfbutton-&#62;addaction(': 'resource action, int flags | void',
4328\ 'SWFButton::addASound(': 'SWFSound sound, int flags | SWFSoundInstance',
4329\ 'swfbutton-&#62;addshape(': 'resource shape, int flags | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004330\ 'swfbutton(': 'void | SWFButton',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004331\ 'swfbutton-&#62;setaction(': 'resource action | void',
4332\ 'swfbutton-&#62;setdown(': 'resource shape | void',
4333\ 'swfbutton-&#62;sethit(': 'resource shape | void',
4334\ 'SWFButton::setMenu(': 'int flag | void',
4335\ 'swfbutton-&#62;setover(': 'resource shape | void',
4336\ 'swfbutton-&#62;setup(': 'resource shape | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004337\ 'swf_closefile(': '[int return_file] | void',
4338\ 'swf_definebitmap(': 'int objid, string image_name | void',
4339\ 'swf_definefont(': 'int fontid, string fontname | void',
4340\ 'swf_defineline(': 'int objid, float x1, float y1, float x2, float y2, float width | void',
4341\ 'swf_definepoly(': 'int objid, array coords, int npoints, float width | void',
4342\ 'swf_definerect(': 'int objid, float x1, float y1, float x2, float y2, float width | void',
4343\ 'swf_definetext(': 'int objid, string str, int docenter | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004344\ 'SWFDisplayItem::addAction(': 'SWFAction action, int flags | void',
4345\ 'swfdisplayitem-&#62;addcolor(': 'int red, int green, int blue [, int a] | void',
4346\ 'SWFDisplayItem::endMask(': 'void | void',
4347\ 'SWFDisplayItem::getRot(': 'void | float',
4348\ 'SWFDisplayItem::getX(': 'void | float',
4349\ 'SWFDisplayItem::getXScale(': 'void | float',
4350\ 'SWFDisplayItem::getXSkew(': 'void | float',
4351\ 'SWFDisplayItem::getY(': 'void | float',
4352\ 'SWFDisplayItem::getYScale(': 'void | float',
4353\ 'SWFDisplayItem::getYSkew(': 'void | float',
4354\ 'swfdisplayitem-&#62;move(': 'int dx, int dy | void',
4355\ 'swfdisplayitem-&#62;moveto(': 'int x, int y | void',
4356\ 'swfdisplayitem-&#62;multcolor(': 'int red, int green, int blue [, int a] | void',
4357\ 'swfdisplayitem-&#62;remove(': 'void | void',
4358\ 'swfdisplayitem-&#62;rotate(': 'float ddegrees | void',
4359\ 'swfdisplayitem-&#62;rotateto(': 'float degrees | void',
4360\ 'swfdisplayitem-&#62;scale(': 'int dx, int dy | void',
4361\ 'swfdisplayitem-&#62;scaleto(': 'int x [, int y] | void',
4362\ 'swfdisplayitem-&#62;setdepth(': 'float depth | void',
4363\ 'SWFDisplayItem::setMaskLevel(': 'int level | void',
4364\ 'SWFDisplayItem::setMatrix(': 'float a, float b, float c, float d, float x, float y | void',
4365\ 'swfdisplayitem-&#62;setname(': 'string name | void',
4366\ 'swfdisplayitem-&#62;setratio(': 'float ratio | void',
4367\ 'swfdisplayitem-&#62;skewx(': 'float ddegrees | void',
4368\ 'swfdisplayitem-&#62;skewxto(': 'float degrees | void',
4369\ 'swfdisplayitem-&#62;skewy(': 'float ddegrees | void',
4370\ 'swfdisplayitem-&#62;skewyto(': 'float degrees | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004371\ 'swf_endbutton(': 'void | void',
4372\ 'swf_enddoaction(': 'void | void',
4373\ 'swf_endshape(': 'void | void',
4374\ 'swf_endsymbol(': 'void | void',
4375\ 'swffill(': 'void | SWFFill',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004376\ 'swffill-&#62;moveto(': 'int x, int y | void',
4377\ 'swffill-&#62;rotateto(': 'float degrees | void',
4378\ 'swffill-&#62;scaleto(': 'int x [, int y] | void',
4379\ 'swffill-&#62;skewxto(': 'float x | void',
4380\ 'swffill-&#62;skewyto(': 'float y | void',
4381\ 'SWFFontChar::addChars(': 'string char | void',
4382\ 'SWFFontChar::addUTF8Chars(': 'string char | void',
4383\ 'SWFFont::getAscent(': 'void | float',
4384\ 'SWFFont::getDescent(': 'void | float',
4385\ 'SWFFont::getLeading(': 'void | float',
4386\ 'SWFFont::getShape(': 'int code | string',
4387\ 'SWFFont::getUTF8Width(': 'string string | float',
4388\ 'swffont-&#62;getwidth(': 'string string | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004389\ 'swffont(': 'string filename | SWFFont',
4390\ 'swf_fontsize(': 'float size | void',
4391\ 'swf_fontslant(': 'float slant | void',
4392\ 'swf_fonttracking(': 'float tracking | void',
4393\ 'swf_getbitmapinfo(': 'int bitmapid | array',
4394\ 'swf_getfontinfo(': 'void | array',
4395\ 'swf_getframe(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004396\ 'swfgradient-&#62;addentry(': 'float ratio, int red, int green, int blue [, int a] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004397\ 'swfgradient(': 'void | SWFGradient',
4398\ 'swf_labelframe(': 'string name | void',
4399\ 'swf_lookat(': 'float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist | void',
4400\ 'swf_modifyobject(': 'int depth, int how | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004401\ 'swfmorph-&#62;getshape1(': 'void | mixed',
4402\ 'swfmorph-&#62;getshape2(': 'void | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004403\ 'swfmorph(': 'void | SWFMorph',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004404\ 'SWFMovie::addExport(': 'SWFCharacter char, string name | void',
4405\ 'SWFMovie::addFont(': 'SWFFont font | SWFFontChar',
4406\ 'swfmovie-&#62;add(': 'resource instance | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004407\ 'swfmovie(': 'void | SWFMovie',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004408\ 'SWFMovie::importChar(': 'string libswf, string name | SWFSprite',
4409\ 'SWFMovie::importFont(': 'string libswf, string name | SWFFontChar',
4410\ 'SWFMovie::labelFrame(': 'string label | void',
4411\ 'swfmovie-&#62;nextframe(': 'void | void',
4412\ 'swfmovie-&#62;output(': '[int compression] | int',
4413\ 'swfmovie-&#62;remove(': 'resource instance | void',
4414\ 'swfmovie-&#62;save(': 'string filename [, int compression] | int',
4415\ 'SWFMovie::saveToFile(': 'stream x [, int compression] | int',
4416\ 'swfmovie-&#62;setbackground(': 'int red, int green, int blue | void',
4417\ 'swfmovie-&#62;setdimension(': 'int width, int height | void',
4418\ 'swfmovie-&#62;setframes(': 'string numberofframes | void',
4419\ 'swfmovie-&#62;setrate(': 'int rate | void',
4420\ 'SWFMovie::startSound(': 'SWFSound sound | SWFSoundInstance',
4421\ 'SWFMovie::stopSound(': 'SWFSound sound | void',
4422\ 'swfmovie-&#62;streammp3(': 'mixed mp3File | void',
4423\ 'SWFMovie::writeExports(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004424\ 'swf_mulcolor(': 'float r, float g, float b, float a | void',
4425\ 'swf_nextid(': 'void | int',
4426\ 'swf_oncondition(': 'int transition | void',
4427\ 'swf_openfile(': 'string filename, float width, float height, float framerate, float r, float g, float b | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004428\ 'swf_ortho2(': 'float xmin, float xmax, float ymin, float ymax | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004429\ 'swf_ortho(': 'float xmin, float xmax, float ymin, float ymax, float zmin, float zmax | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004430\ 'swf_perspective(': 'float fovy, float aspect, float near, float far | void',
4431\ 'swf_placeobject(': 'int objid, int depth | void',
4432\ 'swf_polarview(': 'float dist, float azimuth, float incidence, float twist | void',
4433\ 'swf_popmatrix(': 'void | void',
4434\ 'swf_posround(': 'int round | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004435\ 'SWFPrebuiltClip(': '[string file] | SWFPrebuiltClip',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004436\ 'swf_pushmatrix(': 'void | void',
4437\ 'swf_removeobject(': 'int depth | void',
4438\ 'swf_rotate(': 'float angle, string axis | void',
4439\ 'swf_scale(': 'float x, float y, float z | void',
4440\ 'swf_setfont(': 'int fontid | void',
4441\ 'swf_setframe(': 'int framenumber | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004442\ 'SWFShape-&#62;addFill(': 'int red, int green, int blue [, int a] | SWFFill',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004443\ 'swf_shapearc(': 'float x, float y, float r, float ang1, float ang2 | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004444\ 'swf_shapecurveto3(': 'float x1, float y1, float x2, float y2, float x3, float y3 | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004445\ 'swf_shapecurveto(': 'float x1, float y1, float x2, float y2 | void',
4446\ 'SWFShape::drawArc(': 'float r, float startAngle, float endAngle | void',
4447\ 'SWFShape::drawCircle(': 'float r | void',
4448\ 'SWFShape::drawCubic(': 'float bx, float by, float cx, float cy, float dx, float dy | int',
4449\ 'SWFShape::drawCubicTo(': 'float bx, float by, float cx, float cy, float dx, float dy | int',
4450\ 'swfshape-&#62;drawcurve(': 'int controldx, int controldy, int anchordx, int anchordy [, int targetdx, int targetdy] | int',
4451\ 'swfshape-&#62;drawcurveto(': 'int controlx, int controly, int anchorx, int anchory [, int targetx, int targety] | int',
4452\ 'SWFShape::drawGlyph(': 'SWFFont font, string character [, int size] | void',
4453\ 'swfshape-&#62;drawline(': 'int dx, int dy | void',
4454\ 'swfshape-&#62;drawlineto(': 'int x, int y | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004455\ 'swf_shapefillbitmapclip(': 'int bitmapid | void',
4456\ 'swf_shapefillbitmaptile(': 'int bitmapid | void',
4457\ 'swf_shapefilloff(': 'void | void',
4458\ 'swf_shapefillsolid(': 'float r, float g, float b, float a | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004459\ 'swfshape(': 'void | SWFShape',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004460\ 'swf_shapelinesolid(': 'float r, float g, float b, float a, float width | void',
4461\ 'swf_shapelineto(': 'float x, float y | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004462\ 'swfshape-&#62;movepen(': 'int dx, int dy | void',
4463\ 'swfshape-&#62;movepento(': 'int x, int y | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004464\ 'swf_shapemoveto(': 'float x, float y | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004465\ 'swfshape-&#62;setleftfill(': 'swfgradient fill | void',
4466\ 'swfshape-&#62;setline(': 'swfshape shape | void',
4467\ 'swfshape-&#62;setrightfill(': 'swfgradient fill | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004468\ 'swf_showframe(': 'void | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004469\ 'SWFSound(': 'string filename, int flags | SWFSound',
4470\ 'SWFSoundInstance::loopCount(': 'int point | void',
4471\ 'SWFSoundInstance::loopInPoint(': 'int point | void',
4472\ 'SWFSoundInstance::loopOutPoint(': 'int point | void',
4473\ 'SWFSoundInstance::noMultiple(': 'void | void',
4474\ 'swfsprite-&#62;add(': 'resource object | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004475\ 'swfsprite(': 'void | SWFSprite',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004476\ 'SWFSprite::labelFrame(': 'string label | void',
4477\ 'swfsprite-&#62;nextframe(': 'void | void',
4478\ 'swfsprite-&#62;remove(': 'resource object | void',
4479\ 'swfsprite-&#62;setframes(': 'int numberofframes | void',
4480\ 'SWFSprite::startSound(': 'SWFSound sound | SWFSoundInstance',
4481\ 'SWFSprite::stopSound(': 'SWFSound sound | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004482\ 'swf_startbutton(': 'int objid, int type | void',
4483\ 'swf_startdoaction(': 'void | void',
4484\ 'swf_startshape(': 'int objid | void',
4485\ 'swf_startsymbol(': 'int objid | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004486\ 'swftext-&#62;addstring(': 'string string | void',
4487\ 'SWFText::addUTF8String(': 'string text | void',
4488\ 'SWFTextField::addChars(': 'string chars | void',
4489\ 'swftextfield-&#62;addstring(': 'string string | void',
4490\ 'swftextfield-&#62;align(': 'int alignement | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004491\ 'swftextfield(': '[int flags] | SWFTextField',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004492\ 'swftextfield-&#62;setbounds(': 'int width, int height | void',
4493\ 'swftextfield-&#62;setcolor(': 'int red, int green, int blue [, int a] | void',
4494\ 'swftextfield-&#62;setfont(': 'string font | void',
4495\ 'swftextfield-&#62;setheight(': 'int height | void',
4496\ 'swftextfield-&#62;setindentation(': 'int width | void',
4497\ 'swftextfield-&#62;setleftmargin(': 'int width | void',
4498\ 'swftextfield-&#62;setlinespacing(': 'int height | void',
4499\ 'swftextfield-&#62;setmargins(': 'int left, int right | void',
4500\ 'swftextfield-&#62;setname(': 'string name | void',
4501\ 'SWFTextField::setPadding(': 'float padding | void',
4502\ 'swftextfield-&#62;setrightmargin(': 'int width | void',
4503\ 'SWFText::getAscent(': 'void | float',
4504\ 'SWFText::getDescent(': 'void | float',
4505\ 'SWFText::getLeading(': 'void | float',
4506\ 'SWFText::getUTF8Width(': 'string string | float',
4507\ 'swftext-&#62;getwidth(': 'string string | float',
4508\ 'swftext(': 'void | SWFText',
4509\ 'swftext-&#62;moveto(': 'int x, int y | void',
4510\ 'swftext-&#62;setcolor(': 'int red, int green, int blue [, int a] | void',
4511\ 'swftext-&#62;setfont(': 'string font | void',
4512\ 'swftext-&#62;setheight(': 'int height | void',
4513\ 'swftext-&#62;setspacing(': 'float spacing | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004514\ 'swf_textwidth(': 'string str | float',
4515\ 'swf_translate(': 'float x, float y, float z | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004516\ 'SWFVideoStream::getNumFrames(': 'void | int',
4517\ 'SWFVideoStream(': '[string file] | SWFVideoStream',
4518\ 'SWFVideoStream::setDimension(': 'int x, int y | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004519\ 'swf_viewport(': 'float xmin, float xmax, float ymin, float ymax | void',
4520\ 'sybase_affected_rows(': '[resource link_identifier] | int',
4521\ 'sybase_close(': '[resource link_identifier] | bool',
4522\ 'sybase_connect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource',
4523\ 'sybase_data_seek(': 'resource result_identifier, int row_number | bool',
4524\ 'sybase_deadlock_retry_count(': 'int retry_count | void',
4525\ 'sybase_fetch_array(': 'resource result | array',
4526\ 'sybase_fetch_assoc(': 'resource result | array',
4527\ 'sybase_fetch_field(': 'resource result [, int field_offset] | object',
4528\ 'sybase_fetch_object(': 'resource result [, mixed object] | object',
4529\ 'sybase_fetch_row(': 'resource result | array',
4530\ 'sybase_field_seek(': 'resource result, int field_offset | bool',
4531\ 'sybase_free_result(': 'resource result | bool',
4532\ 'sybase_get_last_message(': 'void | string',
4533\ 'sybase_min_client_severity(': 'int severity | void',
4534\ 'sybase_min_error_severity(': 'int severity | void',
4535\ 'sybase_min_message_severity(': 'int severity | void',
4536\ 'sybase_min_server_severity(': 'int severity | void',
4537\ 'sybase_num_fields(': 'resource result | int',
4538\ 'sybase_num_rows(': 'resource result | int',
4539\ 'sybase_pconnect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004540\ 'sybase_query(': 'string query [, resource link_identifier] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004541\ 'sybase_result(': 'resource result, int row, mixed field | string',
4542\ 'sybase_select_db(': 'string database_name [, resource link_identifier] | bool',
4543\ 'sybase_set_message_handler(': 'callback handler [, resource connection] | bool',
4544\ 'sybase_unbuffered_query(': 'string query, resource link_identifier [, bool store_result] | resource',
4545\ 'symlink(': 'string target, string link | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004546\ 'sys_getloadavg(': 'void | array',
4547\ 'syslog(': 'int priority, string message | bool',
4548\ 'system(': 'string command [, int &#38;return_var] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004549\ 'tanh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004550\ 'tan(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004551\ 'tcpwrap_check(': 'string daemon, string address [, string user [, bool nodns]] | bool',
4552\ 'tempnam(': 'string dir, string prefix | string',
4553\ 'textdomain(': 'string text_domain | string',
4554\ 'tidy_access_count(': 'tidy object | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004555\ 'tidy_config_count(': 'tidy object | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004556\ 'tidy::__construct(': '[string filename [, mixed config [, string encoding [, bool use_include_path]]]] | tidy',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004557\ 'tidy_error_count(': 'tidy object | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004558\ 'tidy_get_output(': 'tidy object | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004559\ 'tidy_load_config(': 'string filename, string encoding | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004560\ 'tidy_node-&#62;get_attr(': 'int attrib_id | tidy_attr',
4561\ 'tidy_node-&#62;get_nodes(': 'int node_id | array',
4562\ 'tidyNode-&#62;hasChildren(': 'void | bool',
4563\ 'tidyNode-&#62;hasSiblings(': 'void | bool',
4564\ 'tidyNode-&#62;isAsp(': 'void | bool',
4565\ 'tidyNode-&#62;isComment(': 'void | bool',
4566\ 'tidyNode-&#62;isHtml(': 'void | bool',
4567\ 'tidyNode-&#62;isJste(': 'void | bool',
4568\ 'tidyNode-&#62;isPhp(': 'void | bool',
4569\ 'tidyNode-&#62;isText(': 'void | bool',
4570\ 'tidy_node-&#62;next(': 'void | tidy_node',
4571\ 'tidy_node-&#62;prev(': 'void | tidy_node',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004572\ 'tidy_repair_file(': 'string filename [, mixed config [, string encoding [, bool use_include_path]]] | string',
4573\ 'tidy_repair_string(': 'string data [, mixed config [, string encoding]] | string',
4574\ 'tidy_reset_config(': 'void | bool',
4575\ 'tidy_save_config(': 'string filename | bool',
4576\ 'tidy_set_encoding(': 'string encoding | bool',
4577\ 'tidy_setopt(': 'string option, mixed value | bool',
4578\ 'tidy_warning_count(': 'tidy object | int',
4579\ 'time(': 'void | int',
4580\ 'time_nanosleep(': 'int seconds, int nanoseconds | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004581\ 'time_sleep_until(': 'float timestamp | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004582\ 'tmpfile(': 'void | resource',
4583\ 'token_get_all(': 'string source | array',
4584\ 'token_name(': 'int token | string',
4585\ 'touch(': 'string filename [, int time [, int atime]] | bool',
4586\ 'trigger_error(': 'string error_msg [, int error_type] | bool',
4587\ 'trim(': 'string str [, string charlist] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004588\ 'uasort(': 'array &#38;array, callback cmp_function | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004589\ 'ucfirst(': 'string str | string',
4590\ 'ucwords(': 'string str | string',
4591\ 'udm_add_search_limit(': 'resource agent, int var, string val | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004592\ 'udm_alloc_agent_array(': 'array databases | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004593\ 'udm_alloc_agent(': 'string dbaddr [, string dbmode] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004594\ 'udm_api_version(': 'void | int',
4595\ 'udm_cat_list(': 'resource agent, string category | array',
4596\ 'udm_cat_path(': 'resource agent, string category | array',
4597\ 'udm_check_charset(': 'resource agent, string charset | bool',
4598\ 'udm_check_stored(': 'resource agent, int link, string doc_id | int',
4599\ 'udm_clear_search_limits(': 'resource agent | bool',
4600\ 'udm_close_stored(': 'resource agent, int link | int',
4601\ 'udm_crc32(': 'resource agent, string str | int',
4602\ 'udm_errno(': 'resource agent | int',
4603\ 'udm_error(': 'resource agent | string',
4604\ 'udm_find(': 'resource agent, string query | resource',
4605\ 'udm_free_agent(': 'resource agent | int',
4606\ 'udm_free_ispell_data(': 'int agent | bool',
4607\ 'udm_free_res(': 'resource res | bool',
4608\ 'udm_get_doc_count(': 'resource agent | int',
4609\ 'udm_get_res_field(': 'resource res, int row, int field | string',
4610\ 'udm_get_res_param(': 'resource res, int param | string',
4611\ 'udm_hash32(': 'resource agent, string str | int',
4612\ 'udm_load_ispell_data(': 'resource agent, int var, string val1, string val2, int flag | bool',
4613\ 'udm_open_stored(': 'resource agent, string storedaddr | int',
4614\ 'udm_set_agent_param(': 'resource agent, int var, string val | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004615\ 'uksort(': 'array &#38;array, callback cmp_function | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004616\ 'umask(': '[int mask] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004617\ 'unicode_encode(': 'unicode input, string encoding | string',
4618\ 'unicode_semantics(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004619\ 'uniqid(': '[string prefix [, bool more_entropy]] | string',
4620\ 'unixtojd(': '[int timestamp] | int',
4621\ 'unlink(': 'string filename [, resource context] | bool',
4622\ 'unpack(': 'string format, string data | array',
4623\ 'unregister_tick_function(': 'string function_name | void',
4624\ 'unserialize(': 'string str | mixed',
4625\ 'unset(': 'mixed var [, mixed var [, mixed ...]] | void',
4626\ 'urldecode(': 'string str | string',
4627\ 'urlencode(': 'string str | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004628\ 'use_soap_error_handler(': '[bool handler] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004629\ 'usleep(': 'int micro_seconds | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004630\ 'usort(': 'array &#38;array, callback cmp_function | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004631\ 'utf8_decode(': 'string data | string',
4632\ 'utf8_encode(': 'string data | string',
4633\ 'var_dump(': 'mixed expression [, mixed expression [, ...]] | void',
4634\ 'var_export(': 'mixed expression [, bool return] | mixed',
4635\ 'variant_abs(': 'mixed val | mixed',
4636\ 'variant_add(': 'mixed left, mixed right | mixed',
4637\ 'variant_and(': 'mixed left, mixed right | mixed',
4638\ 'variant_cast(': 'variant variant, int type | variant',
4639\ 'variant_cat(': 'mixed left, mixed right | mixed',
4640\ 'variant_cmp(': 'mixed left, mixed right [, int lcid [, int flags]] | int',
4641\ 'variant_date_from_timestamp(': 'int timestamp | variant',
4642\ 'variant_date_to_timestamp(': 'variant variant | int',
4643\ 'variant_div(': 'mixed left, mixed right | mixed',
4644\ 'variant_eqv(': 'mixed left, mixed right | mixed',
4645\ 'variant_fix(': 'mixed variant | mixed',
4646\ 'variant_get_type(': 'variant variant | int',
4647\ 'variant_idiv(': 'mixed left, mixed right | mixed',
4648\ 'variant_imp(': 'mixed left, mixed right | mixed',
4649\ 'variant_int(': 'mixed variant | mixed',
4650\ 'variant_mod(': 'mixed left, mixed right | mixed',
4651\ 'variant_mul(': 'mixed left, mixed right | mixed',
4652\ 'variant_neg(': 'mixed variant | mixed',
4653\ 'variant_not(': 'mixed variant | mixed',
4654\ 'variant_or(': 'mixed left, mixed right | mixed',
4655\ 'variant_pow(': 'mixed left, mixed right | mixed',
4656\ 'variant_round(': 'mixed variant, int decimals | mixed',
4657\ 'variant_set(': 'variant variant, mixed value | void',
4658\ 'variant_set_type(': 'variant variant, int type | void',
4659\ 'variant_sub(': 'mixed left, mixed right | mixed',
4660\ 'variant_xor(': 'mixed left, mixed right | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004661\ 'version_compare(': 'string version1, string version2 [, string operator] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004662\ 'vfprintf(': 'resource handle, string format, array args | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004663\ 'virtual(': 'string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004664\ 'vpopmail_add_alias_domain_ex(': 'string olddomain, string newdomain | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004665\ 'vpopmail_add_alias_domain(': 'string domain, string aliasdomain | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004666\ 'vpopmail_add_domain_ex(': 'string domain, string passwd [, string quota [, string bounce [, bool apop]]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004667\ 'vpopmail_add_domain(': 'string domain, string dir, int uid, int gid | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004668\ 'vpopmail_add_user(': 'string user, string domain, string password [, string gecos [, bool apop]] | bool',
4669\ 'vpopmail_alias_add(': 'string user, string domain, string alias | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004670\ 'vpopmail_alias_del_domain(': 'string domain | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004671\ 'vpopmail_alias_del(': 'string user, string domain | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004672\ 'vpopmail_alias_get_all(': 'string domain | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004673\ 'vpopmail_alias_get(': 'string alias, string domain | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004674\ 'vpopmail_auth_user(': 'string user, string domain, string password [, string apop] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004675\ 'vpopmail_del_domain_ex(': 'string domain | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004676\ 'vpopmail_del_domain(': 'string domain | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004677\ 'vpopmail_del_user(': 'string user, string domain | bool',
4678\ 'vpopmail_error(': 'void | string',
4679\ 'vpopmail_passwd(': 'string user, string domain, string password [, bool apop] | bool',
4680\ 'vpopmail_set_user_quota(': 'string user, string domain, string quota | bool',
4681\ 'vprintf(': 'string format, array args | int',
4682\ 'vsprintf(': 'string format, array args | string',
4683\ 'w32api_deftype(': 'string typename, string member1_type, string member1_name [, string ... [, string ...]] | bool',
4684\ 'w32api_init_dtype(': 'string typename, mixed value [, mixed ...] | resource',
4685\ 'w32api_invoke_function(': 'string funcname, mixed argument [, mixed ...] | mixed',
4686\ 'w32api_register_function(': 'string library, string function_name, string return_type | bool',
4687\ 'w32api_set_call_method(': 'int method | void',
4688\ 'wddx_add_vars(': 'int packet_id, mixed name_var [, mixed ...] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004689\ 'wddx_packet_end(': 'resource packet_id | string',
4690\ 'wddx_packet_start(': '[string comment] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004691\ 'wddx_serialize_value(': 'mixed var [, string comment] | string',
4692\ 'wddx_serialize_vars(': 'mixed var_name [, mixed ...] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004693\ 'wddx_unserialize(': 'string packet | mixed',
4694\ 'win32_create_service(': 'array details [, string machine] | int',
4695\ 'win32_delete_service(': 'string servicename [, string machine] | int',
4696\ 'win32_get_last_control_message(': 'void | int',
4697\ 'win32_ps_list_procs(': 'void | array',
4698\ 'win32_ps_stat_mem(': 'void | array',
4699\ 'win32_ps_stat_proc(': '[int pid] | array',
4700\ 'win32_query_service_status(': 'string servicename [, string machine] | mixed',
4701\ 'win32_set_service_status(': 'int status | bool',
4702\ 'win32_start_service_ctrl_dispatcher(': 'string name | bool',
4703\ 'win32_start_service(': 'string servicename [, string machine] | int',
4704\ 'win32_stop_service(': 'string servicename [, string machine] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004705\ 'wordwrap(': 'string str [, int width [, string break [, bool cut]]] | string',
4706\ 'xattr_get(': 'string filename, string name [, int flags] | string',
4707\ 'xattr_list(': 'string filename [, int flags] | array',
4708\ 'xattr_remove(': 'string filename, string name [, int flags] | bool',
4709\ 'xattr_set(': 'string filename, string name, string value [, int flags] | bool',
4710\ 'xattr_supported(': 'string filename [, int flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004711\ 'xdiff_file_diff_binary(': 'string file1, string file2, string dest | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004712\ 'xdiff_file_diff(': 'string file1, string file2, string dest [, int context [, bool minimal]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004713\ 'xdiff_file_merge3(': 'string file1, string file2, string file3, string dest | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004714\ 'xdiff_file_patch_binary(': 'string file, string patch, string dest | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004715\ 'xdiff_file_patch(': 'string file, string patch, string dest [, int flags] | mixed',
4716\ 'xdiff_string_diff_binary(': 'string str1, string str2 | string',
4717\ 'xdiff_string_diff(': 'string str1, string str2 [, int context [, bool minimal]] | string',
4718\ 'xdiff_string_merge3(': 'string str1, string str2, string str3 [, string &#38;error] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004719\ 'xdiff_string_patch_binary(': 'string str, string patch | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004720\ 'xdiff_string_patch(': 'string str, string patch [, int flags [, string &#38;error]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004721\ 'xml_error_string(': 'int code | string',
4722\ 'xml_get_current_byte_index(': 'resource parser | int',
4723\ 'xml_get_current_column_number(': 'resource parser | int',
4724\ 'xml_get_current_line_number(': 'resource parser | int',
4725\ 'xml_get_error_code(': 'resource parser | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004726\ 'xml_parse(': 'resource parser, string data [, bool is_final] | int',
4727\ 'xml_parse_into_struct(': 'resource parser, string data, array &#38;values [, array &#38;index] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004728\ 'xml_parser_create(': '[string encoding] | resource',
4729\ 'xml_parser_create_ns(': '[string encoding [, string separator]] | resource',
4730\ 'xml_parser_free(': 'resource parser | bool',
4731\ 'xml_parser_get_option(': 'resource parser, int option | mixed',
4732\ 'xml_parser_set_option(': 'resource parser, int option, mixed value | bool',
4733\ 'xmlrpc_decode(': 'string xml [, string encoding] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004734\ 'xmlrpc_decode_request(': 'string xml, string &#38;method [, string encoding] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004735\ 'xmlrpc_encode(': 'mixed value | string',
4736\ 'xmlrpc_encode_request(': 'string method, mixed params [, array output_options] | string',
4737\ 'xmlrpc_get_type(': 'mixed value | string',
4738\ 'xmlrpc_is_fault(': 'array arg | bool',
4739\ 'xmlrpc_parse_method_descriptions(': 'string xml | array',
4740\ 'xmlrpc_server_add_introspection_data(': 'resource server, array desc | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004741\ 'xmlrpc_server_call_method(': 'resource server, string xml, mixed user_data [, array output_options] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004742\ 'xmlrpc_server_create(': 'void | resource',
4743\ 'xmlrpc_server_destroy(': 'resource server | int',
4744\ 'xmlrpc_server_register_introspection_callback(': 'resource server, string function | bool',
4745\ 'xmlrpc_server_register_method(': 'resource server, string method_name, string function | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004746\ 'xmlrpc_set_type(': 'string &#38;value, string type | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004747\ 'xml_set_character_data_handler(': 'resource parser, callback handler | bool',
4748\ 'xml_set_default_handler(': 'resource parser, callback handler | bool',
4749\ 'xml_set_element_handler(': 'resource parser, callback start_element_handler, callback end_element_handler | bool',
4750\ 'xml_set_end_namespace_decl_handler(': 'resource parser, callback handler | bool',
4751\ 'xml_set_external_entity_ref_handler(': 'resource parser, callback handler | bool',
4752\ 'xml_set_notation_decl_handler(': 'resource parser, callback handler | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004753\ 'xml_set_object(': 'resource parser, object &#38;object | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004754\ 'xml_set_processing_instruction_handler(': 'resource parser, callback handler | bool',
4755\ 'xml_set_start_namespace_decl_handler(': 'resource parser, callback handler | bool',
4756\ 'xml_set_unparsed_entity_decl_handler(': 'resource parser, callback handler | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004757\ 'xmlwriter_end_attribute(': 'resource xmlwriter | bool',
4758\ 'xmlwriter_end_cdata(': 'resource xmlwriter | bool',
4759\ 'xmlwriter_end_comment(': 'resource xmlwriter | bool',
4760\ 'xmlwriter_end_document(': 'resource xmlwriter | bool',
4761\ 'xmlwriter_end_dtd_attlist(': 'resource xmlwriter | bool',
4762\ 'xmlwriter_end_dtd_element(': 'resource xmlwriter | bool',
4763\ 'xmlwriter_end_dtd_entity(': 'resource xmlwriter | bool',
4764\ 'xmlwriter_end_dtd(': 'resource xmlwriter | bool',
4765\ 'xmlwriter_end_element(': 'resource xmlwriter | bool',
4766\ 'xmlwriter_end_pi(': 'resource xmlwriter | bool',
4767\ 'xmlwriter_flush(': 'resource xmlwriter [, bool empty] | mixed',
4768\ 'xmlwriter_full_end_element(': 'resource xmlwriter | bool',
4769\ 'xmlwriter_open_memory(': 'void | resource',
4770\ 'xmlwriter_open_uri(': 'string source | resource',
4771\ 'xmlwriter_output_memory(': 'resource xmlwriter [, bool flush] | string',
4772\ 'xmlwriter_set_indent(': 'resource xmlwriter, bool indent | bool',
4773\ 'xmlwriter_set_indent_string(': 'resource xmlwriter, string indentString | bool',
4774\ 'xmlwriter_start_attribute(': 'resource xmlwriter, string name | bool',
4775\ 'xmlwriter_start_attribute_ns(': 'resource xmlwriter, string prefix, string name, string uri | bool',
4776\ 'xmlwriter_start_cdata(': 'resource xmlwriter | bool',
4777\ 'xmlwriter_start_comment(': 'resource xmlwriter | bool',
4778\ 'xmlwriter_start_document(': 'resource xmlwriter [, string version [, string encoding [, string standalone]]] | bool',
4779\ 'xmlwriter_start_dtd_attlist(': 'resource xmlwriter, string name | bool',
4780\ 'xmlwriter_start_dtd_element(': 'resource xmlwriter, string name | bool',
4781\ 'xmlwriter_start_dtd_entity(': 'resource xmlwriter, string name, bool isparam | bool',
4782\ 'xmlwriter_start_dtd(': 'resource xmlwriter, string name [, string pubid [, string sysid]] | bool',
4783\ 'xmlwriter_start_element(': 'resource xmlwriter, string name | bool',
4784\ 'xmlwriter_start_element_ns(': 'resource xmlwriter, string prefix, string name, string uri | bool',
4785\ 'xmlwriter_start_pi(': 'resource xmlwriter, string target | bool',
4786\ 'xmlwriter_text(': 'resource xmlwriter, string content | bool',
4787\ 'xmlwriter_write_attribute(': 'resource xmlwriter, string name, string content | bool',
4788\ 'xmlwriter_write_attribute_ns(': 'resource xmlwriter, string prefix, string name, string uri, string content | bool',
4789\ 'xmlwriter_write_cdata(': 'resource xmlwriter, string content | bool',
4790\ 'xmlwriter_write_comment(': 'resource xmlwriter, string content | bool',
4791\ 'xmlwriter_write_dtd_attlist(': 'resource xmlwriter, string name, string content | bool',
4792\ 'xmlwriter_write_dtd_element(': 'resource xmlwriter, string name, string content | bool',
4793\ 'xmlwriter_write_dtd_entity(': 'resource xmlwriter, string name, string content | bool',
4794\ 'xmlwriter_write_dtd(': 'resource xmlwriter, string name [, string pubid [, string sysid [, string subset]]] | bool',
4795\ 'xmlwriter_write_element(': 'resource xmlwriter, string name, string content | bool',
4796\ 'xmlwriter_write_element_ns(': 'resource xmlwriter, string prefix, string name, string uri, string content | bool',
4797\ 'xmlwriter_write_pi(': 'resource xmlwriter, string target, string content | bool',
4798\ 'xmlwriter_write_raw(': 'resource xmlwriter, string content | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004799\ 'xpath_new_context(': 'domdocument dom_document | XPathContext',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004800\ 'xpath_register_ns_auto(': 'XPathContext xpath_context [, object context_node] | bool',
4801\ 'xpath_register_ns(': 'XPathContext xpath_context, string prefix, string uri | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004802\ 'xptr_new_context(': 'void | XPathContext',
4803\ 'xslt_backend_info(': 'void | string',
4804\ 'xslt_backend_name(': 'void | string',
4805\ 'xslt_backend_version(': 'void | string',
4806\ 'xslt_create(': 'void | resource',
4807\ 'xslt_errno(': 'resource xh | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004808\ 'xslt_error(': 'resource xh | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004809\ 'xslt_free(': 'resource xh | void',
4810\ 'xslt_getopt(': 'resource processor | int',
4811\ 'xslt_process(': 'resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]] | mixed',
4812\ 'xslt_set_base(': 'resource xh, string uri | void',
4813\ 'xslt_set_encoding(': 'resource xh, string encoding | void',
4814\ 'xslt_set_error_handler(': 'resource xh, mixed handler | void',
4815\ 'xslt_set_log(': 'resource xh [, mixed log] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004816\ 'xslt_set_object(': 'resource processor, object &#38;obj | bool',
4817\ 'xslt_setopt(': 'resource processor, int newmask | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004818\ 'xslt_set_sax_handler(': 'resource xh, array handlers | void',
4819\ 'xslt_set_sax_handlers(': 'resource processor, array handlers | void',
4820\ 'xslt_set_scheme_handler(': 'resource xh, array handlers | void',
4821\ 'xslt_set_scheme_handlers(': 'resource processor, array handlers | void',
4822\ 'yaz_addinfo(': 'resource id | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004823\ 'yaz_ccl_conf(': 'resource id, array config | void',
4824\ 'yaz_ccl_parse(': 'resource id, string query, array &#38;result | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004825\ 'yaz_close(': 'resource id | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004826\ 'yaz_connect(': 'string zurl [, mixed options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004827\ 'yaz_database(': 'resource id, string databases | bool',
4828\ 'yaz_element(': 'resource id, string elementset | bool',
4829\ 'yaz_errno(': 'resource id | int',
4830\ 'yaz_error(': 'resource id | string',
4831\ 'yaz_es_result(': 'resource id | array',
4832\ 'yaz_get_option(': 'resource id, string name | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004833\ 'yaz_hits(': 'resource id [, array searchresult] | int',
4834\ 'yaz_itemorder(': 'resource id, array args | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004835\ 'yaz_present(': 'resource id | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004836\ 'yaz_range(': 'resource id, int start, int number | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004837\ 'yaz_record(': 'resource id, int pos, string type | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004838\ 'yaz_scan(': 'resource id, string type, string startterm [, array flags] | void',
4839\ 'yaz_scan_result(': 'resource id [, array &#38;result] | array',
4840\ 'yaz_schema(': 'resource id, string schema | void',
4841\ 'yaz_search(': 'resource id, string type, string query | bool',
4842\ 'yaz_set_option(': 'resource id, string name, string value | void',
4843\ 'yaz_sort(': 'resource id, string criteria | void',
4844\ 'yaz_syntax(': 'resource id, string syntax | void',
4845\ 'yaz_wait(': '[array &#38;options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004846\ 'yp_all(': 'string domain, string map, string callback | void',
4847\ 'yp_cat(': 'string domain, string map | array',
4848\ 'yp_errno(': 'void | int',
4849\ 'yp_err_string(': 'int errorcode | string',
4850\ 'yp_first(': 'string domain, string map | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004851\ 'yp_get_default_domain(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004852\ 'yp_master(': 'string domain, string map | string',
4853\ 'yp_match(': 'string domain, string map, string key | string',
4854\ 'yp_next(': 'string domain, string map, string key | array',
4855\ 'yp_order(': 'string domain, string map | int',
4856\ 'zend_logo_guid(': 'void | string',
4857\ 'zend_version(': 'void | string',
4858\ 'zip_close(': 'resource zip | void',
4859\ 'zip_entry_close(': 'resource zip_entry | void',
4860\ 'zip_entry_compressedsize(': 'resource zip_entry | int',
4861\ 'zip_entry_compressionmethod(': 'resource zip_entry | string',
4862\ 'zip_entry_filesize(': 'resource zip_entry | int',
4863\ 'zip_entry_name(': 'resource zip_entry | string',
4864\ 'zip_entry_open(': 'resource zip, resource zip_entry [, string mode] | bool',
4865\ 'zip_entry_read(': 'resource zip_entry [, int length] | string',
4866\ 'zip_open(': 'string filename | resource',
4867\ 'zip_read(': 'resource zip | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004868\ 'zlib_get_coding_type(': 'void | string'
4869\ }
4870" }}}
4871" Add control structures (they are outside regular pattern of PHP functions)
4872let php_control = {
4873 \ 'include(': 'string filename | resource',
4874 \ 'include_once(': 'string filename | resource',
4875 \ 'require(': 'string filename | resource',
4876 \ 'require_once(': 'string filename | resource',
4877 \ }
4878call extend(b:php_builtin_functions, php_control)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004879endfunction
4880" }}}
4881" vim:set foldmethod=marker: