blob: 8cb4db0366f41ee5f1a3ed695a90b9d139521f07 [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 Moolenaar910f66f2006-04-05 20:41:53 +00004" Last Change: 2006 Apr 05
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005"
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00006" TODO:
7" - Class aware completion:
8" a) additional analize of tags file(s)
9" b) "live" parsing of data, maybe with caching
10" - Switching to HTML (XML?) completion (SQL) inside of phpStrings
11" - allow also for XML completion
12" - better 'info', 'menu'
13" - outside of <?php?> getting parent tag may cause problems. Heh, even in
14" perfect conditions GetLastOpenTag doesn't cooperate... Inside of
15" phpStrings this can be even a bonus but outside of <?php?> it is not the
16" best situation
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017
18function! phpcomplete#CompletePHP(findstart, base)
19 if a:findstart
20 unlet! b:php_menu
21 " Check if we are inside of PHP markup
22 let pos = getpos('.')
Bram Moolenaarceaf7b82006-03-19 22:18:55 +000023 let phpbegin = searchpairpos('<?', '', '?>', 'bWn',
24 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"')
25 let phpend = searchpairpos('<?', '', '?>', 'Wn',
26 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"')
Bram Moolenaar362e1a32006-03-06 23:29:24 +000027
28 if phpbegin == [0,0] && phpend == [0,0]
29 " We are outside of any PHP markup. Complete HTML
30 let htmlbegin = htmlcomplete#CompleteTags(1, '')
31 let cursor_col = pos[2]
32 let base = getline('.')[htmlbegin : cursor_col]
33 let b:php_menu = htmlcomplete#CompleteTags(0, base)
34 return htmlbegin
Bram Moolenaar362e1a32006-03-06 23:29:24 +000035 else
Bram Moolenaar362e1a32006-03-06 23:29:24 +000036 " locate the start of the word
37 let line = getline('.')
38 let start = col('.') - 1
39 let curline = line('.')
40 let compl_begin = col('.') - 2
41 while start >= 0 && line[start - 1] =~ '[a-zA-Z_0-9\x7f-\xff$]'
42 let start -= 1
43 endwhile
44 let b:compl_context = getline('.')[0:compl_begin]
45 return start
46
47 " We can be also inside of phpString with HTML tags. Deal with
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000048 " it later (time, not lines).
Bram Moolenaar362e1a32006-03-06 23:29:24 +000049 endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +000050
Bram Moolenaar910f66f2006-04-05 20:41:53 +000051 endif
52 " If exists b:php_menu it means completion was already constructed we
53 " don't need to do anything more
54 if exists("b:php_menu")
55 return b:php_menu
56 endif
57 " Initialize base return lists
58 let res = []
59 let res2 = []
60 " a:base is very short - we need context
61 if exists("b:compl_context")
62 let context = b:compl_context
63 unlet! b:compl_context
64 endif
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000065
Bram Moolenaar910f66f2006-04-05 20:41:53 +000066 if !exists('g:php_builtin_functions')
67 call phpcomplete#LoadData()
68 endif
Bram Moolenaarceaf7b82006-03-19 22:18:55 +000069
Bram Moolenaar910f66f2006-04-05 20:41:53 +000070 let scontext = substitute(context, '\$\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*$', '', '')
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000071
Bram Moolenaar910f66f2006-04-05 20:41:53 +000072 if scontext =~ '\(=\s*new\|extends\)\s\+$'
73 " Complete class name
74 " Internal solution for finding classes in current file.
75 let file = getline(1, '$')
76 call filter(file,
77 \ 'v:val =~ "class\\s\\+[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("')
78 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
79 let jfile = join(file, ' ')
80 let int_values = split(jfile, 'class\s\+')
81 let int_classes = {}
82 for i in int_values
83 let c_name = matchstr(i, '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
84 if c_name != ''
85 let int_classes[c_name] = ''
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000086 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +000087 endfor
Bram Moolenaare48ec1f2006-03-11 21:38:31 +000088
Bram Moolenaar910f66f2006-04-05 20:41:53 +000089 " Prepare list of functions from tags file
90 let ext_classes = {}
91 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
92 if fnames != ''
93 exe 'silent! vimgrep /^'.a:base.'.*\tc\(\t\|$\)/j '.fnames
94 let qflist = getqflist()
95 for field in qflist
96 " [:space:] thing: we don't have to be so strict when
97 " dealing with tags files - entries there were already
98 " checked by ctags.
99 let item = matchstr(field['text'], '^[^[:space:]]\+')
100 let ext_classes[item] = ''
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000101 endfor
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000102 endif
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000103
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000104 call extend(int_classes, ext_classes)
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000105
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000106 for m in sort(keys(int_classes))
107 if m =~ '^'.a:base
108 call add(res, m)
109 endif
110 endfor
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000111
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000112 let int_list = res
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000113
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000114 let final_menu = []
115 for i in int_list
116 let final_menu += [{'word':i, 'kind':'c'}]
117 endfor
118
119 return final_menu
120
121 elseif scontext =~ '\(->\|::\)$'
122 " Complete user functions and variables
123 " Internal solution for current file.
124 " That seems as unnecessary repeating of functions but there are
125 " few not so subtle differences as not appending of $ and addition
126 " of 'kind' tag (not necessary in regular completion)
127
128 if scontext =~ '->$' && scontext !~ '\$this->$'
129
130 " Get name of the class
131 let classname = phpcomplete#GetClassName(scontext)
132
133 " Get location of class definition, we have to iterate through all
134 " tags files separately because we need relative path from current
135 " file to the exact file (tags file can be in different dir)
136 if classname != ''
137 let classlocation = phpcomplete#GetClassLocation(classname)
Bram Moolenaarceaf7b82006-03-19 22:18:55 +0000138 else
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000139 let classlocation = ''
Bram Moolenaarceaf7b82006-03-19 22:18:55 +0000140 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000141
142 if filereadable(classlocation)
143 let classfile = readfile(classlocation)
144 let classcontent = ''
145 let classcontent .= "\n".phpcomplete#GetClassContents(classfile, classname)
146 let sccontent = split(classcontent, "\n")
147
148 " YES, YES, YES! - we have whole content including extends!
149 " Now we need to get two elements: public functions and public
150 " vars
151 " NO, NO, NO! - third separate filtering looking for content
152 " :(, but all of them have differences. To squeeze them into
153 " one implementation would require many additional arguments
154 " and ifs. No good solution
155 " Functions declared with public keyword or without any
156 " keyword are public
157 let functions = filter(deepcopy(sccontent),
158 \ 'v:val =~ "^\\s*\\(public\\s\\*\\)\\?function"')
159 let jfuncs = join(functions, ' ')
160 let sfuncs = split(jfuncs, 'function\s\+')
161 let c_functions = {}
162 for i in sfuncs
163 let f_name = matchstr(i,
164 \ '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
165 let f_args = matchstr(i,
166 \ '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)\_s*{')
167 if f_name != ''
168 let c_functions[f_name.'('] = f_args
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000169 endif
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000170 endfor
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000171 " Variables declared with var or with public keyword are
172 " public
173 let variables = filter(deepcopy(sccontent),
174 \ 'v:val =~ "^\\s*\\(public\\|var\\)\\s\\+\\$"')
175 let jvars = join(variables, ' ')
176 let svars = split(jvars, '\$')
177 let c_variables = {}
178 for i in svars
179 let c_var = matchstr(i,
180 \ '^\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
181 if c_var != ''
182 let c_variables[c_var] = ''
Bram Moolenaarceaf7b82006-03-19 22:18:55 +0000183 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000184 endfor
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000185
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000186 let all_values = {}
187 call extend(all_values, c_functions)
188 call extend(all_values, c_variables)
189 call extend(all_values, g:php_builtin_object_functions)
190
191 for m in sort(keys(all_values))
192 if m =~ '^'.a:base && m !~ '::'
193 call add(res, m)
194 elseif m =~ '::'.a:base
195 call add(res2, m)
196 endif
197 endfor
198
199 let start_list = res + res2
200
201 let final_list = []
202 for i in start_list
203 if has_key(c_variables, i)
204 let class = ' '
205 if all_values[i] != ''
206 let class = i.' class '
207 endif
208 let final_list +=
209 \ [{'word':i,
210 \ 'info':class.all_values[i],
211 \ 'kind':'v'}]
212 else
213 let final_list +=
214 \ [{'word':substitute(i, '.*::', '', ''),
215 \ 'info':i.all_values[i].')',
216 \ 'kind':'f'}]
217 endif
218 endfor
219
220 return final_list
221
222 endif
223
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000224 endif
225
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000226 if a:base =~ '^\$'
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000227 let adddollar = '$'
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000228 else
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000229 let adddollar = ''
230 endif
231 let file = getline(1, '$')
232 let jfile = join(file, ' ')
233 let sfile = split(jfile, '\$')
234 let int_vars = {}
235 for i in sfile
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]*')
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000240 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000241 if val !~ ''
242 let int_vars[adddollar.val] = ''
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000243 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000244 endfor
245
246 " ctags has good support for PHP, use tags file for external
247 " variables
248 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
249 let ext_vars = {}
250 if fnames != ''
251 let sbase = substitute(a:base, '^\$', '', '')
252 exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames
253 let qflist = getqflist()
254 for field in qflist
255 let item = matchstr(field['text'], '^[^[:space:]]\+')
256 " Add -> if it is possible object declaration
257 let classname = ''
258 if field['text'] =~ item.'\s*=\s*new\s\+'
259 let item = item.'->'
260 let classname = matchstr(field['text'],
261 \ '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze')
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000262 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000263 let ext_vars[adddollar.item] = classname
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000264 endfor
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000265 endif
266
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000267 " Now we have all variables in int_vars dictionary
268 call extend(int_vars, ext_vars)
269
270 " Internal solution for finding functions in current file.
271 let file = getline(1, '$')
272 call filter(file,
273 \ 'v:val =~ "function\\s\\+&\\?[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("')
274 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
275 let jfile = join(file, ' ')
276 let int_values = split(jfile, 'function\s\+')
277 let int_functions = {}
278 for i in int_values
279 let f_name = matchstr(i,
280 \ '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
281 let f_args = matchstr(i,
282 \ '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)\_s*{')
283 let int_functions[f_name.'('] = f_args.')'
284 endfor
285
286 " Prepare list of functions from tags file
287 let ext_functions = {}
288 if fnames != ''
289 exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames
290 let qflist = getqflist()
291 for field in qflist
292 " File name
293 let item = matchstr(field['text'], '^[^[:space:]]\+')
294 let fname = matchstr(field['text'], '\t\zs\f\+\ze')
295 let prototype = matchstr(field['text'],
296 \ 'function\s\+&\?[^[:space:]]\+\s*(\s*\zs.\{-}\ze\s*)\s*{\?')
297 let ext_functions[item.'('] = prototype.') - '.fname
298 endfor
299 endif
300
301 let all_values = {}
302 call extend(all_values, int_functions)
303 call extend(all_values, ext_functions)
304 call extend(all_values, int_vars) " external variables are already in
305 call extend(all_values, g:php_builtin_object_functions)
306
307 for m in sort(keys(all_values))
308 if m =~ '\(^\|::\)'.a:base
309 call add(res, m)
310 endif
311 endfor
312
313 let start_list = res
314
315 let final_list = []
316 for i in start_list
317 if has_key(int_vars, i)
318 let class = ' '
319 if all_values[i] != ''
320 let class = i.' class '
321 endif
322 let final_list += [{'word':i, 'info':class.all_values[i], 'kind':'v'}]
323 else
324 let final_list +=
325 \ [{'word':substitute(i, '.*::', '', ''),
326 \ 'info':i.all_values[i],
327 \ 'kind':'f'}]
328 endif
329 endfor
330
331 return final_list
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000332 endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000333
334 if a:base =~ '^\$'
335 " Complete variables
336 " Built-in variables {{{
337 let g:php_builtin_vars = {'$GLOBALS':'',
338 \ '$_SERVER':'',
339 \ '$_GET':'',
340 \ '$_POST':'',
341 \ '$_COOKIE':'',
342 \ '$_FILES':'',
343 \ '$_ENV':'',
344 \ '$_REQUEST':'',
345 \ '$_SESSION':'',
346 \ '$HTTP_SERVER_VARS':'',
347 \ '$HTTP_ENV_VARS':'',
348 \ '$HTTP_COOKIE_VARS':'',
349 \ '$HTTP_GET_VARS':'',
350 \ '$HTTP_POST_VARS':'',
351 \ '$HTTP_POST_FILES':'',
352 \ '$HTTP_SESSION_VARS':'',
353 \ '$php_errormsg':'',
354 \ '$this':''
355 \ }
356 " }}}
357
358 " Internal solution for current file.
359 let file = getline(1, '$')
360 let jfile = join(file, ' ')
361 let int_vals = split(jfile, '\ze\$')
362 let int_vars = {}
363 for i in int_vals
364 if i =~ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*=\s*new'
365 let val = matchstr(i,
366 \ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*').'->'
367 else
368 let val = matchstr(i,
369 \ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*')
370 endif
371 if val != ''
372 let int_vars[val] = ''
373 endif
374 endfor
375
376 call extend(int_vars,g:php_builtin_vars)
377
378 " ctags has support for PHP, use tags file for external variables
379 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
380 let ext_vars = {}
381 if fnames != ''
382 let sbase = substitute(a:base, '^\$', '', '')
383 exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames
384 let qflist = getqflist()
385 for field in qflist
386 let item = '$'.matchstr(field['text'], '^[^[:space:]]\+')
387 let m_menu = ''
388 " Add -> if it is possible object declaration
389 if field['text'] =~ item.'\s*=\s*new\s\+'
390 let item = item.'->'
391 let m_menu = matchstr(field['text'],
392 \ '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze')
393 endif
394 let ext_vars[item] = m_menu
395 endfor
396 endif
397
398 call extend(int_vars, ext_vars)
399 let g:a0 = keys(int_vars)
400
401 for m in sort(keys(int_vars))
402 if m =~ '^\'.a:base
403 call add(res, m)
404 endif
405 endfor
406
407 let int_list = res
408
409 let int_dict = []
410 for i in int_list
411 if int_vars[i] != ''
412 let class = ' '
413 if int_vars[i] != ''
414 let class = i.' class '
415 endif
416 let int_dict += [{'word':i, 'info':class.int_vars[i], 'kind':'v'}]
417 else
418 let int_dict += [{'word':i, 'kind':'v'}]
419 endif
420 endfor
421
422 return int_dict
423
424 else
425 " Complete everything else -
426 " + functions, DONE
427 " + keywords of language DONE
428 " + defines (constant definitions), DONE
429 " + extend keywords for predefined constants, DONE
430 " + classes (after new), DONE
431 " + limit choice after -> and :: to funcs and vars DONE
432
433 " Internal solution for finding functions in current file.
434 let file = getline(1, '$')
435 call filter(file,
436 \ 'v:val =~ "function\\s\\+&\\?[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("')
437 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
438 let jfile = join(file, ' ')
439 let int_values = split(jfile, 'function\s\+')
440 let int_functions = {}
441 for i in int_values
442 let f_name = matchstr(i,
443 \ '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze')
444 let f_args = matchstr(i,
445 \ '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\s*\zs.\{-}\ze\s*)\_s*{')
446 let int_functions[f_name.'('] = f_args.')'
447 endfor
448
449 " Prepare list of functions from tags file
450 let ext_functions = {}
451 if fnames != ''
452 exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames
453 let qflist = getqflist()
454 for field in qflist
455 " File name
456 let item = matchstr(field['text'], '^[^[:space:]]\+')
457 let fname = matchstr(field['text'], '\t\zs\f\+\ze')
458 let prototype = matchstr(field['text'],
459 \ 'function\s\+&\?[^[:space:]]\+\s*(\s*\zs.\{-}\ze\s*)\s*{\?')
460 let ext_functions[item.'('] = prototype.') - '.fname
461 endfor
462 endif
463
464 " All functions
465 call extend(int_functions, ext_functions)
466 call extend(int_functions, g:php_builtin_functions)
467
468 " Internal solution for finding constants in current file
469 let file = getline(1, '$')
470 call filter(file, 'v:val =~ "define\\s*("')
471 let jfile = join(file, ' ')
472 let int_values = split(jfile, 'define\s*(\s*')
473 let int_constants = {}
474 for i in int_values
475 let c_name = matchstr(i, '\(["'']\)\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze\1')
476 " let c_value = matchstr(i,
477 " \ '\(["'']\)[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\1\s*,\s*\zs.\{-}\ze\s*)')
478 if c_name != ''
479 let int_constants[c_name] = '' " c_value
480 endif
481 endfor
482
483 " Prepare list of constants from tags file
484 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
485 let ext_constants = {}
486 if fnames != ''
487 exe 'silent! vimgrep /^'.a:base.'.*\td\(\t\|$\)/j '.fnames
488 let qflist = getqflist()
489 for field in qflist
490 let item = matchstr(field['text'], '^[^[:space:]]\+')
491 let ext_constants[item] = ''
492 endfor
493 endif
494
495 " All constants
496 call extend(int_constants, ext_constants)
497 " Treat keywords as constants
498
499 let all_values = {}
500
501 " One big dictionary of functions
502 call extend(all_values, int_functions)
503
504 " Add constants
505 call extend(all_values, int_constants)
506 " Add keywords
507 call extend(all_values, g:php_keywords)
508
509 for m in sort(keys(all_values))
510 if m =~ '^'.a:base
511 call add(res, m)
512 endif
513 endfor
514
515 let int_list = res
516
517 let final_list = []
518 for i in int_list
519 if has_key(int_functions, i)
520 let final_list +=
521 \ [{'word':i,
522 \ 'info':i.int_functions[i],
523 \ 'kind':'f'}]
524 elseif has_key(int_constants, i)
525 let final_list += [{'word':i, 'kind':'d'}]
526 else
527 let final_list += [{'word':i}]
528 endif
529 endfor
530
531 return final_list
532
533 endif
534
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000535endfunction
536
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000537function! phpcomplete#GetClassName(scontext) " {{{
538 " Get class name
539 " Class name can be detected in few ways:
540 " @var $myVar class
541 " line above
542 " or line in tags file
543
544 let object = matchstr(a:scontext, '\zs[a-zA-Z_0-9\x7f-\xff]\+\ze->')
545 let i = 1
546 while i < line('.')
547 let line = getline(line('.')-i)
548 if line =~ '^\s*\*\/\?\s*$'
549 let i += 1
550 continue
551 else
552 if line =~ '@var\s\+\$'.object.'\s\+[a-zA-Z_0-9\x7f-\xff]\+'
553 let classname = matchstr(line, '@var\s\+\$'.object.'\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+')
554 return classname
555 else
556 break
557 endif
558 endif
559 endwhile
560
561 " OK, first way failed, now check tags file(s)
562 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
563 exe 'silent! vimgrep /^'.object.'.*\$'.object.'.*=\s*new\s\+.*\tv\(\t\|$\)/j '.fnames
564 let qflist = getqflist()
565 if len(qflist) == 0
566 return []
567 endif
568 " In all properly managed projects it should be one item list, even if it
569 " *is* longer we cannot solve conflicts, assume it is first element
570 let classname = matchstr(qflist[0]['text'], '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze')
571 return classname
572
573endfunction
574" }}}
575function! phpcomplete#GetClassLocation(classname) " {{{
576 " Get class location
577 for fname in tagfiles()
578 let fhead = fnamemodify(fname, ":h")
579 if fhead != ''
580 let psep = '/'
581 let fhead .= psep
582 endif
583 let fname = escape(fname, " \\")
584 exe 'silent! vimgrep /^'.a:classname.'.*\tc\(\t\|$\)/j '.fname
585 let qflist = getqflist()
586 " As in GetClassName we can manage only one element
587 let classlocation = matchstr(qflist[0]['text'], '\t\zs\f\+\ze\t')
588 " And only one class location
589 if classlocation != ''
590 let pset = '/' " Note: slash is potential problem!
591 let classlocation = fhead.classlocation
592 return classlocation
593 endif
594 endfor
595
596endfunction
597" }}}
598
599function! phpcomplete#GetClassContents(file, name) " {{{
600 let cfile = join(a:file, "\n")
601 " We use new buffer and (later) normal! because
602 " this is the most efficient way. The other way
603 " is to go through the looong string looking for
604 " matching {}
605 below 1new
606 0put =cfile
607 call search('class\s\+'.a:name)
608 let cfline = line('.')
609 " Catch extends
610 if getline('.') =~ 'extends'
611 let extends_class = matchstr(getline('.'),
612 \ 'class\s\+'.a:name.'\s\+extends\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze')
613 else
614 let extends_class = ''
615 endif
616 normal! %
617 let classc = getline(cfline, ".")
618 let classcontent = join(classc, "\n")
619
620 bw! %
621 if extends_class != ''
622 let classlocation = phpcomplete#GetClassLocation(extends_class)
623 if filereadable(classlocation)
624 let classfile = readfile(classlocation)
625 let classcontent .= "\n".phpcomplete#GetClassContents(classfile, extends_class)
626 endif
627 endif
628
629 return classcontent
630endfunction
631" }}}
632
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000633function! phpcomplete#LoadData() " {{{
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000634" Keywords/reserved words, all other special things {{{
635" Later it is possible to add some help to values, or type of
636" defined variable
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000637let g:php_keywords = {
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000638\ 'PHP_SELF':'',
639\ 'argv':'',
640\ 'argc':'',
641\ 'GATEWAY_INTERFACE':'',
642\ 'SERVER_ADDR':'',
643\ 'SERVER_NAME':'',
644\ 'SERVER_SOFTWARE':'',
645\ 'SERVER_PROTOCOL':'',
646\ 'REQUEST_METHOD':'',
647\ 'REQUEST_TIME':'',
648\ 'QUERY_STRING':'',
649\ 'DOCUMENT_ROOT':'',
650\ 'HTTP_ACCEPT':'',
651\ 'HTTP_ACCEPT_CHARSET':'',
652\ 'HTTP_ACCEPT_ENCODING':'',
653\ 'HTTP_ACCEPT_LANGUAGE':'',
654\ 'HTTP_CONNECTION':'',
655\ 'HTTP_POST':'',
656\ 'HTTP_REFERER':'',
657\ 'HTTP_USER_AGENT':'',
658\ 'HTTPS':'',
659\ 'REMOTE_ADDR':'',
660\ 'REMOTE_HOST':'',
661\ 'REMOTE_PORT':'',
662\ 'SCRIPT_FILENAME':'',
663\ 'SERVER_ADMIN':'',
664\ 'SERVER_PORT':'',
665\ 'SERVER_SIGNATURE':'',
666\ 'PATH_TRANSLATED':'',
667\ 'SCRIPT_NAME':'',
668\ 'REQUEST_URI':'',
669\ 'PHP_AUTH_DIGEST':'',
670\ 'PHP_AUTH_USER':'',
671\ 'PHP_AUTH_PW':'',
672\ 'AUTH_TYPE':'',
673\ 'and':'',
674\ 'or':'',
675\ 'xor':'',
676\ '__FILE__':'',
677\ 'exception':'',
678\ '__LINE__':'',
679\ 'as':'',
680\ 'break':'',
681\ 'case':'',
682\ 'class':'',
683\ 'const':'',
684\ 'continue':'',
685\ 'declare':'',
686\ 'default':'',
687\ 'do':'',
688\ 'echo':'',
689\ 'else':'',
690\ 'elseif':'',
691\ 'enddeclare':'',
692\ 'endfor':'',
693\ 'endforeach':'',
694\ 'endif':'',
695\ 'endswitch':'',
696\ 'endwhile':'',
697\ 'extends':'',
698\ 'for':'',
699\ 'foreach':'',
700\ 'function':'',
701\ 'global':'',
702\ 'if':'',
703\ 'new':'',
704\ 'static':'',
705\ 'switch':'',
706\ 'use':'',
707\ 'var':'',
708\ 'while':'',
709\ '__FUNCTION__':'',
710\ '__CLASS__':'',
711\ '__METHOD__':'',
712\ 'final':'',
713\ 'php_user_filter':'',
714\ 'interface':'',
715\ 'implements':'',
716\ 'public':'',
717\ 'private':'',
718\ 'protected':'',
719\ 'abstract':'',
720\ 'clone':'',
721\ 'try':'',
722\ 'catch':'',
723\ 'throw':'',
724\ 'cfunction':'',
725\ 'old_function':'',
726\ 'this':'',
727\ 'PHP_VERSION': '',
728\ 'PHP_OS': '',
729\ 'PHP_SAPI': '',
730\ 'PHP_EOL': '',
731\ 'PHP_INT_MAX': '',
732\ 'PHP_INT_SIZE': '',
733\ 'DEFAULT_INCLUDE_PATH': '',
734\ 'PEAR_INSTALL_DIR': '',
735\ 'PEAR_EXTENSION_DIR': '',
736\ 'PHP_EXTENSION_DIR': '',
737\ 'PHP_PREFIX': '',
738\ 'PHP_BINDIR': '',
739\ 'PHP_LIBDIR': '',
740\ 'PHP_DATADIR': '',
741\ 'PHP_SYSCONFDIR': '',
742\ 'PHP_LOCALSTATEDIR': '',
743\ 'PHP_CONFIG_FILE_PATH': '',
744\ 'PHP_CONFIG_FILE_SCAN_DIR': '',
745\ 'PHP_SHLIB_SUFFIX': '',
746\ 'PHP_OUTPUT_HANDLER_START': '',
747\ 'PHP_OUTPUT_HANDLER_CONT': '',
748\ 'PHP_OUTPUT_HANDLER_END': '',
749\ 'E_ERROR': '',
750\ 'E_WARNING': '',
751\ 'E_PARSE': '',
752\ 'E_NOTICE': '',
753\ 'E_CORE_ERROR': '',
754\ 'E_CORE_WARNING': '',
755\ 'E_COMPILE_ERROR': '',
756\ 'E_COMPILE_WARNING': '',
757\ 'E_USER_ERROR': '',
758\ 'E_USER_WARNING': '',
759\ 'E_USER_NOTICE': '',
760\ 'E_ALL': '',
761\ 'E_STRICT': '',
762\ '__COMPILER_HALT_OFFSET__': '',
763\ 'EXTR_OVERWRITE': '',
764\ 'EXTR_SKIP': '',
765\ 'EXTR_PREFIX_SAME': '',
766\ 'EXTR_PREFIX_ALL': '',
767\ 'EXTR_PREFIX_INVALID': '',
768\ 'EXTR_PREFIX_IF_EXISTS': '',
769\ 'EXTR_IF_EXISTS': '',
770\ 'SORT_ASC': '',
771\ 'SORT_DESC': '',
772\ 'SORT_REGULAR': '',
773\ 'SORT_NUMERIC': '',
774\ 'SORT_STRING': '',
775\ 'CASE_LOWER': '',
776\ 'CASE_UPPER': '',
777\ 'COUNT_NORMAL': '',
778\ 'COUNT_RECURSIVE': '',
779\ 'ASSERT_ACTIVE': '',
780\ 'ASSERT_CALLBACK': '',
781\ 'ASSERT_BAIL': '',
782\ 'ASSERT_WARNING': '',
783\ 'ASSERT_QUIET_EVAL': '',
784\ 'CONNECTION_ABORTED': '',
785\ 'CONNECTION_NORMAL': '',
786\ 'CONNECTION_TIMEOUT': '',
787\ 'INI_USER': '',
788\ 'INI_PERDIR': '',
789\ 'INI_SYSTEM': '',
790\ 'INI_ALL': '',
791\ 'M_E': '',
792\ 'M_LOG2E': '',
793\ 'M_LOG10E': '',
794\ 'M_LN2': '',
795\ 'M_LN10': '',
796\ 'M_PI': '',
797\ 'M_PI_2': '',
798\ 'M_PI_4': '',
799\ 'M_1_PI': '',
800\ 'M_2_PI': '',
801\ 'M_2_SQRTPI': '',
802\ 'M_SQRT2': '',
803\ 'M_SQRT1_2': '',
804\ 'CRYPT_SALT_LENGTH': '',
805\ 'CRYPT_STD_DES': '',
806\ 'CRYPT_EXT_DES': '',
807\ 'CRYPT_MD5': '',
808\ 'CRYPT_BLOWFISH': '',
809\ 'DIRECTORY_SEPARATOR': '',
810\ 'SEEK_SET': '',
811\ 'SEEK_CUR': '',
812\ 'SEEK_END': '',
813\ 'LOCK_SH': '',
814\ 'LOCK_EX': '',
815\ 'LOCK_UN': '',
816\ 'LOCK_NB': '',
817\ 'HTML_SPECIALCHARS': '',
818\ 'HTML_ENTITIES': '',
819\ 'ENT_COMPAT': '',
820\ 'ENT_QUOTES': '',
821\ 'ENT_NOQUOTES': '',
822\ 'INFO_GENERAL': '',
823\ 'INFO_CREDITS': '',
824\ 'INFO_CONFIGURATION': '',
825\ 'INFO_MODULES': '',
826\ 'INFO_ENVIRONMENT': '',
827\ 'INFO_VARIABLES': '',
828\ 'INFO_LICENSE': '',
829\ 'INFO_ALL': '',
830\ 'CREDITS_GROUP': '',
831\ 'CREDITS_GENERAL': '',
832\ 'CREDITS_SAPI': '',
833\ 'CREDITS_MODULES': '',
834\ 'CREDITS_DOCS': '',
835\ 'CREDITS_FULLPAGE': '',
836\ 'CREDITS_QA': '',
837\ 'CREDITS_ALL': '',
838\ 'STR_PAD_LEFT': '',
839\ 'STR_PAD_RIGHT': '',
840\ 'STR_PAD_BOTH': '',
841\ 'PATHINFO_DIRNAME': '',
842\ 'PATHINFO_BASENAME': '',
843\ 'PATHINFO_EXTENSION': '',
844\ 'PATH_SEPARATOR': '',
845\ 'CHAR_MAX': '',
846\ 'LC_CTYPE': '',
847\ 'LC_NUMERIC': '',
848\ 'LC_TIME': '',
849\ 'LC_COLLATE': '',
850\ 'LC_MONETARY': '',
851\ 'LC_ALL': '',
852\ 'LC_MESSAGES': '',
853\ 'ABDAY_1': '',
854\ 'ABDAY_2': '',
855\ 'ABDAY_3': '',
856\ 'ABDAY_4': '',
857\ 'ABDAY_5': '',
858\ 'ABDAY_6': '',
859\ 'ABDAY_7': '',
860\ 'DAY_1': '',
861\ 'DAY_2': '',
862\ 'DAY_3': '',
863\ 'DAY_4': '',
864\ 'DAY_5': '',
865\ 'DAY_6': '',
866\ 'DAY_7': '',
867\ 'ABMON_1': '',
868\ 'ABMON_2': '',
869\ 'ABMON_3': '',
870\ 'ABMON_4': '',
871\ 'ABMON_5': '',
872\ 'ABMON_6': '',
873\ 'ABMON_7': '',
874\ 'ABMON_8': '',
875\ 'ABMON_9': '',
876\ 'ABMON_10': '',
877\ 'ABMON_11': '',
878\ 'ABMON_12': '',
879\ 'MON_1': '',
880\ 'MON_2': '',
881\ 'MON_3': '',
882\ 'MON_4': '',
883\ 'MON_5': '',
884\ 'MON_6': '',
885\ 'MON_7': '',
886\ 'MON_8': '',
887\ 'MON_9': '',
888\ 'MON_10': '',
889\ 'MON_11': '',
890\ 'MON_12': '',
891\ 'AM_STR': '',
892\ 'PM_STR': '',
893\ 'D_T_FMT': '',
894\ 'D_FMT': '',
895\ 'T_FMT': '',
896\ 'T_FMT_AMPM': '',
897\ 'ERA': '',
898\ 'ERA_YEAR': '',
899\ 'ERA_D_T_FMT': '',
900\ 'ERA_D_FMT': '',
901\ 'ERA_T_FMT': '',
902\ 'ALT_DIGITS': '',
903\ 'INT_CURR_SYMBOL': '',
904\ 'CURRENCY_SYMBOL': '',
905\ 'CRNCYSTR': '',
906\ 'MON_DECIMAL_POINT': '',
907\ 'MON_THOUSANDS_SEP': '',
908\ 'MON_GROUPING': '',
909\ 'POSITIVE_SIGN': '',
910\ 'NEGATIVE_SIGN': '',
911\ 'INT_FRAC_DIGITS': '',
912\ 'FRAC_DIGITS': '',
913\ 'P_CS_PRECEDES': '',
914\ 'P_SEP_BY_SPACE': '',
915\ 'N_CS_PRECEDES': '',
916\ 'N_SEP_BY_SPACE': '',
917\ 'P_SIGN_POSN': '',
918\ 'N_SIGN_POSN': '',
919\ 'DECIMAL_POINT': '',
920\ 'RADIXCHAR': '',
921\ 'THOUSANDS_SEP': '',
922\ 'THOUSEP': '',
923\ 'GROUPING': '',
924\ 'YESEXPR': '',
925\ 'NOEXPR': '',
926\ 'YESSTR': '',
927\ 'NOSTR': '',
928\ 'CODESET': '',
929\ 'LOG_EMERG': '',
930\ 'LOG_ALERT': '',
931\ 'LOG_CRIT': '',
932\ 'LOG_ERR': '',
933\ 'LOG_WARNING': '',
934\ 'LOG_NOTICE': '',
935\ 'LOG_INFO': '',
936\ 'LOG_DEBUG': '',
937\ 'LOG_KERN': '',
938\ 'LOG_USER': '',
939\ 'LOG_MAIL': '',
940\ 'LOG_DAEMON': '',
941\ 'LOG_AUTH': '',
942\ 'LOG_SYSLOG': '',
943\ 'LOG_LPR': '',
944\ 'LOG_NEWS': '',
945\ 'LOG_UUCP': '',
946\ 'LOG_CRON': '',
947\ 'LOG_AUTHPRIV': '',
948\ 'LOG_LOCAL0': '',
949\ 'LOG_LOCAL1': '',
950\ 'LOG_LOCAL2': '',
951\ 'LOG_LOCAL3': '',
952\ 'LOG_LOCAL4': '',
953\ 'LOG_LOCAL5': '',
954\ 'LOG_LOCAL6': '',
955\ 'LOG_LOCAL7': '',
956\ 'LOG_PID': '',
957\ 'LOG_CONS': '',
958\ 'LOG_ODELAY': '',
959\ 'LOG_NDELAY': '',
960\ 'LOG_NOWAIT': '',
961\ 'LOG_PERROR': '',
962\ }
963" }}}
964" PHP builtin functions {{{
965" To create from scratch list of functions:
966" 1. Download multi html file PHP documentation
967" 2. run for i in `ls | grep "^function\."`; do grep -A4 Description $i >> funcs; done
968" 3. Open funcs in Vim and
969" a) g/Description/normal! 5J
970" b) remove all html tags (it will require few s/// and g//)
971" c) :%s/^\([^[:space:]]\+\) \([^[:space:]]\+\) ( \(.*\))/\\ '\2(': '\3| \1',
972" This will create Dictionary
973" d) remove all /^[^\\] lines
Bram Moolenaarceaf7b82006-03-19 22:18:55 +0000974let g:php_builtin_functions = {
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000975\ 'abs(': 'mixed number | number',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000976\ 'acosh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000977\ 'acos(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000978\ 'addcslashes(': 'string str, string charlist | string',
979\ 'addslashes(': 'string str | string',
980\ 'aggregate(': 'object object, string class_name | void',
981\ 'aggregate_info(': 'object object | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000982\ 'aggregate_methods_by_list(': 'object object, string class_name, array methods_list [, bool exclude] | void',
983\ 'aggregate_methods_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000984\ 'aggregate_methods(': 'object object, string class_name | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000985\ 'aggregate_properties_by_list(': 'object object, string class_name, array properties_list [, bool exclude] | void',
986\ 'aggregate_properties_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000987\ 'aggregate_properties(': 'object object, string class_name | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000988\ 'apache_child_terminate(': 'void | bool',
989\ 'apache_getenv(': 'string variable [, bool walk_to_top] | string',
990\ 'apache_get_modules(': 'void | array',
991\ 'apache_get_version(': 'void | string',
992\ 'apache_lookup_uri(': 'string filename | object',
993\ 'apache_note(': 'string note_name [, string note_value] | string',
994\ 'apache_request_headers(': 'void | array',
995\ 'apache_reset_timeout(': 'void | bool',
996\ 'apache_response_headers(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +0000997\ 'apache_setenv(': 'string variable, string value [, bool walk_to_top] | bool',
998\ 'apc_cache_info(': '[string cache_type] | array',
999\ 'apc_clear_cache(': '[string cache_type] | bool',
1000\ 'apc_define_constants(': 'string key, array constants [, bool case_sensitive] | bool',
1001\ 'apc_delete(': 'string key | bool',
1002\ 'apc_fetch(': 'string key | mixed',
1003\ 'apc_load_constants(': 'string key [, bool case_sensitive] | bool',
1004\ 'apc_sma_info(': 'void | array',
1005\ 'apc_store(': 'string key, mixed var [, int ttl] | bool',
1006\ 'apd_breakpoint(': 'int debug_level | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001007\ 'apd_callstack(': 'void | array',
1008\ 'apd_clunk(': 'string warning [, string delimiter] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001009\ 'apd_continue(': 'int debug_level | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001010\ 'apd_croak(': 'string warning [, string delimiter] | void',
1011\ 'apd_dump_function_table(': 'void | void',
1012\ 'apd_dump_persistent_resources(': 'void | array',
1013\ 'apd_dump_regular_resources(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001014\ 'apd_echo(': 'string output | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001015\ 'apd_get_active_symbols(': ' | array',
1016\ 'apd_set_pprof_trace(': '[string dump_directory] | void',
1017\ 'apd_set_session(': 'int debug_level | void',
1018\ 'apd_set_session_trace(': 'int debug_level [, string dump_directory] | void',
1019\ '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 +00001020\ 'array_change_key_case(': 'array input [, int case] | array',
1021\ 'array_chunk(': 'array input, int size [, bool preserve_keys] | array',
1022\ 'array_combine(': 'array keys, array values | array',
1023\ 'array_count_values(': 'array input | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001024\ 'array_diff_assoc(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001025\ 'array_diff(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001026\ 'array_diff_key(': 'array array1, array array2 [, array ...] | array',
1027\ 'array_diff_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
1028\ 'array_diff_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
1029\ 'array_fill(': 'int start_index, int num, mixed value | array',
1030\ 'array_filter(': 'array input [, callback callback] | array',
1031\ 'array_flip(': 'array trans | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001032\ 'array(': '[mixed ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001033\ 'array_intersect_assoc(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001034\ 'array_intersect(': 'array array1, array array2 [, array ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001035\ 'array_intersect_key(': 'array array1, array array2 [, array ...] | array',
1036\ 'array_intersect_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
1037\ 'array_intersect_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array',
1038\ 'array_key_exists(': 'mixed key, array search | bool',
1039\ 'array_keys(': 'array input [, mixed search_value [, bool strict]] | array',
1040\ 'array_map(': 'callback callback, array arr1 [, array ...] | array',
1041\ 'array_merge(': 'array array1 [, array array2 [, array ...]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001042\ 'array_merge_recursive(': 'array array1 [, array ...] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001043\ 'array_multisort(': 'array ar1 [, mixed arg [, mixed ... [, array ...]]] | bool',
1044\ 'array_pad(': 'array input, int pad_size, mixed pad_value | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001045\ 'array_pop(': 'array &#38;array | mixed',
1046\ 'array_product(': 'array array | number',
1047\ 'array_push(': 'array &#38;array, mixed var [, mixed ...] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001048\ 'array_rand(': 'array input [, int num_req] | mixed',
1049\ 'array_reduce(': 'array input, callback function [, int initial] | mixed',
1050\ 'array_reverse(': 'array array [, bool preserve_keys] | array',
1051\ 'array_search(': 'mixed needle, array haystack [, bool strict] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001052\ 'array_shift(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001053\ 'array_slice(': 'array array, int offset [, int length [, bool preserve_keys]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001054\ 'array_splice(': 'array &#38;input, int offset [, int length [, array replacement]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001055\ 'array_sum(': 'array array | number',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001056\ 'array_udiff_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001057\ 'array_udiff(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001058\ 'array_udiff_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001059\ 'array_uintersect_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001060\ 'array_uintersect(': 'array array1, array array2 [, array ..., callback data_compare_func] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001061\ 'array_uintersect_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array',
1062\ 'array_unique(': 'array array | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001063\ 'array_unshift(': 'array &#38;array, mixed var [, mixed ...] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001064\ 'array_values(': 'array input | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001065\ 'array_walk(': 'array &#38;array, callback funcname [, mixed userdata] | bool',
1066\ 'array_walk_recursive(': 'array &#38;input, callback funcname [, mixed userdata] | bool',
1067\ 'arsort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001068\ 'ascii2ebcdic(': 'string ascii_str | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001069\ 'asinh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001070\ 'asin(': 'float arg | float',
1071\ 'asort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001072\ 'aspell_check(': 'int dictionary_link, string word | bool',
1073\ 'aspell_check_raw(': 'int dictionary_link, string word | bool',
1074\ 'aspell_new(': 'string master [, string personal] | int',
1075\ 'aspell_suggest(': 'int dictionary_link, string word | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001076\ 'assert(': 'mixed assertion | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001077\ 'assert_options(': 'int what [, mixed value] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001078\ 'atan2(': 'float y, float x | float',
1079\ 'atanh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001080\ 'atan(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001081\ 'base64_decode(': 'string encoded_data | string',
1082\ 'base64_encode(': 'string data | string',
1083\ 'base_convert(': 'string number, int frombase, int tobase | string',
1084\ 'basename(': 'string path [, string suffix] | string',
1085\ 'bcadd(': 'string left_operand, string right_operand [, int scale] | string',
1086\ 'bccomp(': 'string left_operand, string right_operand [, int scale] | int',
1087\ 'bcdiv(': 'string left_operand, string right_operand [, int scale] | string',
1088\ 'bcmod(': 'string left_operand, string modulus | string',
1089\ 'bcmul(': 'string left_operand, string right_operand [, int scale] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001090\ 'bcompiler_load_exe(': 'string filename | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001091\ 'bcompiler_load(': 'string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001092\ 'bcompiler_parse_class(': 'string class, string callback | bool',
1093\ 'bcompiler_read(': 'resource filehandle | bool',
1094\ 'bcompiler_write_class(': 'resource filehandle, string className [, string extends] | bool',
1095\ 'bcompiler_write_constant(': 'resource filehandle, string constantName | bool',
1096\ 'bcompiler_write_exe_footer(': 'resource filehandle, int startpos | bool',
1097\ 'bcompiler_write_file(': 'resource filehandle, string filename | bool',
1098\ 'bcompiler_write_footer(': 'resource filehandle | bool',
1099\ 'bcompiler_write_function(': 'resource filehandle, string functionName | bool',
1100\ 'bcompiler_write_functions_from_file(': 'resource filehandle, string fileName | bool',
1101\ 'bcompiler_write_header(': 'resource filehandle [, string write_ver] | bool',
1102\ 'bcpow(': 'string x, string y [, int scale] | string',
1103\ 'bcpowmod(': 'string x, string y, string modulus [, int scale] | string',
1104\ 'bcscale(': 'int scale | bool',
1105\ 'bcsqrt(': 'string operand [, int scale] | string',
1106\ 'bcsub(': 'string left_operand, string right_operand [, int scale] | string',
1107\ 'bin2hex(': 'string str | string',
1108\ 'bindec(': 'string binary_string | number',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001109\ 'bind_textdomain_codeset(': 'string domain, string codeset | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001110\ 'bindtextdomain(': 'string domain, string directory | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001111\ 'bzclose(': 'resource bz | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001112\ 'bzcompress(': 'string source [, int blocksize [, int workfactor]] | mixed',
1113\ 'bzdecompress(': 'string source [, int small] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001114\ 'bzerrno(': 'resource bz | int',
1115\ 'bzerror(': 'resource bz | array',
1116\ 'bzerrstr(': 'resource bz | string',
1117\ 'bzflush(': 'resource bz | int',
1118\ 'bzopen(': 'string filename, string mode | resource',
1119\ 'bzread(': 'resource bz [, int length] | string',
1120\ 'bzwrite(': 'resource bz, string data [, int length] | int',
1121\ 'cal_days_in_month(': 'int calendar, int month, int year | int',
1122\ 'cal_from_jd(': 'int jd, int calendar | array',
1123\ 'cal_info(': '[int calendar] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001124\ 'call_user_func_array(': 'callback function, array param_arr | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001125\ 'call_user_func(': 'callback function [, mixed parameter [, mixed ...]] | mixed',
1126\ 'call_user_method_array(': 'string method_name, object &#38;obj, array paramarr | mixed',
1127\ 'call_user_method(': 'string method_name, object &#38;obj [, mixed parameter [, mixed ...]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001128\ 'cal_to_jd(': 'int calendar, int month, int day, int year | int',
1129\ 'ccvs_add(': 'string session, string invoice, string argtype, string argval | string',
1130\ 'ccvs_auth(': 'string session, string invoice | string',
1131\ 'ccvs_command(': 'string session, string type, string argval | string',
1132\ 'ccvs_count(': 'string session, string type | int',
1133\ 'ccvs_delete(': 'string session, string invoice | string',
1134\ 'ccvs_done(': 'string sess | string',
1135\ 'ccvs_init(': 'string name | string',
1136\ 'ccvs_lookup(': 'string session, string invoice, int inum | string',
1137\ 'ccvs_new(': 'string session, string invoice | string',
1138\ 'ccvs_report(': 'string session, string type | string',
1139\ 'ccvs_return(': 'string session, string invoice | string',
1140\ 'ccvs_reverse(': 'string session, string invoice | string',
1141\ 'ccvs_sale(': 'string session, string invoice | string',
1142\ 'ccvs_status(': 'string session, string invoice | string',
1143\ 'ccvs_textvalue(': 'string session | string',
1144\ 'ccvs_void(': 'string session, string invoice | string',
1145\ 'ceil(': 'float value | float',
1146\ 'chdir(': 'string directory | bool',
1147\ 'checkdate(': 'int month, int day, int year | bool',
1148\ 'checkdnsrr(': 'string host [, string type] | int',
1149\ 'chgrp(': 'string filename, mixed group | bool',
1150\ 'chmod(': 'string filename, int mode | bool',
1151\ 'chown(': 'string filename, mixed user | bool',
1152\ 'chr(': 'int ascii | string',
1153\ 'chroot(': 'string directory | bool',
1154\ 'chunk_split(': 'string body [, int chunklen [, string end]] | string',
1155\ 'class_exists(': 'string class_name [, bool autoload] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001156\ 'class_implements(': 'mixed class [, bool autoload] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001157\ 'classkit_import(': 'string filename | array',
1158\ 'classkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool',
1159\ 'classkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool',
1160\ 'classkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool',
1161\ 'classkit_method_remove(': 'string classname, string methodname | bool',
1162\ 'classkit_method_rename(': 'string classname, string methodname, string newname | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001163\ 'class_parents(': 'mixed class [, bool autoload] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001164\ 'clearstatcache(': 'void | void',
1165\ 'closedir(': 'resource dir_handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001166\ 'closelog(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001167\ 'com_addref(': 'void | void',
1168\ 'com_create_guid(': 'void | string',
1169\ 'com_event_sink(': 'variant comobject, object sinkobject [, mixed sinkinterface] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001170\ 'com_get_active_object(': 'string progid [, int code_page] | variant',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001171\ 'com_get(': 'resource com_object, string property | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001172\ 'com_invoke(': 'resource com_object, string function_name [, mixed function_parameters] | mixed',
1173\ 'com_isenum(': 'variant com_module | bool',
1174\ 'com_load(': 'string module_name [, string server_name [, int codepage]] | resource',
1175\ 'com_load_typelib(': 'string typelib_name [, bool case_insensitive] | bool',
1176\ 'com_message_pump(': '[int timeoutms] | bool',
1177\ 'compact(': 'mixed varname [, mixed ...] | array',
1178\ 'com_print_typeinfo(': 'object comobject [, string dispinterface [, bool wantsink]] | bool',
1179\ 'com_release(': 'void | void',
1180\ 'com_set(': 'resource com_object, string property, mixed value | void',
1181\ 'connection_aborted(': 'void | int',
1182\ 'connection_status(': 'void | int',
1183\ 'connection_timeout(': 'void | bool',
1184\ 'constant(': 'string name | mixed',
1185\ 'convert_cyr_string(': 'string str, string from, string to | string',
1186\ 'convert_uudecode(': 'string data | string',
1187\ 'convert_uuencode(': 'string data | string',
1188\ 'copy(': 'string source, string dest | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001189\ 'cosh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001190\ 'cos(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001191\ 'count_chars(': 'string string [, int mode] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001192\ 'count(': 'mixed var [, int mode] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001193\ 'cpdf_add_annotation(': 'int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode] | bool',
1194\ 'cpdf_add_outline(': 'int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text | int',
1195\ 'cpdf_arc(': 'int pdf_document, float x_coor, float y_coor, float radius, float start, float end [, int mode] | bool',
1196\ 'cpdf_begin_text(': 'int pdf_document | bool',
1197\ 'cpdf_circle(': 'int pdf_document, float x_coor, float y_coor, float radius [, int mode] | bool',
1198\ 'cpdf_clip(': 'int pdf_document | bool',
1199\ 'cpdf_close(': 'int pdf_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001200\ 'cpdf_closepath_fill_stroke(': 'int pdf_document | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001201\ 'cpdf_closepath(': 'int pdf_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001202\ 'cpdf_closepath_stroke(': 'int pdf_document | bool',
1203\ 'cpdf_continue_text(': 'int pdf_document, string text | bool',
1204\ 'cpdf_curveto(': 'int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode] | bool',
1205\ 'cpdf_end_text(': 'int pdf_document | bool',
1206\ 'cpdf_fill(': 'int pdf_document | bool',
1207\ 'cpdf_fill_stroke(': 'int pdf_document | bool',
1208\ 'cpdf_finalize(': 'int pdf_document | bool',
1209\ 'cpdf_finalize_page(': 'int pdf_document, int page_number | bool',
1210\ 'cpdf_global_set_document_limits(': 'int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001211\ '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 +00001212\ 'cpdf_lineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1213\ 'cpdf_moveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1214\ 'cpdf_newpath(': 'int pdf_document | bool',
1215\ 'cpdf_open(': 'int compression [, string filename [, array doc_limits]] | int',
1216\ 'cpdf_output_buffer(': 'int pdf_document | bool',
1217\ 'cpdf_page_init(': 'int pdf_document, int page_number, int orientation, float height, float width [, float unit] | bool',
1218\ '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',
1219\ 'cpdf_rect(': 'int pdf_document, float x_coor, float y_coor, float width, float height [, int mode] | bool',
1220\ 'cpdf_restore(': 'int pdf_document | bool',
1221\ 'cpdf_rlineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1222\ 'cpdf_rmoveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1223\ 'cpdf_rotate(': 'int pdf_document, float angle | bool',
1224\ 'cpdf_rotate_text(': 'int pdfdoc, float angle | bool',
1225\ 'cpdf_save(': 'int pdf_document | bool',
1226\ 'cpdf_save_to_file(': 'int pdf_document, string filename | bool',
1227\ 'cpdf_scale(': 'int pdf_document, float x_scale, float y_scale | bool',
1228\ 'cpdf_set_action_url(': 'int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode] | bool',
1229\ 'cpdf_set_char_spacing(': 'int pdf_document, float space | bool',
1230\ 'cpdf_set_creator(': 'int pdf_document, string creator | bool',
1231\ 'cpdf_set_current_page(': 'int pdf_document, int page_number | bool',
1232\ 'cpdf_setdash(': 'int pdf_document, float white, float black | bool',
1233\ 'cpdf_setflat(': 'int pdf_document, float value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001234\ 'cpdf_set_font_directories(': 'int pdfdoc, string pfmdir, string pfbdir | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001235\ 'cpdf_set_font(': 'int pdf_document, string font_name, float size, string encoding | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001236\ 'cpdf_set_font_map_file(': 'int pdfdoc, string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001237\ 'cpdf_setgray_fill(': 'int pdf_document, float value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001238\ 'cpdf_setgray(': 'int pdf_document, float gray_value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001239\ 'cpdf_setgray_stroke(': 'int pdf_document, float gray_value | bool',
1240\ 'cpdf_set_horiz_scaling(': 'int pdf_document, float scale | bool',
1241\ 'cpdf_set_keywords(': 'int pdf_document, string keywords | bool',
1242\ 'cpdf_set_leading(': 'int pdf_document, float distance | bool',
1243\ 'cpdf_setlinecap(': 'int pdf_document, int value | bool',
1244\ 'cpdf_setlinejoin(': 'int pdf_document, int value | bool',
1245\ 'cpdf_setlinewidth(': 'int pdf_document, float width | bool',
1246\ 'cpdf_setmiterlimit(': 'int pdf_document, float value | bool',
1247\ '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 +00001248\ 'cpdf_setrgbcolor_fill(': 'int pdf_document, float red_value, float green_value, float blue_value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001249\ 'cpdf_setrgbcolor(': 'int pdf_document, float red_value, float green_value, float blue_value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001250\ 'cpdf_setrgbcolor_stroke(': 'int pdf_document, float red_value, float green_value, float blue_value | bool',
1251\ 'cpdf_set_subject(': 'int pdf_document, string subject | bool',
1252\ 'cpdf_set_text_matrix(': 'int pdf_document, array matrix | bool',
1253\ 'cpdf_set_text_pos(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool',
1254\ 'cpdf_set_text_rendering(': 'int pdf_document, int rendermode | bool',
1255\ 'cpdf_set_text_rise(': 'int pdf_document, float value | bool',
1256\ 'cpdf_set_title(': 'int pdf_document, string title | bool',
1257\ 'cpdf_set_viewer_preferences(': 'int pdfdoc, array preferences | bool',
1258\ 'cpdf_set_word_spacing(': 'int pdf_document, float space | bool',
1259\ 'cpdf_show(': 'int pdf_document, string text | bool',
1260\ 'cpdf_show_xy(': 'int pdf_document, string text, float x_coor, float y_coor [, int mode] | bool',
1261\ 'cpdf_stringwidth(': 'int pdf_document, string text | float',
1262\ 'cpdf_stroke(': 'int pdf_document | bool',
1263\ 'cpdf_text(': 'int pdf_document, string text [, float x_coor, float y_coor [, int mode [, float orientation [, int alignmode]]]] | bool',
1264\ 'cpdf_translate(': 'int pdf_document, float x_coor, float y_coor | bool',
1265\ 'crack_check(': 'resource dictionary, string password | bool',
1266\ 'crack_closedict(': '[resource dictionary] | bool',
1267\ 'crack_getlastmessage(': 'void | string',
1268\ 'crack_opendict(': 'string dictionary | resource',
1269\ 'crc32(': 'string str | int',
1270\ 'create_function(': 'string args, string code | string',
1271\ 'crypt(': 'string str [, string salt] | string',
1272\ 'ctype_alnum(': 'string text | bool',
1273\ 'ctype_alpha(': 'string text | bool',
1274\ 'ctype_cntrl(': 'string text | bool',
1275\ 'ctype_digit(': 'string text | bool',
1276\ 'ctype_graph(': 'string text | bool',
1277\ 'ctype_lower(': 'string text | bool',
1278\ 'ctype_print(': 'string text | bool',
1279\ 'ctype_punct(': 'string text | bool',
1280\ 'ctype_space(': 'string text | bool',
1281\ 'ctype_upper(': 'string text | bool',
1282\ 'ctype_xdigit(': 'string text | bool',
1283\ 'curl_close(': 'resource ch | void',
1284\ 'curl_copy_handle(': 'resource ch | resource',
1285\ 'curl_errno(': 'resource ch | int',
1286\ 'curl_error(': 'resource ch | string',
1287\ 'curl_exec(': 'resource ch | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001288\ 'curl_getinfo(': 'resource ch [, int opt] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001289\ 'curl_init(': '[string url] | resource',
1290\ 'curl_multi_add_handle(': 'resource mh, resource ch | int',
1291\ 'curl_multi_close(': 'resource mh | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001292\ 'curl_multi_exec(': 'resource mh, int &#38;still_running | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001293\ 'curl_multi_getcontent(': 'resource ch | string',
1294\ 'curl_multi_info_read(': 'resource mh | array',
1295\ 'curl_multi_init(': 'void | resource',
1296\ 'curl_multi_remove_handle(': 'resource mh, resource ch | int',
1297\ 'curl_multi_select(': 'resource mh [, float timeout] | int',
1298\ 'curl_setopt(': 'resource ch, int option, mixed value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001299\ 'curl_version(': '[int version] | array',
1300\ 'current(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001301\ 'cybercash_base64_decode(': 'string inbuff | string',
1302\ 'cybercash_base64_encode(': 'string inbuff | string',
1303\ 'cybercash_decr(': 'string wmk, string sk, string inbuff | array',
1304\ 'cybercash_encr(': 'string wmk, string sk, string inbuff | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001305\ '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',
1306\ 'cybermut_creerreponsecm(': 'string sentence | string',
1307\ 'cybermut_testmac(': 'string code_mac, string version, string tpe, string cdate, string price, string ref_command, string text_free, string code_return | bool',
1308\ '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 +00001309\ 'cyrus_bind(': 'resource connection, array callbacks | bool',
1310\ 'cyrus_close(': 'resource connection | bool',
1311\ 'cyrus_connect(': '[string host [, string port [, int flags]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001312\ 'cyrus_query(': 'resource connection, string query | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001313\ 'cyrus_unbind(': 'resource connection, string trigger_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001314\ 'date_default_timezone_get(': 'void | string',
1315\ 'date_default_timezone_set(': 'string timezone_identifier | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001316\ 'date(': 'string format [, int timestamp] | string',
1317\ 'date_sunrise(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed',
1318\ 'date_sunset(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001319\ 'db2_autocommit(': 'resource connection [, bool value] | mixed',
1320\ 'db2_bind_param(': 'resource stmt, int parameter-number, string variable-name [, int parameter-type [, int data-type [, int precision [, int scale]]]] | bool',
1321\ 'db2_client_info(': 'resource connection | object',
1322\ 'db2_close(': 'resource connection | bool',
1323\ 'db2_column_privileges(': 'resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]] | resource',
1324\ 'db2_columns(': 'resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]] | resource',
1325\ 'db2_commit(': 'resource connection | bool',
1326\ 'db2_connect(': 'string database, string username, string password [, array options] | resource',
1327\ 'db2_conn_error(': '[resource connection] | string',
1328\ 'db2_conn_errormsg(': '[resource connection] | string',
1329\ 'db2_cursor_type(': 'resource stmt | int',
1330\ 'db2_exec(': 'resource connection, string statement [, array options] | resource',
1331\ 'db2_execute(': 'resource stmt [, array parameters] | bool',
1332\ 'db2_fetch_array(': 'resource stmt [, int row_number] | array',
1333\ 'db2_fetch_assoc(': 'resource stmt [, int row_number] | array',
1334\ 'db2_fetch_both(': 'resource stmt [, int row_number] | array',
1335\ 'db2_fetch_object(': 'resource stmt [, int row_number] | object',
1336\ 'db2_fetch_row(': 'resource stmt [, int row_number] | bool',
1337\ 'db2_field_display_size(': 'resource stmt, mixed column | int',
1338\ 'db2_field_name(': 'resource stmt, mixed column | string',
1339\ 'db2_field_num(': 'resource stmt, mixed column | int',
1340\ 'db2_field_precision(': 'resource stmt, mixed column | int',
1341\ 'db2_field_scale(': 'resource stmt, mixed column | int',
1342\ 'db2_field_type(': 'resource stmt, mixed column | string',
1343\ 'db2_field_width(': 'resource stmt, mixed column | int',
1344\ 'db2_foreign_keys(': 'resource connection, string qualifier, string schema, string table-name | resource',
1345\ 'db2_free_result(': 'resource stmt | bool',
1346\ 'db2_free_stmt(': 'resource stmt | bool',
1347\ 'db2_next_result(': 'resource stmt | resource',
1348\ 'db2_num_fields(': 'resource stmt | int',
1349\ 'db2_num_rows(': 'resource stmt | int',
1350\ 'db2_pconnect(': 'string database, string username, string password [, array options] | resource',
1351\ 'db2_prepare(': 'resource connection, string statement [, array options] | resource',
1352\ 'db2_primary_keys(': 'resource connection, string qualifier, string schema, string table-name | resource',
1353\ 'db2_procedure_columns(': 'resource connection, string qualifier, string schema, string procedure, string parameter | resource',
1354\ 'db2_procedures(': 'resource connection, string qualifier, string schema, string procedure | resource',
1355\ 'db2_result(': 'resource stmt, mixed column | mixed',
1356\ 'db2_rollback(': 'resource connection | bool',
1357\ 'db2_server_info(': 'resource connection | object',
1358\ 'db2_special_columns(': 'resource connection, string qualifier, string schema, string table_name, int scope | resource',
1359\ 'db2_statistics(': 'resource connection, string qualifier, string schema, string table-name, bool unique | resource',
1360\ 'db2_stmt_error(': '[resource stmt] | string',
1361\ 'db2_stmt_errormsg(': '[resource stmt] | string',
1362\ 'db2_table_privileges(': 'resource connection [, string qualifier [, string schema [, string table_name]]] | resource',
1363\ 'db2_tables(': 'resource connection [, string qualifier [, string schema [, string table-name [, string table-type]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001364\ 'dba_close(': 'resource handle | void',
1365\ 'dba_delete(': 'string key, resource handle | bool',
1366\ 'dba_exists(': 'string key, resource handle | bool',
1367\ 'dba_fetch(': 'string key, resource handle | string',
1368\ 'dba_firstkey(': 'resource handle | string',
1369\ 'dba_handlers(': '[bool full_info] | array',
1370\ 'dba_insert(': 'string key, string value, resource handle | bool',
1371\ 'dba_key_split(': 'mixed key | mixed',
1372\ 'dba_list(': 'void | array',
1373\ 'dba_nextkey(': 'resource handle | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001374\ 'dba_open(': 'string path, string mode [, string handler [, mixed ...]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001375\ 'dba_optimize(': 'resource handle | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001376\ 'dba_popen(': 'string path, string mode [, string handler [, mixed ...]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001377\ 'dba_replace(': 'string key, string value, resource handle | bool',
1378\ 'dbase_add_record(': 'int dbase_identifier, array record | bool',
1379\ 'dbase_close(': 'int dbase_identifier | bool',
1380\ 'dbase_create(': 'string filename, array fields | int',
1381\ 'dbase_delete_record(': 'int dbase_identifier, int record_number | bool',
1382\ 'dbase_get_header_info(': 'int dbase_identifier | array',
1383\ 'dbase_get_record(': 'int dbase_identifier, int record_number | array',
1384\ 'dbase_get_record_with_names(': 'int dbase_identifier, int record_number | array',
1385\ 'dbase_numfields(': 'int dbase_identifier | int',
1386\ 'dbase_numrecords(': 'int dbase_identifier | int',
1387\ 'dbase_open(': 'string filename, int mode | int',
1388\ 'dbase_pack(': 'int dbase_identifier | bool',
1389\ 'dbase_replace_record(': 'int dbase_identifier, array record, int record_number | bool',
1390\ 'dba_sync(': 'resource handle | bool',
1391\ 'dblist(': 'void | string',
1392\ 'dbmclose(': 'resource dbm_identifier | bool',
1393\ 'dbmdelete(': 'resource dbm_identifier, string key | bool',
1394\ 'dbmexists(': 'resource dbm_identifier, string key | bool',
1395\ 'dbmfetch(': 'resource dbm_identifier, string key | string',
1396\ 'dbmfirstkey(': 'resource dbm_identifier | string',
1397\ 'dbminsert(': 'resource dbm_identifier, string key, string value | int',
1398\ 'dbmnextkey(': 'resource dbm_identifier, string key | string',
1399\ 'dbmopen(': 'string filename, string flags | resource',
1400\ 'dbmreplace(': 'resource dbm_identifier, string key, string value | int',
1401\ 'dbplus_add(': 'resource relation, array tuple | int',
1402\ 'dbplus_aql(': 'string query [, string server [, string dbpath]] | resource',
1403\ 'dbplus_chdir(': '[string newdir] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001404\ 'dbplus_close(': 'resource relation | mixed',
1405\ 'dbplus_curr(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001406\ 'dbplus_errcode(': '[int errno] | string',
1407\ 'dbplus_errno(': 'void | int',
1408\ 'dbplus_find(': 'resource relation, array constraints, mixed tuple | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001409\ 'dbplus_first(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001410\ 'dbplus_flush(': 'resource relation | int',
1411\ 'dbplus_freealllocks(': 'void | int',
1412\ 'dbplus_freelock(': 'resource relation, string tname | int',
1413\ 'dbplus_freerlocks(': 'resource relation | int',
1414\ 'dbplus_getlock(': 'resource relation, string tname | int',
1415\ 'dbplus_getunique(': 'resource relation, int uniqueid | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001416\ 'dbplus_info(': 'resource relation, string key, array &#38;result | int',
1417\ 'dbplus_last(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001418\ 'dbplus_lockrel(': 'resource relation | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001419\ 'dbplus_next(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001420\ 'dbplus_open(': 'string name | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001421\ 'dbplus_prev(': 'resource relation, array &#38;tuple | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001422\ 'dbplus_rchperm(': 'resource relation, int mask, string user, string group | int',
1423\ 'dbplus_rcreate(': 'string name, mixed domlist [, bool overwrite] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001424\ 'dbplus_rcrtexact(': 'string name, resource relation [, bool overwrite] | mixed',
1425\ 'dbplus_rcrtlike(': 'string name, resource relation [, int overwrite] | mixed',
1426\ 'dbplus_resolve(': 'string relation_name | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001427\ 'dbplus_restorepos(': 'resource relation, array tuple | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001428\ 'dbplus_rkeys(': 'resource relation, mixed domlist | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001429\ 'dbplus_ropen(': 'string name | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001430\ 'dbplus_rquery(': 'string query [, string dbpath] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001431\ 'dbplus_rrename(': 'resource relation, string name | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001432\ 'dbplus_rsecindex(': 'resource relation, mixed domlist, int type | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001433\ 'dbplus_runlink(': 'resource relation | int',
1434\ 'dbplus_rzap(': 'resource relation | int',
1435\ 'dbplus_savepos(': 'resource relation | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001436\ 'dbplus_setindexbynumber(': 'resource relation, int idx_number | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001437\ 'dbplus_setindex(': 'resource relation, string idx_name | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001438\ 'dbplus_sql(': 'string query [, string server [, string dbpath]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001439\ 'dbplus_tcl(': 'int sid, string script | string',
1440\ 'dbplus_tremove(': 'resource relation, array tuple [, array &#38;current] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001441\ 'dbplus_undo(': 'resource relation | int',
1442\ 'dbplus_undoprepare(': 'resource relation | int',
1443\ 'dbplus_unlockrel(': 'resource relation | int',
1444\ 'dbplus_unselect(': 'resource relation | int',
1445\ 'dbplus_update(': 'resource relation, array old, array new | int',
1446\ 'dbplus_xlockrel(': 'resource relation | int',
1447\ 'dbplus_xunlockrel(': 'resource relation | int',
1448\ 'dbx_close(': 'object link_identifier | bool',
1449\ 'dbx_compare(': 'array row_a, array row_b, string column_key [, int flags] | int',
1450\ 'dbx_connect(': 'mixed module, string host, string database, string username, string password [, int persistent] | object',
1451\ 'dbx_error(': 'object link_identifier | string',
1452\ 'dbx_escape_string(': 'object link_identifier, string text | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001453\ 'dbx_fetch_row(': 'object result_identifier | mixed',
1454\ 'dbx_query(': 'object link_identifier, string sql_statement [, int flags] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001455\ 'dbx_sort(': 'object result, string user_compare_function | bool',
1456\ 'dcgettext(': 'string domain, string message, int category | string',
1457\ 'dcngettext(': 'string domain, string msgid1, string msgid2, int n, int category | string',
1458\ 'deaggregate(': 'object object [, string class_name] | void',
1459\ 'debug_backtrace(': 'void | array',
1460\ 'debugger_off(': 'void | int',
1461\ 'debugger_on(': 'string address | int',
1462\ 'debug_print_backtrace(': 'void | void',
1463\ 'debug_zval_dump(': 'mixed variable | void',
1464\ 'decbin(': 'int number | string',
1465\ 'dechex(': 'int number | string',
1466\ 'decoct(': 'int number | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001467\ 'defined(': 'string name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001468\ 'define(': 'string name, mixed value [, bool case_insensitive] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001469\ 'define_syslog_variables(': 'void | void',
1470\ 'deg2rad(': 'float number | float',
1471\ 'delete(': 'string file | void',
1472\ 'dgettext(': 'string domain, string message | string',
1473\ 'dio_close(': 'resource fd | void',
1474\ 'dio_fcntl(': 'resource fd, int cmd [, mixed args] | mixed',
1475\ 'dio_open(': 'string filename, int flags [, int mode] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001476\ 'dio_read(': 'resource fd [, int len] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001477\ 'dio_seek(': 'resource fd, int pos [, int whence] | int',
1478\ 'dio_stat(': 'resource fd | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001479\ 'dio_tcsetattr(': 'resource fd, array options | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001480\ 'dio_truncate(': 'resource fd, int offset | bool',
1481\ 'dio_write(': 'resource fd, string data [, int len] | int',
1482\ 'dirname(': 'string path | string',
1483\ 'disk_free_space(': 'string directory | float',
1484\ 'disk_total_space(': 'string directory | float',
1485\ 'dl(': 'string library | int',
1486\ 'dngettext(': 'string domain, string msgid1, string msgid2, int n | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001487\ 'dns_check_record(': 'string host [, string type] | bool',
1488\ 'dns_get_mx(': 'string hostname, array &#38;mxhosts [, array &#38;weight] | bool',
1489\ 'dns_get_record(': 'string hostname [, int type [, array &#38;authns, array &#38;addtl]] | array',
1490\ 'DomDocument-&#62;add_root(': 'string name | domelement',
1491\ 'DomDocument-&#62;create_attribute(': 'string name, string value | domattribute',
1492\ 'DomDocument-&#62;create_cdata_section(': 'string content | domcdata',
1493\ 'DomDocument-&#62;create_comment(': 'string content | domcomment',
1494\ 'DomDocument-&#62;create_element(': 'string name | domelement',
1495\ 'DomDocument-&#62;create_element_ns(': 'string uri, string name [, string prefix] | domelement',
1496\ 'DomDocument-&#62;create_entity_reference(': 'string content | domentityreference',
1497\ 'DomDocument-&#62;create_processing_instruction(': 'string content | domprocessinginstruction',
1498\ 'DomDocument-&#62;create_text_node(': 'string content | domtext',
1499\ 'DomDocument-&#62;doctype(': 'void | domdocumenttype',
1500\ 'DomDocument-&#62;document_element(': 'void | domelement',
1501\ 'DomDocument-&#62;dump_file(': 'string filename [, bool compressionmode [, bool format]] | string',
1502\ 'DomDocument-&#62;dump_mem(': '[bool format [, string encoding]] | string',
1503\ 'DomDocument-&#62;get_element_by_id(': 'string id | domelement',
1504\ 'DomDocument-&#62;get_elements_by_tagname(': 'string name | array',
1505\ 'DomDocument-&#62;html_dump_mem(': 'void | string',
1506\ 'DomDocument-&#62;xinclude(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001507\ 'dom_import_simplexml(': 'SimpleXMLElement node | DOMElement',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001508\ 'DomNode-&#62;append_sibling(': 'domelement newnode | domelement',
1509\ 'DomNode-&#62;attributes(': 'void | array',
1510\ 'DomNode-&#62;child_nodes(': 'void | array',
1511\ 'DomNode-&#62;clone_node(': 'void | domelement',
1512\ 'DomNode-&#62;dump_node(': 'void | string',
1513\ 'DomNode-&#62;first_child(': 'void | domelement',
1514\ 'DomNode-&#62;get_content(': 'void | string',
1515\ 'DomNode-&#62;has_attributes(': 'void | bool',
1516\ 'DomNode-&#62;has_child_nodes(': 'void | bool',
1517\ 'DomNode-&#62;insert_before(': 'domelement newnode, domelement refnode | domelement',
1518\ 'DomNode-&#62;is_blank_node(': 'void | bool',
1519\ 'DomNode-&#62;last_child(': 'void | domelement',
1520\ 'DomNode-&#62;next_sibling(': 'void | domelement',
1521\ 'DomNode-&#62;node_name(': 'void | string',
1522\ 'DomNode-&#62;node_type(': 'void | int',
1523\ 'DomNode-&#62;node_value(': 'void | string',
1524\ 'DomNode-&#62;owner_document(': 'void | domdocument',
1525\ 'DomNode-&#62;parent_node(': 'void | domnode',
1526\ 'DomNode-&#62;prefix(': 'void | string',
1527\ 'DomNode-&#62;previous_sibling(': 'void | domelement',
1528\ 'DomNode-&#62;remove_child(': 'domtext oldchild | domtext',
1529\ 'DomNode-&#62;replace_child(': 'domelement oldnode, domelement newnode | domelement',
1530\ 'DomNode-&#62;replace_node(': 'domelement newnode | domelement',
1531\ 'DomNode-&#62;set_content(': 'string content | bool',
1532\ 'DomNode-&#62;set_name(': 'void | bool',
1533\ 'DomNode-&#62;set_namespace(': 'string uri [, string prefix] | void',
1534\ 'DomNode-&#62;unlink_node(': 'void | void',
1535\ 'domxml_new_doc(': 'string version | DomDocument',
1536\ 'domxml_open_file(': 'string filename [, int mode [, array &#38;error]] | DomDocument',
1537\ 'domxml_open_mem(': 'string str [, int mode [, array &#38;error]] | DomDocument',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001538\ 'domxml_version(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001539\ 'domxml_xmltree(': 'string str | DomDocument',
1540\ 'domxml_xslt_stylesheet_doc(': 'DomDocument xsl_doc | DomXsltStylesheet',
1541\ 'domxml_xslt_stylesheet_file(': 'string xsl_file | DomXsltStylesheet',
1542\ 'domxml_xslt_stylesheet(': 'string xsl_buf | DomXsltStylesheet',
1543\ 'domxml_xslt_version(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001544\ 'dotnet_load(': 'string assembly_name [, string datatype_name [, int codepage]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001545\ 'each(': 'array &#38;array | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001546\ 'easter_date(': '[int year] | int',
1547\ 'easter_days(': '[int year [, int method]] | int',
1548\ 'ebcdic2ascii(': 'string ebcdic_str | int',
1549\ 'echo(': 'string arg1 [, string ...] | void',
1550\ 'empty(': 'mixed var | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001551\ 'end(': 'array &#38;array | mixed',
1552\ 'ereg(': 'string pattern, string string [, array &#38;regs] | int',
1553\ 'eregi(': 'string pattern, string string [, array &#38;regs] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001554\ 'eregi_replace(': 'string pattern, string replacement, string string | string',
1555\ 'ereg_replace(': 'string pattern, string replacement, string string | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001556\ 'error_log(': 'string message [, int message_type [, string destination [, string extra_headers]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001557\ 'error_reporting(': '[int level] | int',
1558\ 'escapeshellarg(': 'string arg | string',
1559\ 'escapeshellcmd(': 'string command | string',
1560\ 'eval(': 'string code_str | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001561\ 'exec(': 'string command [, array &#38;output [, int &#38;return_var]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001562\ 'exif_imagetype(': 'string filename | int',
1563\ 'exif_read_data(': 'string filename [, string sections [, bool arrays [, bool thumbnail]]] | array',
1564\ 'exif_tagname(': 'string index | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001565\ 'exif_thumbnail(': 'string filename [, int &#38;width [, int &#38;height [, int &#38;imagetype]]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001566\ 'exit(': '[string status] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001567\ 'expect_expectl(': 'resource expect, array cases, string &#38;match | mixed',
1568\ 'expect_popen(': 'string command | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001569\ 'exp(': 'float arg | float',
1570\ 'explode(': 'string separator, string string [, int limit] | array',
1571\ 'expm1(': 'float number | float',
1572\ 'extension_loaded(': 'string name | bool',
1573\ 'extract(': 'array var_array [, int extract_type [, string prefix]] | int',
1574\ 'ezmlm_hash(': 'string addr | int',
1575\ 'fam_cancel_monitor(': 'resource fam, resource fam_monitor | bool',
1576\ 'fam_close(': 'resource fam | void',
1577\ 'fam_monitor_collection(': 'resource fam, string dirname, int depth, string mask | resource',
1578\ 'fam_monitor_directory(': 'resource fam, string dirname | resource',
1579\ 'fam_monitor_file(': 'resource fam, string filename | resource',
1580\ 'fam_next_event(': 'resource fam | array',
1581\ 'fam_open(': '[string appname] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001582\ 'fam_pending(': 'resource fam | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001583\ 'fam_resume_monitor(': 'resource fam, resource fam_monitor | bool',
1584\ 'fam_suspend_monitor(': 'resource fam, resource fam_monitor | bool',
1585\ 'fbsql_affected_rows(': '[resource link_identifier] | int',
1586\ 'fbsql_autocommit(': 'resource link_identifier [, bool OnOff] | bool',
1587\ 'fbsql_blob_size(': 'string blob_handle [, resource link_identifier] | int',
1588\ 'fbsql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | resource',
1589\ 'fbsql_clob_size(': 'string clob_handle [, resource link_identifier] | int',
1590\ 'fbsql_close(': '[resource link_identifier] | bool',
1591\ 'fbsql_commit(': '[resource link_identifier] | bool',
1592\ 'fbsql_connect(': '[string hostname [, string username [, string password]]] | resource',
1593\ 'fbsql_create_blob(': 'string blob_data [, resource link_identifier] | string',
1594\ 'fbsql_create_clob(': 'string clob_data [, resource link_identifier] | string',
1595\ 'fbsql_create_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool',
1596\ 'fbsql_database(': 'resource link_identifier [, string database] | string',
1597\ 'fbsql_database_password(': 'resource link_identifier [, string database_password] | string',
1598\ 'fbsql_data_seek(': 'resource result_identifier, int row_number | bool',
1599\ 'fbsql_db_query(': 'string database, string query [, resource link_identifier] | resource',
1600\ 'fbsql_db_status(': 'string database_name [, resource link_identifier] | int',
1601\ 'fbsql_drop_db(': 'string database_name [, resource link_identifier] | bool',
1602\ 'fbsql_errno(': '[resource link_identifier] | int',
1603\ 'fbsql_error(': '[resource link_identifier] | string',
1604\ 'fbsql_fetch_array(': 'resource result [, int result_type] | array',
1605\ 'fbsql_fetch_assoc(': 'resource result | array',
1606\ 'fbsql_fetch_field(': 'resource result [, int field_offset] | object',
1607\ 'fbsql_fetch_lengths(': 'resource result | array',
1608\ 'fbsql_fetch_object(': 'resource result [, int result_type] | object',
1609\ 'fbsql_fetch_row(': 'resource result | array',
1610\ 'fbsql_field_flags(': 'resource result [, int field_offset] | string',
1611\ 'fbsql_field_len(': 'resource result [, int field_offset] | int',
1612\ 'fbsql_field_name(': 'resource result [, int field_index] | string',
1613\ 'fbsql_field_seek(': 'resource result [, int field_offset] | bool',
1614\ 'fbsql_field_table(': 'resource result [, int field_offset] | string',
1615\ 'fbsql_field_type(': 'resource result [, int field_offset] | string',
1616\ 'fbsql_free_result(': 'resource result | bool',
1617\ 'fbsql_get_autostart_info(': '[resource link_identifier] | array',
1618\ 'fbsql_hostname(': 'resource link_identifier [, string host_name] | string',
1619\ 'fbsql_insert_id(': '[resource link_identifier] | int',
1620\ 'fbsql_list_dbs(': '[resource link_identifier] | resource',
1621\ 'fbsql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource',
1622\ 'fbsql_list_tables(': 'string database [, resource link_identifier] | resource',
1623\ 'fbsql_next_result(': 'resource result_id | bool',
1624\ 'fbsql_num_fields(': 'resource result | int',
1625\ 'fbsql_num_rows(': 'resource result | int',
1626\ 'fbsql_password(': 'resource link_identifier [, string password] | string',
1627\ 'fbsql_pconnect(': '[string hostname [, string username [, string password]]] | resource',
1628\ 'fbsql_query(': 'string query [, resource link_identifier [, int batch_size]] | resource',
1629\ 'fbsql_read_blob(': 'string blob_handle [, resource link_identifier] | string',
1630\ 'fbsql_read_clob(': 'string clob_handle [, resource link_identifier] | string',
1631\ 'fbsql_result(': 'resource result [, int row [, mixed field]] | mixed',
1632\ 'fbsql_rollback(': '[resource link_identifier] | bool',
1633\ 'fbsql_select_db(': '[string database_name [, resource link_identifier]] | bool',
1634\ 'fbsql_set_lob_mode(': 'resource result, string database_name | bool',
1635\ 'fbsql_set_password(': 'resource link_identifier, string user, string password, string old_password | bool',
1636\ 'fbsql_set_transaction(': 'resource link_identifier, int Locking, int Isolation | void',
1637\ 'fbsql_start_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool',
1638\ 'fbsql_stop_db(': 'string database_name [, resource link_identifier] | bool',
1639\ 'fbsql_tablename(': 'resource result, int i | string',
1640\ 'fbsql_username(': 'resource link_identifier [, string username] | string',
1641\ 'fbsql_warnings(': '[bool OnOff] | bool',
1642\ 'fclose(': 'resource handle | bool',
1643\ 'fdf_add_doc_javascript(': 'resource fdfdoc, string script_name, string script_code | bool',
1644\ 'fdf_add_template(': 'resource fdfdoc, int newpage, string filename, string template, int rename | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001645\ 'fdf_close(': 'resource fdf_document | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001646\ 'fdf_create(': 'void | resource',
1647\ 'fdf_enum_values(': 'resource fdfdoc, callback function [, mixed userdata] | bool',
1648\ 'fdf_errno(': 'void | int',
1649\ 'fdf_error(': '[int error_code] | string',
1650\ 'fdf_get_ap(': 'resource fdf_document, string field, int face, string filename | bool',
1651\ 'fdf_get_attachment(': 'resource fdf_document, string fieldname, string savepath | array',
1652\ 'fdf_get_encoding(': 'resource fdf_document | string',
1653\ 'fdf_get_file(': 'resource fdf_document | string',
1654\ 'fdf_get_flags(': 'resource fdfdoc, string fieldname, int whichflags | int',
1655\ 'fdf_get_opt(': 'resource fdfdof, string fieldname [, int element] | mixed',
1656\ 'fdf_get_status(': 'resource fdf_document | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001657\ 'fdf_get_value(': 'resource fdf_document, string fieldname [, int which] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001658\ 'fdf_get_version(': '[resource fdf_document] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001659\ 'fdf_header(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001660\ 'fdf_next_field_name(': 'resource fdf_document [, string fieldname] | string',
1661\ 'fdf_open(': 'string filename | resource',
1662\ 'fdf_open_string(': 'string fdf_data | resource',
1663\ 'fdf_remove_item(': 'resource fdfdoc, string fieldname, int item | bool',
1664\ 'fdf_save(': 'resource fdf_document [, string filename] | bool',
1665\ 'fdf_save_string(': 'resource fdf_document | string',
1666\ 'fdf_set_ap(': 'resource fdf_document, string field_name, int face, string filename, int page_number | bool',
1667\ 'fdf_set_encoding(': 'resource fdf_document, string encoding | bool',
1668\ 'fdf_set_file(': 'resource fdf_document, string url [, string target_frame] | bool',
1669\ 'fdf_set_flags(': 'resource fdf_document, string fieldname, int whichFlags, int newFlags | bool',
1670\ 'fdf_set_javascript_action(': 'resource fdf_document, string fieldname, int trigger, string script | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001671\ 'fdf_set_on_import_javascript(': 'resource fdfdoc, string script, bool before_data_import | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001672\ 'fdf_set_opt(': 'resource fdf_document, string fieldname, int element, string str1, string str2 | bool',
1673\ 'fdf_set_status(': 'resource fdf_document, string status | bool',
1674\ 'fdf_set_submit_form_action(': 'resource fdf_document, string fieldname, int trigger, string script, int flags | bool',
1675\ 'fdf_set_target_frame(': 'resource fdf_document, string frame_name | bool',
1676\ 'fdf_set_value(': 'resource fdf_document, string fieldname, mixed value [, int isName] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001677\ 'fdf_set_version(': 'resource fdf_document, string version | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001678\ 'feof(': 'resource handle | bool',
1679\ 'fflush(': 'resource handle | bool',
1680\ 'fgetc(': 'resource handle | string',
1681\ 'fgetcsv(': 'resource handle [, int length [, string delimiter [, string enclosure]]] | array',
1682\ 'fgets(': 'resource handle [, int length] | string',
1683\ 'fgetss(': 'resource handle [, int length [, string allowable_tags]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001684\ 'fileatime(': 'string filename | int',
1685\ 'filectime(': 'string filename | int',
1686\ 'file_exists(': 'string filename | bool',
1687\ 'file_get_contents(': 'string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]] | string',
1688\ 'filegroup(': 'string filename | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001689\ 'file(': 'string filename [, int use_include_path [, resource context]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001690\ 'fileinode(': 'string filename | int',
1691\ 'filemtime(': 'string filename | int',
1692\ 'fileowner(': 'string filename | int',
1693\ 'fileperms(': 'string filename | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001694\ 'filepro_fieldcount(': 'void | int',
1695\ 'filepro_fieldname(': 'int field_number | string',
1696\ 'filepro_fieldtype(': 'int field_number | string',
1697\ 'filepro_fieldwidth(': 'int field_number | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001698\ 'filepro(': 'string directory | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001699\ 'filepro_retrieve(': 'int row_number, int field_number | string',
1700\ 'filepro_rowcount(': 'void | int',
1701\ 'file_put_contents(': 'string filename, mixed data [, int flags [, resource context]] | int',
1702\ 'filesize(': 'string filename | int',
1703\ 'filetype(': 'string filename | string',
1704\ 'floatval(': 'mixed var | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001705\ 'flock(': 'resource handle, int operation [, int &#38;wouldblock] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001706\ 'floor(': 'float value | float',
1707\ 'flush(': 'void | void',
1708\ 'fmod(': 'float x, float y | float',
1709\ 'fnmatch(': 'string pattern, string string [, int flags] | bool',
1710\ 'fopen(': 'string filename, string mode [, bool use_include_path [, resource zcontext]] | resource',
1711\ 'fpassthru(': 'resource handle | int',
1712\ 'fprintf(': 'resource handle, string format [, mixed args [, mixed ...]] | int',
1713\ 'fputcsv(': 'resource handle [, array fields [, string delimiter [, string enclosure]]] | int',
1714\ 'fread(': 'resource handle, int length | string',
1715\ 'frenchtojd(': 'int month, int day, int year | int',
1716\ 'fribidi_log2vis(': 'string str, string direction, int charset | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001717\ 'fscanf(': 'resource handle, string format [, mixed &#38;...] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001718\ 'fseek(': 'resource handle, int offset [, int whence] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001719\ 'fsockopen(': 'string target [, int port [, int &#38;errno [, string &#38;errstr [, float timeout]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001720\ 'fstat(': 'resource handle | array',
1721\ 'ftell(': 'resource handle | int',
1722\ 'ftok(': 'string pathname, string proj | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001723\ 'ftp_alloc(': 'resource ftp_stream, int filesize [, string &#38;result] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001724\ 'ftp_cdup(': 'resource ftp_stream | bool',
1725\ 'ftp_chdir(': 'resource ftp_stream, string directory | bool',
1726\ 'ftp_chmod(': 'resource ftp_stream, int mode, string filename | int',
1727\ 'ftp_close(': 'resource ftp_stream | bool',
1728\ 'ftp_connect(': 'string host [, int port [, int timeout]] | resource',
1729\ 'ftp_delete(': 'resource ftp_stream, string path | bool',
1730\ 'ftp_exec(': 'resource ftp_stream, string command | bool',
1731\ 'ftp_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | bool',
1732\ 'ftp_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | bool',
1733\ 'ftp_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | bool',
1734\ 'ftp_get_option(': 'resource ftp_stream, int option | mixed',
1735\ 'ftp_login(': 'resource ftp_stream, string username, string password | bool',
1736\ 'ftp_mdtm(': 'resource ftp_stream, string remote_file | int',
1737\ 'ftp_mkdir(': 'resource ftp_stream, string directory | string',
1738\ 'ftp_nb_continue(': 'resource ftp_stream | int',
1739\ 'ftp_nb_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | int',
1740\ 'ftp_nb_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | int',
1741\ 'ftp_nb_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | int',
1742\ 'ftp_nb_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | int',
1743\ 'ftp_nlist(': 'resource ftp_stream, string directory | array',
1744\ 'ftp_pasv(': 'resource ftp_stream, bool pasv | bool',
1745\ 'ftp_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | bool',
1746\ 'ftp_pwd(': 'resource ftp_stream | string',
1747\ 'ftp_raw(': 'resource ftp_stream, string command | array',
1748\ 'ftp_rawlist(': 'resource ftp_stream, string directory [, bool recursive] | array',
1749\ 'ftp_rename(': 'resource ftp_stream, string oldname, string newname | bool',
1750\ 'ftp_rmdir(': 'resource ftp_stream, string directory | bool',
1751\ 'ftp_set_option(': 'resource ftp_stream, int option, mixed value | bool',
1752\ 'ftp_site(': 'resource ftp_stream, string command | bool',
1753\ 'ftp_size(': 'resource ftp_stream, string remote_file | int',
1754\ 'ftp_ssl_connect(': 'string host [, int port [, int timeout]] | resource',
1755\ 'ftp_systype(': 'resource ftp_stream | string',
1756\ 'ftruncate(': 'resource handle, int size | bool',
1757\ 'func_get_arg(': 'int arg_num | mixed',
1758\ 'func_get_args(': 'void | array',
1759\ 'func_num_args(': 'void | int',
1760\ 'function_exists(': 'string function_name | bool',
1761\ 'fwrite(': 'resource handle, string string [, int length] | int',
1762\ 'gd_info(': 'void | array',
1763\ 'getallheaders(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001764\ 'get_browser(': '[string user_agent [, bool return_array]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001765\ 'get_cfg_var(': 'string varname | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001766\ 'get_class(': '[object obj] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001767\ 'get_class_methods(': 'mixed class_name | array',
1768\ 'get_class_vars(': 'string class_name | array',
1769\ 'get_current_user(': 'void | string',
1770\ 'getcwd(': 'void | string',
1771\ 'getdate(': '[int timestamp] | array',
1772\ 'get_declared_classes(': 'void | array',
1773\ 'get_declared_interfaces(': 'void | array',
1774\ 'get_defined_constants(': '[mixed categorize] | array',
1775\ 'get_defined_functions(': 'void | array',
1776\ 'get_defined_vars(': 'void | array',
1777\ 'getenv(': 'string varname | string',
1778\ 'get_extension_funcs(': 'string module_name | array',
1779\ 'get_headers(': 'string url [, int format] | array',
1780\ 'gethostbyaddr(': 'string ip_address | string',
1781\ 'gethostbyname(': 'string hostname | string',
1782\ 'gethostbynamel(': 'string hostname | array',
1783\ 'get_html_translation_table(': '[int table [, int quote_style]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001784\ 'getimagesize(': 'string filename [, array &#38;imageinfo] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001785\ 'get_included_files(': 'void | array',
1786\ 'get_include_path(': 'void | string',
1787\ 'getlastmod(': 'void | int',
1788\ 'get_loaded_extensions(': 'void | array',
1789\ 'get_magic_quotes_gpc(': 'void | int',
1790\ 'get_magic_quotes_runtime(': 'void | int',
1791\ 'get_meta_tags(': 'string filename [, bool use_include_path] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001792\ 'getmxrr(': 'string hostname, array &#38;mxhosts [, array &#38;weight] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001793\ 'getmygid(': 'void | int',
1794\ 'getmyinode(': 'void | int',
1795\ 'getmypid(': 'void | int',
1796\ 'getmyuid(': 'void | int',
1797\ 'get_object_vars(': 'object obj | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001798\ 'getopt(': 'string options | array',
1799\ 'get_parent_class(': '[mixed obj] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001800\ 'getprotobyname(': 'string name | int',
1801\ 'getprotobynumber(': 'int number | string',
1802\ 'getrandmax(': 'void | int',
1803\ 'get_resource_type(': 'resource handle | string',
1804\ 'getrusage(': '[int who] | array',
1805\ 'getservbyname(': 'string service, string protocol | int',
1806\ 'getservbyport(': 'int port, string protocol | string',
1807\ 'gettext(': 'string message | string',
1808\ 'gettimeofday(': '[bool return_float] | mixed',
1809\ 'gettype(': 'mixed var | string',
1810\ 'glob(': 'string pattern [, int flags] | array',
1811\ 'gmdate(': 'string format [, int timestamp] | string',
1812\ 'gmmktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int',
1813\ 'gmp_abs(': 'resource a | resource',
1814\ 'gmp_add(': 'resource a, resource b | resource',
1815\ 'gmp_and(': 'resource a, resource b | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001816\ 'gmp_clrbit(': 'resource &#38;a, int index | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001817\ 'gmp_cmp(': 'resource a, resource b | int',
1818\ 'gmp_com(': 'resource a | resource',
1819\ 'gmp_divexact(': 'resource n, resource d | resource',
1820\ 'gmp_div_q(': 'resource a, resource b [, int round] | resource',
1821\ 'gmp_div_qr(': 'resource n, resource d [, int round] | array',
1822\ 'gmp_div_r(': 'resource n, resource d [, int round] | resource',
1823\ 'gmp_fact(': 'int a | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001824\ 'gmp_gcdext(': 'resource a, resource b | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001825\ 'gmp_gcd(': 'resource a, resource b | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001826\ 'gmp_hamdist(': 'resource a, resource b | int',
1827\ 'gmp_init(': 'mixed number [, int base] | resource',
1828\ 'gmp_intval(': 'resource gmpnumber | int',
1829\ 'gmp_invert(': 'resource a, resource b | resource',
1830\ 'gmp_jacobi(': 'resource a, resource p | int',
1831\ 'gmp_legendre(': 'resource a, resource p | int',
1832\ 'gmp_mod(': 'resource n, resource d | resource',
1833\ 'gmp_mul(': 'resource a, resource b | resource',
1834\ 'gmp_neg(': 'resource a | resource',
1835\ 'gmp_or(': 'resource a, resource b | resource',
1836\ 'gmp_perfect_square(': 'resource a | bool',
1837\ 'gmp_popcount(': 'resource a | int',
1838\ 'gmp_pow(': 'resource base, int exp | resource',
1839\ 'gmp_powm(': 'resource base, resource exp, resource mod | resource',
1840\ 'gmp_prob_prime(': 'resource a [, int reps] | int',
1841\ 'gmp_random(': 'int limiter | resource',
1842\ 'gmp_scan0(': 'resource a, int start | int',
1843\ 'gmp_scan1(': 'resource a, int start | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001844\ 'gmp_setbit(': 'resource &#38;a, int index [, bool set_clear] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001845\ 'gmp_sign(': 'resource a | int',
1846\ 'gmp_sqrt(': 'resource a | resource',
1847\ 'gmp_sqrtrem(': 'resource a | array',
1848\ 'gmp_strval(': 'resource gmpnumber [, int base] | string',
1849\ 'gmp_sub(': 'resource a, resource b | resource',
1850\ 'gmp_xor(': 'resource a, resource b | resource',
1851\ 'gmstrftime(': 'string format [, int timestamp] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001852\ 'gnupg_adddecryptkey(': 'resource identifier, string fingerprint, string passphrase | bool',
1853\ 'gnupg_addencryptkey(': 'resource identifier, string fingerprint | bool',
1854\ 'gnupg_addsignkey(': 'resource identifier, string fingerprint [, string passphrase] | bool',
1855\ 'gnupg_cleardecryptkeys(': 'resource identifier | bool',
1856\ 'gnupg_clearencryptkeys(': 'resource identifier | bool',
1857\ 'gnupg_clearsignkeys(': 'resource identifier | bool',
1858\ 'gnupg_decrypt(': 'resource identifier, string text | string',
1859\ 'gnupg_decryptverify(': 'resource identifier, string text, string plaintext | array',
1860\ 'gnupg_encrypt(': 'resource identifier, string plaintext | string',
1861\ 'gnupg_encryptsign(': 'resource identifier, string plaintext | string',
1862\ 'gnupg_export(': 'resource identifier, string fingerprint | string',
1863\ 'gnupg_geterror(': 'resource identifier | string',
1864\ 'gnupg_getprotocol(': 'resource identifier | int',
1865\ 'gnupg_import(': 'resource identifier, string keydata | array',
1866\ 'gnupg_keyinfo(': 'resource identifier, string pattern | array',
1867\ 'gnupg_setarmor(': 'resource identifier, int armor | bool',
1868\ 'gnupg_seterrormode(': 'resource identifier, int errormode | void',
1869\ 'gnupg_setsignmode(': 'resource identifier, int signmode | bool',
1870\ 'gnupg_sign(': 'resource identifier, string plaintext | string',
1871\ 'gnupg_verify(': 'resource identifier, string signed_text, string signature [, string plaintext] | array',
1872\ 'gopher_parsedir(': 'string dirent | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001873\ 'gregoriantojd(': 'int month, int day, int year | int',
1874\ 'gzclose(': 'resource zp | bool',
1875\ 'gzcompress(': 'string data [, int level] | string',
1876\ 'gzdeflate(': 'string data [, int level] | string',
1877\ 'gzencode(': 'string data [, int level [, int encoding_mode]] | string',
1878\ 'gzeof(': 'resource zp | int',
1879\ 'gzfile(': 'string filename [, int use_include_path] | array',
1880\ 'gzgetc(': 'resource zp | string',
1881\ 'gzgets(': 'resource zp, int length | string',
1882\ 'gzgetss(': 'resource zp, int length [, string allowable_tags] | string',
1883\ 'gzinflate(': 'string data [, int length] | string',
1884\ 'gzopen(': 'string filename, string mode [, int use_include_path] | resource',
1885\ 'gzpassthru(': 'resource zp | int',
1886\ 'gzread(': 'resource zp, int length | string',
1887\ 'gzrewind(': 'resource zp | bool',
1888\ 'gzseek(': 'resource zp, int offset | int',
1889\ 'gztell(': 'resource zp | int',
1890\ 'gzuncompress(': 'string data [, int length] | string',
1891\ 'gzwrite(': 'resource zp, string string [, int length] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001892\ '__halt_compiler(': 'void | void',
1893\ 'hash_algos(': 'void | array',
1894\ 'hash_file(': 'string algo, string filename [, bool raw_output] | string',
1895\ 'hash_final(': 'resource context [, bool raw_output] | string',
1896\ 'hash_hmac_file(': 'string algo, string filename, string key [, bool raw_output] | string',
1897\ 'hash_hmac(': 'string algo, string data, string key [, bool raw_output] | string',
1898\ 'hash(': 'string algo, string data [, bool raw_output] | string',
1899\ 'hash_init(': 'string algo [, int options, string key] | resource',
1900\ 'hash_update_file(': 'resource context, string filename [, resource context] | bool',
1901\ 'hash_update(': 'resource context, string data | bool',
1902\ 'hash_update_stream(': 'resource context, resource handle [, int length] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001903\ 'header(': 'string string [, bool replace [, int http_response_code]] | void',
1904\ 'headers_list(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001905\ 'headers_sent(': '[string &#38;file [, int &#38;line]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001906\ 'hebrevc(': 'string hebrew_text [, int max_chars_per_line] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001907\ 'hebrev(': 'string hebrew_text [, int max_chars_per_line] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001908\ 'hexdec(': 'string hex_string | number',
1909\ 'highlight_file(': 'string filename [, bool return] | mixed',
1910\ 'highlight_string(': 'string str [, bool return] | mixed',
1911\ 'htmlentities(': 'string string [, int quote_style [, string charset]] | string',
1912\ 'html_entity_decode(': 'string string [, int quote_style [, string charset]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001913\ 'htmlspecialchars_decode(': 'string string [, int quote_style] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001914\ 'htmlspecialchars(': 'string string [, int quote_style [, string charset]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001915\ 'http_build_query(': 'array formdata [, string numeric_prefix] | string',
1916\ 'hw_api_attribute(': '[string name [, string value]] | HW_API_Attribute',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001917\ 'hw_api_attribute-&#62;key(': 'void | string',
1918\ 'hw_api_attribute-&#62;langdepvalue(': 'string language | string',
1919\ 'hw_api_attribute-&#62;value(': 'void | string',
1920\ 'hw_api_attribute-&#62;values(': 'void | array',
1921\ 'hw_api-&#62;checkin(': 'array parameter | bool',
1922\ 'hw_api-&#62;checkout(': 'array parameter | bool',
1923\ 'hw_api-&#62;children(': 'array parameter | array',
1924\ 'hw_api-&#62;content(': 'array parameter | HW_API_Content',
1925\ 'hw_api_content-&#62;mimetype(': 'void | string',
1926\ 'hw_api_content-&#62;read(': 'string buffer, int len | string',
1927\ 'hw_api-&#62;copy(': 'array parameter | hw_api_object',
1928\ 'hw_api-&#62;dbstat(': 'array parameter | hw_api_object',
1929\ 'hw_api-&#62;dcstat(': 'array parameter | hw_api_object',
1930\ 'hw_api-&#62;dstanchors(': 'array parameter | array',
1931\ 'hw_api-&#62;dstofsrcanchor(': 'array parameter | hw_api_object',
1932\ 'hw_api_error-&#62;count(': 'void | int',
1933\ 'hw_api_error-&#62;reason(': 'void | HW_API_Reason',
1934\ 'hw_api-&#62;find(': 'array parameter | array',
1935\ 'hw_api-&#62;ftstat(': 'array parameter | hw_api_object',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001936\ 'hwapi_hgcsp(': 'string hostname [, int port] | HW_API',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001937\ 'hw_api-&#62;hwstat(': 'array parameter | hw_api_object',
1938\ 'hw_api-&#62;identify(': 'array parameter | bool',
1939\ 'hw_api-&#62;info(': 'array parameter | array',
1940\ 'hw_api-&#62;insertanchor(': 'array parameter | hw_api_object',
1941\ 'hw_api-&#62;insertcollection(': 'array parameter | hw_api_object',
1942\ 'hw_api-&#62;insertdocument(': 'array parameter | hw_api_object',
1943\ 'hw_api-&#62;insert(': 'array parameter | hw_api_object',
1944\ 'hw_api-&#62;link(': 'array parameter | bool',
1945\ 'hw_api-&#62;lock(': 'array parameter | bool',
1946\ 'hw_api-&#62;move(': 'array parameter | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001947\ 'hw_api_content(': 'string content, string mimetype | HW_API_Content',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001948\ 'hw_api_object-&#62;assign(': 'array parameter | bool',
1949\ 'hw_api_object-&#62;attreditable(': 'array parameter | bool',
1950\ 'hw_api-&#62;objectbyanchor(': 'array parameter | hw_api_object',
1951\ 'hw_api_object-&#62;count(': 'array parameter | int',
1952\ 'hw_api-&#62;object(': 'array parameter | hw_api_object',
1953\ 'hw_api_object-&#62;insert(': 'HW_API_Attribute attribute | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001954\ 'hw_api_object(': 'array parameter | hw_api_object',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001955\ 'hw_api_object-&#62;remove(': 'string name | bool',
1956\ 'hw_api_object-&#62;title(': 'array parameter | string',
1957\ 'hw_api_object-&#62;value(': 'string name | string',
1958\ 'hw_api-&#62;parents(': 'array parameter | array',
1959\ 'hw_api_reason-&#62;description(': 'void | string',
1960\ 'hw_api_reason-&#62;type(': 'void | HW_API_Reason',
1961\ 'hw_api-&#62;remove(': 'array parameter | bool',
1962\ 'hw_api-&#62;replace(': 'array parameter | hw_api_object',
1963\ 'hw_api-&#62;setcommittedversion(': 'array parameter | hw_api_object',
1964\ 'hw_api-&#62;srcanchors(': 'array parameter | array',
1965\ 'hw_api-&#62;srcsofdst(': 'array parameter | array',
1966\ 'hw_api-&#62;unlock(': 'array parameter | bool',
1967\ 'hw_api-&#62;user(': 'array parameter | hw_api_object',
1968\ 'hw_api-&#62;userlist(': 'array parameter | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001969\ 'hw_array2objrec(': 'array object_array | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001970\ 'hw_changeobject(': 'int link, int objid, array attributes | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001971\ 'hw_children(': 'int connection, int objectID | array',
1972\ 'hw_childrenobj(': 'int connection, int objectID | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001973\ 'hw_close(': 'int connection | bool',
1974\ 'hw_connect(': 'string host, int port [, string username, string password] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001975\ 'hw_connection_info(': 'int link | void',
1976\ 'hw_cp(': 'int connection, array object_id_array, int destination_id | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001977\ 'hw_deleteobject(': 'int connection, int object_to_delete | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001978\ 'hw_docbyanchor(': 'int connection, int anchorID | int',
1979\ 'hw_docbyanchorobj(': 'int connection, int anchorID | string',
1980\ 'hw_document_attributes(': 'int hw_document | string',
1981\ 'hw_document_bodytag(': 'int hw_document [, string prefix] | string',
1982\ 'hw_document_content(': 'int hw_document | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001983\ 'hw_document_setcontent(': 'int hw_document, string content | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001984\ 'hw_document_size(': 'int hw_document | int',
1985\ 'hw_dummy(': 'int link, int id, int msgid | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001986\ 'hw_edittext(': 'int connection, int hw_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001987\ 'hw_error(': 'int connection | int',
1988\ 'hw_errormsg(': 'int connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001989\ 'hw_free_document(': 'int hw_document | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001990\ 'hw_getanchors(': 'int connection, int objectID | array',
1991\ 'hw_getanchorsobj(': 'int connection, int objectID | array',
1992\ 'hw_getandlock(': 'int connection, int objectID | string',
1993\ 'hw_getchildcoll(': 'int connection, int objectID | array',
1994\ 'hw_getchildcollobj(': 'int connection, int objectID | array',
1995\ 'hw_getchilddoccoll(': 'int connection, int objectID | array',
1996\ 'hw_getchilddoccollobj(': 'int connection, int objectID | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001997\ 'hw_getobjectbyquerycoll(': 'int connection, int objectID, string query, int max_hits | array',
1998\ 'hw_getobjectbyquerycollobj(': 'int connection, int objectID, string query, int max_hits | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00001999\ 'hw_getobjectbyquery(': 'int connection, string query, int max_hits | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002000\ 'hw_getobjectbyqueryobj(': 'int connection, string query, int max_hits | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002001\ 'hw_getobject(': 'int connection, mixed objectID [, string query] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002002\ 'hw_getparents(': 'int connection, int objectID | array',
2003\ 'hw_getparentsobj(': 'int connection, int objectID | array',
2004\ 'hw_getrellink(': 'int link, int rootid, int sourceid, int destid | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002005\ 'hw_getremotechildren(': 'int connection, string object_record | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002006\ 'hw_getremote(': 'int connection, int objectID | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002007\ 'hw_getsrcbydestobj(': 'int connection, int objectID | array',
2008\ 'hw_gettext(': 'int connection, int objectID [, mixed rootID/prefix] | int',
2009\ 'hw_getusername(': 'int connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002010\ 'hw_identify(': 'int link, string username, string password | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002011\ 'hw_incollections(': 'int connection, array object_id_array, array collection_id_array, int return_collections | array',
2012\ 'hw_info(': 'int connection | string',
2013\ 'hw_inscoll(': 'int connection, int objectID, array object_array | int',
2014\ 'hw_insdoc(': 'resource connection, int parentID, string object_record [, string text] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002015\ 'hw_insertanchors(': 'int hwdoc, array anchorecs, array dest [, array urlprefixes] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002016\ 'hw_insertdocument(': 'int connection, int parent_id, int hw_document | int',
2017\ 'hw_insertobject(': 'int connection, string object_rec, string parameter | int',
2018\ 'hw_mapid(': 'int connection, int server_id, int object_id | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002019\ 'hw_modifyobject(': 'int connection, int object_to_change, array remove, array add [, int mode] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002020\ 'hw_mv(': 'int connection, array object_id_array, int source_id, int destination_id | int',
2021\ 'hw_new_document(': 'string object_record, string document_data, int document_size | int',
2022\ 'hw_objrec2array(': 'string object_record [, array format] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002023\ 'hw_output_document(': 'int hw_document | bool',
2024\ 'hw_pconnect(': 'string host, int port [, string username, string password] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002025\ 'hw_pipedocument(': 'int connection, int objectID [, array url_prefixes] | int',
2026\ 'hw_root(': ' | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002027\ 'hw_setlinkroot(': 'int link, int rootid | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002028\ 'hw_stat(': 'int link | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002029\ 'hw_unlock(': 'int connection, int objectID | bool',
2030\ 'hw_who(': 'int connection | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002031\ 'hypot(': 'float x, float y | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002032\ 'i18n_loc_get_default(': 'void | string',
2033\ 'i18n_loc_set_default(': 'string name | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002034\ 'ibase_add_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool',
2035\ 'ibase_affected_rows(': '[resource link_identifier] | int',
2036\ 'ibase_backup(': 'resource service_handle, string source_db, string dest_file [, int options [, bool verbose]] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002037\ 'ibase_blob_add(': 'resource blob_handle, string data | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002038\ 'ibase_blob_cancel(': 'resource blob_handle | bool',
2039\ 'ibase_blob_close(': 'resource blob_handle | mixed',
2040\ 'ibase_blob_create(': '[resource link_identifier] | resource',
2041\ 'ibase_blob_echo(': 'resource link_identifier, string blob_id | bool',
2042\ 'ibase_blob_get(': 'resource blob_handle, int len | string',
2043\ 'ibase_blob_import(': 'resource link_identifier, resource file_handle | string',
2044\ 'ibase_blob_info(': 'resource link_identifier, string blob_id | array',
2045\ 'ibase_blob_open(': 'resource link_identifier, string blob_id | resource',
2046\ 'ibase_close(': '[resource connection_id] | bool',
2047\ 'ibase_commit(': '[resource link_or_trans_identifier] | bool',
2048\ 'ibase_commit_ret(': '[resource link_or_trans_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002049\ '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 +00002050\ 'ibase_db_info(': 'resource service_handle, string db, int action [, int argument] | string',
2051\ 'ibase_delete_user(': 'resource service_handle, string user_name | bool',
2052\ 'ibase_drop_db(': '[resource connection] | bool',
2053\ 'ibase_errcode(': 'void | int',
2054\ 'ibase_errmsg(': 'void | string',
2055\ 'ibase_execute(': 'resource query [, mixed bind_arg [, mixed ...]] | resource',
2056\ 'ibase_fetch_assoc(': 'resource result [, int fetch_flag] | array',
2057\ 'ibase_fetch_object(': 'resource result_id [, int fetch_flag] | object',
2058\ 'ibase_fetch_row(': 'resource result_identifier [, int fetch_flag] | array',
2059\ 'ibase_field_info(': 'resource result, int field_number | array',
2060\ 'ibase_free_event_handler(': 'resource event | bool',
2061\ 'ibase_free_query(': 'resource query | bool',
2062\ 'ibase_free_result(': 'resource result_identifier | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002063\ 'ibase_gen_id(': 'string generator [, int increment [, resource link_identifier]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002064\ 'ibase_maintain_db(': 'resource service_handle, string db, int action [, int argument] | bool',
2065\ 'ibase_modify_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool',
2066\ 'ibase_name_result(': 'resource result, string name | bool',
2067\ 'ibase_num_fields(': 'resource result_id | int',
2068\ 'ibase_num_params(': 'resource query | int',
2069\ 'ibase_param_info(': 'resource query, int param_number | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002070\ '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 +00002071\ 'ibase_prepare(': 'string query | resource',
2072\ 'ibase_query(': '[resource link_identifier, string query [, int bind_args]] | resource',
2073\ 'ibase_restore(': 'resource service_handle, string source_file, string dest_db [, int options [, bool verbose]] | mixed',
2074\ 'ibase_rollback(': '[resource link_or_trans_identifier] | bool',
2075\ 'ibase_rollback_ret(': '[resource link_or_trans_identifier] | bool',
2076\ 'ibase_server_info(': 'resource service_handle, int action | string',
2077\ 'ibase_service_attach(': 'string host, string dba_username, string dba_password | resource',
2078\ 'ibase_service_detach(': 'resource service_handle | bool',
2079\ 'ibase_set_event_handler(': 'callback event_handler, string event_name1 [, string event_name2 [, string ...]] | resource',
2080\ 'ibase_timefmt(': 'string format [, int columntype] | int',
2081\ 'ibase_trans(': '[int trans_args [, resource link_identifier]] | resource',
2082\ 'ibase_wait_event(': 'string event_name1 [, string event_name2 [, string ...]] | string',
2083\ 'icap_close(': 'int icap_stream [, int flags] | int',
2084\ 'icap_create_calendar(': 'int stream_id, string calendar | string',
2085\ 'icap_delete_calendar(': 'int stream_id, string calendar | string',
2086\ 'icap_delete_event(': 'int stream_id, int uid | string',
2087\ 'icap_fetch_event(': 'int stream_id, int event_id [, int options] | int',
2088\ 'icap_list_alarms(': 'int stream_id, array date, array time | int',
2089\ 'icap_list_events(': 'int stream_id, int begin_date [, int end_date] | array',
2090\ 'icap_open(': 'string calendar, string username, string password, string options | resource',
2091\ 'icap_rename_calendar(': 'int stream_id, string old_name, string new_name | string',
2092\ 'icap_reopen(': 'int stream_id, string calendar [, int options] | int',
2093\ 'icap_snooze(': 'int stream_id, int uid | string',
2094\ 'icap_store_event(': 'int stream_id, object event | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002095\ 'iconv_get_encoding(': '[string type] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002096\ 'iconv(': 'string in_charset, string out_charset, string str | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002097\ 'iconv_mime_decode_headers(': 'string encoded_headers [, int mode [, string charset]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002098\ 'iconv_mime_decode(': 'string encoded_header [, int mode [, string charset]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002099\ 'iconv_mime_encode(': 'string field_name, string field_value [, array preferences] | string',
2100\ 'iconv_set_encoding(': 'string type, string charset | bool',
2101\ 'iconv_strlen(': 'string str [, string charset] | int',
2102\ 'iconv_strpos(': 'string haystack, string needle [, int offset [, string charset]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002103\ 'iconv_strrpos(': 'string haystack, string needle [, string charset] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002104\ 'iconv_substr(': 'string str, int offset [, int length [, string charset]] | string',
2105\ 'id3_get_frame_long_name(': 'string frameId | string',
2106\ 'id3_get_frame_short_name(': 'string frameId | string',
2107\ 'id3_get_genre_id(': 'string genre | int',
2108\ 'id3_get_genre_list(': 'void | array',
2109\ 'id3_get_genre_name(': 'int genre_id | string',
2110\ 'id3_get_tag(': 'string filename [, int version] | array',
2111\ 'id3_get_version(': 'string filename | int',
2112\ 'id3_remove_tag(': 'string filename [, int version] | bool',
2113\ 'id3_set_tag(': 'string filename, array tag [, int version] | bool',
2114\ 'idate(': 'string format [, int timestamp] | int',
2115\ 'ifx_affected_rows(': 'int result_id | int',
2116\ 'ifx_blobinfile_mode(': 'int mode | void',
2117\ 'ifx_byteasvarchar(': 'int mode | void',
2118\ 'ifx_close(': '[int link_identifier] | int',
2119\ 'ifx_connect(': '[string database [, string userid [, string password]]] | int',
2120\ 'ifx_copy_blob(': 'int bid | int',
2121\ 'ifx_create_blob(': 'int type, int mode, string param | int',
2122\ 'ifx_create_char(': 'string param | int',
2123\ 'ifx_do(': 'int result_id | int',
2124\ 'ifx_error(': 'void | string',
2125\ 'ifx_errormsg(': '[int errorcode] | string',
2126\ 'ifx_fetch_row(': 'int result_id [, mixed position] | array',
2127\ 'ifx_fieldproperties(': 'int result_id | array',
2128\ 'ifx_fieldtypes(': 'int result_id | array',
2129\ 'ifx_free_blob(': 'int bid | int',
2130\ 'ifx_free_char(': 'int bid | int',
2131\ 'ifx_free_result(': 'int result_id | int',
2132\ 'ifx_get_blob(': 'int bid | int',
2133\ 'ifx_get_char(': 'int bid | int',
2134\ 'ifx_getsqlca(': 'int result_id | array',
2135\ 'ifx_htmltbl_result(': 'int result_id [, string html_table_options] | int',
2136\ 'ifx_nullformat(': 'int mode | void',
2137\ 'ifx_num_fields(': 'int result_id | int',
2138\ 'ifx_num_rows(': 'int result_id | int',
2139\ 'ifx_pconnect(': '[string database [, string userid [, string password]]] | int',
2140\ 'ifx_prepare(': 'string query, int conn_id [, int cursor_def, mixed blobidarray] | int',
2141\ 'ifx_query(': 'string query, int link_identifier [, int cursor_type [, mixed blobidarray]] | int',
2142\ 'ifx_textasvarchar(': 'int mode | void',
2143\ 'ifx_update_blob(': 'int bid, string content | bool',
2144\ 'ifx_update_char(': 'int bid, string content | int',
2145\ 'ifxus_close_slob(': 'int bid | int',
2146\ 'ifxus_create_slob(': 'int mode | int',
2147\ 'ifxus_free_slob(': 'int bid | int',
2148\ 'ifxus_open_slob(': 'int bid, int mode | int',
2149\ 'ifxus_read_slob(': 'int bid, int nbytes | int',
2150\ 'ifxus_seek_slob(': 'int bid, int mode, int offset | int',
2151\ 'ifxus_tell_slob(': 'int bid | int',
2152\ 'ifxus_write_slob(': 'int bid, string content | int',
2153\ 'ignore_user_abort(': '[bool setting] | int',
2154\ 'iis_add_server(': 'string path, string comment, string server_ip, int port, string host_name, int rights, int start_server | int',
2155\ 'iis_get_dir_security(': 'int server_instance, string virtual_path | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002156\ 'iis_get_script_map(': 'int server_instance, string virtual_path, string script_extension | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002157\ 'iis_get_server_by_comment(': 'string comment | int',
2158\ 'iis_get_server_by_path(': 'string path | int',
2159\ 'iis_get_server_rights(': 'int server_instance, string virtual_path | int',
2160\ 'iis_get_service_state(': 'string service_id | int',
2161\ 'iis_remove_server(': 'int server_instance | int',
2162\ 'iis_set_app_settings(': 'int server_instance, string virtual_path, string application_scope | int',
2163\ 'iis_set_dir_security(': 'int server_instance, string virtual_path, int directory_flags | int',
2164\ 'iis_set_script_map(': 'int server_instance, string virtual_path, string script_extension, string engine_path, int allow_scripting | int',
2165\ 'iis_set_server_rights(': 'int server_instance, string virtual_path, int directory_flags | int',
2166\ 'iis_start_server(': 'int server_instance | int',
2167\ 'iis_start_service(': 'string service_id | int',
2168\ 'iis_stop_server(': 'int server_instance | int',
2169\ 'iis_stop_service(': 'string service_id | int',
2170\ 'image2wbmp(': 'resource image [, string filename [, int threshold]] | int',
2171\ 'imagealphablending(': 'resource image, bool blendmode | bool',
2172\ 'imageantialias(': 'resource im, bool on | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002173\ 'imagearc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color | bool',
2174\ 'imagechar(': 'resource image, int font, int x, int y, string c, int color | bool',
2175\ 'imagecharup(': 'resource image, int font, int x, int y, string c, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002176\ 'imagecolorallocatealpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002177\ 'imagecolorallocate(': 'resource image, int red, int green, int blue | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002178\ 'imagecolorat(': 'resource image, int x, int y | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002179\ 'imagecolorclosestalpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002180\ 'imagecolorclosest(': 'resource image, int red, int green, int blue | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002181\ 'imagecolorclosesthwb(': 'resource image, int red, int green, int blue | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002182\ 'imagecolordeallocate(': 'resource image, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002183\ 'imagecolorexactalpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002184\ 'imagecolorexact(': 'resource image, int red, int green, int blue | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002185\ 'imagecolormatch(': 'resource image1, resource image2 | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002186\ 'imagecolorresolvealpha(': 'resource image, int red, int green, int blue, int alpha | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002187\ 'imagecolorresolve(': 'resource image, int red, int green, int blue | int',
2188\ 'imagecolorset(': 'resource image, int index, int red, int green, int blue | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002189\ 'imagecolorsforindex(': 'resource image, int index | array',
2190\ 'imagecolorstotal(': 'resource image | int',
2191\ 'imagecolortransparent(': 'resource image [, int color] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002192\ 'imageconvolution(': 'resource image, array matrix3x3, float div, float offset | bool',
2193\ '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',
2194\ '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',
2195\ '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 +00002196\ '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 +00002197\ '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 +00002198\ 'imagecreatefromgd2(': 'string filename | resource',
2199\ 'imagecreatefromgd2part(': 'string filename, int srcX, int srcY, int width, int height | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002200\ 'imagecreatefromgd(': 'string filename | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002201\ 'imagecreatefromgif(': 'string filename | resource',
2202\ 'imagecreatefromjpeg(': 'string filename | resource',
2203\ 'imagecreatefrompng(': 'string filename | resource',
2204\ 'imagecreatefromstring(': 'string image | resource',
2205\ 'imagecreatefromwbmp(': 'string filename | resource',
2206\ 'imagecreatefromxbm(': 'string filename | resource',
2207\ 'imagecreatefromxpm(': 'string filename | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002208\ 'imagecreate(': 'int x_size, int y_size | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002209\ 'imagecreatetruecolor(': 'int x_size, int y_size | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002210\ 'imagedashedline(': 'resource image, int x1, int y1, int x2, int y2, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002211\ 'imagedestroy(': 'resource image | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002212\ 'imageellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002213\ 'imagefilledarc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color, int style | bool',
2214\ 'imagefilledellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002215\ 'imagefilledpolygon(': 'resource image, array points, int num_points, int color | bool',
2216\ 'imagefilledrectangle(': 'resource image, int x1, int y1, int x2, int y2, int color | bool',
2217\ 'imagefill(': 'resource image, int x, int y, int color | bool',
2218\ 'imagefilltoborder(': 'resource image, int x, int y, int border, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002219\ 'imagefilter(': 'resource src_im, int filtertype [, int arg1 [, int arg2 [, int arg3]]] | bool',
2220\ 'imagefontheight(': 'int font | int',
2221\ 'imagefontwidth(': 'int font | int',
2222\ 'imageftbbox(': 'float size, float angle, string font_file, string text [, array extrainfo] | array',
2223\ '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 +00002224\ 'imagegammacorrect(': 'resource image, float inputgamma, float outputgamma | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002225\ 'imagegd2(': 'resource image [, string filename [, int chunk_size [, int type]]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002226\ 'imagegd(': 'resource image [, string filename] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002227\ 'imagegif(': 'resource image [, string filename] | bool',
2228\ 'imageinterlace(': 'resource image [, int interlace] | int',
2229\ 'imageistruecolor(': 'resource image | bool',
2230\ 'imagejpeg(': 'resource image [, string filename [, int quality]] | bool',
2231\ 'imagelayereffect(': 'resource image, int effect | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002232\ 'imageline(': 'resource image, int x1, int y1, int x2, int y2, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002233\ 'imageloadfont(': 'string file | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002234\ 'imagepalettecopy(': 'resource destination, resource source | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002235\ 'imagepng(': 'resource image [, string filename] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002236\ 'imagepolygon(': 'resource image, array points, int num_points, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002237\ 'imagepsbbox(': 'string text, int font, int size [, int space, int tightness, float angle] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002238\ 'imagepscopyfont(': 'resource fontindex | int',
2239\ 'imagepsencodefont(': 'resource font_index, string encodingfile | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002240\ 'imagepsextendfont(': 'int font_index, float extend | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002241\ 'imagepsfreefont(': 'resource fontindex | bool',
2242\ 'imagepsloadfont(': 'string filename | resource',
2243\ 'imagepsslantfont(': 'resource font_index, float slant | bool',
2244\ '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',
2245\ 'imagerectangle(': 'resource image, int x1, int y1, int x2, int y2, int col | bool',
2246\ 'imagerotate(': 'resource src_im, float angle, int bgd_color [, int ignore_transparent] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002247\ 'imagesavealpha(': 'resource image, bool saveflag | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002248\ 'imagesetbrush(': 'resource image, resource brush | bool',
2249\ 'imagesetpixel(': 'resource image, int x, int y, int color | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002250\ 'imagesetstyle(': 'resource image, array style | bool',
2251\ 'imagesetthickness(': 'resource image, int thickness | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002252\ 'imagesettile(': 'resource image, resource tile | bool',
2253\ 'imagestring(': 'resource image, int font, int x, int y, string s, int col | bool',
2254\ 'imagestringup(': 'resource image, int font, int x, int y, string s, int col | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002255\ 'imagesx(': 'resource image | int',
2256\ 'imagesy(': 'resource image | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002257\ 'imagetruecolortopalette(': 'resource image, bool dither, int ncolors | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002258\ 'imagettfbbox(': 'float size, float angle, string fontfile, string text | array',
2259\ 'imagettftext(': 'resource image, float size, float angle, int x, int y, int color, string fontfile, string text | array',
2260\ 'imagetypes(': 'void | int',
2261\ 'image_type_to_extension(': 'int imagetype [, bool include_dot] | string',
2262\ 'image_type_to_mime_type(': 'int imagetype | string',
2263\ 'imagewbmp(': 'resource image [, string filename [, int foreground]] | bool',
2264\ 'imagexbm(': 'resource image, string filename [, int foreground] | bool',
2265\ 'imap_8bit(': 'string string | string',
2266\ 'imap_alerts(': 'void | array',
2267\ 'imap_append(': 'resource imap_stream, string mbox, string message [, string options] | bool',
2268\ 'imap_base64(': 'string text | string',
2269\ 'imap_binary(': 'string string | string',
2270\ 'imap_body(': 'resource imap_stream, int msg_number [, int options] | string',
2271\ 'imap_bodystruct(': 'resource stream_id, int msg_no, string section | object',
2272\ 'imap_check(': 'resource imap_stream | object',
2273\ 'imap_clearflag_full(': 'resource stream, string sequence, string flag [, string options] | bool',
2274\ 'imap_close(': 'resource imap_stream [, int flag] | bool',
2275\ 'imap_createmailbox(': 'resource imap_stream, string mbox | bool',
2276\ 'imap_delete(': 'int imap_stream, int msg_number [, int options] | bool',
2277\ 'imap_deletemailbox(': 'resource imap_stream, string mbox | bool',
2278\ 'imap_errors(': 'void | array',
2279\ 'imap_expunge(': 'resource imap_stream | bool',
2280\ 'imap_fetchbody(': 'resource imap_stream, int msg_number, string part_number [, int options] | string',
2281\ 'imap_fetchheader(': 'resource imap_stream, int msgno [, int options] | string',
2282\ 'imap_fetch_overview(': 'resource imap_stream, string sequence [, int options] | array',
2283\ 'imap_fetchstructure(': 'resource imap_stream, int msg_number [, int options] | object',
2284\ 'imap_getacl(': 'resource stream_id, string mailbox | array',
2285\ 'imap_getmailboxes(': 'resource imap_stream, string ref, string pattern | array',
2286\ 'imap_get_quota(': 'resource imap_stream, string quota_root | array',
2287\ 'imap_get_quotaroot(': 'resource imap_stream, string quota_root | array',
2288\ 'imap_getsubscribed(': 'resource imap_stream, string ref, string pattern | array',
2289\ 'imap_headerinfo(': 'resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]] | object',
2290\ 'imap_headers(': 'resource imap_stream | array',
2291\ 'imap_last_error(': 'void | string',
2292\ 'imap_list(': 'resource imap_stream, string ref, string pattern | array',
2293\ 'imap_listscan(': 'resource imap_stream, string ref, string pattern, string content | array',
2294\ 'imap_lsub(': 'resource imap_stream, string ref, string pattern | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002295\ 'imap_mailboxmsginfo(': 'resource imap_stream | object',
2296\ 'imap_mail_compose(': 'array envelope, array body | string',
2297\ 'imap_mail_copy(': 'resource imap_stream, string msglist, string mbox [, int options] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002298\ '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 +00002299\ 'imap_mail_move(': 'resource imap_stream, string msglist, string mbox [, int options] | bool',
2300\ 'imap_mime_header_decode(': 'string text | array',
2301\ 'imap_msgno(': 'resource imap_stream, int uid | int',
2302\ 'imap_num_msg(': 'resource imap_stream | int',
2303\ 'imap_num_recent(': 'resource imap_stream | int',
2304\ 'imap_open(': 'string mailbox, string username, string password [, int options] | resource',
2305\ 'imap_ping(': 'resource imap_stream | bool',
2306\ 'imap_qprint(': 'string string | string',
2307\ 'imap_renamemailbox(': 'resource imap_stream, string old_mbox, string new_mbox | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002308\ 'imap_reopen(': 'resource imap_stream, string mailbox [, int options] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002309\ 'imap_rfc822_parse_adrlist(': 'string address, string default_host | array',
2310\ 'imap_rfc822_parse_headers(': 'string headers [, string defaulthost] | object',
2311\ 'imap_rfc822_write_address(': 'string mailbox, string host, string personal | string',
2312\ 'imap_search(': 'resource imap_stream, string criteria [, int options [, string charset]] | array',
2313\ 'imap_setacl(': 'resource stream_id, string mailbox, string id, string rights | bool',
2314\ 'imap_setflag_full(': 'resource stream, string sequence, string flag [, string options] | bool',
2315\ 'imap_set_quota(': 'resource imap_stream, string quota_root, int quota_limit | bool',
2316\ 'imap_sort(': 'resource stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]] | array',
2317\ 'imap_status(': 'resource imap_stream, string mailbox, int options | object',
2318\ 'imap_subscribe(': 'resource imap_stream, string mbox | bool',
2319\ 'imap_thread(': 'resource stream_id [, int options] | array',
2320\ 'imap_timeout(': 'int timeout_type [, int timeout] | mixed',
2321\ 'imap_uid(': 'resource imap_stream, int msgno | int',
2322\ 'imap_undelete(': 'resource imap_stream, int msg_number [, int flags] | bool',
2323\ 'imap_unsubscribe(': 'string imap_stream, string mbox | bool',
2324\ 'imap_utf7_decode(': 'string text | string',
2325\ 'imap_utf7_encode(': 'string data | string',
2326\ 'imap_utf8(': 'string mime_encoded_text | string',
2327\ 'implode(': 'string glue, array pieces | string',
2328\ 'import_request_variables(': 'string types [, string prefix] | bool',
2329\ 'in_array(': 'mixed needle, array haystack [, bool strict] | bool',
2330\ 'inet_ntop(': 'string in_addr | string',
2331\ 'inet_pton(': 'string address | string',
2332\ 'ingres_autocommit(': '[resource link] | bool',
2333\ 'ingres_close(': '[resource link] | bool',
2334\ 'ingres_commit(': '[resource link] | bool',
2335\ 'ingres_connect(': '[string database [, string username [, string password]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002336\ 'ingres_cursor(': '[resource link] | string',
2337\ 'ingres_errno(': '[resource link] | int',
2338\ 'ingres_error(': '[resource link] | string',
2339\ 'ingres_errsqlstate(': '[resource link] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002340\ 'ingres_fetch_array(': '[int result_type [, resource link]] | array',
2341\ 'ingres_fetch_object(': '[int result_type [, resource link]] | object',
2342\ 'ingres_fetch_row(': '[resource link] | array',
2343\ 'ingres_field_length(': 'int index [, resource link] | int',
2344\ 'ingres_field_name(': 'int index [, resource link] | string',
2345\ 'ingres_field_nullable(': 'int index [, resource link] | bool',
2346\ 'ingres_field_precision(': 'int index [, resource link] | int',
2347\ 'ingres_field_scale(': 'int index [, resource link] | int',
2348\ 'ingres_field_type(': 'int index [, resource link] | string',
2349\ 'ingres_num_fields(': '[resource link] | int',
2350\ 'ingres_num_rows(': '[resource link] | int',
2351\ 'ingres_pconnect(': '[string database [, string username [, string password]]] | resource',
2352\ 'ingres_query(': 'string query [, resource link] | bool',
2353\ 'ingres_rollback(': '[resource link] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002354\ 'ini_get_all(': '[string extension] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002355\ 'ini_get(': 'string varname | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002356\ 'ini_restore(': 'string varname | void',
2357\ 'ini_set(': 'string varname, string newvalue | string',
2358\ 'interface_exists(': 'string interface_name [, bool autoload] | bool',
2359\ 'intval(': 'mixed var [, int base] | int',
2360\ 'ip2long(': 'string ip_address | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002361\ 'iptcembed(': 'string iptcdata, string jpeg_file_name [, int spool] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002362\ 'iptcparse(': 'string iptcblock | array',
2363\ 'ircg_channel_mode(': 'resource connection, string channel, string mode_spec, string nick | bool',
2364\ 'ircg_disconnect(': 'resource connection, string reason | bool',
2365\ 'ircg_eval_ecmascript_params(': 'string params | array',
2366\ 'ircg_fetch_error_msg(': 'resource connection | array',
2367\ 'ircg_get_username(': 'resource connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002368\ 'ircg_html_encode(': 'string html_string [, bool auto_links [, bool conv_br]] | string',
2369\ 'ircg_ignore_add(': 'resource connection, string nick | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002370\ 'ircg_ignore_del(': 'resource connection, string nick | bool',
2371\ 'ircg_invite(': 'resource connection, string channel, string nickname | bool',
2372\ 'ircg_is_conn_alive(': 'resource connection | bool',
2373\ 'ircg_join(': 'resource connection, string channel [, string key] | bool',
2374\ 'ircg_kick(': 'resource connection, string channel, string nick, string reason | bool',
2375\ 'ircg_list(': 'resource connection, string channel | bool',
2376\ 'ircg_lookup_format_messages(': 'string name | bool',
2377\ 'ircg_lusers(': 'resource connection | bool',
2378\ 'ircg_msg(': 'resource connection, string recipient, string message [, bool suppress] | bool',
2379\ 'ircg_names(': 'int connection, string channel [, string target] | bool',
2380\ 'ircg_nick(': 'resource connection, string nick | bool',
2381\ 'ircg_nickname_escape(': 'string nick | string',
2382\ 'ircg_nickname_unescape(': 'string nick | string',
2383\ 'ircg_notice(': 'resource connection, string recipient, string message | bool',
2384\ 'ircg_oper(': 'resource connection, string name, string password | bool',
2385\ 'ircg_part(': 'resource connection, string channel | bool',
2386\ 'ircg_pconnect(': 'string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings [, bool bailout_on_trivial]]]]]] | resource',
2387\ 'ircg_register_format_messages(': 'string name, array messages | bool',
2388\ 'ircg_set_current(': 'resource connection | bool',
2389\ 'ircg_set_file(': 'resource connection, string path | bool',
2390\ 'ircg_set_on_die(': 'resource connection, string host, int port, string data | bool',
2391\ 'ircg_topic(': 'resource connection, string channel, string new_topic | bool',
2392\ 'ircg_who(': 'resource connection, string mask [, bool ops_only] | bool',
2393\ 'ircg_whois(': 'resource connection, string nick | bool',
2394\ 'is_a(': 'object object, string class_name | bool',
2395\ 'is_array(': 'mixed var | bool',
2396\ 'is_bool(': 'mixed var | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002397\ 'is_callable(': 'mixed var [, bool syntax_only [, string &#38;callable_name]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002398\ 'is_dir(': 'string filename | bool',
2399\ 'is_executable(': 'string filename | bool',
2400\ 'is_file(': 'string filename | bool',
2401\ 'is_finite(': 'float val | bool',
2402\ 'is_float(': 'mixed var | bool',
2403\ 'is_infinite(': 'float val | bool',
2404\ 'is_int(': 'mixed var | bool',
2405\ 'is_link(': 'string filename | bool',
2406\ 'is_nan(': 'float val | bool',
2407\ 'is_null(': 'mixed var | bool',
2408\ 'is_numeric(': 'mixed var | bool',
2409\ 'is_object(': 'mixed var | bool',
2410\ 'is_readable(': 'string filename | bool',
2411\ 'is_resource(': 'mixed var | bool',
2412\ 'is_scalar(': 'mixed var | bool',
2413\ 'isset(': 'mixed var [, mixed var [, ...]] | bool',
2414\ 'is_soap_fault(': 'mixed obj | bool',
2415\ 'is_string(': 'mixed var | bool',
2416\ 'is_subclass_of(': 'mixed object, string class_name | bool',
2417\ 'is_uploaded_file(': 'string filename | bool',
2418\ 'is_writable(': 'string filename | bool',
2419\ 'iterator_count(': 'IteratorAggregate iterator | int',
2420\ 'iterator_to_array(': 'IteratorAggregate iterator | array',
2421\ 'java_last_exception_clear(': 'void | void',
2422\ 'java_last_exception_get(': 'void | object',
2423\ 'jddayofweek(': 'int julianday [, int mode] | mixed',
2424\ 'jdmonthname(': 'int julianday, int mode | string',
2425\ 'jdtofrench(': 'int juliandaycount | string',
2426\ 'jdtogregorian(': 'int julianday | string',
2427\ 'jdtojewish(': 'int juliandaycount [, bool hebrew [, int fl]] | string',
2428\ 'jdtojulian(': 'int julianday | string',
2429\ 'jdtounix(': 'int jday | int',
2430\ 'jewishtojd(': 'int month, int day, int year | int',
2431\ 'jpeg2wbmp(': 'string jpegname, string wbmpname, int d_height, int d_width, int threshold | int',
2432\ 'juliantojd(': 'int month, int day, int year | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002433\ 'kadm5_chpass_principal(': 'resource handle, string principal, string password | bool',
2434\ 'kadm5_create_principal(': 'resource handle, string principal [, string password [, array options]] | bool',
2435\ 'kadm5_delete_principal(': 'resource handle, string principal | bool',
2436\ 'kadm5_destroy(': 'resource handle | bool',
2437\ 'kadm5_flush(': 'resource handle | bool',
2438\ 'kadm5_get_policies(': 'resource handle | array',
2439\ 'kadm5_get_principal(': 'resource handle, string principal | array',
2440\ 'kadm5_get_principals(': 'resource handle | array',
2441\ 'kadm5_init_with_password(': 'string admin_server, string realm, string principal, string password | resource',
2442\ 'kadm5_modify_principal(': 'resource handle, string principal, array options | bool',
2443\ 'key(': 'array &#38;array | mixed',
2444\ 'krsort(': 'array &#38;array [, int sort_flags] | bool',
2445\ 'ksort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002446\ 'lcg_value(': 'void | float',
2447\ 'ldap_8859_to_t61(': 'string value | string',
2448\ 'ldap_add(': 'resource link_identifier, string dn, array entry | bool',
2449\ 'ldap_bind(': 'resource link_identifier [, string bind_rdn [, string bind_password]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002450\ 'ldap_compare(': 'resource link_identifier, string dn, string attribute, string value | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002451\ 'ldap_connect(': '[string hostname [, int port]] | resource',
2452\ 'ldap_count_entries(': 'resource link_identifier, resource result_identifier | int',
2453\ 'ldap_delete(': 'resource link_identifier, string dn | bool',
2454\ 'ldap_dn2ufn(': 'string dn | string',
2455\ 'ldap_err2str(': 'int errno | string',
2456\ 'ldap_errno(': 'resource link_identifier | int',
2457\ 'ldap_error(': 'resource link_identifier | string',
2458\ 'ldap_explode_dn(': 'string dn, int with_attrib | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002459\ 'ldap_first_attribute(': 'resource link_identifier, resource result_entry_identifier, int &#38;ber_identifier | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002460\ 'ldap_first_entry(': 'resource link_identifier, resource result_identifier | resource',
2461\ 'ldap_first_reference(': 'resource link, resource result | resource',
2462\ 'ldap_free_result(': 'resource result_identifier | bool',
2463\ 'ldap_get_attributes(': 'resource link_identifier, resource result_entry_identifier | array',
2464\ 'ldap_get_dn(': 'resource link_identifier, resource result_entry_identifier | string',
2465\ 'ldap_get_entries(': 'resource link_identifier, resource result_identifier | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002466\ 'ldap_get_option(': 'resource link_identifier, int option, mixed &#38;retval | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002467\ 'ldap_get_values(': 'resource link_identifier, resource result_entry_identifier, string attribute | array',
2468\ 'ldap_get_values_len(': 'resource link_identifier, resource result_entry_identifier, string attribute | array',
2469\ 'ldap_list(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource',
2470\ 'ldap_mod_add(': 'resource link_identifier, string dn, array entry | bool',
2471\ 'ldap_mod_del(': 'resource link_identifier, string dn, array entry | bool',
2472\ 'ldap_modify(': 'resource link_identifier, string dn, array entry | bool',
2473\ 'ldap_mod_replace(': 'resource link_identifier, string dn, array entry | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002474\ 'ldap_next_attribute(': 'resource link_identifier, resource result_entry_identifier, resource &#38;ber_identifier | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002475\ 'ldap_next_entry(': 'resource link_identifier, resource result_entry_identifier | resource',
2476\ 'ldap_next_reference(': 'resource link, resource entry | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002477\ 'ldap_parse_reference(': 'resource link, resource entry, array &#38;referrals | bool',
2478\ '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 +00002479\ 'ldap_read(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource',
2480\ 'ldap_rename(': 'resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002481\ '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 +00002482\ 'ldap_search(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource',
2483\ 'ldap_set_option(': 'resource link_identifier, int option, mixed newval | bool',
2484\ 'ldap_set_rebind_proc(': 'resource link, callback callback | bool',
2485\ 'ldap_sort(': 'resource link, resource result, string sortfilter | bool',
2486\ 'ldap_start_tls(': 'resource link | bool',
2487\ 'ldap_t61_to_8859(': 'string value | string',
2488\ 'ldap_unbind(': 'resource link_identifier | bool',
2489\ 'levenshtein(': 'string str1, string str2 [, int cost_ins [, int cost_rep, int cost_del]] | int',
2490\ 'libxml_clear_errors(': 'void | void',
2491\ 'libxml_get_errors(': 'void | array',
2492\ 'libxml_get_last_error(': 'void | LibXMLError',
2493\ 'libxml_set_streams_context(': 'resource streams_context | void',
2494\ 'libxml_use_internal_errors(': '[bool use_errors] | bool',
2495\ 'link(': 'string target, string link | bool',
2496\ 'linkinfo(': 'string path | int',
2497\ 'list(': 'mixed varname, mixed ... | void',
2498\ 'localeconv(': 'void | array',
2499\ 'localtime(': '[int timestamp [, bool is_associative]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002500\ 'log10(': 'float arg | float',
2501\ 'log1p(': 'float number | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002502\ 'log(': 'float arg [, float base] | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002503\ 'long2ip(': 'int proper_address | string',
2504\ 'lstat(': 'string filename | array',
2505\ 'ltrim(': 'string str [, string charlist] | string',
2506\ 'lzf_compress(': 'string data | string',
2507\ 'lzf_decompress(': 'string data | string',
2508\ 'lzf_optimized_for(': 'void | int',
2509\ 'mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameters]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002510\ 'mailparse_determine_best_xfer_encoding(': 'resource fp | string',
2511\ 'mailparse_msg_create(': 'void | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002512\ 'mailparse_msg_extract_part_file(': 'resource rfc2045, string filename [, callback callbackfunc] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002513\ 'mailparse_msg_extract_part(': 'resource rfc2045, string msgbody [, callback callbackfunc] | void',
2514\ 'mailparse_msg_free(': 'resource rfc2045buf | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002515\ 'mailparse_msg_get_part_data(': 'resource rfc2045 | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002516\ 'mailparse_msg_get_part(': 'resource rfc2045, string mimesection | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002517\ 'mailparse_msg_get_structure(': 'resource rfc2045 | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002518\ 'mailparse_msg_parse_file(': 'string filename | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002519\ 'mailparse_msg_parse(': 'resource rfc2045buf, string data | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002520\ 'mailparse_rfc822_parse_addresses(': 'string addresses | array',
2521\ 'mailparse_stream_encode(': 'resource sourcefp, resource destfp, string encoding | bool',
2522\ 'mailparse_uudecode_all(': 'resource fp | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002523\ 'maxdb_connect_errno(': 'void | int',
2524\ 'maxdb_connect_error(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002525\ 'maxdb_debug(': 'string debug | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002526\ 'maxdb_disable_rpl_parse(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002527\ 'maxdb_dump_debug_info(': 'resource link | bool',
2528\ 'maxdb_embedded_connect(': '[string dbname] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002529\ 'maxdb_enable_reads_from_master(': 'resource link | bool',
2530\ 'maxdb_enable_rpl_parse(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002531\ 'maxdb_get_client_info(': 'void | string',
2532\ 'maxdb_get_client_version(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002533\ 'maxdb_init(': 'void | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002534\ 'maxdb_master_query(': 'resource link, string query | bool',
2535\ 'maxdb_more_results(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002536\ 'maxdb_next_result(': 'resource link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002537\ 'maxdb_report(': 'int flags | bool',
2538\ 'maxdb_rollback(': 'resource link | bool',
2539\ 'maxdb_rpl_parse_enabled(': 'resource link | int',
2540\ 'maxdb_rpl_probe(': 'resource link | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002541\ 'maxdb_rpl_query_type(': 'resource link | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002542\ 'maxdb_select_db(': 'resource link, string dbname | bool',
2543\ 'maxdb_send_query(': 'resource link, string query | bool',
2544\ 'maxdb_server_end(': 'void | void',
2545\ 'maxdb_server_init(': '[array server [, array groups]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002546\ 'maxdb_stmt_sqlstate(': 'resource stmt | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002547\ 'max(': 'number arg1, number arg2 [, number ...] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002548\ 'mb_convert_case(': 'string str, int mode [, string encoding] | string',
2549\ 'mb_convert_encoding(': 'string str, string to_encoding [, mixed from_encoding] | string',
2550\ 'mb_convert_kana(': 'string str [, string option [, string encoding]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002551\ 'mb_convert_variables(': 'string to_encoding, mixed from_encoding, mixed &#38;vars [, mixed &#38;...] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002552\ 'mb_decode_mimeheader(': 'string str | string',
2553\ 'mb_decode_numericentity(': 'string str, array convmap [, string encoding] | string',
2554\ 'mb_detect_encoding(': 'string str [, mixed encoding_list [, bool strict]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002555\ 'mb_detect_order(': '[mixed encoding_list] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002556\ 'mb_encode_mimeheader(': 'string str [, string charset [, string transfer_encoding [, string linefeed]]] | string',
2557\ 'mb_encode_numericentity(': 'string str, array convmap [, string encoding] | string',
2558\ 'mb_ereg(': 'string pattern, string string [, array regs] | int',
2559\ 'mb_eregi(': 'string pattern, string string [, array regs] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002560\ 'mb_eregi_replace(': 'string pattern, string replace, string string [, string option] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002561\ 'mb_ereg_match(': 'string pattern, string string [, string option] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002562\ 'mb_ereg_replace(': 'string pattern, string replacement, string string [, string option] | string',
2563\ 'mb_ereg_search_getpos(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002564\ 'mb_ereg_search_getregs(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002565\ 'mb_ereg_search(': '[string pattern [, string option]] | bool',
2566\ 'mb_ereg_search_init(': 'string string [, string pattern [, string option]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002567\ 'mb_ereg_search_pos(': '[string pattern [, string option]] | array',
2568\ 'mb_ereg_search_regs(': '[string pattern [, string option]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002569\ 'mb_ereg_search_setpos(': 'int position | bool',
2570\ 'mb_get_info(': '[string type] | mixed',
2571\ 'mb_http_input(': '[string type] | mixed',
2572\ 'mb_http_output(': '[string encoding] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002573\ 'mb_internal_encoding(': '[string encoding] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002574\ 'mb_language(': '[string language] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002575\ 'mb_list_encodings(': 'void | array',
2576\ 'mb_output_handler(': 'string contents, int status | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002577\ 'mb_parse_str(': 'string encoded_string [, array &#38;result] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002578\ 'mb_preferred_mime_name(': 'string encoding | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002579\ 'mb_regex_encoding(': '[string encoding] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002580\ 'mb_regex_set_options(': '[string options] | string',
2581\ 'mb_send_mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameter]] | bool',
2582\ 'mb_split(': 'string pattern, string string [, int limit] | array',
2583\ 'mb_strcut(': 'string str, int start [, int length [, string encoding]] | string',
2584\ 'mb_strimwidth(': 'string str, int start, int width [, string trimmarker [, string encoding]] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002585\ 'mb_strlen(': 'string str [, string encoding] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002586\ 'mb_strpos(': 'string haystack, string needle [, int offset [, string encoding]] | int',
2587\ 'mb_strrpos(': 'string haystack, string needle [, string encoding] | int',
2588\ 'mb_strtolower(': 'string str [, string encoding] | string',
2589\ 'mb_strtoupper(': 'string str [, string encoding] | string',
2590\ 'mb_strwidth(': 'string str [, string encoding] | int',
2591\ 'mb_substitute_character(': '[mixed substrchar] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002592\ 'mb_substr_count(': 'string haystack, string needle [, string encoding] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002593\ 'mb_substr(': 'string str, int start [, int length [, string encoding]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002594\ 'mcal_append_event(': 'int mcal_stream | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002595\ 'mcal_close(': 'int mcal_stream [, int flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002596\ 'mcal_create_calendar(': 'int stream, string calendar | bool',
2597\ '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 +00002598\ 'mcal_date_valid(': 'int year, int month, int day | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002599\ 'mcal_day_of_week(': 'int year, int month, int day | int',
2600\ 'mcal_day_of_year(': 'int year, int month, int day | int',
2601\ 'mcal_days_in_month(': 'int month, int leap_year | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002602\ 'mcal_delete_calendar(': 'int stream, string calendar | bool',
2603\ 'mcal_delete_event(': 'int mcal_stream, int event_id | bool',
2604\ 'mcal_event_add_attribute(': 'int stream, string attribute, string value | bool',
2605\ 'mcal_event_init(': 'int stream | void',
2606\ 'mcal_event_set_alarm(': 'int stream, int alarm | void',
2607\ 'mcal_event_set_category(': 'int stream, string category | void',
2608\ 'mcal_event_set_class(': 'int stream, int class | void',
2609\ 'mcal_event_set_description(': 'int stream, string description | void',
2610\ 'mcal_event_set_end(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | void',
2611\ 'mcal_event_set_recur_daily(': 'int stream, int year, int month, int day, int interval | void',
2612\ 'mcal_event_set_recur_monthly_mday(': 'int stream, int year, int month, int day, int interval | void',
2613\ 'mcal_event_set_recur_monthly_wday(': 'int stream, int year, int month, int day, int interval | void',
2614\ 'mcal_event_set_recur_none(': 'int stream | void',
2615\ 'mcal_event_set_recur_weekly(': 'int stream, int year, int month, int day, int interval, int weekdays | void',
2616\ 'mcal_event_set_recur_yearly(': 'int stream, int year, int month, int day, int interval | void',
2617\ 'mcal_event_set_start(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | void',
2618\ 'mcal_event_set_title(': 'int stream, string title | void',
2619\ 'mcal_expunge(': 'int stream | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002620\ 'mcal_fetch_current_stream_event(': 'int stream | object',
2621\ 'mcal_fetch_event(': 'int mcal_stream, int event_id [, int options] | object',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002622\ 'mcal_is_leap_year(': 'int year | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002623\ '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',
2624\ '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 +00002625\ 'mcal_next_recurrence(': 'int stream, int weekstart, array next | object',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002626\ 'mcal_open(': 'string calendar, string username, string password [, int options] | int',
2627\ 'mcal_popen(': 'string calendar, string username, string password [, int options] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002628\ 'mcal_rename_calendar(': 'int stream, string old_name, string new_name | bool',
2629\ 'mcal_reopen(': 'int mcal_stream, string calendar [, int options] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002630\ 'mcal_snooze(': 'int stream_id, int event_id | bool',
2631\ 'mcal_store_event(': 'int mcal_stream | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002632\ 'mcal_time_valid(': 'int hour, int minutes, int seconds | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002633\ 'mcal_week_of_year(': 'int day, int month, int year | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002634\ 'm_checkstatus(': 'resource conn, int identifier | int',
2635\ 'm_completeauthorizations(': 'resource conn, int &#38;array | int',
2636\ 'm_connect(': 'resource conn | int',
2637\ 'm_connectionerror(': 'resource conn | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002638\ 'mcrypt_cbc(': 'int cipher, string key, string data, int mode [, string iv] | string',
2639\ 'mcrypt_cfb(': 'int cipher, string key, string data, int mode, string iv | string',
2640\ 'mcrypt_create_iv(': 'int size [, int source] | string',
2641\ 'mcrypt_decrypt(': 'string cipher, string key, string data, string mode [, string iv] | string',
2642\ 'mcrypt_ecb(': 'int cipher, string key, string data, int mode | string',
2643\ 'mcrypt_enc_get_algorithms_name(': 'resource td | string',
2644\ 'mcrypt_enc_get_block_size(': 'resource td | int',
2645\ 'mcrypt_enc_get_iv_size(': 'resource td | int',
2646\ 'mcrypt_enc_get_key_size(': 'resource td | int',
2647\ 'mcrypt_enc_get_modes_name(': 'resource td | string',
2648\ 'mcrypt_enc_get_supported_key_sizes(': 'resource td | array',
2649\ 'mcrypt_enc_is_block_algorithm(': 'resource td | bool',
2650\ 'mcrypt_enc_is_block_algorithm_mode(': 'resource td | bool',
2651\ 'mcrypt_enc_is_block_mode(': 'resource td | bool',
2652\ 'mcrypt_encrypt(': 'string cipher, string key, string data, string mode [, string iv] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002653\ 'mcrypt_enc_self_test(': 'resource td | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002654\ 'mcrypt_generic_deinit(': 'resource td | bool',
2655\ 'mcrypt_generic_end(': 'resource td | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002656\ 'mcrypt_generic(': 'resource td, string data | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002657\ 'mcrypt_generic_init(': 'resource td, string key, string iv | int',
2658\ 'mcrypt_get_block_size(': 'int cipher | int',
2659\ 'mcrypt_get_cipher_name(': 'int cipher | string',
2660\ 'mcrypt_get_iv_size(': 'string cipher, string mode | int',
2661\ 'mcrypt_get_key_size(': 'int cipher | int',
2662\ 'mcrypt_list_algorithms(': '[string lib_dir] | array',
2663\ 'mcrypt_list_modes(': '[string lib_dir] | array',
2664\ 'mcrypt_module_close(': 'resource td | bool',
2665\ 'mcrypt_module_get_algo_block_size(': 'string algorithm [, string lib_dir] | int',
2666\ 'mcrypt_module_get_algo_key_size(': 'string algorithm [, string lib_dir] | int',
2667\ 'mcrypt_module_get_supported_key_sizes(': 'string algorithm [, string lib_dir] | array',
2668\ 'mcrypt_module_is_block_algorithm(': 'string algorithm [, string lib_dir] | bool',
2669\ 'mcrypt_module_is_block_algorithm_mode(': 'string mode [, string lib_dir] | bool',
2670\ 'mcrypt_module_is_block_mode(': 'string mode [, string lib_dir] | bool',
2671\ 'mcrypt_module_open(': 'string algorithm, string algorithm_directory, string mode, string mode_directory | resource',
2672\ 'mcrypt_module_self_test(': 'string algorithm [, string lib_dir] | bool',
2673\ 'mcrypt_ofb(': 'int cipher, string key, string data, int mode, string iv | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002674\ 'md5_file(': 'string filename [, bool raw_output] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002675\ 'md5(': 'string str [, bool raw_output] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002676\ 'mdecrypt_generic(': 'resource td, string data | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002677\ 'm_deletetrans(': 'resource conn, int identifier | bool',
2678\ 'm_destroyconn(': 'resource conn | bool',
2679\ 'm_destroyengine(': 'void | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002680\ 'memcache_debug(': 'bool on_off | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002681\ 'memory_get_usage(': 'void | int',
2682\ 'metaphone(': 'string str [, int phones] | string',
2683\ 'method_exists(': 'object object, string method_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002684\ 'm_getcellbynum(': 'resource conn, int identifier, int column, int row | string',
2685\ 'm_getcell(': 'resource conn, int identifier, string column, int row | string',
2686\ 'm_getcommadelimited(': 'resource conn, int identifier | string',
2687\ 'm_getheader(': 'resource conn, int identifier, int column_num | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002688\ 'mhash_count(': 'void | int',
2689\ 'mhash_get_block_size(': 'int hash | int',
2690\ 'mhash_get_hash_name(': 'int hash | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002691\ 'mhash(': 'int hash, string data [, string key] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002692\ 'mhash_keygen_s2k(': 'int hash, string password, string salt, int bytes | string',
2693\ 'microtime(': '[bool get_as_float] | mixed',
2694\ 'mime_content_type(': 'string filename | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002695\ 'ming_keypress(': 'string str | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002696\ 'ming_setcubicthreshold(': 'int threshold | void',
2697\ 'ming_setscale(': 'int scale | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002698\ 'ming_useConstants(': 'int use | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002699\ 'ming_useswfversion(': 'int version | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002700\ 'min(': 'number arg1, number arg2 [, number ...] | mixed',
2701\ 'm_initconn(': 'void | resource',
2702\ 'm_initengine(': 'string location | int',
2703\ 'm_iscommadelimited(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002704\ 'mkdir(': 'string pathname [, int mode [, bool recursive [, resource context]]] | bool',
2705\ 'mktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002706\ 'm_maxconntimeout(': 'resource conn, int secs | bool',
2707\ 'm_monitor(': 'resource conn | int',
2708\ 'm_numcolumns(': 'resource conn, int identifier | int',
2709\ 'm_numrows(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002710\ 'money_format(': 'string format, float number | string',
2711\ 'move_uploaded_file(': 'string filename, string destination | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002712\ 'm_parsecommadelimited(': 'resource conn, int identifier | int',
2713\ 'm_responsekeys(': 'resource conn, int identifier | array',
2714\ 'm_responseparam(': 'resource conn, int identifier, string key | string',
2715\ 'm_returnstatus(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002716\ 'msession_connect(': 'string host, string port | bool',
2717\ 'msession_count(': 'void | int',
2718\ 'msession_create(': 'string session | bool',
2719\ 'msession_destroy(': 'string name | bool',
2720\ 'msession_disconnect(': 'void | void',
2721\ 'msession_find(': 'string name, string value | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002722\ 'msession_get_array(': 'string session | array',
2723\ 'msession_get_data(': 'string session | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002724\ 'msession_get(': 'string session, string name, string value | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002725\ 'msession_inc(': 'string session, string name | string',
2726\ 'msession_list(': 'void | array',
2727\ 'msession_listvar(': 'string name | array',
2728\ 'msession_lock(': 'string name | int',
2729\ 'msession_plugin(': 'string session, string val [, string param] | string',
2730\ 'msession_randstr(': 'int param | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002731\ 'msession_set_array(': 'string session, array tuples | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002732\ 'msession_set_data(': 'string session, string value | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002733\ 'msession_set(': 'string session, string name, string value | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002734\ 'msession_timeout(': 'string session [, int param] | int',
2735\ 'msession_uniq(': 'int param | string',
2736\ 'msession_unlock(': 'string session, int key | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002737\ 'm_setblocking(': 'resource conn, int tf | int',
2738\ 'm_setdropfile(': 'resource conn, string directory | int',
2739\ 'm_setip(': 'resource conn, string host, int port | int',
2740\ 'm_setssl_cafile(': 'resource conn, string cafile | int',
2741\ 'm_setssl_files(': 'resource conn, string sslkeyfile, string sslcertfile | int',
2742\ 'm_setssl(': 'resource conn, string host, int port | int',
2743\ 'm_settimeout(': 'resource conn, int seconds | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002744\ 'msg_get_queue(': 'int key [, int perms] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002745\ '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 +00002746\ 'msg_remove_queue(': 'resource queue | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002747\ 'msg_send(': 'resource queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int &#38;errorcode]]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002748\ 'msg_set_queue(': 'resource queue, array data | bool',
2749\ 'msg_stat_queue(': 'resource queue | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002750\ 'msql_affected_rows(': 'resource result | int',
2751\ 'msql_close(': '[resource link_identifier] | bool',
2752\ 'msql_connect(': '[string hostname] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002753\ 'msql_create_db(': 'string database_name [, resource link_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002754\ 'msql_data_seek(': 'resource result, int row_number | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002755\ 'msql_db_query(': 'string database, string query [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002756\ 'msql_drop_db(': 'string database_name [, resource link_identifier] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002757\ 'msql_error(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002758\ 'msql_fetch_array(': 'resource result [, int result_type] | array',
2759\ 'msql_fetch_field(': 'resource result [, int field_offset] | object',
2760\ 'msql_fetch_object(': 'resource result | object',
2761\ 'msql_fetch_row(': 'resource result | array',
2762\ 'msql_field_flags(': 'resource result, int field_offset | string',
2763\ 'msql_field_len(': 'resource result, int field_offset | int',
2764\ 'msql_field_name(': 'resource result, int field_offset | string',
2765\ 'msql_field_seek(': 'resource result, int field_offset | bool',
2766\ 'msql_field_table(': 'resource result, int field_offset | int',
2767\ 'msql_field_type(': 'resource result, int field_offset | string',
2768\ 'msql_free_result(': 'resource result | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002769\ 'msql_list_dbs(': '[resource link_identifier] | resource',
2770\ 'msql_list_fields(': 'string database, string tablename [, resource link_identifier] | resource',
2771\ 'msql_list_tables(': 'string database [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002772\ 'msql_num_fields(': 'resource result | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002773\ 'msql_num_rows(': 'resource query_identifier | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002774\ 'msql_pconnect(': '[string hostname] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002775\ 'msql_query(': 'string query [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002776\ 'msql_result(': 'resource result, int row [, mixed field] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002777\ 'msql_select_db(': 'string database_name [, resource link_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002778\ 'm_sslcert_gen_hash(': 'string filename | string',
2779\ '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 +00002780\ 'mssql_close(': '[resource link_identifier] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002781\ 'mssql_connect(': '[string servername [, string username [, string password]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002782\ 'mssql_data_seek(': 'resource result_identifier, int row_number | bool',
2783\ 'mssql_execute(': 'resource stmt [, bool skip_results] | mixed',
2784\ 'mssql_fetch_array(': 'resource result [, int result_type] | array',
2785\ 'mssql_fetch_assoc(': 'resource result_id | array',
2786\ 'mssql_fetch_batch(': 'resource result_index | int',
2787\ 'mssql_fetch_field(': 'resource result [, int field_offset] | object',
2788\ 'mssql_fetch_object(': 'resource result | object',
2789\ 'mssql_fetch_row(': 'resource result | array',
2790\ 'mssql_field_length(': 'resource result [, int offset] | int',
2791\ 'mssql_field_name(': 'resource result [, int offset] | string',
2792\ 'mssql_field_seek(': 'resource result, int field_offset | bool',
2793\ 'mssql_field_type(': 'resource result [, int offset] | string',
2794\ 'mssql_free_result(': 'resource result | bool',
2795\ 'mssql_free_statement(': 'resource statement | bool',
2796\ 'mssql_get_last_message(': 'void | string',
2797\ 'mssql_guid_string(': 'string binary [, int short_format] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002798\ 'mssql_init(': 'string sp_name [, resource conn_id] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002799\ 'mssql_min_error_severity(': 'int severity | void',
2800\ 'mssql_min_message_severity(': 'int severity | void',
2801\ 'mssql_next_result(': 'resource result_id | bool',
2802\ 'mssql_num_fields(': 'resource result | int',
2803\ 'mssql_num_rows(': 'resource result | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002804\ 'mssql_pconnect(': '[string servername [, string username [, string password]]] | resource',
2805\ 'mssql_query(': 'string query [, resource link_identifier [, int batch_size]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002806\ 'mssql_result(': 'resource result, int row, mixed field | string',
2807\ 'mssql_rows_affected(': 'resource conn_id | int',
2808\ 'mssql_select_db(': 'string database_name [, resource link_identifier] | bool',
2809\ 'mt_getrandmax(': 'void | int',
2810\ 'mt_rand(': '[int min, int max] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002811\ 'm_transactionssent(': 'resource conn | int',
2812\ 'm_transinqueue(': 'resource conn | int',
2813\ 'm_transkeyval(': 'resource conn, int identifier, string key, string value | int',
2814\ 'm_transnew(': 'resource conn | int',
2815\ 'm_transsend(': 'resource conn, int identifier | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002816\ 'mt_srand(': '[int seed] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002817\ 'muscat_close(': 'resource muscat_handle | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002818\ 'muscat_get(': 'resource muscat_handle | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002819\ 'muscat_give(': 'resource muscat_handle, string string | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002820\ 'muscat_setup(': 'int size [, string muscat_dir] | resource',
2821\ 'muscat_setup_net(': 'string muscat_host | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002822\ 'm_uwait(': 'int microsecs | int',
2823\ 'm_validateidentifier(': 'resource conn, int tf | int',
2824\ 'm_verifyconnection(': 'resource conn, int tf | bool',
2825\ 'm_verifysslcert(': 'resource conn, int tf | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002826\ 'mysql_affected_rows(': '[resource link_identifier] | int',
2827\ 'mysql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | int',
2828\ 'mysql_client_encoding(': '[resource link_identifier] | string',
2829\ 'mysql_close(': '[resource link_identifier] | bool',
2830\ 'mysql_connect(': '[string server [, string username [, string password [, bool new_link [, int client_flags]]]]] | resource',
2831\ 'mysql_create_db(': 'string database_name [, resource link_identifier] | bool',
2832\ 'mysql_data_seek(': 'resource result, int row_number | bool',
2833\ 'mysql_db_name(': 'resource result, int row [, mixed field] | string',
2834\ 'mysql_db_query(': 'string database, string query [, resource link_identifier] | resource',
2835\ 'mysql_drop_db(': 'string database_name [, resource link_identifier] | bool',
2836\ 'mysql_errno(': '[resource link_identifier] | int',
2837\ 'mysql_error(': '[resource link_identifier] | string',
2838\ 'mysql_escape_string(': 'string unescaped_string | string',
2839\ 'mysql_fetch_array(': 'resource result [, int result_type] | array',
2840\ 'mysql_fetch_assoc(': 'resource result | array',
2841\ 'mysql_fetch_field(': 'resource result [, int field_offset] | object',
2842\ 'mysql_fetch_lengths(': 'resource result | array',
2843\ 'mysql_fetch_object(': 'resource result | object',
2844\ 'mysql_fetch_row(': 'resource result | array',
2845\ 'mysql_field_flags(': 'resource result, int field_offset | string',
2846\ 'mysql_field_len(': 'resource result, int field_offset | int',
2847\ 'mysql_field_name(': 'resource result, int field_offset | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002848\ 'mysql_field_seek(': 'resource result, int field_offset | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002849\ 'mysql_field_table(': 'resource result, int field_offset | string',
2850\ 'mysql_field_type(': 'resource result, int field_offset | string',
2851\ 'mysql_free_result(': 'resource result | bool',
2852\ 'mysql_get_client_info(': 'void | string',
2853\ 'mysql_get_host_info(': '[resource link_identifier] | string',
2854\ 'mysql_get_proto_info(': '[resource link_identifier] | int',
2855\ 'mysql_get_server_info(': '[resource link_identifier] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002856\ 'mysqli_connect_errno(': 'void | int',
2857\ 'mysqli_connect_error(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002858\ 'mysqli_debug(': 'string debug | bool',
2859\ 'mysqli_disable_rpl_parse(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002860\ 'mysqli_dump_debug_info(': 'mysqli link | bool',
2861\ 'mysqli_embedded_connect(': '[string dbname] | mysqli',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002862\ 'mysqli_enable_reads_from_master(': 'mysqli link | bool',
2863\ 'mysqli_enable_rpl_parse(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002864\ 'mysqli_get_client_info(': 'void | string',
2865\ 'mysqli_get_client_version(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002866\ 'mysqli_init(': 'void | mysqli',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002867\ 'mysqli_master_query(': 'mysqli link, string query | bool',
2868\ 'mysqli_more_results(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002869\ 'mysqli_next_result(': 'mysqli link | bool',
2870\ 'mysql_info(': '[resource link_identifier] | string',
2871\ 'mysql_insert_id(': '[resource link_identifier] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002872\ 'mysqli_report(': 'int flags | bool',
2873\ 'mysqli_rollback(': 'mysqli link | bool',
2874\ 'mysqli_rpl_parse_enabled(': 'mysqli link | int',
2875\ 'mysqli_rpl_probe(': 'mysqli link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002876\ 'mysqli_select_db(': 'mysqli link, string dbname | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002877\ 'mysqli_server_end(': 'void | void',
2878\ 'mysqli_server_init(': '[array server [, array groups]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002879\ 'mysqli_set_charset(': 'mysqli link, string charset | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002880\ 'mysqli_stmt_sqlstate(': 'mysqli_stmt stmt | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002881\ 'mysql_list_dbs(': '[resource link_identifier] | resource',
2882\ 'mysql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource',
2883\ 'mysql_list_processes(': '[resource link_identifier] | resource',
2884\ 'mysql_list_tables(': 'string database [, resource link_identifier] | resource',
2885\ 'mysql_num_fields(': 'resource result | int',
2886\ 'mysql_num_rows(': 'resource result | int',
2887\ 'mysql_pconnect(': '[string server [, string username [, string password [, int client_flags]]]] | resource',
2888\ 'mysql_ping(': '[resource link_identifier] | bool',
2889\ 'mysql_query(': 'string query [, resource link_identifier] | resource',
2890\ 'mysql_real_escape_string(': 'string unescaped_string [, resource link_identifier] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002891\ 'mysql_result(': 'resource result, int row [, mixed field] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002892\ 'mysql_select_db(': 'string database_name [, resource link_identifier] | bool',
2893\ 'mysql_stat(': '[resource link_identifier] | string',
2894\ 'mysql_tablename(': 'resource result, int i | string',
2895\ 'mysql_thread_id(': '[resource link_identifier] | int',
2896\ 'mysql_unbuffered_query(': 'string query [, resource link_identifier] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002897\ 'natcasesort(': 'array &#38;array | bool',
2898\ 'natsort(': 'array &#38;array | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002899\ 'ncurses_addch(': 'int ch | int',
2900\ 'ncurses_addchnstr(': 'string s, int n | int',
2901\ 'ncurses_addchstr(': 'string s | int',
2902\ 'ncurses_addnstr(': 'string s, int n | int',
2903\ 'ncurses_addstr(': 'string text | int',
2904\ 'ncurses_assume_default_colors(': 'int fg, int bg | int',
2905\ 'ncurses_attroff(': 'int attributes | int',
2906\ 'ncurses_attron(': 'int attributes | int',
2907\ 'ncurses_attrset(': 'int attributes | int',
2908\ 'ncurses_baudrate(': 'void | int',
2909\ 'ncurses_beep(': 'void | int',
2910\ 'ncurses_bkgd(': 'int attrchar | int',
2911\ 'ncurses_bkgdset(': 'int attrchar | void',
2912\ 'ncurses_border(': 'int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner | int',
2913\ 'ncurses_bottom_panel(': 'resource panel | int',
2914\ 'ncurses_can_change_color(': 'void | bool',
2915\ 'ncurses_cbreak(': 'void | bool',
2916\ 'ncurses_clear(': 'void | bool',
2917\ 'ncurses_clrtobot(': 'void | bool',
2918\ 'ncurses_clrtoeol(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002919\ 'ncurses_color_content(': 'int color, int &#38;r, int &#38;g, int &#38;b | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002920\ 'ncurses_color_set(': 'int pair | int',
2921\ 'ncurses_curs_set(': 'int visibility | int',
2922\ 'ncurses_define_key(': 'string definition, int keycode | int',
2923\ 'ncurses_def_prog_mode(': 'void | bool',
2924\ 'ncurses_def_shell_mode(': 'void | bool',
2925\ 'ncurses_delay_output(': 'int milliseconds | int',
2926\ 'ncurses_delch(': 'void | bool',
2927\ 'ncurses_deleteln(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002928\ 'ncurses_del_panel(': 'resource panel | bool',
2929\ 'ncurses_delwin(': 'resource window | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002930\ 'ncurses_doupdate(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002931\ 'ncurses_echochar(': 'int character | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002932\ 'ncurses_echo(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002933\ 'ncurses_end(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002934\ 'ncurses_erasechar(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002935\ 'ncurses_erase(': 'void | bool',
2936\ 'ncurses_filter(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002937\ 'ncurses_flash(': 'void | bool',
2938\ 'ncurses_flushinp(': 'void | bool',
2939\ 'ncurses_getch(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002940\ 'ncurses_getmaxyx(': 'resource window, int &#38;y, int &#38;x | void',
2941\ 'ncurses_getmouse(': 'array &#38;mevent | bool',
2942\ 'ncurses_getyx(': 'resource window, int &#38;y, int &#38;x | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002943\ 'ncurses_halfdelay(': 'int tenth | int',
2944\ 'ncurses_has_colors(': 'void | bool',
2945\ 'ncurses_has_ic(': 'void | bool',
2946\ 'ncurses_has_il(': 'void | bool',
2947\ 'ncurses_has_key(': 'int keycode | int',
2948\ 'ncurses_hide_panel(': 'resource panel | int',
2949\ 'ncurses_hline(': 'int charattr, int n | int',
2950\ 'ncurses_inch(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002951\ 'ncurses_init_color(': 'int color, int r, int g, int b | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002952\ 'ncurses_init(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002953\ 'ncurses_init_pair(': 'int pair, int fg, int bg | int',
2954\ 'ncurses_insch(': 'int character | int',
2955\ 'ncurses_insdelln(': 'int count | int',
2956\ 'ncurses_insertln(': 'void | bool',
2957\ 'ncurses_insstr(': 'string text | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002958\ 'ncurses_instr(': 'string &#38;buffer | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002959\ 'ncurses_isendwin(': 'void | bool',
2960\ 'ncurses_keyok(': 'int keycode, bool enable | int',
2961\ 'ncurses_keypad(': 'resource window, bool bf | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002962\ 'ncurses_killchar(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002963\ 'ncurses_longname(': 'void | string',
2964\ 'ncurses_meta(': 'resource window, bool 8bit | int',
2965\ 'ncurses_mouseinterval(': 'int milliseconds | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002966\ 'ncurses_mousemask(': 'int newmask, int &#38;oldmask | int',
2967\ 'ncurses_mouse_trafo(': 'int &#38;y, int &#38;x, bool toscreen | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002968\ 'ncurses_move(': 'int y, int x | int',
2969\ 'ncurses_move_panel(': 'resource panel, int startx, int starty | int',
2970\ 'ncurses_mvaddch(': 'int y, int x, int c | int',
2971\ 'ncurses_mvaddchnstr(': 'int y, int x, string s, int n | int',
2972\ 'ncurses_mvaddchstr(': 'int y, int x, string s | int',
2973\ 'ncurses_mvaddnstr(': 'int y, int x, string s, int n | int',
2974\ 'ncurses_mvaddstr(': 'int y, int x, string s | int',
2975\ 'ncurses_mvcur(': 'int old_y, int old_x, int new_y, int new_x | int',
2976\ 'ncurses_mvdelch(': 'int y, int x | int',
2977\ 'ncurses_mvgetch(': 'int y, int x | int',
2978\ 'ncurses_mvhline(': 'int y, int x, int attrchar, int n | int',
2979\ 'ncurses_mvinch(': 'int y, int x | int',
2980\ 'ncurses_mvvline(': 'int y, int x, int attrchar, int n | int',
2981\ 'ncurses_mvwaddstr(': 'resource window, int y, int x, string text | int',
2982\ 'ncurses_napms(': 'int milliseconds | int',
2983\ 'ncurses_newpad(': 'int rows, int cols | resource',
2984\ 'ncurses_new_panel(': 'resource window | resource',
2985\ 'ncurses_newwin(': 'int rows, int cols, int y, int x | resource',
2986\ 'ncurses_nl(': 'void | bool',
2987\ 'ncurses_nocbreak(': 'void | bool',
2988\ 'ncurses_noecho(': 'void | bool',
2989\ 'ncurses_nonl(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002990\ 'ncurses_noqiflush(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002991\ 'ncurses_noraw(': 'void | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002992\ 'ncurses_pair_content(': 'int pair, int &#38;f, int &#38;b | int',
2993\ 'ncurses_panel_above(': 'resource panel | resource',
2994\ 'ncurses_panel_below(': 'resource panel | resource',
2995\ 'ncurses_panel_window(': 'resource panel | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002996\ 'ncurses_pnoutrefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int',
2997\ 'ncurses_prefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int',
2998\ 'ncurses_putp(': 'string text | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00002999\ 'ncurses_qiflush(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003000\ 'ncurses_raw(': 'void | bool',
3001\ 'ncurses_refresh(': 'int ch | int',
3002\ 'ncurses_replace_panel(': 'resource panel, resource window | int',
3003\ 'ncurses_reset_prog_mode(': 'void | int',
3004\ 'ncurses_reset_shell_mode(': 'void | int',
3005\ 'ncurses_resetty(': 'void | bool',
3006\ 'ncurses_savetty(': 'void | bool',
3007\ 'ncurses_scr_dump(': 'string filename | int',
3008\ 'ncurses_scr_init(': 'string filename | int',
3009\ 'ncurses_scrl(': 'int count | int',
3010\ 'ncurses_scr_restore(': 'string filename | int',
3011\ 'ncurses_scr_set(': 'string filename | int',
3012\ 'ncurses_show_panel(': 'resource panel | int',
3013\ 'ncurses_slk_attr(': 'void | bool',
3014\ 'ncurses_slk_attroff(': 'int intarg | int',
3015\ 'ncurses_slk_attron(': 'int intarg | int',
3016\ 'ncurses_slk_attrset(': 'int intarg | int',
3017\ 'ncurses_slk_clear(': 'void | bool',
3018\ 'ncurses_slk_color(': 'int intarg | int',
3019\ 'ncurses_slk_init(': 'int format | bool',
3020\ 'ncurses_slk_noutrefresh(': 'void | bool',
3021\ 'ncurses_slk_refresh(': 'void | bool',
3022\ 'ncurses_slk_restore(': 'void | bool',
3023\ 'ncurses_slk_set(': 'int labelnr, string label, int format | bool',
3024\ 'ncurses_slk_touch(': 'void | bool',
3025\ 'ncurses_standend(': 'void | int',
3026\ 'ncurses_standout(': 'void | int',
3027\ 'ncurses_start_color(': 'void | int',
3028\ 'ncurses_termattrs(': 'void | bool',
3029\ 'ncurses_termname(': 'void | string',
3030\ 'ncurses_timeout(': 'int millisec | void',
3031\ 'ncurses_top_panel(': 'resource panel | int',
3032\ 'ncurses_typeahead(': 'int fd | int',
3033\ 'ncurses_ungetch(': 'int keycode | int',
3034\ 'ncurses_ungetmouse(': 'array mevent | bool',
3035\ 'ncurses_update_panels(': 'void | void',
3036\ 'ncurses_use_default_colors(': 'void | bool',
3037\ 'ncurses_use_env(': 'bool flag | void',
3038\ 'ncurses_use_extended_names(': 'bool flag | int',
3039\ 'ncurses_vidattr(': 'int intarg | int',
3040\ 'ncurses_vline(': 'int charattr, int n | int',
3041\ 'ncurses_waddch(': 'resource window, int ch | int',
3042\ 'ncurses_waddstr(': 'resource window, string str [, int n] | int',
3043\ 'ncurses_wattroff(': 'resource window, int attrs | int',
3044\ 'ncurses_wattron(': 'resource window, int attrs | int',
3045\ 'ncurses_wattrset(': 'resource window, int attrs | int',
3046\ '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',
3047\ 'ncurses_wclear(': 'resource window | int',
3048\ 'ncurses_wcolor_set(': 'resource window, int color_pair | int',
3049\ 'ncurses_werase(': 'resource window | int',
3050\ 'ncurses_wgetch(': 'resource window | int',
3051\ 'ncurses_whline(': 'resource window, int charattr, int n | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003052\ 'ncurses_wmouse_trafo(': 'resource window, int &#38;y, int &#38;x, bool toscreen | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003053\ 'ncurses_wmove(': 'resource window, int y, int x | int',
3054\ 'ncurses_wnoutrefresh(': 'resource window | int',
3055\ 'ncurses_wrefresh(': 'resource window | int',
3056\ 'ncurses_wstandend(': 'resource window | int',
3057\ 'ncurses_wstandout(': 'resource window | int',
3058\ 'ncurses_wvline(': 'resource window, int charattr, int n | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003059\ 'newt_bell(': 'void | void',
3060\ 'newt_button_bar(': 'array &#38;buttons | resource',
3061\ 'newt_button(': 'int left, int top, string text | resource',
3062\ 'newt_centered_window(': 'int width, int height [, string title] | int',
3063\ 'newt_checkbox_get_value(': 'resource checkbox | string',
3064\ 'newt_checkbox(': 'int left, int top, string text, string def_value [, string seq] | resource',
3065\ 'newt_checkbox_set_flags(': 'resource checkbox, int flags, int sense | void',
3066\ 'newt_checkbox_set_value(': 'resource checkbox, string value | void',
3067\ 'newt_checkbox_tree_add_item(': 'resource checkboxtree, string text, mixed data, int flags, int index [, int ...] | void',
3068\ 'newt_checkbox_tree_find_item(': 'resource checkboxtree, mixed data | array',
3069\ 'newt_checkbox_tree_get_current(': 'resource checkboxtree | mixed',
3070\ 'newt_checkbox_tree_get_entry_value(': 'resource checkboxtree, mixed data | string',
3071\ 'newt_checkbox_tree_get_multi_selection(': 'resource checkboxtree, string seqnum | array',
3072\ 'newt_checkbox_tree_get_selection(': 'resource checkboxtree | array',
3073\ 'newt_checkbox_tree(': 'int left, int top, int height [, int flags] | resource',
3074\ 'newt_checkbox_tree_multi(': 'int left, int top, int height, string seq [, int flags] | resource',
3075\ 'newt_checkbox_tree_set_current(': 'resource checkboxtree, mixed data | void',
3076\ 'newt_checkbox_tree_set_entry(': 'resource checkboxtree, mixed data, string text | void',
3077\ 'newt_checkbox_tree_set_entry_value(': 'resource checkboxtree, mixed data, string value | void',
3078\ 'newt_checkbox_tree_set_width(': 'resource checkbox_tree, int width | void',
3079\ 'newt_clear_key_buffer(': 'void | void',
3080\ 'newt_cls(': 'void | void',
3081\ 'newt_compact_button(': 'int left, int top, string text | resource',
3082\ 'newt_component_add_callback(': 'resource component, mixed func_name, mixed data | void',
3083\ 'newt_component_takes_focus(': 'resource component, bool takes_focus | void',
3084\ 'newt_create_grid(': 'int cols, int rows | resource',
3085\ 'newt_cursor_off(': 'void | void',
3086\ 'newt_cursor_on(': 'void | void',
3087\ 'newt_delay(': 'int microseconds | void',
3088\ 'newt_draw_form(': 'resource form | void',
3089\ 'newt_draw_root_text(': 'int left, int top, string text | void',
3090\ 'newt_entry_get_value(': 'resource entry | string',
3091\ 'newt_entry(': 'int left, int top, int width [, string init_value [, int flags]] | resource',
3092\ 'newt_entry_set_filter(': 'resource entry, callback filter, mixed data | void',
3093\ 'newt_entry_set_flags(': 'resource entry, int flags, int sense | void',
3094\ 'newt_entry_set(': 'resource entry, string value [, bool cursor_at_end] | void',
3095\ 'newt_finished(': 'void | int',
3096\ 'newt_form_add_component(': 'resource form, resource component | void',
3097\ 'newt_form_add_components(': 'resource form, array components | void',
3098\ 'newt_form_add_host_key(': 'resource form, int key | void',
3099\ 'newt_form_destroy(': 'resource form | void',
3100\ 'newt_form_get_current(': 'resource form | resource',
3101\ 'newt_form(': '[resource vert_bar [, string help [, int flags]]] | resource',
3102\ 'newt_form_run(': 'resource form, array &#38;exit_struct | void',
3103\ 'newt_form_set_background(': 'resource from, int background | void',
3104\ 'newt_form_set_height(': 'resource form, int height | void',
3105\ 'newt_form_set_size(': 'resource form | void',
3106\ 'newt_form_set_timer(': 'resource form, int milliseconds | void',
3107\ 'newt_form_set_width(': 'resource form, int width | void',
3108\ 'newt_form_watch_fd(': 'resource form, resource stream [, int flags] | void',
3109\ 'newt_get_screen_size(': 'int &#38;cols, int &#38;rows | void',
3110\ 'newt_grid_add_components_to_form(': 'resource grid, resource form, bool recurse | void',
3111\ 'newt_grid_basic_window(': 'resource text, resource middle, resource buttons | resource',
3112\ 'newt_grid_free(': 'resource grid, bool recurse | void',
3113\ 'newt_grid_get_size(': 'resouce grid, int &#38;width, int &#38;height | void',
3114\ 'newt_grid_h_close_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
3115\ 'newt_grid_h_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
3116\ 'newt_grid_place(': 'resource grid, int left, int top | void',
3117\ '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',
3118\ 'newt_grid_simple_window(': 'resource text, resource middle, resource buttons | resource',
3119\ 'newt_grid_v_close_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
3120\ 'newt_grid_v_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource',
3121\ 'newt_grid_wrapped_window_at(': 'resource grid, string title, int left, int top | void',
3122\ 'newt_grid_wrapped_window(': 'resource grid, string title | void',
3123\ 'newt_init(': 'void | int',
3124\ 'newt_label(': 'int left, int top, string text | resource',
3125\ 'newt_label_set_text(': 'resource label, string text | void',
3126\ 'newt_listbox_append_entry(': 'resource listbox, string text, mixed data | void',
3127\ 'newt_listbox_clear(': 'resource listobx | void',
3128\ 'newt_listbox_clear_selection(': 'resource listbox | void',
3129\ 'newt_listbox_delete_entry(': 'resource listbox, mixed key | void',
3130\ 'newt_listbox_get_current(': 'resource listbox | string',
3131\ 'newt_listbox_get_selection(': 'resource listbox | array',
3132\ 'newt_listbox(': 'int left, int top, int height [, int flags] | resource',
3133\ 'newt_listbox_insert_entry(': 'resource listbox, string text, mixed data, mixed key | void',
3134\ 'newt_listbox_item_count(': 'resource listbox | int',
3135\ 'newt_listbox_select_item(': 'resource listbox, mixed key, int sense | void',
3136\ 'newt_listbox_set_current_by_key(': 'resource listbox, mixed key | void',
3137\ 'newt_listbox_set_current(': 'resource listbox, int num | void',
3138\ 'newt_listbox_set_data(': 'resource listbox, int num, mixed data | void',
3139\ 'newt_listbox_set_entry(': 'resource listbox, int num, string text | void',
3140\ 'newt_listbox_set_width(': 'resource listbox, int width | void',
3141\ 'newt_listitem_get_data(': 'resource item | mixed',
3142\ 'newt_listitem(': 'int left, int top, string text, bool is_default, resouce prev_item, mixed data [, int flags] | resource',
3143\ 'newt_listitem_set(': 'resource item, string text | void',
3144\ 'newt_open_window(': 'int left, int top, int width, int height [, string title] | int',
3145\ 'newt_pop_help_line(': 'void | void',
3146\ 'newt_pop_window(': 'void | void',
3147\ 'newt_push_help_line(': '[string text] | void',
3148\ 'newt_radiobutton(': 'int left, int top, string text, bool is_default [, resource prev_button] | resource',
3149\ 'newt_radio_get_current(': 'resource set_member | resource',
3150\ 'newt_redraw_help_line(': 'void | void',
3151\ 'newt_reflow_text(': 'string text, int width, int flex_down, int flex_up, int &#38;actual_width, int &#38;actual_height | string',
3152\ 'newt_refresh(': 'void | void',
3153\ 'newt_resize_screen(': '[bool redraw] | void',
3154\ 'newt_resume(': 'void | void',
3155\ 'newt_run_form(': 'resource form | resource',
3156\ 'newt_scale(': 'int left, int top, int width, int full_value | resource',
3157\ 'newt_scale_set(': 'resource scale, int amount | void',
3158\ 'newt_scrollbar_set(': 'resource scrollbar, int where, int total | void',
3159\ 'newt_set_help_callback(': 'mixed function | void',
3160\ 'newt_set_suspend_callback(': 'callback function, mixed data | void',
3161\ 'newt_suspend(': 'void | void',
3162\ 'newt_texbox_set_text(': 'resource textbox, string text | void',
3163\ 'newt_textbox_get_num_lines(': 'resource textbox | int',
3164\ 'newt_textbox(': 'int left, int top, int width, int height [, int flags] | resource',
3165\ 'newt_textbox_reflowed(': 'int left, int top, char *text, int width, int flex_down, int flex_up [, int flags] | resource',
3166\ 'newt_textbox_set_height(': 'resource textbox, int height | void',
3167\ 'newt_vertical_scrollbar(': 'int left, int top, int height [, int normal_colorset [, int thumb_colorset]] | resource',
3168\ 'newt_wait_for_key(': 'void | void',
3169\ 'newt_win_choice(': 'string title, string button1_text, string button2_text, string format [, mixed args [, mixed ...]] | int',
3170\ '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',
3171\ 'newt_win_menu(': 'string title, string text, int suggestedWidth, int flexDown, int flexUp, int maxListHeight, array items, int &#38;listItem [, string button1 [, string ...]] | int',
3172\ 'newt_win_message(': 'string title, string button_text, string format [, mixed args [, mixed ...]] | void',
3173\ 'newt_win_messagev(': 'string title, string button_text, string format, array args | void',
3174\ 'newt_win_ternary(': 'string title, string button1_text, string button2_text, string button3_text, string format [, mixed args [, mixed ...]] | int',
3175\ 'next(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003176\ 'ngettext(': 'string msgid1, string msgid2, int n | string',
3177\ 'nl2br(': 'string string | string',
3178\ 'nl_langinfo(': 'int item | string',
3179\ 'notes_body(': 'string server, string mailbox, int msg_number | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003180\ 'notes_copy_db(': 'string from_database_name, string to_database_name | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003181\ 'notes_create_db(': 'string database_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003182\ 'notes_create_note(': 'string database_name, string form_name | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003183\ 'notes_drop_db(': 'string database_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003184\ 'notes_find_note(': 'string database_name, string name [, string type] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003185\ 'notes_header_info(': 'string server, string mailbox, int msg_number | object',
3186\ 'notes_list_msgs(': 'string db | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003187\ 'notes_mark_read(': 'string database_name, string user_name, string note_id | bool',
3188\ 'notes_mark_unread(': 'string database_name, string user_name, string note_id | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003189\ 'notes_nav_create(': 'string database_name, string name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003190\ 'notes_search(': 'string database_name, string keywords | array',
3191\ 'notes_unread(': 'string database_name, string user_name | array',
3192\ 'notes_version(': 'string database_name | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003193\ 'nsapi_request_headers(': 'void | array',
3194\ 'nsapi_response_headers(': 'void | array',
3195\ 'nsapi_virtual(': 'string uri | bool',
3196\ 'number_format(': 'float number [, int decimals [, string dec_point, string thousands_sep]] | string',
3197\ 'ob_clean(': 'void | void',
3198\ 'ob_end_clean(': 'void | bool',
3199\ 'ob_end_flush(': 'void | bool',
3200\ 'ob_flush(': 'void | void',
3201\ 'ob_get_clean(': 'void | string',
3202\ 'ob_get_contents(': 'void | string',
3203\ 'ob_get_flush(': 'void | string',
3204\ 'ob_get_length(': 'void | int',
3205\ 'ob_get_level(': 'void | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003206\ 'ob_gzhandler(': 'string buffer, int mode | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003207\ 'ob_iconv_handler(': 'string contents, int status | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003208\ 'ob_implicit_flush(': '[int flag] | void',
3209\ 'ob_list_handlers(': 'void | array',
3210\ 'ob_start(': '[callback output_callback [, int chunk_size [, bool erase]]] | bool',
3211\ 'ob_tidyhandler(': 'string input [, int mode] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003212\ 'oci_bind_by_name(': 'resource stmt, string ph_name, mixed &#38;variable [, int maxlength [, int type]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003213\ 'oci_cancel(': 'resource stmt | bool',
3214\ 'oci_close(': 'resource connection | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003215\ 'oci_commit(': 'resource connection | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003216\ 'oci_connect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource',
3217\ 'oci_define_by_name(': 'resource statement, string column_name, mixed &#38;variable [, int type] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003218\ 'oci_error(': '[resource source] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003219\ 'oci_execute(': 'resource stmt [, int mode] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003220\ 'oci_fetch_all(': 'resource statement, array &#38;output [, int skip [, int maxrows [, int flags]]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003221\ 'oci_fetch_array(': 'resource statement [, int mode] | array',
3222\ 'oci_fetch_assoc(': 'resource statement | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003223\ 'oci_fetch(': 'resource statement | bool',
3224\ 'ocifetchinto(': 'resource statement, array &#38;result [, int mode] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003225\ 'oci_fetch_object(': 'resource statement | object',
3226\ 'oci_fetch_row(': 'resource statement | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003227\ 'oci_field_is_null(': 'resource stmt, mixed field | bool',
3228\ 'oci_field_name(': 'resource statement, int field | string',
3229\ 'oci_field_precision(': 'resource statement, int field | int',
3230\ 'oci_field_scale(': 'resource statement, int field | int',
3231\ 'oci_field_size(': 'resource stmt, mixed field | int',
3232\ 'oci_field_type(': 'resource stmt, int field | mixed',
3233\ 'oci_field_type_raw(': 'resource statement, int field | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003234\ 'oci_free_statement(': 'resource statement | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003235\ 'oci_internal_debug(': 'int onoff | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003236\ 'oci_lob_copy(': 'OCI-Lob lob_to, OCI-Lob lob_from [, int length] | bool',
3237\ 'oci_lob_is_equal(': 'OCI-Lob lob1, OCI-Lob lob2 | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003238\ 'oci_new_collection(': 'resource connection, string tdo [, string schema] | OCI-Collection',
3239\ 'oci_new_connect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003240\ 'oci_new_cursor(': 'resource connection | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003241\ 'oci_new_descriptor(': 'resource connection [, int type] | OCI-Lob',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003242\ 'oci_num_fields(': 'resource statement | int',
3243\ 'oci_num_rows(': 'resource stmt | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003244\ 'oci_parse(': 'resource connection, string query | resource',
3245\ 'oci_password_change(': 'resource connection, string username, string old_password, string new_password | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003246\ 'oci_pconnect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003247\ 'oci_result(': 'resource statement, mixed field | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003248\ 'oci_rollback(': 'resource connection | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003249\ 'oci_server_version(': 'resource connection | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003250\ 'oci_set_prefetch(': 'resource statement [, int rows] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003251\ 'oci_statement_type(': 'resource statement | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003252\ 'octdec(': 'string octal_string | number',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003253\ 'odbc_autocommit(': 'resource connection_id [, bool OnOff] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003254\ 'odbc_binmode(': 'resource result_id, int mode | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003255\ 'odbc_close_all(': 'void | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003256\ 'odbc_close(': 'resource connection_id | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003257\ 'odbc_columnprivileges(': 'resource connection_id, string qualifier, string owner, string table_name, string column_name | resource',
3258\ 'odbc_columns(': 'resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]] | resource',
3259\ 'odbc_commit(': 'resource connection_id | bool',
3260\ 'odbc_connect(': 'string dsn, string user, string password [, int cursor_type] | resource',
3261\ 'odbc_cursor(': 'resource result_id | string',
3262\ 'odbc_data_source(': 'resource connection_id, int fetch_type | array',
3263\ 'odbc_do(': 'resource conn_id, string query | resource',
3264\ 'odbc_error(': '[resource connection_id] | string',
3265\ 'odbc_errormsg(': '[resource connection_id] | string',
3266\ 'odbc_exec(': 'resource connection_id, string query_string [, int flags] | resource',
3267\ 'odbc_execute(': 'resource result_id [, array parameters_array] | bool',
3268\ 'odbc_fetch_array(': 'resource result [, int rownumber] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003269\ 'odbc_fetch_into(': 'resource result_id, array &#38;result_array [, int rownumber] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003270\ 'odbc_fetch_object(': 'resource result [, int rownumber] | object',
3271\ 'odbc_fetch_row(': 'resource result_id [, int row_number] | bool',
3272\ 'odbc_field_len(': 'resource result_id, int field_number | int',
3273\ 'odbc_field_name(': 'resource result_id, int field_number | string',
3274\ 'odbc_field_num(': 'resource result_id, string field_name | int',
3275\ 'odbc_field_precision(': 'resource result_id, int field_number | int',
3276\ 'odbc_field_scale(': 'resource result_id, int field_number | int',
3277\ 'odbc_field_type(': 'resource result_id, int field_number | string',
3278\ 'odbc_foreignkeys(': 'resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table | resource',
3279\ 'odbc_free_result(': 'resource result_id | bool',
3280\ 'odbc_gettypeinfo(': 'resource connection_id [, int data_type] | resource',
3281\ 'odbc_longreadlen(': 'resource result_id, int length | bool',
3282\ 'odbc_next_result(': 'resource result_id | bool',
3283\ 'odbc_num_fields(': 'resource result_id | int',
3284\ 'odbc_num_rows(': 'resource result_id | int',
3285\ 'odbc_pconnect(': 'string dsn, string user, string password [, int cursor_type] | resource',
3286\ 'odbc_prepare(': 'resource connection_id, string query_string | resource',
3287\ 'odbc_primarykeys(': 'resource connection_id, string qualifier, string owner, string table | resource',
3288\ 'odbc_procedurecolumns(': 'resource connection_id [, string qualifier, string owner, string proc, string column] | resource',
3289\ 'odbc_procedures(': 'resource connection_id [, string qualifier, string owner, string name] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003290\ 'odbc_result_all(': 'resource result_id [, string format] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003291\ 'odbc_result(': 'resource result_id, mixed field | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003292\ 'odbc_rollback(': 'resource connection_id | bool',
3293\ 'odbc_setoption(': 'resource id, int function, int option, int param | bool',
3294\ 'odbc_specialcolumns(': 'resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable | resource',
3295\ 'odbc_statistics(': 'resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy | resource',
3296\ 'odbc_tableprivileges(': 'resource connection_id, string qualifier, string owner, string name | resource',
3297\ 'odbc_tables(': 'resource connection_id [, string qualifier [, string owner [, string name [, string types]]]] | resource',
3298\ 'openal_buffer_create(': 'void | resource',
3299\ 'openal_buffer_data(': 'resource buffer, int format, string data, int freq | bool',
3300\ 'openal_buffer_destroy(': 'resource buffer | bool',
3301\ 'openal_buffer_get(': 'resource buffer, int property | int',
3302\ 'openal_buffer_loadwav(': 'resource buffer, string wavfile | bool',
3303\ 'openal_context_create(': 'resource device | resource',
3304\ 'openal_context_current(': 'resource context | bool',
3305\ 'openal_context_destroy(': 'resource context | bool',
3306\ 'openal_context_process(': 'resource context | bool',
3307\ 'openal_context_suspend(': 'resource context | bool',
3308\ 'openal_device_close(': 'resource device | bool',
3309\ 'openal_device_open(': '[string device_desc] | resource',
3310\ 'openal_listener_get(': 'int property | mixed',
3311\ 'openal_listener_set(': 'int property, mixed setting | bool',
3312\ 'openal_source_create(': 'void | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003313\ 'openal_source_destroy(': 'resource source | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003314\ 'openal_source_get(': 'resource source, int property | mixed',
3315\ 'openal_source_pause(': 'resource source | bool',
3316\ 'openal_source_play(': 'resource source | bool',
3317\ 'openal_source_rewind(': 'resource source | bool',
3318\ 'openal_source_set(': 'resource source, int property, mixed setting | bool',
3319\ 'openal_source_stop(': 'resource source | bool',
3320\ 'openal_stream(': 'resource source, int format, int rate | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003321\ 'opendir(': 'string path [, resource context] | resource',
3322\ 'openlog(': 'string ident, int option, int facility | bool',
3323\ 'openssl_csr_export(': 'resource csr, string &#38;out [, bool notext] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003324\ 'openssl_csr_export_to_file(': 'resource csr, string outfilename [, bool notext] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003325\ 'openssl_csr_new(': 'array dn, resource &#38;privkey [, array configargs [, array extraattribs]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003326\ 'openssl_csr_sign(': 'mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003327\ 'openssl_error_string(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003328\ 'openssl_free_key(': 'resource key_identifier | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003329\ 'openssl_open(': 'string sealed_data, string &#38;open_data, string env_key, mixed priv_key_id | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003330\ 'openssl_pkcs7_decrypt(': 'string infilename, string outfilename, mixed recipcert [, mixed recipkey] | bool',
3331\ 'openssl_pkcs7_encrypt(': 'string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid]] | bool',
3332\ '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 +00003333\ 'openssl_pkcs7_verify(': 'string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]] | mixed',
3334\ 'openssl_pkey_export(': 'mixed key, string &#38;out [, string passphrase [, array configargs]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003335\ 'openssl_pkey_export_to_file(': 'mixed key, string outfilename [, string passphrase [, array configargs]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003336\ 'openssl_pkey_free(': 'resource key | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003337\ 'openssl_pkey_get_private(': 'mixed key [, string passphrase] | resource',
3338\ 'openssl_pkey_get_public(': 'mixed certificate | resource',
3339\ 'openssl_pkey_new(': '[array configargs] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003340\ 'openssl_private_decrypt(': 'string data, string &#38;decrypted, mixed key [, int padding] | bool',
3341\ 'openssl_private_encrypt(': 'string data, string &#38;crypted, mixed key [, int padding] | bool',
3342\ 'openssl_public_decrypt(': 'string data, string &#38;decrypted, mixed key [, int padding] | bool',
3343\ 'openssl_public_encrypt(': 'string data, string &#38;crypted, mixed key [, int padding] | bool',
3344\ 'openssl_seal(': 'string data, string &#38;sealed_data, array &#38;env_keys, array pub_key_ids | int',
3345\ 'openssl_sign(': 'string data, string &#38;signature, mixed priv_key_id [, int signature_alg] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003346\ 'openssl_verify(': 'string data, string signature, mixed pub_key_id | int',
3347\ 'openssl_x509_check_private_key(': 'mixed cert, mixed key | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003348\ 'openssl_x509_checkpurpose(': 'mixed x509cert, int purpose [, array cainfo [, string untrustedfile]] | int',
3349\ 'openssl_x509_export(': 'mixed x509, string &#38;output [, bool notext] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003350\ 'openssl_x509_export_to_file(': 'mixed x509, string outfilename [, bool notext] | bool',
3351\ 'openssl_x509_free(': 'resource x509cert | void',
3352\ 'openssl_x509_parse(': 'mixed x509cert [, bool shortnames] | array',
3353\ 'openssl_x509_read(': 'mixed x509certdata | resource',
3354\ 'ora_bind(': 'resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type] | bool',
3355\ 'ora_close(': 'resource cursor | bool',
3356\ 'ora_columnname(': 'resource cursor, int column | string',
3357\ 'ora_columnsize(': 'resource cursor, int column | int',
3358\ 'ora_columntype(': 'resource cursor, int column | string',
3359\ 'ora_commit(': 'resource conn | bool',
3360\ 'ora_commitoff(': 'resource conn | bool',
3361\ 'ora_commiton(': 'resource conn | bool',
3362\ 'ora_do(': 'resource conn, string query | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003363\ 'ora_errorcode(': '[resource cursor_or_connection] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003364\ 'ora_error(': '[resource cursor_or_connection] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003365\ 'ora_exec(': 'resource cursor | bool',
3366\ 'ora_fetch(': 'resource cursor | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003367\ 'ora_fetch_into(': 'resource cursor, array &#38;result [, int flags] | int',
3368\ 'ora_getcolumn(': 'resource cursor, int column | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003369\ 'ora_logoff(': 'resource connection | bool',
3370\ 'ora_logon(': 'string user, string password | resource',
3371\ 'ora_numcols(': 'resource cursor | int',
3372\ 'ora_numrows(': 'resource cursor | int',
3373\ 'ora_open(': 'resource connection | resource',
3374\ 'ora_parse(': 'resource cursor, string sql_statement [, int defer] | bool',
3375\ 'ora_plogon(': 'string user, string password | resource',
3376\ 'ora_rollback(': 'resource connection | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003377\ 'OrbitEnum(': 'string id | new',
3378\ 'OrbitObject(': 'string ior | new',
3379\ 'OrbitStruct(': 'string id | new',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003380\ 'ord(': 'string string | int',
3381\ 'output_add_rewrite_var(': 'string name, string value | bool',
3382\ 'output_reset_rewrite_vars(': 'void | bool',
3383\ 'overload(': '[string class_name] | void',
3384\ 'override_function(': 'string function_name, string function_args, string function_code | bool',
3385\ 'ovrimos_close(': 'int connection | void',
3386\ 'ovrimos_commit(': 'int connection_id | bool',
3387\ 'ovrimos_connect(': 'string host, string db, string user, string password | int',
3388\ 'ovrimos_cursor(': 'int result_id | string',
3389\ 'ovrimos_exec(': 'int connection_id, string query | int',
3390\ 'ovrimos_execute(': 'int result_id [, array parameters_array] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003391\ 'ovrimos_fetch_into(': 'int result_id, array &#38;result_array [, string how [, int rownumber]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003392\ 'ovrimos_fetch_row(': 'int result_id [, int how [, int row_number]] | bool',
3393\ 'ovrimos_field_len(': 'int result_id, int field_number | int',
3394\ 'ovrimos_field_name(': 'int result_id, int field_number | string',
3395\ 'ovrimos_field_num(': 'int result_id, string field_name | int',
3396\ 'ovrimos_field_type(': 'int result_id, int field_number | int',
3397\ 'ovrimos_free_result(': 'int result_id | bool',
3398\ 'ovrimos_longreadlen(': 'int result_id, int length | bool',
3399\ 'ovrimos_num_fields(': 'int result_id | int',
3400\ 'ovrimos_num_rows(': 'int result_id | int',
3401\ 'ovrimos_prepare(': 'int connection_id, string query | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003402\ 'ovrimos_result_all(': 'int result_id [, string format] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003403\ 'ovrimos_result(': 'int result_id, mixed field | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003404\ 'ovrimos_rollback(': 'int connection_id | bool',
3405\ 'pack(': 'string format [, mixed args [, mixed ...]] | string',
3406\ 'parse_ini_file(': 'string filename [, bool process_sections] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003407\ 'parsekit_compile_file(': 'string filename [, array &#38;errors [, int options]] | array',
3408\ 'parsekit_compile_string(': 'string phpcode [, array &#38;errors [, int options]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003409\ 'parsekit_func_arginfo(': 'mixed function | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003410\ 'parse_str(': 'string str [, array &#38;arr] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003411\ 'parse_url(': 'string url | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003412\ 'passthru(': 'string command [, int &#38;return_var] | void',
3413\ 'pathinfo(': 'string path [, int options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003414\ 'pclose(': 'resource handle | int',
3415\ 'pcntl_alarm(': 'int seconds | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003416\ 'pcntl_exec(': 'string path [, array args [, array envs]] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003417\ 'pcntl_fork(': 'void | int',
3418\ 'pcntl_getpriority(': '[int pid [, int process_identifier]] | int',
3419\ 'pcntl_setpriority(': 'int priority [, int pid [, int process_identifier]] | bool',
3420\ 'pcntl_signal(': 'int signo, callback handle [, bool restart_syscalls] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003421\ 'pcntl_wait(': 'int &#38;status [, int options] | int',
3422\ 'pcntl_waitpid(': 'int pid, int &#38;status [, int options] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003423\ 'pcntl_wexitstatus(': 'int status | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003424\ 'pcntl_wifexited(': 'int status | bool',
3425\ 'pcntl_wifsignaled(': 'int status | bool',
3426\ 'pcntl_wifstopped(': 'int status | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003427\ 'pcntl_wstopsig(': 'int status | int',
3428\ 'pcntl_wtermsig(': 'int status | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003429\ 'pdf_activate_item(': 'resource pdfdoc, int id | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003430\ 'pdf_add_launchlink(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename | bool',
3431\ '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 +00003432\ 'pdf_add_nameddest(': 'resource pdfdoc, string name, string optlist | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003433\ 'pdf_add_note(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool',
3434\ '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',
3435\ 'pdf_add_thumbnail(': 'resource pdfdoc, int image | bool',
3436\ 'pdf_add_weblink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003437\ 'pdf_arc(': 'resource p, float x, float y, float r, float alpha, float beta | bool',
3438\ 'pdf_arcn(': 'resource p, float x, float y, float r, float alpha, float beta | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003439\ '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 +00003440\ 'pdf_begin_document(': 'resource pdfdoc, string filename, string optlist | int',
3441\ 'pdf_begin_font(': 'resource pdfdoc, string filename, float a, float b, float c, float d, float e, float f, string optlist | bool',
3442\ 'pdf_begin_glyph(': 'resource pdfdoc, string glyphname, float wx, float llx, float lly, float urx, float ury | bool',
3443\ 'pdf_begin_item(': 'resource pdfdoc, string tag, string optlist | int',
3444\ 'pdf_begin_layer(': 'resource pdfdoc, int layer | bool',
3445\ 'pdf_begin_page_ext(': 'resource pdfdoc, float width, float height, string optlist | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003446\ 'pdf_begin_page(': 'resource pdfdoc, float width, float height | bool',
3447\ 'pdf_begin_pattern(': 'resource pdfdoc, float width, float height, float xstep, float ystep, int painttype | int',
3448\ 'pdf_begin_template(': 'resource pdfdoc, float width, float height | int',
3449\ 'pdf_circle(': 'resource pdfdoc, float x, float y, float r | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003450\ 'pdf_clip(': 'resource p | bool',
3451\ 'pdf_close(': 'resource p | bool',
3452\ 'pdf_close_image(': 'resource p, int image | void',
3453\ 'pdf_closepath_fill_stroke(': 'resource p | bool',
3454\ 'pdf_closepath(': 'resource p | bool',
3455\ 'pdf_closepath_stroke(': 'resource p | bool',
3456\ 'pdf_close_pdi(': 'resource p, int doc | bool',
3457\ 'pdf_close_pdi_page(': 'resource p, int page | bool',
3458\ 'pdf_concat(': 'resource p, float a, float b, float c, float d, float e, float f | bool',
3459\ 'pdf_continue_text(': 'resource p, string text | bool',
3460\ 'pdf_create_action(': 'resource pdfdoc, string type, string optlist | int',
3461\ 'pdf_create_annotation(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string type, string optlist | bool',
3462\ 'pdf_create_bookmark(': 'resource pdfdoc, string text, string optlist | int',
3463\ 'pdf_create_fieldgroup(': 'resource pdfdoc, string name, string optlist | bool',
3464\ 'pdf_create_field(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string name, string type, string optlist | bool',
3465\ 'pdf_create_gstate(': 'resource pdfdoc, string optlist | int',
3466\ 'pdf_create_pvf(': 'resource pdfdoc, string filename, string data, string optlist | bool',
3467\ 'pdf_create_textflow(': 'resource pdfdoc, string text, string optlist | int',
3468\ 'pdf_curveto(': 'resource p, float x1, float y1, float x2, float y2, float x3, float y3 | bool',
3469\ 'pdf_define_layer(': 'resource pdfdoc, string name, string optlist | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003470\ 'pdf_delete(': 'resource pdfdoc | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003471\ 'pdf_delete_pvf(': 'resource pdfdoc, string filename | int',
3472\ 'pdf_delete_textflow(': 'resource pdfdoc, int textflow | bool',
3473\ 'pdf_encoding_set_char(': 'resource pdfdoc, string encoding, int slot, string glyphname, int uv | bool',
3474\ 'pdf_end_document(': 'resource pdfdoc, string optlist | bool',
3475\ 'pdf_end_font(': 'resource pdfdoc | bool',
3476\ 'pdf_end_glyph(': 'resource pdfdoc | bool',
3477\ 'pdf_end_item(': 'resource pdfdoc, int id | bool',
3478\ 'pdf_end_layer(': 'resource pdfdoc | bool',
3479\ 'pdf_end_page_ext(': 'resource pdfdoc, string optlist | bool',
3480\ 'pdf_end_page(': 'resource p | bool',
3481\ 'pdf_end_pattern(': 'resource p | bool',
3482\ 'pdf_end_template(': 'resource p | bool',
3483\ 'pdf_fill(': 'resource p | bool',
3484\ 'pdf_fill_imageblock(': 'resource pdfdoc, int page, string blockname, int image, string optlist | int',
3485\ 'pdf_fill_pdfblock(': 'resource pdfdoc, int page, string blockname, int contents, string optlist | int',
3486\ 'pdf_fill_stroke(': 'resource p | bool',
3487\ 'pdf_fill_textblock(': 'resource pdfdoc, int page, string blockname, string text, string optlist | int',
3488\ 'pdf_findfont(': 'resource p, string fontname, string encoding, int embed | int',
3489\ 'pdf_fit_image(': 'resource pdfdoc, int image, float x, float y, string optlist | bool',
3490\ 'pdf_fit_pdi_page(': 'resource pdfdoc, int page, float x, float y, string optlist | bool',
3491\ 'pdf_fit_textflow(': 'resource pdfdoc, int textflow, float llx, float lly, float urx, float ury, string optlist | string',
3492\ 'pdf_fit_textline(': 'resource pdfdoc, string text, float x, float y, string optlist | bool',
3493\ 'pdf_get_apiname(': 'resource pdfdoc | string',
3494\ 'pdf_get_buffer(': 'resource p | string',
3495\ 'pdf_get_errmsg(': 'resource pdfdoc | string',
3496\ 'pdf_get_errnum(': 'resource pdfdoc | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003497\ 'pdf_get_majorversion(': 'void | int',
3498\ 'pdf_get_minorversion(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003499\ 'pdf_get_parameter(': 'resource p, string key, float modifier | string',
3500\ 'pdf_get_pdi_parameter(': 'resource p, string key, int doc, int page, int reserved | string',
3501\ 'pdf_get_pdi_value(': 'resource p, string key, int doc, int page, int reserved | float',
3502\ 'pdf_get_value(': 'resource p, string key, float modifier | float',
3503\ 'pdf_info_textflow(': 'resource pdfdoc, int textflow, string keyword | float',
3504\ 'pdf_initgraphics(': 'resource p | bool',
3505\ 'pdf_lineto(': 'resource p, float x, float y | bool',
3506\ 'pdf_load_font(': 'resource pdfdoc, string fontname, string encoding, string optlist | int',
3507\ 'pdf_load_iccprofile(': 'resource pdfdoc, string profilename, string optlist | int',
3508\ 'pdf_load_image(': 'resource pdfdoc, string imagetype, string filename, string optlist | int',
3509\ 'pdf_makespotcolor(': 'resource p, string spotname | int',
3510\ 'pdf_moveto(': 'resource p, float x, float y | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003511\ 'pdf_new(': ' | resource',
3512\ '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 +00003513\ 'pdf_open_file(': 'resource p, string filename | bool',
3514\ 'pdf_open_image_file(': 'resource p, string imagetype, string filename, string stringparam, int intparam | int',
3515\ 'pdf_open_image(': 'resource p, string imagetype, string source, string data, int length, int width, int height, int components, int bpc, string params | int',
3516\ 'pdf_open_memory_image(': 'resource p, resource image | int',
3517\ 'pdf_open_pdi(': 'resource pdfdoc, string filename, string optlist, int len | int',
3518\ 'pdf_open_pdi_page(': 'resource p, int doc, int pagenumber, string optlist | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003519\ 'pdf_place_image(': 'resource pdfdoc, int image, float x, float y, float scale | bool',
3520\ 'pdf_place_pdi_page(': 'resource pdfdoc, int page, float x, float y, float sx, float sy | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003521\ 'pdf_process_pdi(': 'resource pdfdoc, int doc, int page, string optlist | int',
3522\ 'pdf_rect(': 'resource p, float x, float y, float width, float height | bool',
3523\ 'pdf_restore(': 'resource p | bool',
3524\ 'pdf_resume_page(': 'resource pdfdoc, string optlist | bool',
3525\ 'pdf_rotate(': 'resource p, float phi | bool',
3526\ 'pdf_save(': 'resource p | bool',
3527\ 'pdf_scale(': 'resource p, float sx, float sy | bool',
3528\ 'pdf_set_border_color(': 'resource p, float red, float green, float blue | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003529\ 'pdf_set_border_dash(': 'resource pdfdoc, float black, float white | bool',
3530\ 'pdf_set_border_style(': 'resource pdfdoc, string style, float width | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003531\ 'pdf_setcolor(': 'resource p, string fstype, string colorspace, float c1, float c2, float c3, float c4 | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003532\ 'pdf_setdash(': 'resource pdfdoc, float b, float w | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003533\ 'pdf_setdashpattern(': 'resource pdfdoc, string optlist | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003534\ 'pdf_setflat(': 'resource pdfdoc, float flatness | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003535\ 'pdf_setfont(': 'resource pdfdoc, int font, float fontsize | bool',
3536\ 'pdf_setgray_fill(': 'resource p, float g | bool',
3537\ 'pdf_setgray(': 'resource p, float g | bool',
3538\ 'pdf_setgray_stroke(': 'resource p, float g | bool',
3539\ 'pdf_set_gstate(': 'resource pdfdoc, int gstate | bool',
3540\ 'pdf_set_info(': 'resource p, string key, string value | bool',
3541\ 'pdf_set_layer_dependency(': 'resource pdfdoc, string type, string optlist | bool',
3542\ 'pdf_setlinecap(': 'resource p, int linecap | bool',
3543\ 'pdf_setlinejoin(': 'resource p, int value | bool',
3544\ 'pdf_setlinewidth(': 'resource p, float width | bool',
3545\ 'pdf_setmatrix(': 'resource p, float a, float b, float c, float d, float e, float f | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003546\ 'pdf_setmiterlimit(': 'resource pdfdoc, float miter | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003547\ 'pdf_set_parameter(': 'resource p, string key, string value | bool',
3548\ 'pdf_setrgbcolor_fill(': 'resource p, float red, float green, float blue | bool',
3549\ 'pdf_setrgbcolor(': 'resource p, float red, float green, float blue | bool',
3550\ 'pdf_setrgbcolor_stroke(': 'resource p, float red, float green, float blue | bool',
3551\ 'pdf_set_text_pos(': 'resource p, float x, float y | bool',
3552\ 'pdf_set_value(': 'resource p, string key, float value | bool',
3553\ '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',
3554\ 'pdf_shading_pattern(': 'resource pdfdoc, int shading, string optlist | int',
3555\ 'pdf_shfill(': 'resource pdfdoc, int shading | bool',
3556\ '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 +00003557\ 'pdf_show(': 'resource pdfdoc, string text | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003558\ 'pdf_show_xy(': 'resource p, string text, float x, float y | bool',
3559\ 'pdf_skew(': 'resource p, float alpha, float beta | bool',
3560\ 'pdf_stringwidth(': 'resource p, string text, int font, float fontsize | float',
3561\ 'pdf_stroke(': 'resource p | bool',
3562\ 'pdf_suspend_page(': 'resource pdfdoc, string optlist | bool',
3563\ 'pdf_translate(': 'resource p, float tx, float ty | bool',
3564\ 'pdf_utf16_to_utf8(': 'resource pdfdoc, string utf16string | string',
3565\ 'pdf_utf8_to_utf16(': 'resource pdfdoc, string utf8string, string ordering | string',
3566\ 'pdf_xshow(': 'resource pdfdoc, string text | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003567\ 'pfpro_cleanup(': 'void | bool',
3568\ 'pfpro_init(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003569\ 'pfpro_process(': 'array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | array',
3570\ 'pfpro_process_raw(': 'string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | string',
3571\ 'pfpro_version(': 'void | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003572\ 'pfsockopen(': 'string hostname [, int port [, int &#38;errno [, string &#38;errstr [, float timeout]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003573\ 'pg_affected_rows(': 'resource result | int',
3574\ 'pg_cancel_query(': 'resource connection | bool',
3575\ 'pg_client_encoding(': '[resource connection] | string',
3576\ 'pg_close(': '[resource connection] | bool',
3577\ 'pg_connect(': 'string connection_string [, int connect_type] | resource',
3578\ 'pg_connection_busy(': 'resource connection | bool',
3579\ 'pg_connection_reset(': 'resource connection | bool',
3580\ 'pg_connection_status(': 'resource connection | int',
3581\ 'pg_convert(': 'resource connection, string table_name, array assoc_array [, int options] | array',
3582\ 'pg_copy_from(': 'resource connection, string table_name, array rows [, string delimiter [, string null_as]] | bool',
3583\ 'pg_copy_to(': 'resource connection, string table_name [, string delimiter [, string null_as]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003584\ 'pg_dbname(': '[resource connection] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003585\ 'pg_delete(': 'resource connection, string table_name, array assoc_array [, int options] | mixed',
3586\ 'pg_end_copy(': '[resource connection] | bool',
3587\ 'pg_escape_bytea(': 'string data | string',
3588\ 'pg_escape_string(': 'string data | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003589\ 'pg_execute(': 'resource connection, string stmtname, array params | resource',
3590\ 'pg_fetch_all_columns(': 'resource result [, int column] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003591\ 'pg_fetch_all(': 'resource result | array',
3592\ 'pg_fetch_array(': 'resource result [, int row [, int result_type]] | array',
3593\ 'pg_fetch_assoc(': 'resource result [, int row] | array',
3594\ 'pg_fetch_object(': 'resource result [, int row [, int result_type]] | object',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003595\ 'pg_fetch_result(': 'resource result, int row, mixed field | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003596\ 'pg_fetch_row(': 'resource result [, int row] | array',
3597\ 'pg_field_is_null(': 'resource result, int row, mixed field | int',
3598\ 'pg_field_name(': 'resource result, int field_number | string',
3599\ 'pg_field_num(': 'resource result, string field_name | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003600\ 'pg_field_prtlen(': 'resource result, int row_number, mixed field_name_or_number | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003601\ 'pg_field_size(': 'resource result, int field_number | int',
3602\ 'pg_field_type(': 'resource result, int field_number | string',
3603\ 'pg_field_type_oid(': 'resource result, int field_number | int',
3604\ 'pg_free_result(': 'resource result | bool',
3605\ 'pg_get_notify(': 'resource connection [, int result_type] | array',
3606\ 'pg_get_pid(': 'resource connection | int',
3607\ 'pg_get_result(': '[resource connection] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003608\ 'pg_host(': '[resource connection] | string',
3609\ 'pg_insert(': 'resource connection, string table_name, array assoc_array [, int options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003610\ 'pg_last_error(': '[resource connection] | string',
3611\ 'pg_last_notice(': 'resource connection | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003612\ 'pg_last_oid(': 'resource result | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003613\ 'pg_lo_close(': 'resource large_object | bool',
3614\ 'pg_lo_create(': '[resource connection] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003615\ 'pg_lo_export(': 'resource connection, int oid, string pathname | bool',
3616\ 'pg_lo_import(': 'resource connection, string pathname | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003617\ 'pg_lo_open(': 'resource connection, int oid, string mode | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003618\ 'pg_lo_read_all(': 'resource large_object | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003619\ 'pg_lo_read(': 'resource large_object [, int len] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003620\ 'pg_lo_seek(': 'resource large_object, int offset [, int whence] | bool',
3621\ 'pg_lo_tell(': 'resource large_object | int',
3622\ 'pg_lo_unlink(': 'resource connection, int oid | bool',
3623\ 'pg_lo_write(': 'resource large_object, string data [, int len] | int',
3624\ 'pg_meta_data(': 'resource connection, string table_name | array',
3625\ 'pg_num_fields(': 'resource result | int',
3626\ 'pg_num_rows(': 'resource result | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003627\ 'pg_options(': '[resource connection] | string',
3628\ 'pg_parameter_status(': 'resource connection, string param_name | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003629\ 'pg_pconnect(': 'string connection_string [, int connect_type] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003630\ 'pg_ping(': '[resource connection] | bool',
3631\ 'pg_port(': '[resource connection] | int',
3632\ 'pg_prepare(': 'resource connection, string stmtname, string query | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003633\ 'pg_put_line(': 'string data | bool',
3634\ 'pg_query(': 'string query | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003635\ 'pg_query_params(': 'resource connection, string query, array params | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003636\ 'pg_result_error_field(': 'resource result, int fieldcode | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003637\ 'pg_result_error(': 'resource result | string',
3638\ 'pg_result_seek(': 'resource result, int offset | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003639\ 'pg_result_status(': 'resource result [, int type] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003640\ 'pg_select(': 'resource connection, string table_name, array assoc_array [, int options] | mixed',
3641\ 'pg_send_execute(': 'resource connection, string stmtname, array params | bool',
3642\ 'pg_send_prepare(': 'resource connection, string stmtname, string query | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003643\ 'pg_send_query(': 'resource connection, string query | bool',
3644\ 'pg_send_query_params(': 'resource connection, string query, array params | bool',
3645\ 'pg_set_client_encoding(': 'string encoding | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003646\ 'pg_set_error_verbosity(': 'resource connection, int verbosity | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003647\ 'pg_trace(': 'string pathname [, string mode [, resource connection]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003648\ 'pg_transaction_status(': 'resource connection | int',
3649\ 'pg_tty(': '[resource connection] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003650\ 'pg_unescape_bytea(': 'string data | string',
3651\ 'pg_untrace(': '[resource connection] | bool',
3652\ 'pg_update(': 'resource connection, string table_name, array data, array condition [, int options] | mixed',
3653\ 'pg_version(': '[resource connection] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003654\ 'php_check_syntax(': 'string file_name [, string &#38;error_message] | bool',
3655\ 'phpcredits(': '[int flag] | bool',
3656\ 'phpinfo(': '[int what] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003657\ 'php_ini_scanned_files(': 'void | string',
3658\ 'php_logo_guid(': 'void | string',
3659\ 'php_sapi_name(': 'void | string',
3660\ 'php_strip_whitespace(': 'string filename | string',
3661\ 'php_uname(': '[string mode] | string',
3662\ 'phpversion(': '[string extension] | string',
3663\ 'pi(': 'void | float',
3664\ 'png2wbmp(': 'string pngname, string wbmpname, int d_height, int d_width, int threshold | int',
3665\ 'popen(': 'string command, string mode | resource',
3666\ 'posix_access(': 'string file [, int mode] | bool',
3667\ 'posix_ctermid(': 'void | string',
3668\ 'posix_getcwd(': 'void | string',
3669\ 'posix_getegid(': 'void | int',
3670\ 'posix_geteuid(': 'void | int',
3671\ 'posix_getgid(': 'void | int',
3672\ 'posix_getgrgid(': 'int gid | array',
3673\ 'posix_getgrnam(': 'string name | array',
3674\ 'posix_getgroups(': 'void | array',
3675\ 'posix_get_last_error(': 'void | int',
3676\ 'posix_getlogin(': 'void | string',
3677\ 'posix_getpgid(': 'int pid | int',
3678\ 'posix_getpgrp(': 'void | int',
3679\ 'posix_getpid(': 'void | int',
3680\ 'posix_getppid(': 'void | int',
3681\ 'posix_getpwnam(': 'string username | array',
3682\ 'posix_getpwuid(': 'int uid | array',
3683\ 'posix_getrlimit(': 'void | array',
3684\ 'posix_getsid(': 'int pid | int',
3685\ 'posix_getuid(': 'void | int',
3686\ 'posix_isatty(': 'int fd | bool',
3687\ 'posix_kill(': 'int pid, int sig | bool',
3688\ 'posix_mkfifo(': 'string pathname, int mode | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003689\ 'posix_mknod(': 'string pathname, int mode [, int major [, int minor]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003690\ 'posix_setegid(': 'int gid | bool',
3691\ 'posix_seteuid(': 'int uid | bool',
3692\ 'posix_setgid(': 'int gid | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003693\ 'posix_setpgid(': 'int pid, int pgid | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003694\ 'posix_setsid(': 'void | int',
3695\ 'posix_setuid(': 'int uid | bool',
3696\ 'posix_strerror(': 'int errno | string',
3697\ 'posix_times(': 'void | array',
3698\ 'posix_ttyname(': 'int fd | string',
3699\ 'posix_uname(': 'void | array',
3700\ 'pow(': 'number base, number exp | number',
3701\ 'preg_grep(': 'string pattern, array input [, int flags] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003702\ 'preg_match_all(': 'string pattern, string subject, array &#38;matches [, int flags [, int offset]] | int',
3703\ 'preg_match(': 'string pattern, string subject [, array &#38;matches [, int flags [, int offset]]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003704\ 'preg_quote(': 'string str [, string delimiter] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003705\ 'preg_replace_callback(': 'mixed pattern, callback callback, mixed subject [, int limit [, int &#38;count]] | mixed',
3706\ 'preg_replace(': 'mixed pattern, mixed replacement, mixed subject [, int limit [, int &#38;count]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003707\ 'preg_split(': 'string pattern, string subject [, int limit [, int flags]] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003708\ 'prev(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003709\ 'printer_abort(': 'resource handle | void',
3710\ 'printer_close(': 'resource handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003711\ 'printer_create_brush(': 'int style, string color | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003712\ 'printer_create_dc(': 'resource handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003713\ 'printer_create_font(': 'string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation | resource',
3714\ 'printer_create_pen(': 'int style, int width, string color | resource',
3715\ 'printer_delete_brush(': 'resource handle | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003716\ 'printer_delete_dc(': 'resource handle | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003717\ 'printer_delete_font(': 'resource handle | void',
3718\ 'printer_delete_pen(': 'resource handle | void',
3719\ 'printer_draw_bmp(': 'resource handle, string filename, int x, int y [, int width, int height] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003720\ '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',
3721\ 'printer_draw_elipse(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void',
3722\ 'printer_draw_line(': 'resource printer_handle, int from_x, int from_y, int to_x, int to_y | void',
3723\ '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',
3724\ 'printer_draw_rectangle(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void',
3725\ 'printer_draw_roundrect(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height | void',
3726\ 'printer_draw_text(': 'resource printer_handle, string text, int x, int y | void',
3727\ 'printer_end_doc(': 'resource handle | bool',
3728\ 'printer_end_page(': 'resource handle | bool',
3729\ 'printer_get_option(': 'resource handle, string option | mixed',
3730\ 'printer_list(': 'int enumtype [, string name [, int level]] | array',
3731\ 'printer_logical_fontheight(': 'resource handle, int height | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003732\ 'printer_open(': '[string devicename] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003733\ 'printer_select_brush(': 'resource printer_handle, resource brush_handle | void',
3734\ 'printer_select_font(': 'resource printer_handle, resource font_handle | void',
3735\ 'printer_select_pen(': 'resource printer_handle, resource pen_handle | void',
3736\ 'printer_set_option(': 'resource handle, int option, mixed value | bool',
3737\ 'printer_start_doc(': 'resource handle [, string document] | bool',
3738\ 'printer_start_page(': 'resource handle | bool',
3739\ 'printer_write(': 'resource handle, string content | bool',
3740\ 'printf(': 'string format [, mixed args [, mixed ...]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003741\ 'print(': 'string arg | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003742\ 'print_r(': 'mixed expression [, bool return] | bool',
3743\ 'proc_close(': 'resource process | int',
3744\ 'proc_get_status(': 'resource process | array',
3745\ 'proc_nice(': 'int increment | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003746\ 'proc_open(': 'string cmd, array descriptorspec, array &#38;pipes [, string cwd [, array env [, array other_options]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003747\ 'proc_terminate(': 'resource process [, int signal] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003748\ 'property_exists(': 'mixed class, string property | bool',
3749\ 'ps_add_bookmark(': 'resource psdoc, string text [, int parent [, int open]] | int',
3750\ 'ps_add_launchlink(': 'resource psdoc, float llx, float lly, float urx, float ury, string filename | bool',
3751\ 'ps_add_locallink(': 'resource psdoc, float llx, float lly, float urx, float ury, int page, string dest | bool',
3752\ 'ps_add_note(': 'resource psdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool',
3753\ 'ps_add_pdflink(': 'resource psdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest | bool',
3754\ 'ps_add_weblink(': 'resource psdoc, float llx, float lly, float urx, float ury, string url | bool',
3755\ 'ps_arc(': 'resource psdoc, float x, float y, float radius, float alpha, float beta | bool',
3756\ 'ps_arcn(': 'resource psdoc, float x, float y, float radius, float alpha, float beta | bool',
3757\ 'ps_begin_page(': 'resource psdoc, float width, float height | bool',
3758\ 'ps_begin_pattern(': 'resource psdoc, float width, float height, float xstep, float ystep, int painttype | bool',
3759\ 'ps_begin_template(': 'resource psdoc, float width, float height | bool',
3760\ 'ps_circle(': 'resource psdoc, float x, float y, float radius | bool',
3761\ 'ps_clip(': 'resource psdoc | bool',
3762\ 'ps_close(': 'resource psdoc | bool',
3763\ 'ps_close_image(': 'resource psdoc, int imageid | void',
3764\ 'ps_closepath(': 'resource psdoc | bool',
3765\ 'ps_closepath_stroke(': 'resource psdoc | bool',
3766\ 'ps_continue_text(': 'resource psdoc, string text | bool',
3767\ 'ps_curveto(': 'resource psdoc, float x1, float y1, float x2, float y2, float x3, float y3 | bool',
3768\ 'ps_delete(': 'resource psdoc | bool',
3769\ 'ps_end_page(': 'resource psdoc | bool',
3770\ 'ps_end_pattern(': 'resource psdoc | bool',
3771\ 'ps_end_template(': 'resource psdoc | bool',
3772\ 'ps_fill(': 'resource psdoc | bool',
3773\ 'ps_fill_stroke(': 'resource psdoc | bool',
3774\ 'ps_findfont(': 'resource psdoc, string fontname, string encoding [, bool embed] | int',
3775\ 'ps_get_buffer(': 'resource psdoc | string',
3776\ 'ps_get_parameter(': 'resource psdoc, string name [, float modifier] | string',
3777\ 'ps_get_value(': 'resource psdoc, string name [, float modifier] | float',
3778\ 'ps_hyphenate(': 'resource psdoc, string text | array',
3779\ 'ps_lineto(': 'resource psdoc, float x, float y | bool',
3780\ 'ps_makespotcolor(': 'resource psdoc, string name [, float reserved] | int',
3781\ 'ps_moveto(': 'resource psdoc, float x, float y | bool',
3782\ 'ps_new(': 'void | resource',
3783\ 'ps_open_file(': 'resource psdoc [, string filename] | bool',
3784\ 'ps_open_image_file(': 'resource psdoc, string type, string filename [, string stringparam [, int intparam]] | int',
3785\ 'ps_open_image(': 'resource psdoc, string type, string source, string data, int lenght, int width, int height, int components, int bpc, string params | int',
3786\ 'pspell_add_to_personal(': 'int dictionary_link, string word | bool',
3787\ 'pspell_add_to_session(': 'int dictionary_link, string word | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003788\ 'pspell_check(': 'int dictionary_link, string word | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003789\ 'pspell_clear_session(': 'int dictionary_link | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003790\ 'pspell_config_create(': 'string language [, string spelling [, string jargon [, string encoding]]] | int',
3791\ 'pspell_config_data_dir(': 'int conf, string directory | bool',
3792\ 'pspell_config_dict_dir(': 'int conf, string directory | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003793\ 'pspell_config_ignore(': 'int dictionary_link, int n | bool',
3794\ 'pspell_config_mode(': 'int dictionary_link, int mode | bool',
3795\ 'pspell_config_personal(': 'int dictionary_link, string file | bool',
3796\ 'pspell_config_repl(': 'int dictionary_link, string file | bool',
3797\ 'pspell_config_runtogether(': 'int dictionary_link, bool flag | bool',
3798\ 'pspell_config_save_repl(': 'int dictionary_link, bool flag | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003799\ 'pspell_new_config(': 'int config | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003800\ 'pspell_new(': 'string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003801\ 'pspell_new_personal(': 'string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003802\ 'pspell_save_wordlist(': 'int dictionary_link | bool',
3803\ 'pspell_store_replacement(': 'int dictionary_link, string misspelled, string correct | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003804\ 'pspell_suggest(': 'int dictionary_link, string word | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003805\ 'ps_place_image(': 'resource psdoc, int imageid, float x, float y, float scale | bool',
3806\ 'ps_rect(': 'resource psdoc, float x, float y, float width, float height | bool',
3807\ 'ps_restore(': 'resource psdoc | bool',
3808\ 'ps_rotate(': 'resource psdoc, float rot | bool',
3809\ 'ps_save(': 'resource psdoc | bool',
3810\ 'ps_scale(': 'resource psdoc, float x, float y | bool',
3811\ 'ps_set_border_color(': 'resource psdoc, float red, float green, float blue | bool',
3812\ 'ps_set_border_dash(': 'resource psdoc, float black, float white | bool',
3813\ 'ps_set_border_style(': 'resource psdoc, string style, float width | bool',
3814\ 'ps_setcolor(': 'resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4 | bool',
3815\ 'ps_setdash(': 'resource psdoc, float on, float off | bool',
3816\ 'ps_setflat(': 'resource psdoc, float value | bool',
3817\ 'ps_setfont(': 'resource psdoc, int fontid, float size | bool',
3818\ 'ps_setgray(': 'resource psdoc, float gray | bool',
3819\ 'ps_set_info(': 'resource p, string key, string val | bool',
3820\ 'ps_setlinecap(': 'resource psdoc, int type | bool',
3821\ 'ps_setlinejoin(': 'resource psdoc, int type | bool',
3822\ 'ps_setlinewidth(': 'resource psdoc, float width | bool',
3823\ 'ps_setmiterlimit(': 'resource psdoc, float value | bool',
3824\ 'ps_set_parameter(': 'resource psdoc, string name, string value | bool',
3825\ 'ps_setpolydash(': 'resource psdoc, float arr | bool',
3826\ 'ps_set_text_pos(': 'resource psdoc, float x, float y | bool',
3827\ 'ps_set_value(': 'resource psdoc, string name, float value | bool',
3828\ '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',
3829\ 'ps_shading_pattern(': 'resource psdoc, int shadingid, string optlist | int',
3830\ 'ps_shfill(': 'resource psdoc, int shadingid | bool',
3831\ 'ps_show_boxed(': 'resource psdoc, string text, float left, float bottom, float width, float height, string hmode [, string feature] | int',
3832\ 'ps_show(': 'resource psdoc, string text | bool',
3833\ 'ps_show_xy(': 'resource psdoc, string text, float x, float y | bool',
3834\ 'ps_string_geometry(': 'resource psdoc, string text [, int fontid [, float size]] | array',
3835\ 'ps_stringwidth(': 'resource psdoc, string text [, int fontid [, float size]] | float',
3836\ 'ps_stroke(': 'resource psdoc | bool',
3837\ 'ps_symbol(': 'resource psdoc, int ord | bool',
3838\ 'ps_symbol_name(': 'resource psdoc, int ord [, int fontid] | string',
3839\ 'ps_symbol_width(': 'resource psdoc, int ord [, int fontid [, float size]] | float',
3840\ 'ps_translate(': 'resource psdoc, float x, float y | bool',
3841\ 'putenv(': 'string setting | bool',
3842\ 'px_close(': 'resource pxdoc | bool',
3843\ 'px_create_fp(': 'resource pxdoc, resource file, array fielddesc | bool',
3844\ 'px_date2string(': 'resource pxdoc, int value, string format | string',
3845\ 'px_delete(': 'resource pxdoc | bool',
3846\ 'px_delete_record(': 'resource pxdoc, int num | bool',
3847\ 'px_get_field(': 'resource pxdoc, int fieldno | array',
3848\ 'px_get_info(': 'resource pxdoc | array',
3849\ 'px_get_parameter(': 'resource pxdoc, string name | string',
3850\ 'px_get_record(': 'resource pxdoc, int num [, int mode] | array',
3851\ 'px_get_schema(': 'resource pxdoc [, int mode] | array',
3852\ 'px_get_value(': 'resource pxdoc, string name | float',
3853\ 'px_insert_record(': 'resource pxdoc, array data | int',
3854\ 'px_new(': 'void | resource',
3855\ 'px_numfields(': 'resource pxdoc | int',
3856\ 'px_numrecords(': 'resource pxdoc | int',
3857\ 'px_open_fp(': 'resource pxdoc, resource file | bool',
3858\ 'px_put_record(': 'resource pxdoc, array record [, int recpos] | bool',
3859\ 'px_retrieve_record(': 'resource pxdoc, int num [, int mode] | array',
3860\ 'px_set_blob_file(': 'resource pxdoc, string filename | bool',
3861\ 'px_set_parameter(': 'resource pxdoc, string name, string value | bool',
3862\ 'px_set_tablename(': 'resource pxdoc, string name | void',
3863\ 'px_set_targetencoding(': 'resource pxdoc, string encoding | bool',
3864\ 'px_set_value(': 'resource pxdoc, string name, float value | bool',
3865\ 'px_timestamp2string(': 'resource pxdoc, float value, string format | string',
3866\ 'px_update_record(': 'resource pxdoc, array data, int num | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003867\ 'qdom_error(': 'void | string',
3868\ 'qdom_tree(': 'string doc | QDomDocument',
3869\ 'quoted_printable_decode(': 'string str | string',
3870\ 'quotemeta(': 'string str | string',
3871\ 'rad2deg(': 'float number | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003872\ 'radius_acct_open(': 'void | resource',
3873\ 'radius_add_server(': 'resource radius_handle, string hostname, int port, string secret, int timeout, int max_tries | bool',
3874\ 'radius_auth_open(': 'void | resource',
3875\ 'radius_close(': 'resource radius_handle | bool',
3876\ 'radius_config(': 'resource radius_handle, string file | bool',
3877\ 'radius_create_request(': 'resource radius_handle, int type | bool',
3878\ 'radius_cvt_addr(': 'string data | string',
3879\ 'radius_cvt_int(': 'string data | int',
3880\ 'radius_cvt_string(': 'string data | string',
3881\ 'radius_demangle(': 'resource radius_handle, string mangled | string',
3882\ 'radius_demangle_mppe_key(': 'resource radius_handle, string mangled | string',
3883\ 'radius_get_attr(': 'resource radius_handle | mixed',
3884\ 'radius_get_vendor_attr(': 'string data | array',
3885\ 'radius_put_addr(': 'resource radius_handle, int type, string addr | bool',
3886\ 'radius_put_attr(': 'resource radius_handle, int type, string value | bool',
3887\ 'radius_put_int(': 'resource radius_handle, int type, int value | bool',
3888\ 'radius_put_string(': 'resource radius_handle, int type, string value | bool',
3889\ 'radius_put_vendor_addr(': 'resource radius_handle, int vendor, int type, string addr | bool',
3890\ 'radius_put_vendor_attr(': 'resource radius_handle, int vendor, int type, string value | bool',
3891\ 'radius_put_vendor_int(': 'resource radius_handle, int vendor, int type, int value | bool',
3892\ 'radius_put_vendor_string(': 'resource radius_handle, int vendor, int type, string value | bool',
3893\ 'radius_request_authenticator(': 'resource radius_handle | string',
3894\ 'radius_send_request(': 'resource radius_handle | int',
3895\ 'radius_server_secret(': 'resource radius_handle | string',
3896\ 'radius_strerror(': 'resource radius_handle | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003897\ 'rand(': '[int min, int max] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003898\ 'range(': 'mixed low, mixed high [, number step] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003899\ 'rar_close(': 'resource rar_file | bool',
3900\ 'rar_entry_get(': 'resource rar_file, string entry_name | RarEntry',
3901\ 'rar_list(': 'resource rar_file | array',
3902\ 'rar_open(': 'string filename [, string password] | resource',
3903\ 'rawurldecode(': 'string str | string',
3904\ 'rawurlencode(': 'string str | string',
3905\ 'readdir(': 'resource dir_handle | string',
3906\ 'readfile(': 'string filename [, bool use_include_path [, resource context]] | int',
3907\ 'readgzfile(': 'string filename [, int use_include_path] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003908\ 'readline_add_history(': 'string line | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003909\ 'readline_callback_handler_install(': 'string prompt, callback callback | bool',
3910\ 'readline_callback_handler_remove(': 'void | bool',
3911\ 'readline_callback_read_char(': 'void | void',
3912\ 'readline_clear_history(': 'void | bool',
3913\ 'readline_completion_function(': 'callback function | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003914\ 'readline(': 'string prompt | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003915\ 'readline_info(': '[string varname [, string newvalue]] | mixed',
3916\ 'readline_list_history(': 'void | array',
3917\ 'readline_on_new_line(': 'void | void',
3918\ 'readline_read_history(': '[string filename] | bool',
3919\ 'readline_redisplay(': 'void | void',
3920\ 'readline_write_history(': '[string filename] | bool',
3921\ 'readlink(': 'string path | string',
3922\ 'realpath(': 'string path | string',
3923\ 'recode_file(': 'string request, resource input, resource output | bool',
3924\ 'recode_string(': 'string request, string string | string',
3925\ 'register_shutdown_function(': 'callback function [, mixed parameter [, mixed ...]] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003926\ 'register_tick_function(': 'callback function [, mixed arg [, mixed ...]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003927\ 'rename_function(': 'string original_name, string new_name | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003928\ 'rename(': 'string oldname, string newname [, resource context] | bool',
3929\ 'reset(': 'array &#38;array | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003930\ 'restore_error_handler(': 'void | bool',
3931\ 'restore_exception_handler(': 'void | bool',
3932\ 'restore_include_path(': 'void | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003933\ 'rewinddir(': 'resource dir_handle | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003934\ 'rewind(': 'resource handle | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003935\ 'rmdir(': 'string dirname [, resource context] | bool',
3936\ 'round(': 'float val [, int precision] | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003937\ 'rpm_close(': 'resource rpmr | boolean',
3938\ 'rpm_get_tag(': 'resource rpmr, int tagnum | mixed',
3939\ 'rpm_is_valid(': 'string filename | boolean',
3940\ 'rpm_open(': 'string filename | resource',
3941\ 'rpm_version(': 'void | string',
3942\ 'rsort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003943\ 'rtrim(': 'string str [, string charlist] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00003944\ 'runkit_class_adopt(': 'string classname, string parentname | bool',
3945\ 'runkit_class_emancipate(': 'string classname | bool',
3946\ 'runkit_constant_add(': 'string constname, mixed value | bool',
3947\ 'runkit_constant_redefine(': 'string constname, mixed newvalue | bool',
3948\ 'runkit_constant_remove(': 'string constname | bool',
3949\ 'runkit_function_add(': 'string funcname, string arglist, string code | bool',
3950\ 'runkit_function_copy(': 'string funcname, string targetname | bool',
3951\ 'runkit_function_redefine(': 'string funcname, string arglist, string code | bool',
3952\ 'runkit_function_remove(': 'string funcname | bool',
3953\ 'runkit_function_rename(': 'string funcname, string newname | bool',
3954\ 'runkit_import(': 'string filename [, int flags] | bool',
3955\ 'runkit_lint_file(': 'string filename | bool',
3956\ 'runkit_lint(': 'string code | bool',
3957\ 'runkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool',
3958\ 'runkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool',
3959\ 'runkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool',
3960\ 'runkit_method_remove(': 'string classname, string methodname | bool',
3961\ 'runkit_method_rename(': 'string classname, string methodname, string newname | bool',
3962\ 'runkit_return_value_used(': 'void | bool',
3963\ 'runkit_sandbox_output_handler(': 'object sandbox [, mixed callback] | mixed',
3964\ 'runkit_superglobals(': 'void | array',
3965\ 'satellite_caught_exception(': 'void | bool',
3966\ 'satellite_exception_id(': 'void | string',
3967\ 'satellite_exception_value(': 'void | OrbitStruct',
3968\ 'satellite_get_repository_id(': 'object obj | int',
3969\ 'satellite_load_idl(': 'string file | bool',
3970\ 'satellite_object_to_string(': 'object obj | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003971\ 'scandir(': 'string directory [, int sorting_order [, resource context]] | array',
3972\ 'sem_acquire(': 'resource sem_identifier | bool',
3973\ 'sem_get(': 'int key [, int max_acquire [, int perm [, int auto_release]]] | resource',
3974\ 'sem_release(': 'resource sem_identifier | bool',
3975\ 'sem_remove(': 'resource sem_identifier | bool',
3976\ 'serialize(': 'mixed value | string',
3977\ 'sesam_affected_rows(': 'string result_id | int',
3978\ 'sesam_commit(': 'void | bool',
3979\ 'sesam_connect(': 'string catalog, string schema, string user | bool',
3980\ 'sesam_diagnostic(': 'void | array',
3981\ 'sesam_disconnect(': 'void | bool',
3982\ 'sesam_errormsg(': 'void | string',
3983\ 'sesam_execimm(': 'string query | string',
3984\ 'sesam_fetch_array(': 'string result_id [, int whence [, int offset]] | array',
3985\ 'sesam_fetch_result(': 'string result_id [, int max_rows] | mixed',
3986\ 'sesam_fetch_row(': 'string result_id [, int whence [, int offset]] | array',
3987\ 'sesam_field_array(': 'string result_id | array',
3988\ 'sesam_field_name(': 'string result_id, int index | int',
3989\ 'sesam_free_result(': 'string result_id | int',
3990\ 'sesam_num_fields(': 'string result_id | int',
3991\ 'sesam_query(': 'string query [, bool scrollable] | string',
3992\ 'sesam_rollback(': 'void | bool',
3993\ 'sesam_seek_row(': 'string result_id, int whence [, int offset] | bool',
3994\ 'sesam_settransaction(': 'int isolation_level, int read_only | bool',
3995\ 'session_cache_expire(': '[int new_cache_expire] | int',
3996\ 'session_cache_limiter(': '[string cache_limiter] | string',
3997\ 'session_decode(': 'string data | bool',
3998\ 'session_destroy(': 'void | bool',
3999\ 'session_encode(': 'void | string',
4000\ 'session_get_cookie_params(': 'void | array',
4001\ 'session_id(': '[string id] | string',
4002\ 'session_is_registered(': 'string name | bool',
4003\ 'session_module_name(': '[string module] | string',
4004\ 'session_name(': '[string name] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004005\ 'session_pgsql_add_error(': 'int error_level [, string error_message] | bool',
4006\ 'session_pgsql_get_error(': '[bool with_error_message] | array',
4007\ 'session_pgsql_get_field(': 'void | string',
4008\ 'session_pgsql_reset(': 'void | bool',
4009\ 'session_pgsql_set_field(': 'string value | bool',
4010\ 'session_pgsql_status(': 'void | array',
4011\ 'session_regenerate_id(': '[bool delete_old_session] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004012\ 'session_register(': 'mixed name [, mixed ...] | bool',
4013\ 'session_save_path(': '[string path] | string',
4014\ 'session_set_cookie_params(': 'int lifetime [, string path [, string domain [, bool secure]]] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004015\ 'session_set_save_handler(': 'callback open, callback close, callback read, callback write, callback destroy, callback gc | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004016\ 'session_start(': 'void | bool',
4017\ 'session_unregister(': 'string name | bool',
4018\ 'session_unset(': 'void | void',
4019\ 'session_write_close(': 'void | void',
4020\ 'setcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool',
4021\ 'set_error_handler(': 'callback error_handler [, int error_types] | mixed',
4022\ 'set_exception_handler(': 'callback exception_handler | string',
4023\ 'set_include_path(': 'string new_include_path | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004024\ 'setlocale(': 'int category, string locale [, string ...] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004025\ 'set_magic_quotes_runtime(': 'int new_setting | bool',
4026\ 'setrawcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool',
4027\ 'set_time_limit(': 'int seconds | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004028\ 'settype(': 'mixed &#38;var, string type | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004029\ 'sha1_file(': 'string filename [, bool raw_output] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004030\ 'sha1(': 'string str [, bool raw_output] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004031\ 'shell_exec(': 'string cmd | string',
4032\ 'shm_attach(': 'int key [, int memsize [, int perm]] | int',
4033\ 'shm_detach(': 'int shm_identifier | bool',
4034\ 'shm_get_var(': 'int shm_identifier, int variable_key | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004035\ 'shmop_close(': 'int shmid | void',
4036\ 'shmop_delete(': 'int shmid | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004037\ 'shmop_open(': 'int key, string flags, int mode, int size | int',
4038\ 'shmop_read(': 'int shmid, int start, int count | string',
4039\ 'shmop_size(': 'int shmid | int',
4040\ 'shmop_write(': 'int shmid, string data, int offset | int',
4041\ 'shm_put_var(': 'int shm_identifier, int variable_key, mixed variable | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004042\ 'shm_remove(': 'int shm_identifier | bool',
4043\ 'shm_remove_var(': 'int shm_identifier, int variable_key | bool',
4044\ 'shuffle(': 'array &#38;array | bool',
4045\ 'similar_text(': 'string first, string second [, float &#38;percent] | int',
4046\ 'SimpleXMLElement-&#62;asXML(': '[string filename] | mixed',
4047\ 'simplexml_element-&#62;attributes(': '[string data] | SimpleXMLElement',
4048\ 'simplexml_element-&#62;children(': '[string nsprefix] | SimpleXMLElement',
4049\ 'SimpleXMLElement-&#62;xpath(': 'string path | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004050\ 'simplexml_import_dom(': 'DOMNode node [, string class_name] | SimpleXMLElement',
4051\ 'simplexml_load_file(': 'string filename [, string class_name [, int options]] | object',
4052\ 'simplexml_load_string(': 'string data [, string class_name [, int options]] | object',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004053\ 'sinh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004054\ 'sin(': 'float arg | float',
4055\ 'sleep(': 'int seconds | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004056\ 'snmpget(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | string',
4057\ 'snmpgetnext(': 'string host, string community, string object_id [, int timeout [, int retries]] | string',
4058\ 'snmp_get_quick_print(': 'void | bool',
4059\ 'snmp_get_valueretrieval(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004060\ 'snmp_read_mib(': 'string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004061\ 'snmprealwalk(': 'string host, string community, string object_id [, int timeout [, int retries]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004062\ 'snmp_set_enum_print(': 'int enum_print | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004063\ 'snmpset(': 'string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004064\ 'snmp_set_oid_numeric_print(': 'int oid_numeric_print | void',
4065\ 'snmp_set_quick_print(': 'bool quick_print | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004066\ 'snmp_set_valueretrieval(': 'int method | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004067\ 'snmpwalk(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array',
4068\ 'snmpwalkoid(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array',
4069\ 'socket_accept(': 'resource socket | resource',
4070\ 'socket_bind(': 'resource socket, string address [, int port] | bool',
4071\ 'socket_clear_error(': '[resource socket] | void',
4072\ 'socket_close(': 'resource socket | void',
4073\ 'socket_connect(': 'resource socket, string address [, int port] | bool',
4074\ 'socket_create(': 'int domain, int type, int protocol | resource',
4075\ 'socket_create_listen(': 'int port [, int backlog] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004076\ 'socket_create_pair(': 'int domain, int type, int protocol, array &#38;fd | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004077\ 'socket_get_option(': 'resource socket, int level, int optname | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004078\ 'socket_getpeername(': 'resource socket, string &#38;addr [, int &#38;port] | bool',
4079\ 'socket_getsockname(': 'resource socket, string &#38;addr [, int &#38;port] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004080\ 'socket_last_error(': '[resource socket] | int',
4081\ 'socket_listen(': 'resource socket [, int backlog] | bool',
4082\ 'socket_read(': 'resource socket, int length [, int type] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004083\ 'socket_recvfrom(': 'resource socket, string &#38;buf, int len, int flags, string &#38;name [, int &#38;port] | int',
4084\ 'socket_recv(': 'resource socket, string &#38;buf, int len, int flags | int',
4085\ '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 +00004086\ 'socket_send(': 'resource socket, string buf, int len, int flags | int',
4087\ 'socket_sendto(': 'resource socket, string buf, int len, int flags, string addr [, int port] | int',
4088\ 'socket_set_block(': 'resource socket | bool',
4089\ 'socket_set_nonblock(': 'resource socket | bool',
4090\ 'socket_set_option(': 'resource socket, int level, int optname, mixed optval | bool',
4091\ 'socket_shutdown(': 'resource socket [, int how] | bool',
4092\ 'socket_strerror(': 'int errno | string',
4093\ 'socket_write(': 'resource socket, string buffer [, int length] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004094\ 'sort(': 'array &#38;array [, int sort_flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004095\ 'soundex(': 'string str | string',
4096\ 'spl_classes(': 'void | array',
4097\ 'split(': 'string pattern, string string [, int limit] | array',
4098\ 'spliti(': 'string pattern, string string [, int limit] | array',
4099\ 'sprintf(': 'string format [, mixed args [, mixed ...]] | string',
4100\ 'sqlite_array_query(': 'resource dbhandle, string query [, int result_type [, bool decode_binary]] | array',
4101\ 'sqlite_busy_timeout(': 'resource dbhandle, int milliseconds | void',
4102\ 'sqlite_changes(': 'resource dbhandle | int',
4103\ 'sqlite_close(': 'resource dbhandle | void',
4104\ 'sqlite_column(': 'resource result, mixed index_or_name [, bool decode_binary] | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004105\ 'sqlite_create_aggregate(': 'resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args] | void',
4106\ 'sqlite_create_function(': 'resource dbhandle, string function_name, callback callback [, int num_args] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004107\ 'sqlite_current(': 'resource result [, int result_type [, bool decode_binary]] | array',
4108\ 'sqlite_error_string(': 'int error_code | string',
4109\ 'sqlite_escape_string(': 'string item | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004110\ 'sqlite_exec(': 'resource dbhandle, string query [, string &#38;error_msg] | bool',
4111\ 'sqlite_factory(': 'string filename [, int mode [, string &#38;error_message]] | SQLiteDatabase',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004112\ 'sqlite_fetch_all(': 'resource result [, int result_type [, bool decode_binary]] | array',
4113\ 'sqlite_fetch_array(': 'resource result [, int result_type [, bool decode_binary]] | array',
4114\ 'sqlite_fetch_column_types(': 'string table_name, resource dbhandle [, int result_type] | array',
4115\ 'sqlite_fetch_object(': 'resource result [, string class_name [, array ctor_params [, bool decode_binary]]] | object',
4116\ 'sqlite_fetch_single(': 'resource result [, bool decode_binary] | string',
4117\ 'sqlite_field_name(': 'resource result, int field_index | string',
4118\ 'sqlite_has_more(': 'resource result | bool',
4119\ 'sqlite_has_prev(': 'resource result | bool',
4120\ 'sqlite_key(': 'resource result | int',
4121\ 'sqlite_last_error(': 'resource dbhandle | int',
4122\ 'sqlite_last_insert_rowid(': 'resource dbhandle | int',
4123\ 'sqlite_libencoding(': 'void | string',
4124\ 'sqlite_libversion(': 'void | string',
4125\ 'sqlite_next(': 'resource result | bool',
4126\ 'sqlite_num_fields(': 'resource result | int',
4127\ 'sqlite_num_rows(': 'resource result | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004128\ 'sqlite_open(': 'string filename [, int mode [, string &#38;error_message]] | resource',
4129\ 'sqlite_popen(': 'string filename [, int mode [, string &#38;error_message]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004130\ 'sqlite_prev(': 'resource result | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004131\ 'sqlite_query(': 'resource dbhandle, string query [, int result_type [, string &#38;error_msg]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004132\ 'sqlite_rewind(': 'resource result | bool',
4133\ 'sqlite_seek(': 'resource result, int rownum | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004134\ 'sqlite_single_query(': 'resource db, string query [, bool first_row_only [, bool decode_binary]] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004135\ 'sqlite_udf_decode_binary(': 'string data | string',
4136\ 'sqlite_udf_encode_binary(': 'string data | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004137\ 'sqlite_unbuffered_query(': 'resource dbhandle, string query [, int result_type [, string &#38;error_msg]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004138\ 'sqlite_valid(': 'resource result | bool',
4139\ 'sql_regcase(': 'string string | string',
4140\ 'sqrt(': 'float arg | float',
4141\ 'srand(': '[int seed] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004142\ 'sscanf(': 'string str, string format [, mixed &#38;...] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004143\ '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 +00004144\ 'ssh2_auth_none(': 'resource session, string username | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004145\ 'ssh2_auth_password(': 'resource session, string username, string password | bool',
4146\ 'ssh2_auth_pubkey_file(': 'resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase] | bool',
4147\ 'ssh2_connect(': 'string host [, int port [, array methods [, array callbacks]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004148\ 'ssh2_exec(': 'resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]] | resource',
4149\ 'ssh2_fetch_stream(': 'resource channel, int streamid | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004150\ 'ssh2_fingerprint(': 'resource session [, int flags] | string',
4151\ 'ssh2_methods_negotiated(': 'resource session | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004152\ 'ssh2_publickey_add(': 'resource pkey, string algoname, string blob [, bool overwrite [, array attributes]] | bool',
4153\ 'ssh2_publickey_init(': 'resource session | resource',
4154\ 'ssh2_publickey_list(': 'resource pkey | array',
4155\ 'ssh2_publickey_remove(': 'resource pkey, string algoname, string blob | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004156\ 'ssh2_scp_recv(': 'resource session, string remote_file, string local_file | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004157\ 'ssh2_scp_send(': 'resource session, string local_file, string remote_file [, int create_mode] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004158\ 'ssh2_sftp(': 'resource session | resource',
4159\ 'ssh2_sftp_lstat(': 'resource sftp, string path | array',
4160\ 'ssh2_sftp_mkdir(': 'resource sftp, string dirname [, int mode [, bool recursive]] | bool',
4161\ 'ssh2_sftp_readlink(': 'resource sftp, string link | string',
4162\ 'ssh2_sftp_realpath(': 'resource sftp, string filename | string',
4163\ 'ssh2_sftp_rename(': 'resource sftp, string from, string to | bool',
4164\ 'ssh2_sftp_rmdir(': 'resource sftp, string dirname | bool',
4165\ 'ssh2_sftp_stat(': 'resource sftp, string path | array',
4166\ 'ssh2_sftp_symlink(': 'resource sftp, string target, string link | bool',
4167\ 'ssh2_sftp_unlink(': 'resource sftp, string filename | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004168\ 'ssh2_shell(': 'resource session [, string term_type [, array env [, int width [, int height [, int width_height_type]]]]] | resource',
4169\ 'ssh2_tunnel(': 'resource session, string host, int port | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004170\ 'stat(': 'string filename | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004171\ 'stats_absolute_deviation(': 'array a | float',
4172\ 'stats_cdf_beta(': 'float par1, float par2, float par3, int which | float',
4173\ 'stats_cdf_binomial(': 'float par1, float par2, float par3, int which | float',
4174\ 'stats_cdf_cauchy(': 'float par1, float par2, float par3, int which | float',
4175\ 'stats_cdf_chisquare(': 'float par1, float par2, int which | float',
4176\ 'stats_cdf_exponential(': 'float par1, float par2, int which | float',
4177\ 'stats_cdf_f(': 'float par1, float par2, float par3, int which | float',
4178\ 'stats_cdf_gamma(': 'float par1, float par2, float par3, int which | float',
4179\ 'stats_cdf_laplace(': 'float par1, float par2, float par3, int which | float',
4180\ 'stats_cdf_logistic(': 'float par1, float par2, float par3, int which | float',
4181\ 'stats_cdf_negative_binomial(': 'float par1, float par2, float par3, int which | float',
4182\ 'stats_cdf_noncentral_chisquare(': 'float par1, float par2, float par3, int which | float',
4183\ 'stats_cdf_noncentral_f(': 'float par1, float par2, float par3, float par4, int which | float',
4184\ 'stats_cdf_poisson(': 'float par1, float par2, int which | float',
4185\ 'stats_cdf_t(': 'float par1, float par2, int which | float',
4186\ 'stats_cdf_uniform(': 'float par1, float par2, float par3, int which | float',
4187\ 'stats_cdf_weibull(': 'float par1, float par2, float par3, int which | float',
4188\ 'stats_covariance(': 'array a, array b | float',
4189\ 'stats_dens_beta(': 'float x, float a, float b | float',
4190\ 'stats_dens_cauchy(': 'float x, float ave, float stdev | float',
4191\ 'stats_dens_chisquare(': 'float x, float dfr | float',
4192\ 'stats_dens_exponential(': 'float x, float scale | float',
4193\ 'stats_dens_f(': 'float x, float dfr1, float dfr2 | float',
4194\ 'stats_dens_gamma(': 'float x, float shape, float scale | float',
4195\ 'stats_dens_laplace(': 'float x, float ave, float stdev | float',
4196\ 'stats_dens_logistic(': 'float x, float ave, float stdev | float',
4197\ 'stats_dens_negative_binomial(': 'float x, float n, float pi | float',
4198\ 'stats_dens_normal(': 'float x, float ave, float stdev | float',
4199\ 'stats_dens_pmf_binomial(': 'float x, float n, float pi | float',
4200\ 'stats_dens_pmf_hypergeometric(': 'float n1, float n2, float N1, float N2 | float',
4201\ 'stats_dens_pmf_poisson(': 'float x, float lb | float',
4202\ 'stats_dens_t(': 'float x, float dfr | float',
4203\ 'stats_dens_weibull(': 'float x, float a, float b | float',
4204\ 'stats_den_uniform(': 'float x, float a, float b | float',
4205\ 'stats_harmonic_mean(': 'array a | number',
4206\ 'stats_kurtosis(': 'array a | float',
4207\ 'stats_rand_gen_beta(': 'float a, float b | float',
4208\ 'stats_rand_gen_chisquare(': 'float df | float',
4209\ 'stats_rand_gen_exponential(': 'float av | float',
4210\ 'stats_rand_gen_f(': 'float dfn, float dfd | float',
4211\ 'stats_rand_gen_funiform(': 'float low, float high | float',
4212\ 'stats_rand_gen_gamma(': 'float a, float r | float',
4213\ 'stats_rand_gen_ibinomial(': 'int n, float pp | int',
4214\ 'stats_rand_gen_ibinomial_negative(': 'int n, float p | int',
4215\ 'stats_rand_gen_int(': 'void | int',
4216\ 'stats_rand_gen_ipoisson(': 'float mu | int',
4217\ 'stats_rand_gen_iuniform(': 'int low, int high | int',
4218\ 'stats_rand_gen_noncenral_chisquare(': 'float df, float xnonc | float',
4219\ 'stats_rand_gen_noncentral_f(': 'float dfn, float dfd, float xnonc | float',
4220\ 'stats_rand_gen_noncentral_t(': 'float df, float xnonc | float',
4221\ 'stats_rand_gen_normal(': 'float av, float sd | float',
4222\ 'stats_rand_gen_t(': 'float df | float',
4223\ 'stats_rand_get_seeds(': 'void | array',
4224\ 'stats_rand_phrase_to_seeds(': 'string phrase | array',
4225\ 'stats_rand_ranf(': 'void | float',
4226\ 'stats_rand_setall(': 'int iseed1, int iseed2 | void',
4227\ 'stats_skew(': 'array a | float',
4228\ 'stats_standard_deviation(': 'array a [, bool sample] | float',
4229\ 'stats_stat_binomial_coef(': 'int x, int n | float',
4230\ 'stats_stat_correlation(': 'array arr1, array arr2 | float',
4231\ 'stats_stat_gennch(': 'int n | float',
4232\ 'stats_stat_independent_t(': 'array arr1, array arr2 | float',
4233\ 'stats_stat_innerproduct(': 'array arr1, array arr2 | float',
4234\ 'stats_stat_noncentral_t(': 'float par1, float par2, float par3, int which | float',
4235\ 'stats_stat_paired_t(': 'array arr1, array arr2 | float',
4236\ 'stats_stat_percentile(': 'float df, float xnonc | float',
4237\ 'stats_stat_powersum(': 'array arr, float power | float',
4238\ 'stats_variance(': 'array a [, bool sample] | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004239\ 'strcasecmp(': 'string str1, string str2 | int',
4240\ 'strcmp(': 'string str1, string str2 | int',
4241\ 'strcoll(': 'string str1, string str2 | int',
4242\ 'strcspn(': 'string str1, string str2 [, int start [, int length]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004243\ 'stream_bucket_append(': 'resource brigade, resource bucket | void',
4244\ 'stream_bucket_make_writeable(': 'resource brigade | object',
4245\ 'stream_bucket_new(': 'resource stream, string buffer | object',
4246\ 'stream_bucket_prepend(': 'resource brigade, resource bucket | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004247\ 'stream_context_create(': '[array options] | resource',
4248\ 'stream_context_get_default(': '[array options] | resource',
4249\ 'stream_context_get_options(': 'resource stream_or_context | array',
4250\ 'stream_context_set_option(': 'resource stream_or_context, string wrapper, string option, mixed value | bool',
4251\ 'stream_context_set_params(': 'resource stream_or_context, array params | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004252\ 'stream_copy_to_stream(': 'resource source, resource dest [, int maxlength [, int offset]] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004253\ 'stream_filter_append(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource',
4254\ 'stream_filter_prepend(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource',
4255\ 'stream_filter_register(': 'string filtername, string classname | bool',
4256\ 'stream_filter_remove(': 'resource stream_filter | bool',
4257\ 'stream_get_contents(': 'resource handle [, int maxlength [, int offset]] | string',
4258\ 'stream_get_filters(': 'void | array',
4259\ 'stream_get_line(': 'resource handle, int length [, string ending] | string',
4260\ 'stream_get_meta_data(': 'resource stream | array',
4261\ 'stream_get_transports(': 'void | array',
4262\ 'stream_get_wrappers(': 'void | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004263\ '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 +00004264\ 'stream_set_blocking(': 'resource stream, int mode | bool',
4265\ 'stream_set_timeout(': 'resource stream, int seconds [, int microseconds] | bool',
4266\ 'stream_set_write_buffer(': 'resource stream, int buffer | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004267\ 'stream_socket_accept(': 'resource server_socket [, float timeout [, string &#38;peername]] | resource',
4268\ '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 +00004269\ 'stream_socket_enable_crypto(': 'resource stream, bool enable [, int crypto_type [, resource session_stream]] | mixed',
4270\ 'stream_socket_get_name(': 'resource handle, bool want_peer | string',
4271\ 'stream_socket_pair(': 'int domain, int type, int protocol | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004272\ 'stream_socket_recvfrom(': 'resource socket, int length [, int flags [, string &#38;address]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004273\ 'stream_socket_sendto(': 'resource socket, string data [, int flags [, string address]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004274\ 'stream_socket_server(': 'string local_socket [, int &#38;errno [, string &#38;errstr [, int flags [, resource context]]]] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004275\ 'stream_wrapper_register(': 'string protocol, string classname | bool',
4276\ 'stream_wrapper_restore(': 'string protocol | bool',
4277\ 'stream_wrapper_unregister(': 'string protocol | bool',
4278\ 'strftime(': 'string format [, int timestamp] | string',
4279\ 'stripcslashes(': 'string str | string',
4280\ 'stripos(': 'string haystack, string needle [, int offset] | int',
4281\ 'stripslashes(': 'string str | string',
4282\ 'strip_tags(': 'string str [, string allowable_tags] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004283\ 'str_ireplace(': 'mixed search, mixed replace, mixed subject [, int &#38;count] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004284\ 'stristr(': 'string haystack, string needle | string',
4285\ 'strlen(': 'string string | int',
4286\ 'strnatcasecmp(': 'string str1, string str2 | int',
4287\ 'strnatcmp(': 'string str1, string str2 | int',
4288\ 'strncasecmp(': 'string str1, string str2, int len | int',
4289\ 'strncmp(': 'string str1, string str2, int len | int',
4290\ 'str_pad(': 'string input, int pad_length [, string pad_string [, int pad_type]] | string',
4291\ 'strpbrk(': 'string haystack, string char_list | string',
4292\ 'strpos(': 'string haystack, mixed needle [, int offset] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004293\ 'strptime(': 'string date, string format | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004294\ 'strrchr(': 'string haystack, string needle | string',
4295\ 'str_repeat(': 'string input, int multiplier | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004296\ 'str_replace(': 'mixed search, mixed replace, mixed subject [, int &#38;count] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004297\ 'strrev(': 'string string | string',
4298\ 'strripos(': 'string haystack, string needle [, int offset] | int',
4299\ 'str_rot13(': 'string str | string',
4300\ 'strrpos(': 'string haystack, string needle [, int offset] | int',
4301\ 'str_shuffle(': 'string str | string',
4302\ 'str_split(': 'string string [, int split_length] | array',
4303\ 'strspn(': 'string str1, string str2 [, int start [, int length]] | int',
4304\ 'strstr(': 'string haystack, string needle | string',
4305\ 'strtok(': 'string str, string token | string',
4306\ 'strtolower(': 'string str | string',
4307\ 'strtotime(': 'string time [, int now] | int',
4308\ 'strtoupper(': 'string string | string',
4309\ 'strtr(': 'string str, string from, string to | string',
4310\ 'strval(': 'mixed var | string',
4311\ 'str_word_count(': 'string string [, int format [, string charlist]] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004312\ 'substr_compare(': 'string main_str, string str, int offset [, int length [, bool case_insensitivity]] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004313\ 'substr_count(': 'string haystack, string needle [, int offset [, int length]] | int',
4314\ 'substr(': 'string string, int start [, int length] | string',
4315\ 'substr_replace(': 'mixed string, string replacement, int start [, int length] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004316\ 'swf_actiongeturl(': 'string url, string target | void',
4317\ 'swf_actiongotoframe(': 'int framenumber | void',
4318\ 'swf_actiongotolabel(': 'string label | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004319\ 'swfaction(': 'string script | SWFAction',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004320\ 'swf_actionnextframe(': 'void | void',
4321\ 'swf_actionplay(': 'void | void',
4322\ 'swf_actionprevframe(': 'void | void',
4323\ 'swf_actionsettarget(': 'string target | void',
4324\ 'swf_actionstop(': 'void | void',
4325\ 'swf_actiontogglequality(': 'void | void',
4326\ 'swf_actionwaitforframe(': 'int framenumber, int skipcount | void',
4327\ 'swf_addbuttonrecord(': 'int states, int shapeid, int depth | void',
4328\ 'swf_addcolor(': 'float r, float g, float b, float a | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004329\ 'swfbitmap-&#62;getheight(': 'void | float',
4330\ 'swfbitmap-&#62;getwidth(': 'void | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004331\ 'swfbitmap(': 'mixed file [, mixed alphafile] | SWFBitmap',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004332\ 'swfbutton-&#62;addaction(': 'resource action, int flags | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004333\ 'swfbutton-&#62;addshape(': 'resource shape, int flags | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004334\ 'swfbutton(': 'void | SWFButton',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004335\ 'swfbutton-&#62;setaction(': 'resource action | void',
4336\ 'swfbutton-&#62;setdown(': 'resource shape | void',
4337\ 'swfbutton-&#62;sethit(': 'resource shape | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004338\ 'swfbutton-&#62;setover(': 'resource shape | void',
4339\ 'swfbutton-&#62;setup(': 'resource shape | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004340\ 'swf_closefile(': '[int return_file] | void',
4341\ 'swf_definebitmap(': 'int objid, string image_name | void',
4342\ 'swf_definefont(': 'int fontid, string fontname | void',
4343\ 'swf_defineline(': 'int objid, float x1, float y1, float x2, float y2, float width | void',
4344\ 'swf_definepoly(': 'int objid, array coords, int npoints, float width | void',
4345\ 'swf_definerect(': 'int objid, float x1, float y1, float x2, float y2, float width | void',
4346\ 'swf_definetext(': 'int objid, string str, int docenter | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004347\ 'swfdisplayitem-&#62;addcolor(': 'int red, int green, int blue [, int a] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004348\ 'swfdisplayitem-&#62;move(': 'int dx, int dy | void',
4349\ 'swfdisplayitem-&#62;moveto(': 'int x, int y | void',
4350\ 'swfdisplayitem-&#62;multcolor(': 'int red, int green, int blue [, int a] | void',
4351\ 'swfdisplayitem-&#62;remove(': 'void | void',
4352\ 'swfdisplayitem-&#62;rotate(': 'float ddegrees | void',
4353\ 'swfdisplayitem-&#62;rotateto(': 'float degrees | void',
4354\ 'swfdisplayitem-&#62;scale(': 'int dx, int dy | void',
4355\ 'swfdisplayitem-&#62;scaleto(': 'int x [, int y] | void',
4356\ 'swfdisplayitem-&#62;setdepth(': 'float depth | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004357\ 'swfdisplayitem-&#62;setname(': 'string name | void',
4358\ 'swfdisplayitem-&#62;setratio(': 'float ratio | void',
4359\ 'swfdisplayitem-&#62;skewx(': 'float ddegrees | void',
4360\ 'swfdisplayitem-&#62;skewxto(': 'float degrees | void',
4361\ 'swfdisplayitem-&#62;skewy(': 'float ddegrees | void',
4362\ 'swfdisplayitem-&#62;skewyto(': 'float degrees | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004363\ 'swf_endbutton(': 'void | void',
4364\ 'swf_enddoaction(': 'void | void',
4365\ 'swf_endshape(': 'void | void',
4366\ 'swf_endsymbol(': 'void | void',
4367\ 'swffill(': 'void | SWFFill',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004368\ 'swffill-&#62;moveto(': 'int x, int y | void',
4369\ 'swffill-&#62;rotateto(': 'float degrees | void',
4370\ 'swffill-&#62;scaleto(': 'int x [, int y] | void',
4371\ 'swffill-&#62;skewxto(': 'float x | void',
4372\ 'swffill-&#62;skewyto(': 'float y | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004373\ 'swffont-&#62;getwidth(': 'string string | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004374\ 'swffont(': 'string filename | SWFFont',
4375\ 'swf_fontsize(': 'float size | void',
4376\ 'swf_fontslant(': 'float slant | void',
4377\ 'swf_fonttracking(': 'float tracking | void',
4378\ 'swf_getbitmapinfo(': 'int bitmapid | array',
4379\ 'swf_getfontinfo(': 'void | array',
4380\ 'swf_getframe(': 'void | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004381\ 'swfgradient-&#62;addentry(': 'float ratio, int red, int green, int blue [, int a] | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004382\ 'swfgradient(': 'void | SWFGradient',
4383\ 'swf_labelframe(': 'string name | void',
4384\ 'swf_lookat(': 'float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist | void',
4385\ 'swf_modifyobject(': 'int depth, int how | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004386\ 'swfmorph-&#62;getshape1(': 'void | mixed',
4387\ 'swfmorph-&#62;getshape2(': 'void | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004388\ 'swfmorph(': 'void | SWFMorph',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004389\ 'swfmovie-&#62;add(': 'resource instance | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004390\ 'swfmovie(': 'void | SWFMovie',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004391\ 'swfmovie-&#62;nextframe(': 'void | void',
4392\ 'swfmovie-&#62;output(': '[int compression] | int',
4393\ 'swfmovie-&#62;remove(': 'resource instance | void',
4394\ 'swfmovie-&#62;save(': 'string filename [, int compression] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004395\ 'swfmovie-&#62;setbackground(': 'int red, int green, int blue | void',
4396\ 'swfmovie-&#62;setdimension(': 'int width, int height | void',
4397\ 'swfmovie-&#62;setframes(': 'string numberofframes | void',
4398\ 'swfmovie-&#62;setrate(': 'int rate | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004399\ 'swfmovie-&#62;streammp3(': 'mixed mp3File | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004400\ 'swf_mulcolor(': 'float r, float g, float b, float a | void',
4401\ 'swf_nextid(': 'void | int',
4402\ 'swf_oncondition(': 'int transition | void',
4403\ 'swf_openfile(': 'string filename, float width, float height, float framerate, float r, float g, float b | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004404\ 'swf_ortho2(': 'float xmin, float xmax, float ymin, float ymax | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004405\ 'swf_ortho(': 'float xmin, float xmax, float ymin, float ymax, float zmin, float zmax | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004406\ 'swf_perspective(': 'float fovy, float aspect, float near, float far | void',
4407\ 'swf_placeobject(': 'int objid, int depth | void',
4408\ 'swf_polarview(': 'float dist, float azimuth, float incidence, float twist | void',
4409\ 'swf_popmatrix(': 'void | void',
4410\ 'swf_posround(': 'int round | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004411\ 'SWFPrebuiltClip(': '[string file] | SWFPrebuiltClip',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004412\ 'swf_pushmatrix(': 'void | void',
4413\ 'swf_removeobject(': 'int depth | void',
4414\ 'swf_rotate(': 'float angle, string axis | void',
4415\ 'swf_scale(': 'float x, float y, float z | void',
4416\ 'swf_setfont(': 'int fontid | void',
4417\ 'swf_setframe(': 'int framenumber | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004418\ 'SWFShape-&#62;addFill(': 'int red, int green, int blue [, int a] | SWFFill',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004419\ 'swf_shapearc(': 'float x, float y, float r, float ang1, float ang2 | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004420\ 'swf_shapecurveto3(': 'float x1, float y1, float x2, float y2, float x3, float y3 | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004421\ 'swf_shapecurveto(': 'float x1, float y1, float x2, float y2 | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004422\ 'swfshape-&#62;drawcurve(': 'int controldx, int controldy, int anchordx, int anchordy [, int targetdx, int targetdy] | int',
4423\ 'swfshape-&#62;drawcurveto(': 'int controlx, int controly, int anchorx, int anchory [, int targetx, int targety] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004424\ 'swfshape-&#62;drawline(': 'int dx, int dy | void',
4425\ 'swfshape-&#62;drawlineto(': 'int x, int y | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004426\ 'swf_shapefillbitmapclip(': 'int bitmapid | void',
4427\ 'swf_shapefillbitmaptile(': 'int bitmapid | void',
4428\ 'swf_shapefilloff(': 'void | void',
4429\ 'swf_shapefillsolid(': 'float r, float g, float b, float a | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004430\ 'swfshape(': 'void | SWFShape',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004431\ 'swf_shapelinesolid(': 'float r, float g, float b, float a, float width | void',
4432\ 'swf_shapelineto(': 'float x, float y | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004433\ 'swfshape-&#62;movepen(': 'int dx, int dy | void',
4434\ 'swfshape-&#62;movepento(': 'int x, int y | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004435\ 'swf_shapemoveto(': 'float x, float y | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004436\ 'swfshape-&#62;setleftfill(': 'swfgradient fill | void',
4437\ 'swfshape-&#62;setline(': 'swfshape shape | void',
4438\ 'swfshape-&#62;setrightfill(': 'swfgradient fill | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004439\ 'swf_showframe(': 'void | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004440\ 'SWFSound(': 'string filename, int flags | SWFSound',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004441\ 'swfsprite-&#62;add(': 'resource object | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004442\ 'swfsprite(': 'void | SWFSprite',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004443\ 'swfsprite-&#62;nextframe(': 'void | void',
4444\ 'swfsprite-&#62;remove(': 'resource object | void',
4445\ 'swfsprite-&#62;setframes(': 'int numberofframes | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004446\ 'swf_startbutton(': 'int objid, int type | void',
4447\ 'swf_startdoaction(': 'void | void',
4448\ 'swf_startshape(': 'int objid | void',
4449\ 'swf_startsymbol(': 'int objid | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004450\ 'swftext-&#62;addstring(': 'string string | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004451\ 'swftextfield-&#62;addstring(': 'string string | void',
4452\ 'swftextfield-&#62;align(': 'int alignement | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004453\ 'swftextfield(': '[int flags] | SWFTextField',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004454\ 'swftextfield-&#62;setbounds(': 'int width, int height | void',
4455\ 'swftextfield-&#62;setcolor(': 'int red, int green, int blue [, int a] | void',
4456\ 'swftextfield-&#62;setfont(': 'string font | void',
4457\ 'swftextfield-&#62;setheight(': 'int height | void',
4458\ 'swftextfield-&#62;setindentation(': 'int width | void',
4459\ 'swftextfield-&#62;setleftmargin(': 'int width | void',
4460\ 'swftextfield-&#62;setlinespacing(': 'int height | void',
4461\ 'swftextfield-&#62;setmargins(': 'int left, int right | void',
4462\ 'swftextfield-&#62;setname(': 'string name | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004463\ 'swftextfield-&#62;setrightmargin(': 'int width | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004464\ 'swftext-&#62;getwidth(': 'string string | float',
4465\ 'swftext(': 'void | SWFText',
4466\ 'swftext-&#62;moveto(': 'int x, int y | void',
4467\ 'swftext-&#62;setcolor(': 'int red, int green, int blue [, int a] | void',
4468\ 'swftext-&#62;setfont(': 'string font | void',
4469\ 'swftext-&#62;setheight(': 'int height | void',
4470\ 'swftext-&#62;setspacing(': 'float spacing | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004471\ 'swf_textwidth(': 'string str | float',
4472\ 'swf_translate(': 'float x, float y, float z | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004473\ 'SWFVideoStream(': '[string file] | SWFVideoStream',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004474\ 'swf_viewport(': 'float xmin, float xmax, float ymin, float ymax | void',
4475\ 'sybase_affected_rows(': '[resource link_identifier] | int',
4476\ 'sybase_close(': '[resource link_identifier] | bool',
4477\ 'sybase_connect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource',
4478\ 'sybase_data_seek(': 'resource result_identifier, int row_number | bool',
4479\ 'sybase_deadlock_retry_count(': 'int retry_count | void',
4480\ 'sybase_fetch_array(': 'resource result | array',
4481\ 'sybase_fetch_assoc(': 'resource result | array',
4482\ 'sybase_fetch_field(': 'resource result [, int field_offset] | object',
4483\ 'sybase_fetch_object(': 'resource result [, mixed object] | object',
4484\ 'sybase_fetch_row(': 'resource result | array',
4485\ 'sybase_field_seek(': 'resource result, int field_offset | bool',
4486\ 'sybase_free_result(': 'resource result | bool',
4487\ 'sybase_get_last_message(': 'void | string',
4488\ 'sybase_min_client_severity(': 'int severity | void',
4489\ 'sybase_min_error_severity(': 'int severity | void',
4490\ 'sybase_min_message_severity(': 'int severity | void',
4491\ 'sybase_min_server_severity(': 'int severity | void',
4492\ 'sybase_num_fields(': 'resource result | int',
4493\ 'sybase_num_rows(': 'resource result | int',
4494\ 'sybase_pconnect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004495\ 'sybase_query(': 'string query [, resource link_identifier] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004496\ 'sybase_result(': 'resource result, int row, mixed field | string',
4497\ 'sybase_select_db(': 'string database_name [, resource link_identifier] | bool',
4498\ 'sybase_set_message_handler(': 'callback handler [, resource connection] | bool',
4499\ 'sybase_unbuffered_query(': 'string query, resource link_identifier [, bool store_result] | resource',
4500\ 'symlink(': 'string target, string link | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004501\ 'sys_getloadavg(': 'void | array',
4502\ 'syslog(': 'int priority, string message | bool',
4503\ 'system(': 'string command [, int &#38;return_var] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004504\ 'tanh(': 'float arg | float',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004505\ 'tan(': 'float arg | float',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004506\ 'tcpwrap_check(': 'string daemon, string address [, string user [, bool nodns]] | bool',
4507\ 'tempnam(': 'string dir, string prefix | string',
4508\ 'textdomain(': 'string text_domain | string',
4509\ 'tidy_access_count(': 'tidy object | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004510\ 'tidy_config_count(': 'tidy object | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004511\ 'tidy_error_count(': 'tidy object | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004512\ 'tidy_get_output(': 'tidy object | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004513\ 'tidy_load_config(': 'string filename, string encoding | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004514\ 'tidy_node-&#62;get_attr(': 'int attrib_id | tidy_attr',
4515\ 'tidy_node-&#62;get_nodes(': 'int node_id | array',
4516\ 'tidyNode-&#62;hasChildren(': 'void | bool',
4517\ 'tidyNode-&#62;hasSiblings(': 'void | bool',
4518\ 'tidyNode-&#62;isAsp(': 'void | bool',
4519\ 'tidyNode-&#62;isComment(': 'void | bool',
4520\ 'tidyNode-&#62;isHtml(': 'void | bool',
4521\ 'tidyNode-&#62;isJste(': 'void | bool',
4522\ 'tidyNode-&#62;isPhp(': 'void | bool',
4523\ 'tidyNode-&#62;isText(': 'void | bool',
4524\ 'tidy_node-&#62;next(': 'void | tidy_node',
4525\ 'tidy_node-&#62;prev(': 'void | tidy_node',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004526\ 'tidy_repair_file(': 'string filename [, mixed config [, string encoding [, bool use_include_path]]] | string',
4527\ 'tidy_repair_string(': 'string data [, mixed config [, string encoding]] | string',
4528\ 'tidy_reset_config(': 'void | bool',
4529\ 'tidy_save_config(': 'string filename | bool',
4530\ 'tidy_set_encoding(': 'string encoding | bool',
4531\ 'tidy_setopt(': 'string option, mixed value | bool',
4532\ 'tidy_warning_count(': 'tidy object | int',
4533\ 'time(': 'void | int',
4534\ 'time_nanosleep(': 'int seconds, int nanoseconds | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004535\ 'time_sleep_until(': 'float timestamp | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004536\ 'tmpfile(': 'void | resource',
4537\ 'token_get_all(': 'string source | array',
4538\ 'token_name(': 'int token | string',
4539\ 'touch(': 'string filename [, int time [, int atime]] | bool',
4540\ 'trigger_error(': 'string error_msg [, int error_type] | bool',
4541\ 'trim(': 'string str [, string charlist] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004542\ 'uasort(': 'array &#38;array, callback cmp_function | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004543\ 'ucfirst(': 'string str | string',
4544\ 'ucwords(': 'string str | string',
4545\ 'udm_add_search_limit(': 'resource agent, int var, string val | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004546\ 'udm_alloc_agent_array(': 'array databases | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004547\ 'udm_alloc_agent(': 'string dbaddr [, string dbmode] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004548\ 'udm_api_version(': 'void | int',
4549\ 'udm_cat_list(': 'resource agent, string category | array',
4550\ 'udm_cat_path(': 'resource agent, string category | array',
4551\ 'udm_check_charset(': 'resource agent, string charset | bool',
4552\ 'udm_check_stored(': 'resource agent, int link, string doc_id | int',
4553\ 'udm_clear_search_limits(': 'resource agent | bool',
4554\ 'udm_close_stored(': 'resource agent, int link | int',
4555\ 'udm_crc32(': 'resource agent, string str | int',
4556\ 'udm_errno(': 'resource agent | int',
4557\ 'udm_error(': 'resource agent | string',
4558\ 'udm_find(': 'resource agent, string query | resource',
4559\ 'udm_free_agent(': 'resource agent | int',
4560\ 'udm_free_ispell_data(': 'int agent | bool',
4561\ 'udm_free_res(': 'resource res | bool',
4562\ 'udm_get_doc_count(': 'resource agent | int',
4563\ 'udm_get_res_field(': 'resource res, int row, int field | string',
4564\ 'udm_get_res_param(': 'resource res, int param | string',
4565\ 'udm_hash32(': 'resource agent, string str | int',
4566\ 'udm_load_ispell_data(': 'resource agent, int var, string val1, string val2, int flag | bool',
4567\ 'udm_open_stored(': 'resource agent, string storedaddr | int',
4568\ 'udm_set_agent_param(': 'resource agent, int var, string val | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004569\ 'uksort(': 'array &#38;array, callback cmp_function | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004570\ 'umask(': '[int mask] | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004571\ 'unicode_encode(': 'unicode input, string encoding | string',
4572\ 'unicode_semantics(': 'void | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004573\ 'uniqid(': '[string prefix [, bool more_entropy]] | string',
4574\ 'unixtojd(': '[int timestamp] | int',
4575\ 'unlink(': 'string filename [, resource context] | bool',
4576\ 'unpack(': 'string format, string data | array',
4577\ 'unregister_tick_function(': 'string function_name | void',
4578\ 'unserialize(': 'string str | mixed',
4579\ 'unset(': 'mixed var [, mixed var [, mixed ...]] | void',
4580\ 'urldecode(': 'string str | string',
4581\ 'urlencode(': 'string str | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004582\ 'use_soap_error_handler(': '[bool handler] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004583\ 'usleep(': 'int micro_seconds | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004584\ 'usort(': 'array &#38;array, callback cmp_function | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004585\ 'utf8_decode(': 'string data | string',
4586\ 'utf8_encode(': 'string data | string',
4587\ 'var_dump(': 'mixed expression [, mixed expression [, ...]] | void',
4588\ 'var_export(': 'mixed expression [, bool return] | mixed',
4589\ 'variant_abs(': 'mixed val | mixed',
4590\ 'variant_add(': 'mixed left, mixed right | mixed',
4591\ 'variant_and(': 'mixed left, mixed right | mixed',
4592\ 'variant_cast(': 'variant variant, int type | variant',
4593\ 'variant_cat(': 'mixed left, mixed right | mixed',
4594\ 'variant_cmp(': 'mixed left, mixed right [, int lcid [, int flags]] | int',
4595\ 'variant_date_from_timestamp(': 'int timestamp | variant',
4596\ 'variant_date_to_timestamp(': 'variant variant | int',
4597\ 'variant_div(': 'mixed left, mixed right | mixed',
4598\ 'variant_eqv(': 'mixed left, mixed right | mixed',
4599\ 'variant_fix(': 'mixed variant | mixed',
4600\ 'variant_get_type(': 'variant variant | int',
4601\ 'variant_idiv(': 'mixed left, mixed right | mixed',
4602\ 'variant_imp(': 'mixed left, mixed right | mixed',
4603\ 'variant_int(': 'mixed variant | mixed',
4604\ 'variant_mod(': 'mixed left, mixed right | mixed',
4605\ 'variant_mul(': 'mixed left, mixed right | mixed',
4606\ 'variant_neg(': 'mixed variant | mixed',
4607\ 'variant_not(': 'mixed variant | mixed',
4608\ 'variant_or(': 'mixed left, mixed right | mixed',
4609\ 'variant_pow(': 'mixed left, mixed right | mixed',
4610\ 'variant_round(': 'mixed variant, int decimals | mixed',
4611\ 'variant_set(': 'variant variant, mixed value | void',
4612\ 'variant_set_type(': 'variant variant, int type | void',
4613\ 'variant_sub(': 'mixed left, mixed right | mixed',
4614\ 'variant_xor(': 'mixed left, mixed right | mixed',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004615\ 'version_compare(': 'string version1, string version2 [, string operator] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004616\ 'vfprintf(': 'resource handle, string format, array args | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004617\ 'virtual(': 'string filename | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004618\ 'vpopmail_add_alias_domain_ex(': 'string olddomain, string newdomain | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004619\ 'vpopmail_add_alias_domain(': 'string domain, string aliasdomain | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004620\ 'vpopmail_add_domain_ex(': 'string domain, string passwd [, string quota [, string bounce [, bool apop]]] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004621\ 'vpopmail_add_domain(': 'string domain, string dir, int uid, int gid | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004622\ 'vpopmail_add_user(': 'string user, string domain, string password [, string gecos [, bool apop]] | bool',
4623\ 'vpopmail_alias_add(': 'string user, string domain, string alias | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004624\ 'vpopmail_alias_del_domain(': 'string domain | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004625\ 'vpopmail_alias_del(': 'string user, string domain | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004626\ 'vpopmail_alias_get_all(': 'string domain | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004627\ 'vpopmail_alias_get(': 'string alias, string domain | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004628\ 'vpopmail_auth_user(': 'string user, string domain, string password [, string apop] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004629\ 'vpopmail_del_domain_ex(': 'string domain | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004630\ 'vpopmail_del_domain(': 'string domain | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004631\ 'vpopmail_del_user(': 'string user, string domain | bool',
4632\ 'vpopmail_error(': 'void | string',
4633\ 'vpopmail_passwd(': 'string user, string domain, string password [, bool apop] | bool',
4634\ 'vpopmail_set_user_quota(': 'string user, string domain, string quota | bool',
4635\ 'vprintf(': 'string format, array args | int',
4636\ 'vsprintf(': 'string format, array args | string',
4637\ 'w32api_deftype(': 'string typename, string member1_type, string member1_name [, string ... [, string ...]] | bool',
4638\ 'w32api_init_dtype(': 'string typename, mixed value [, mixed ...] | resource',
4639\ 'w32api_invoke_function(': 'string funcname, mixed argument [, mixed ...] | mixed',
4640\ 'w32api_register_function(': 'string library, string function_name, string return_type | bool',
4641\ 'w32api_set_call_method(': 'int method | void',
4642\ 'wddx_add_vars(': 'int packet_id, mixed name_var [, mixed ...] | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004643\ 'wddx_packet_end(': 'resource packet_id | string',
4644\ 'wddx_packet_start(': '[string comment] | resource',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004645\ 'wddx_serialize_value(': 'mixed var [, string comment] | string',
4646\ 'wddx_serialize_vars(': 'mixed var_name [, mixed ...] | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004647\ 'wddx_unserialize(': 'string packet | mixed',
4648\ 'win32_create_service(': 'array details [, string machine] | int',
4649\ 'win32_delete_service(': 'string servicename [, string machine] | int',
4650\ 'win32_get_last_control_message(': 'void | int',
4651\ 'win32_ps_list_procs(': 'void | array',
4652\ 'win32_ps_stat_mem(': 'void | array',
4653\ 'win32_ps_stat_proc(': '[int pid] | array',
4654\ 'win32_query_service_status(': 'string servicename [, string machine] | mixed',
4655\ 'win32_set_service_status(': 'int status | bool',
4656\ 'win32_start_service_ctrl_dispatcher(': 'string name | bool',
4657\ 'win32_start_service(': 'string servicename [, string machine] | int',
4658\ 'win32_stop_service(': 'string servicename [, string machine] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004659\ 'wordwrap(': 'string str [, int width [, string break [, bool cut]]] | string',
4660\ 'xattr_get(': 'string filename, string name [, int flags] | string',
4661\ 'xattr_list(': 'string filename [, int flags] | array',
4662\ 'xattr_remove(': 'string filename, string name [, int flags] | bool',
4663\ 'xattr_set(': 'string filename, string name, string value [, int flags] | bool',
4664\ 'xattr_supported(': 'string filename [, int flags] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004665\ 'xdiff_file_diff_binary(': 'string file1, string file2, string dest | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004666\ 'xdiff_file_diff(': 'string file1, string file2, string dest [, int context [, bool minimal]] | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004667\ 'xdiff_file_merge3(': 'string file1, string file2, string file3, string dest | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004668\ 'xdiff_file_patch_binary(': 'string file, string patch, string dest | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004669\ 'xdiff_file_patch(': 'string file, string patch, string dest [, int flags] | mixed',
4670\ 'xdiff_string_diff_binary(': 'string str1, string str2 | string',
4671\ 'xdiff_string_diff(': 'string str1, string str2 [, int context [, bool minimal]] | string',
4672\ 'xdiff_string_merge3(': 'string str1, string str2, string str3 [, string &#38;error] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004673\ 'xdiff_string_patch_binary(': 'string str, string patch | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004674\ 'xdiff_string_patch(': 'string str, string patch [, int flags [, string &#38;error]] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004675\ 'xml_error_string(': 'int code | string',
4676\ 'xml_get_current_byte_index(': 'resource parser | int',
4677\ 'xml_get_current_column_number(': 'resource parser | int',
4678\ 'xml_get_current_line_number(': 'resource parser | int',
4679\ 'xml_get_error_code(': 'resource parser | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004680\ 'xml_parse(': 'resource parser, string data [, bool is_final] | int',
4681\ 'xml_parse_into_struct(': 'resource parser, string data, array &#38;values [, array &#38;index] | int',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004682\ 'xml_parser_create(': '[string encoding] | resource',
4683\ 'xml_parser_create_ns(': '[string encoding [, string separator]] | resource',
4684\ 'xml_parser_free(': 'resource parser | bool',
4685\ 'xml_parser_get_option(': 'resource parser, int option | mixed',
4686\ 'xml_parser_set_option(': 'resource parser, int option, mixed value | bool',
4687\ 'xmlrpc_decode(': 'string xml [, string encoding] | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004688\ 'xmlrpc_decode_request(': 'string xml, string &#38;method [, string encoding] | array',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004689\ 'xmlrpc_encode(': 'mixed value | string',
4690\ 'xmlrpc_encode_request(': 'string method, mixed params [, array output_options] | string',
4691\ 'xmlrpc_get_type(': 'mixed value | string',
4692\ 'xmlrpc_is_fault(': 'array arg | bool',
4693\ 'xmlrpc_parse_method_descriptions(': 'string xml | array',
4694\ 'xmlrpc_server_add_introspection_data(': 'resource server, array desc | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004695\ 'xmlrpc_server_call_method(': 'resource server, string xml, mixed user_data [, array output_options] | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004696\ 'xmlrpc_server_create(': 'void | resource',
4697\ 'xmlrpc_server_destroy(': 'resource server | int',
4698\ 'xmlrpc_server_register_introspection_callback(': 'resource server, string function | bool',
4699\ 'xmlrpc_server_register_method(': 'resource server, string method_name, string function | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004700\ 'xmlrpc_set_type(': 'string &#38;value, string type | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004701\ 'xml_set_character_data_handler(': 'resource parser, callback handler | bool',
4702\ 'xml_set_default_handler(': 'resource parser, callback handler | bool',
4703\ 'xml_set_element_handler(': 'resource parser, callback start_element_handler, callback end_element_handler | bool',
4704\ 'xml_set_end_namespace_decl_handler(': 'resource parser, callback handler | bool',
4705\ 'xml_set_external_entity_ref_handler(': 'resource parser, callback handler | bool',
4706\ 'xml_set_notation_decl_handler(': 'resource parser, callback handler | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004707\ 'xml_set_object(': 'resource parser, object &#38;object | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004708\ 'xml_set_processing_instruction_handler(': 'resource parser, callback handler | bool',
4709\ 'xml_set_start_namespace_decl_handler(': 'resource parser, callback handler | bool',
4710\ 'xml_set_unparsed_entity_decl_handler(': 'resource parser, callback handler | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004711\ 'xmlwriter_end_attribute(': 'resource xmlwriter | bool',
4712\ 'xmlwriter_end_cdata(': 'resource xmlwriter | bool',
4713\ 'xmlwriter_end_comment(': 'resource xmlwriter | bool',
4714\ 'xmlwriter_end_document(': 'resource xmlwriter | bool',
4715\ 'xmlwriter_end_dtd_attlist(': 'resource xmlwriter | bool',
4716\ 'xmlwriter_end_dtd_element(': 'resource xmlwriter | bool',
4717\ 'xmlwriter_end_dtd_entity(': 'resource xmlwriter | bool',
4718\ 'xmlwriter_end_dtd(': 'resource xmlwriter | bool',
4719\ 'xmlwriter_end_element(': 'resource xmlwriter | bool',
4720\ 'xmlwriter_end_pi(': 'resource xmlwriter | bool',
4721\ 'xmlwriter_flush(': 'resource xmlwriter [, bool empty] | mixed',
4722\ 'xmlwriter_full_end_element(': 'resource xmlwriter | bool',
4723\ 'xmlwriter_open_memory(': 'void | resource',
4724\ 'xmlwriter_open_uri(': 'string source | resource',
4725\ 'xmlwriter_output_memory(': 'resource xmlwriter [, bool flush] | string',
4726\ 'xmlwriter_set_indent(': 'resource xmlwriter, bool indent | bool',
4727\ 'xmlwriter_set_indent_string(': 'resource xmlwriter, string indentString | bool',
4728\ 'xmlwriter_start_attribute(': 'resource xmlwriter, string name | bool',
4729\ 'xmlwriter_start_attribute_ns(': 'resource xmlwriter, string prefix, string name, string uri | bool',
4730\ 'xmlwriter_start_cdata(': 'resource xmlwriter | bool',
4731\ 'xmlwriter_start_comment(': 'resource xmlwriter | bool',
4732\ 'xmlwriter_start_document(': 'resource xmlwriter [, string version [, string encoding [, string standalone]]] | bool',
4733\ 'xmlwriter_start_dtd_attlist(': 'resource xmlwriter, string name | bool',
4734\ 'xmlwriter_start_dtd_element(': 'resource xmlwriter, string name | bool',
4735\ 'xmlwriter_start_dtd_entity(': 'resource xmlwriter, string name, bool isparam | bool',
4736\ 'xmlwriter_start_dtd(': 'resource xmlwriter, string name [, string pubid [, string sysid]] | bool',
4737\ 'xmlwriter_start_element(': 'resource xmlwriter, string name | bool',
4738\ 'xmlwriter_start_element_ns(': 'resource xmlwriter, string prefix, string name, string uri | bool',
4739\ 'xmlwriter_start_pi(': 'resource xmlwriter, string target | bool',
4740\ 'xmlwriter_text(': 'resource xmlwriter, string content | bool',
4741\ 'xmlwriter_write_attribute(': 'resource xmlwriter, string name, string content | bool',
4742\ 'xmlwriter_write_attribute_ns(': 'resource xmlwriter, string prefix, string name, string uri, string content | bool',
4743\ 'xmlwriter_write_cdata(': 'resource xmlwriter, string content | bool',
4744\ 'xmlwriter_write_comment(': 'resource xmlwriter, string content | bool',
4745\ 'xmlwriter_write_dtd_attlist(': 'resource xmlwriter, string name, string content | bool',
4746\ 'xmlwriter_write_dtd_element(': 'resource xmlwriter, string name, string content | bool',
4747\ 'xmlwriter_write_dtd_entity(': 'resource xmlwriter, string name, string content | bool',
4748\ 'xmlwriter_write_dtd(': 'resource xmlwriter, string name [, string pubid [, string sysid [, string subset]]] | bool',
4749\ 'xmlwriter_write_element(': 'resource xmlwriter, string name, string content | bool',
4750\ 'xmlwriter_write_element_ns(': 'resource xmlwriter, string prefix, string name, string uri, string content | bool',
4751\ 'xmlwriter_write_pi(': 'resource xmlwriter, string target, string content | bool',
4752\ 'xmlwriter_write_raw(': 'resource xmlwriter, string content | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004753\ 'xpath_new_context(': 'domdocument dom_document | XPathContext',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004754\ 'xpath_register_ns_auto(': 'XPathContext xpath_context [, object context_node] | bool',
4755\ 'xpath_register_ns(': 'XPathContext xpath_context, string prefix, string uri | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004756\ 'xptr_new_context(': 'void | XPathContext',
4757\ 'xslt_backend_info(': 'void | string',
4758\ 'xslt_backend_name(': 'void | string',
4759\ 'xslt_backend_version(': 'void | string',
4760\ 'xslt_create(': 'void | resource',
4761\ 'xslt_errno(': 'resource xh | int',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004762\ 'xslt_error(': 'resource xh | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004763\ 'xslt_free(': 'resource xh | void',
4764\ 'xslt_getopt(': 'resource processor | int',
4765\ 'xslt_process(': 'resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]] | mixed',
4766\ 'xslt_set_base(': 'resource xh, string uri | void',
4767\ 'xslt_set_encoding(': 'resource xh, string encoding | void',
4768\ 'xslt_set_error_handler(': 'resource xh, mixed handler | void',
4769\ 'xslt_set_log(': 'resource xh [, mixed log] | void',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004770\ 'xslt_set_object(': 'resource processor, object &#38;obj | bool',
4771\ 'xslt_setopt(': 'resource processor, int newmask | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004772\ 'xslt_set_sax_handler(': 'resource xh, array handlers | void',
4773\ 'xslt_set_sax_handlers(': 'resource processor, array handlers | void',
4774\ 'xslt_set_scheme_handler(': 'resource xh, array handlers | void',
4775\ 'xslt_set_scheme_handlers(': 'resource processor, array handlers | void',
4776\ 'yaz_addinfo(': 'resource id | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004777\ 'yaz_ccl_conf(': 'resource id, array config | void',
4778\ 'yaz_ccl_parse(': 'resource id, string query, array &#38;result | bool',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004779\ 'yaz_close(': 'resource id | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004780\ 'yaz_connect(': 'string zurl [, mixed options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004781\ 'yaz_database(': 'resource id, string databases | bool',
4782\ 'yaz_element(': 'resource id, string elementset | bool',
4783\ 'yaz_errno(': 'resource id | int',
4784\ 'yaz_error(': 'resource id | string',
4785\ 'yaz_es_result(': 'resource id | array',
4786\ 'yaz_get_option(': 'resource id, string name | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004787\ 'yaz_hits(': 'resource id [, array searchresult] | int',
4788\ 'yaz_itemorder(': 'resource id, array args | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004789\ 'yaz_present(': 'resource id | bool',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004790\ 'yaz_range(': 'resource id, int start, int number | void',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004791\ 'yaz_record(': 'resource id, int pos, string type | string',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004792\ 'yaz_scan(': 'resource id, string type, string startterm [, array flags] | void',
4793\ 'yaz_scan_result(': 'resource id [, array &#38;result] | array',
4794\ 'yaz_schema(': 'resource id, string schema | void',
4795\ 'yaz_search(': 'resource id, string type, string query | bool',
4796\ 'yaz_set_option(': 'resource id, string name, string value | void',
4797\ 'yaz_sort(': 'resource id, string criteria | void',
4798\ 'yaz_syntax(': 'resource id, string syntax | void',
4799\ 'yaz_wait(': '[array &#38;options] | mixed',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004800\ 'yp_all(': 'string domain, string map, string callback | void',
4801\ 'yp_cat(': 'string domain, string map | array',
4802\ 'yp_errno(': 'void | int',
4803\ 'yp_err_string(': 'int errorcode | string',
4804\ 'yp_first(': 'string domain, string map | array',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004805\ 'yp_get_default_domain(': 'void | string',
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004806\ 'yp_master(': 'string domain, string map | string',
4807\ 'yp_match(': 'string domain, string map, string key | string',
4808\ 'yp_next(': 'string domain, string map, string key | array',
4809\ 'yp_order(': 'string domain, string map | int',
4810\ 'zend_logo_guid(': 'void | string',
4811\ 'zend_version(': 'void | string',
4812\ 'zip_close(': 'resource zip | void',
4813\ 'zip_entry_close(': 'resource zip_entry | void',
4814\ 'zip_entry_compressedsize(': 'resource zip_entry | int',
4815\ 'zip_entry_compressionmethod(': 'resource zip_entry | string',
4816\ 'zip_entry_filesize(': 'resource zip_entry | int',
4817\ 'zip_entry_name(': 'resource zip_entry | string',
4818\ 'zip_entry_open(': 'resource zip, resource zip_entry [, string mode] | bool',
4819\ 'zip_entry_read(': 'resource zip_entry [, int length] | string',
4820\ 'zip_open(': 'string filename | resource',
4821\ 'zip_read(': 'resource zip | resource',
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00004822\ 'zlib_get_coding_type(': 'void | string'
4823\ }
4824" }}}
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00004825" built-in object functions {{{
4826let g:php_builtin_object_functions = {
4827\ 'ArrayIterator::current(': 'void | mixed',
4828\ 'ArrayIterator::key(': 'void | mixed',
4829\ 'ArrayIterator::next(': 'void | void',
4830\ 'ArrayIterator::rewind(': 'void | void',
4831\ 'ArrayIterator::seek(': 'int position | void',
4832\ 'ArrayIterator::valid(': 'void | bool',
4833\ 'ArrayObject::append(': 'mixed newval | void',
4834\ 'ArrayObject::__construct(': 'mixed input | ArrayObject',
4835\ 'ArrayObject::count(': 'void | int',
4836\ 'ArrayObject::getIterator(': 'void | ArrayIterator',
4837\ 'ArrayObject::offsetExists(': 'mixed index | bool',
4838\ 'ArrayObject::offsetGet(': 'mixed index | bool',
4839\ 'ArrayObject::offsetSet(': 'mixed index, mixed newval | void',
4840\ 'ArrayObject::offsetUnset(': 'mixed index | void',
4841\ 'CachingIterator::hasNext(': 'void | bool',
4842\ 'CachingIterator::next(': 'void | void',
4843\ 'CachingIterator::rewind(': 'void | void',
4844\ 'CachingIterator::__toString(': 'void | string',
4845\ 'CachingIterator::valid(': 'void | bool',
4846\ 'CachingRecursiveIterator::getChildren(': 'void | CachingRecursiveIterator',
4847\ 'CachingRecursiveIterator::hasChildren(': 'void | bolean',
4848\ 'DirectoryIterator::__construct(': 'string path | DirectoryIterator',
4849\ 'DirectoryIterator::current(': 'void | DirectoryIterator',
4850\ 'DirectoryIterator::getATime(': 'void | int',
4851\ 'DirectoryIterator::getChildren(': 'void | RecursiveDirectoryIterator',
4852\ 'DirectoryIterator::getCTime(': 'void | int',
4853\ 'DirectoryIterator::getFilename(': 'void | string',
4854\ 'DirectoryIterator::getGroup(': 'void | int',
4855\ 'DirectoryIterator::getInode(': 'void | int',
4856\ 'DirectoryIterator::getMTime(': 'void | int',
4857\ 'DirectoryIterator::getOwner(': 'void | int',
4858\ 'DirectoryIterator::getPath(': 'void | string',
4859\ 'DirectoryIterator::getPathname(': 'void | string',
4860\ 'DirectoryIterator::getPerms(': 'void | int',
4861\ 'DirectoryIterator::getSize(': 'void | int',
4862\ 'DirectoryIterator::getType(': 'void | string',
4863\ 'DirectoryIterator::isDir(': 'void | bool',
4864\ 'DirectoryIterator::isDot(': 'void | bool',
4865\ 'DirectoryIterator::isExecutable(': 'void | bool',
4866\ 'DirectoryIterator::isFile(': 'void | bool',
4867\ 'DirectoryIterator::isLink(': 'void | bool',
4868\ 'DirectoryIterator::isReadable(': 'void | bool',
4869\ 'DirectoryIterator::isWritable(': 'void | bool',
4870\ 'DirectoryIterator::key(': 'void | string',
4871\ 'DirectoryIterator::next(': 'void | void',
4872\ 'DirectoryIterator::rewind(': 'void | void',
4873\ 'DirectoryIterator::valid(': 'void | string',
4874\ 'FilterIterator::current(': 'void | mixed',
4875\ 'FilterIterator::getInnerIterator(': 'void | Iterator',
4876\ 'FilterIterator::key(': 'void | mixed',
4877\ 'FilterIterator::next(': 'void | void',
4878\ 'FilterIterator::rewind(': 'void | void',
4879\ 'FilterIterator::valid(': 'void | bool',
4880\ 'LimitIterator::getPosition(': 'void | int',
4881\ 'LimitIterator::next(': 'void | void',
4882\ 'LimitIterator::rewind(': 'void | void',
4883\ 'LimitIterator::seek(': 'int position | void',
4884\ 'LimitIterator::valid(': 'void | bool',
4885\ 'Memcache::add(': 'string key, mixed var [, int flag [, int expire]] | bool',
4886\ 'Memcache::addServer(': 'string host [, int port [, bool persistent [, int weight [, int timeout [, int retry_interval]]]]] | bool',
4887\ 'Memcache::close(': 'void | bool',
4888\ 'Memcache::connect(': 'string host [, int port [, int timeout]] | bool',
4889\ 'Memcache::decrement(': 'string key [, int value] | int',
4890\ 'Memcache::delete(': 'string key [, int timeout] | bool',
4891\ 'Memcache::flush(': 'void | bool',
4892\ 'Memcache::getExtendedStats(': 'void | array',
4893\ 'Memcache::get(': 'string key | string',
4894\ 'Memcache::getStats(': 'void | array',
4895\ 'Memcache::getVersion(': 'void | string',
4896\ 'Memcache::increment(': 'string key [, int value] | int',
4897\ 'Memcache::pconnect(': 'string host [, int port [, int timeout]] | bool',
4898\ 'Memcache::replace(': 'string key, mixed var [, int flag [, int expire]] | bool',
4899\ 'Memcache::setCompressThreshold(': 'int threshold [, float min_savings] | bool',
4900\ 'Memcache::set(': 'string key, mixed var [, int flag [, int expire]] | bool',
4901\ 'ParentIterator::getChildren(': 'void | ParentIterator',
4902\ 'ParentIterator::hasChildren(': 'void | bool',
4903\ 'ParentIterator::next(': 'void | void',
4904\ 'ParentIterator::rewind(': 'void | void',
4905\ 'PDO::beginTransaction(': 'void | bool',
4906\ 'PDO::commit(': 'void | bool',
4907\ 'PDO::__construct(': 'string dsn [, string username [, string password [, array driver_options]]] | PDO',
4908\ 'PDO::errorCode(': 'void | string',
4909\ 'PDO::errorInfo(': 'void | array',
4910\ 'PDO::exec(': 'string statement | int',
4911\ 'PDO::getAttribute(': 'int attribute | mixed',
4912\ 'PDO::getAvailableDrivers(': 'void | array',
4913\ 'PDO::lastInsertId(': '[string name] | string',
4914\ 'PDO::prepare(': 'string statement [, array driver_options] | PDOStatement',
4915\ 'PDO::query(': 'string statement | PDOStatement',
4916\ 'PDO::quote(': 'string string [, int parameter_type] | string',
4917\ 'PDO::rollBack(': 'void | bool',
4918\ 'PDO::setAttribute(': 'int attribute, mixed value | bool',
4919\ 'PDO::sqliteCreateAggregate(': 'string function_name, callback step_func, callback finalize_func [, int num_args] | bool',
4920\ 'PDO::sqliteCreateFunction(': 'string function_name, callback callback [, int num_args] | bool',
4921\ 'PDOStatement::bindColumn(': 'mixed column, mixed &#38;param [, int type] | bool',
4922\ 'PDOStatement::bindParam(': 'mixed parameter, mixed &#38;variable [, int data_type [, int length [, mixed driver_options]]] | bool',
4923\ 'PDOStatement::bindValue(': 'mixed parameter, mixed value [, int data_type] | bool',
4924\ 'PDOStatement::closeCursor(': 'void | bool',
4925\ 'PDOStatement::columnCount(': 'void | int',
4926\ 'PDOStatement::errorCode(': 'void | string',
4927\ 'PDOStatement::errorInfo(': 'void | array',
4928\ 'PDOStatement::execute(': '[array input_parameters] | bool',
4929\ 'PDOStatement::fetchAll(': '[int fetch_style [, int column_index]] | array',
4930\ 'PDOStatement::fetchColumn(': '[int column_number] | string',
4931\ 'PDOStatement::fetch(': '[int fetch_style [, int cursor_orientation [, int cursor_offset]]] | mixed',
4932\ 'PDOStatement::fetchObject(': '[string class_name [, array ctor_args]] | mixed',
4933\ 'PDOStatement::getAttribute(': 'int attribute | mixed',
4934\ 'PDOStatement::getColumnMeta(': 'int column | mixed',
4935\ 'PDOStatement::nextRowset(': 'void | bool',
4936\ 'PDOStatement::rowCount(': 'void | int',
4937\ 'PDOStatement::setAttribute(': 'int attribute, mixed value | bool',
4938\ 'PDOStatement::setFetchMode(': 'int mode | bool',
4939\ 'Rar::extract(': 'string dir [, string filepath] | bool',
4940\ 'Rar::getAttr(': 'void | int',
4941\ 'Rar::getCrc(': 'void | int',
4942\ 'Rar::getFileTime(': 'void | string',
4943\ 'Rar::getHostOs(': 'void | int',
4944\ 'Rar::getMethod(': 'void | int',
4945\ 'Rar::getName(': 'void | string',
4946\ 'Rar::getPackedSize(': 'void | int',
4947\ 'Rar::getUnpackedSize(': 'void | int',
4948\ 'Rar::getVersion(': 'void | int',
4949\ 'RecursiveDirectoryIterator::getChildren(': 'void | object',
4950\ 'RecursiveDirectoryIterator::hasChildren(': '[bool allow_links] | bool',
4951\ 'RecursiveDirectoryIterator::key(': 'void | string',
4952\ 'RecursiveDirectoryIterator::next(': 'void | void',
4953\ 'RecursiveDirectoryIterator::rewind(': 'void | void',
4954\ 'RecursiveIteratorIterator::current(': 'void | mixed',
4955\ 'RecursiveIteratorIterator::getDepth(': 'void | int',
4956\ 'RecursiveIteratorIterator::getSubIterator(': 'void | RecursiveIterator',
4957\ 'RecursiveIteratorIterator::key(': 'void | mixed',
4958\ 'RecursiveIteratorIterator::next(': 'void | void',
4959\ 'RecursiveIteratorIterator::rewind(': 'void | void',
4960\ 'RecursiveIteratorIterator::valid(': 'void | bolean',
4961\ 'SDO_DAS_ChangeSummary::beginLogging(': 'void | void',
4962\ 'SDO_DAS_ChangeSummary::endLogging(': 'void | void',
4963\ 'SDO_DAS_ChangeSummary::getChangedDataObjects(': 'void | SDO_List',
4964\ 'SDO_DAS_ChangeSummary::getChangeType(': 'SDO_DataObject dataObject | int',
4965\ 'SDO_DAS_ChangeSummary::getOldContainer(': 'SDO_DataObject data_object | SDO_DataObject',
4966\ 'SDO_DAS_ChangeSummary::getOldValues(': 'SDO_DataObject data_object | SDO_List',
4967\ 'SDO_DAS_ChangeSummary::isLogging(': 'void | bool',
4968\ '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',
4969\ 'SDO_DAS_DataFactory::addType(': 'string type_namespace_uri, string type_name [, array options] | void',
4970\ 'SDO_DAS_DataFactory::getDataFactory(': 'void | SDO_DAS_DataFactory',
4971\ 'SDO_DAS_DataObject::getChangeSummary(': 'void | SDO_DAS_ChangeSummary',
4972\ 'SDO_DAS_Relational::applyChanges(': 'PDO database_handle, SDODataObject root_data_object | void',
4973\ 'SDO_DAS_Relational::__construct(': 'array database_metadata [, string application_root_type [, array SDO_containment_references_metadata]] | SDO_DAS_Relational',
4974\ 'SDO_DAS_Relational::createRootDataObject(': 'void | SDODataObject',
4975\ 'SDO_DAS_Relational::executePreparedQuery(': 'PDO database_handle, PDOStatement prepared_statement, array value_list [, array column_specifier] | SDODataObject',
4976\ 'SDO_DAS_Relational::executeQuery(': 'PDO database_handle, string SQL_statement [, array column_specifier] | SDODataObject',
4977\ 'SDO_DAS_Setting::getListIndex(': 'void | int',
4978\ 'SDO_DAS_Setting::getPropertyIndex(': 'void | int',
4979\ 'SDO_DAS_Setting::getPropertyName(': 'void | string',
4980\ 'SDO_DAS_Setting::getValue(': 'void | mixed',
4981\ 'SDO_DAS_Setting::isSet(': 'void | bool',
4982\ 'SDO_DAS_XML::addTypes(': 'string xsd_file | void',
4983\ 'SDO_DAS_XML::createDataObject(': 'string namespace_uri, string type_name | SDO_DataObject',
4984\ 'SDO_DAS_XML::createDocument(': '[string document_element_name] | SDO_DAS_XML_Document',
4985\ 'SDO_DAS_XML::create(': '[string xsd_file] | SDO_DAS_XML',
4986\ 'SDO_DAS_XML_Document::getRootDataObject(': 'void | SDO_DataObject',
4987\ 'SDO_DAS_XML_Document::getRootElementName(': 'void | string',
4988\ 'SDO_DAS_XML_Document::getRootElementURI(': 'void | string',
4989\ 'SDO_DAS_XML_Document::setEncoding(': 'string encoding | void',
4990\ 'SDO_DAS_XML_Document::setXMLDeclaration(': 'bool xmlDeclatation | void',
4991\ 'SDO_DAS_XML_Document::setXMLVersion(': 'string xmlVersion | void',
4992\ 'SDO_DAS_XML::loadFile(': 'string xml_file | SDO_XMLDocument',
4993\ 'SDO_DAS_XML::loadString(': 'string xml_string | SDO_DAS_XML_Document',
4994\ 'SDO_DAS_XML::saveFile(': 'SDO_XMLDocument xdoc, string xml_file [, int indent] | void',
4995\ 'SDO_DAS_XML::saveString(': 'SDO_XMLDocument xdoc [, int indent] | string',
4996\ 'SDO_DataFactory::create(': 'string type_namespace_uri, string type_name | void',
4997\ 'SDO_DataObject::clear(': 'void | void',
4998\ 'SDO_DataObject::createDataObject(': 'mixed identifier | SDO_DataObject',
4999\ 'SDO_DataObject::getContainer(': 'void | SDO_DataObject',
5000\ 'SDO_DataObject::getSequence(': 'void | SDO_Sequence',
5001\ 'SDO_DataObject::getTypeName(': 'void | string',
5002\ 'SDO_DataObject::getTypeNamespaceURI(': 'void | string',
5003\ 'SDO_Exception::getCause(': 'void | mixed',
5004\ 'SDO_List::insert(': 'mixed value [, int index] | void',
5005\ 'SDO_Model_Property::getContainingType(': 'void | SDO_Model_Type',
5006\ 'SDO_Model_Property::getDefault(': 'void | mixed',
5007\ 'SDO_Model_Property::getName(': 'void | string',
5008\ 'SDO_Model_Property::getType(': 'void | SDO_Model_Type',
5009\ 'SDO_Model_Property::isContainment(': 'void | bool',
5010\ 'SDO_Model_Property::isMany(': 'void | bool',
5011\ 'SDO_Model_ReflectionDataObject::__construct(': 'SDO_DataObject data_object | SDO_Model_ReflectionDataObject',
5012\ 'SDO_Model_ReflectionDataObject::export(': 'SDO_Model_ReflectionDataObject rdo [, bool return] | mixed',
5013\ 'SDO_Model_ReflectionDataObject::getContainmentProperty(': 'void | SDO_Model_Property',
5014\ 'SDO_Model_ReflectionDataObject::getInstanceProperties(': 'void | array',
5015\ 'SDO_Model_ReflectionDataObject::getType(': 'void | SDO_Model_Type',
5016\ 'SDO_Model_Type::getBaseType(': 'void | SDO_Model_Type',
5017\ 'SDO_Model_Type::getName(': 'void | string',
5018\ 'SDO_Model_Type::getNamespaceURI(': 'void | string',
5019\ 'SDO_Model_Type::getProperties(': 'void | array',
5020\ 'SDO_Model_Type::getProperty(': 'mixed identifier | SDO_Model_Property',
5021\ 'SDO_Model_Type::isAbstractType(': 'void | bool',
5022\ 'SDO_Model_Type::isDataType(': 'void | bool',
5023\ 'SDO_Model_Type::isInstance(': 'SDO_DataObject data_object | bool',
5024\ 'SDO_Model_Type::isOpenType(': 'void | bool',
5025\ 'SDO_Model_Type::isSequencedType(': 'void | bool',
5026\ 'SDO_Sequence::getProperty(': 'int sequence_index | SDO_Model_Property',
5027\ 'SDO_Sequence::insert(': 'mixed value [, int sequenceIndex [, mixed propertyIdentifier]] | void',
5028\ 'SDO_Sequence::move(': 'int toIndex, int fromIndex | void',
5029\ 'SimpleXMLIterator::current(': 'void | mixed',
5030\ 'SimpleXMLIterator::getChildren(': 'void | object',
5031\ 'SimpleXMLIterator::hasChildren(': 'void | bool',
5032\ 'SimpleXMLIterator::key(': 'void | mixed',
5033\ 'SimpleXMLIterator::next(': 'void | void',
5034\ 'SimpleXMLIterator::rewind(': 'void | void',
5035\ 'SimpleXMLIterator::valid(': 'void | bool',
5036\ 'SWFButton::addASound(': 'SWFSound sound, int flags | SWFSoundInstance',
5037\ 'SWFButton::setMenu(': 'int flag | void',
5038\ 'SWFDisplayItem::addAction(': 'SWFAction action, int flags | void',
5039\ 'SWFDisplayItem::endMask(': 'void | void',
5040\ 'SWFDisplayItem::getRot(': 'void | float',
5041\ 'SWFDisplayItem::getX(': 'void | float',
5042\ 'SWFDisplayItem::getXScale(': 'void | float',
5043\ 'SWFDisplayItem::getXSkew(': 'void | float',
5044\ 'SWFDisplayItem::getY(': 'void | float',
5045\ 'SWFDisplayItem::getYScale(': 'void | float',
5046\ 'SWFDisplayItem::getYSkew(': 'void | float',
5047\ 'SWFDisplayItem::setMaskLevel(': 'int level | void',
5048\ 'SWFDisplayItem::setMatrix(': 'float a, float b, float c, float d, float x, float y | void',
5049\ 'SWFFontChar::addChars(': 'string char | void',
5050\ 'SWFFontChar::addUTF8Chars(': 'string char | void',
5051\ 'SWFFont::getAscent(': 'void | float',
5052\ 'SWFFont::getDescent(': 'void | float',
5053\ 'SWFFont::getLeading(': 'void | float',
5054\ 'SWFFont::getShape(': 'int code | string',
5055\ 'SWFFont::getUTF8Width(': 'string string | float',
5056\ 'SWFMovie::addExport(': 'SWFCharacter char, string name | void',
5057\ 'SWFMovie::addFont(': 'SWFFont font | SWFFontChar',
5058\ 'SWFMovie::importChar(': 'string libswf, string name | SWFSprite',
5059\ 'SWFMovie::importFont(': 'string libswf, string name | SWFFontChar',
5060\ 'SWFMovie::labelFrame(': 'string label | void',
5061\ 'SWFMovie::saveToFile(': 'stream x [, int compression] | int',
5062\ 'SWFMovie::startSound(': 'SWFSound sound | SWFSoundInstance',
5063\ 'SWFMovie::stopSound(': 'SWFSound sound | void',
5064\ 'SWFMovie::writeExports(': 'void | void',
5065\ 'SWFShape::drawArc(': 'float r, float startAngle, float endAngle | void',
5066\ 'SWFShape::drawCircle(': 'float r | void',
5067\ 'SWFShape::drawCubic(': 'float bx, float by, float cx, float cy, float dx, float dy | int',
5068\ 'SWFShape::drawCubicTo(': 'float bx, float by, float cx, float cy, float dx, float dy | int',
5069\ 'SWFShape::drawGlyph(': 'SWFFont font, string character [, int size] | void',
5070\ 'SWFSoundInstance::loopCount(': 'int point | void',
5071\ 'SWFSoundInstance::loopInPoint(': 'int point | void',
5072\ 'SWFSoundInstance::loopOutPoint(': 'int point | void',
5073\ 'SWFSoundInstance::noMultiple(': 'void | void',
5074\ 'SWFSprite::labelFrame(': 'string label | void',
5075\ 'SWFSprite::startSound(': 'SWFSound sound | SWFSoundInstance',
5076\ 'SWFSprite::stopSound(': 'SWFSound sound | void',
5077\ 'SWFText::addUTF8String(': 'string text | void',
5078\ 'SWFTextField::addChars(': 'string chars | void',
5079\ 'SWFTextField::setPadding(': 'float padding | void',
5080\ 'SWFText::getAscent(': 'void | float',
5081\ 'SWFText::getDescent(': 'void | float',
5082\ 'SWFText::getLeading(': 'void | float',
5083\ 'SWFText::getUTF8Width(': 'string string | float',
5084\ 'SWFVideoStream::getNumFrames(': 'void | int',
5085\ 'SWFVideoStream::setDimension(': 'int x, int y | void',
5086\ 'tidy::__construct(': '[string filename [, mixed config [, string encoding [, bool use_include_path]]]] | tidy'
5087\ }
5088 " }}}
Bram Moolenaare48ec1f2006-03-11 21:38:31 +00005089" Add control structures (they are outside regular pattern of PHP functions)
5090let php_control = {
5091 \ 'include(': 'string filename | resource',
5092 \ 'include_once(': 'string filename | resource',
5093 \ 'require(': 'string filename | resource',
5094 \ 'require_once(': 'string filename | resource',
5095 \ }
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00005096call extend(g:php_builtin_functions, php_control)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005097endfunction
5098" }}}
5099" vim:set foldmethod=marker: