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