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