1" Vim completion script 2" Language: PHP 3" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) 4" Last Change: 2006 Mar 5 5" 6" 7" - outside of <?php?> getting parent tag may cause problems. Heh, even in 8" perfect conditions GetLastOpenTag doesn't cooperate... Inside of 9" phpStrings this can be even a bonus but outside of <?php?> it is not the 10" best situation 11" - Switching to HTML completion (SQL) inside of phpStrings 12 13function! phpcomplete#CompletePHP(findstart, base) 14 if a:findstart 15 unlet! b:php_menu 16 " Check if we are inside of PHP markup 17 let pos = getpos('.') 18 let phpbegin = searchpairpos('<?', '', '?>', 'bWn','synIDattr(synID(line("."), col("."), 0), "name") =~? "string"') 19 let phpend = searchpairpos('<?', '', '?>', 'Wn','synIDattr(synID(line("."), col("."), 0), "name") =~? "string"') 20 " TODO: deal with opened <? but without closing ?> 21 22 if phpbegin == [0,0] && phpend == [0,0] 23 " We are outside of any PHP markup. Complete HTML 24 let htmlbegin = htmlcomplete#CompleteTags(1, '') 25 let cursor_col = pos[2] 26 let base = getline('.')[htmlbegin : cursor_col] 27 let b:php_menu = htmlcomplete#CompleteTags(0, base) 28 return htmlbegin 29 "elseif phpbegin[0] < pos[1] || phpbegin[0] == pos[1] && phpbegin[1] < pos[2] 30 else 31 32 " locate the start of the word 33 let line = getline('.') 34 let start = col('.') - 1 35 let curline = line('.') 36 let compl_begin = col('.') - 2 37 while start >= 0 && line[start - 1] =~ '[a-zA-Z_0-9\x7f-\xff$]' 38 let start -= 1 39 endwhile 40 let b:compl_context = getline('.')[0:compl_begin] 41 return start 42 43 " We can be also inside of phpString with HTML tags. Deal with 44 " it later. 45 endif 46 else 47 " If exists b:php_menu it means completion was already constructed we 48 " don't need to do anything more 49 if exists("b:php_menu") 50 return b:php_menu 51 endif 52 " Initialize base return lists 53 let res = [] 54 let res2 = [] 55 " a:base is very short - we need context 56 if exists("b:compl_context") 57 let context = b:compl_context 58 unlet! b:compl_context 59 endif 60 61 if a:base =~ '^\$' 62 " Complete variables 63 let b:php_builtin_vars = ['$GLOBALS', '$_SERVER', '$_GET', '$_POST', '$_COOKIE', 64 \ '$_FILES', '$_ENV', '$_REQUEST', '$_SESSION', '$HTTP_SERVER_VARS', 65 \ '$HTTP_ENV_VARS', '$HTTP_COOKIE_VARS', '$HTTP_GET_VARS', '$HTTP_POST_VARS', 66 \ '$HTTP_POST_FILES', '$HTTP_SESSION_VARS', '$php_errormsg' 67 \ ] 68 69 " Internal solution for current file. 70 let file = getline(1, '$') 71 let jfile = join(file, ' ') 72 let int_values = split(jfile, '\ze\$') 73 call map(int_values, 'matchstr(v:val, "^\\$[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*")') 74 "call map(int_values, '"$".v:val') 75 " 76 let int_values += b:php_builtin_vars 77 78 79 for m in sort(int_values) 80 if m =~ '^'.a:base 81 call add(res, m) 82 elseif m =~ a:base 83 call add(res2, m) 84 endif 85 endfor 86 87 let int_list = res + res2 88 89 let int_dict = [] 90 for i in int_list 91 let int_dict += [{'word':i}] 92 endfor 93 94 " ctags has good support for PHP, use tags file for external 95 " variables 96 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) 97 if fnames != '' 98 let sbase = substitute(a:base, '^\$', '', '') 99 exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames 100 let qflist = getqflist() 101 let ext_dict = [] 102 for field in qflist 103 " Add space to make more space between 'word' and 'menu' 104 let m_menu = ' '.matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze') 105 let item = '$'.matchstr(field['text'], '^\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze') 106 107 let ext_dict += [{'word':item, 'menu':m_menu}] 108 endfor 109 else 110 let ext_dict = [] 111 endif 112 113 let b:php_menu = int_dict + ext_dict 114 115 else 116 " Complete everything else - 117 " + functions, DONE 118 " + keywords of language DONE 119 " - classes (after new), 120 " - defines (constant definitions), 121 if !exists('b:php_builtin_functions') 122 call phpcomplete#LoadData() 123 endif 124 125 " Internal solution for current file. 126 let file = getline(1, '$') 127 call filter(file, 'v:val =~ "function [a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("') 128 let jfile = join(file, ' ') 129 let int_values = split(jfile, 'function\s\+') 130 let int_functions = {} 131 for i in int_values 132 let f_name = matchstr(i, '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze') 133 let f_args = matchstr(i, '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)') 134 let int_functions[f_name.'('] = f_args 135 endfor 136 137 " Prepare list from tags file 138 let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) 139 if fnames != '' 140 exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames 141 let qflist = getqflist() 142 let ext_funcs = {} 143 for field in qflist 144 " File name 145 let item = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*') 146 let fname = matchstr(field['text'], '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s\+\zs\f\+\ze') 147 let prototype = matchstr(field['text'], 'function\s\+[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)') 148 let ext_funcs[item.'('] = prototype.' - '.fname 149 endfor 150 else 151 let ext_funcs = {} 152 endif 153 154 " Keywords/reserved words, all other special things {{{ 155 " Later it is possible to add some help to values 156 let keywords = { 157 \ 'PHP_SELF':'', 158 \ 'argv':'', 159 \ 'argc':'', 160 \ 'GATEWAY_INTERFACE':'', 161 \ 'SERVER_ADDR':'', 162 \ 'SERVER_NAME':'', 163 \ 'SERVER_SOFTWARE':'', 164 \ 'SERVER_PROTOCOL':'', 165 \ 'REQUEST_METHOD':'', 166 \ 'REQUEST_TIME':'', 167 \ 'QUERY_STRING':'', 168 \ 'DOCUMENT_ROOT':'', 169 \ 'HTTP_ACCEPT':'', 170 \ 'HTTP_ACCEPT_CHARSET':'', 171 \ 'HTTP_ACCEPT_ENCODING':'', 172 \ 'HTTP_ACCEPT_LANGUAGE':'', 173 \ 'HTTP_CONNECTION':'', 174 \ 'HTTP_POST':'', 175 \ 'HTTP_REFERER':'', 176 \ 'HTTP_USER_AGENT':'', 177 \ 'HTTPS':'', 178 \ 'REMOTE_ADDR':'', 179 \ 'REMOTE_HOST':'', 180 \ 'REMOTE_PORT':'', 181 \ 'SCRIPT_FILENAME':'', 182 \ 'SERVER_ADMIN':'', 183 \ 'SERVER_PORT':'', 184 \ 'SERVER_SIGNATURE':'', 185 \ 'PATH_TRANSLATED':'', 186 \ 'SCRIPT_NAME':'', 187 \ 'REQUEST_URI':'', 188 \ 'PHP_AUTH_DIGEST':'', 189 \ 'PHP_AUTH_USER':'', 190 \ 'PHP_AUTH_PW':'', 191 \ 'AUTH_TYPE':'', 192 \ 'and':'', 193 \ 'or':'', 194 \ 'xor':'', 195 \ '__FILE__':'', 196 \ 'exception':'', 197 \ '__LINE__':'', 198 \ 'as':'', 199 \ 'break':'', 200 \ 'case':'', 201 \ 'class':'', 202 \ 'const':'', 203 \ 'continue':'', 204 \ 'declare':'', 205 \ 'default':'', 206 \ 'do':'', 207 \ 'else':'', 208 \ 'elseif':'', 209 \ 'enddeclare':'', 210 \ 'endfor':'', 211 \ 'endforeach':'', 212 \ 'endif':'', 213 \ 'endswitch':'', 214 \ 'endwhile':'', 215 \ 'extends':'', 216 \ 'for':'', 217 \ 'foreach':'', 218 \ 'function':'', 219 \ 'global':'', 220 \ 'if':'', 221 \ 'new':'', 222 \ 'static':'', 223 \ 'switch':'', 224 \ 'use':'', 225 \ 'var':'', 226 \ 'while':'', 227 \ '__FUNCTION__':'', 228 \ '__CLASS__':'', 229 \ '__METHOD__':'', 230 \ 'final':'', 231 \ 'php_user_filter':'', 232 \ 'interface':'', 233 \ 'implements':'', 234 \ 'public':'', 235 \ 'private':'', 236 \ 'protected':'', 237 \ 'abstract':'', 238 \ 'clone':'', 239 \ 'try':'', 240 \ 'catch':'', 241 \ 'throw':'', 242 \ 'cfunction':'', 243 \ 'old_function':'', 244 \ 'this':'' 245 \ } 246 " }}} 247 248 249 " One big dictionary 250 call extend(int_functions, b:php_builtin_functions) 251 call extend(int_functions, ext_funcs) 252 call extend(int_functions, keywords) 253 let g:fi = copy(int_functions) 254 255 for m in sort(keys(int_functions)) 256 if m =~ '^'.a:base 257 call add(res, m) 258 elseif m =~ a:base 259 call add(res2, m) 260 endif 261 endfor 262 263 let int_list = res + res2 264 265 let other_list = [] 266 for i in int_list 267 let other_list += [{'word':i, 'menu':int_functions[i]}] 268 endfor 269 270 let b:php_menu = other_list 271 272 endif 273 274 " Real completion 275 return b:php_menu 276 endif 277endfunction 278 279function! phpcomplete#LoadData() " {{{ 280let b:php_builtin_functions = 281\ {'abs(': 'mixed number | number', 282\ 'acos(': 'float arg | float', 283\ 'acosh(': 'float arg | float', 284\ 'addcslashes(': 'string str, string charlist | string', 285\ 'addslashes(': 'string str | string', 286\ 'aggregate(': 'object object, string class_name | void', 287\ 'aggregate_info(': 'object object | array', 288\ 'aggregate_methods(': 'object object, string class_name | void', 289\ 'aggregate_methods_by_list(': 'object object, string class_name, array methods_list [, bool exclude] | void', 290\ 'aggregate_methods_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void', 291\ 'aggregate_properties(': 'object object, string class_name | void', 292\ 'aggregate_properties_by_list(': 'object object, string class_name, array properties_list [, bool exclude] | void', 293\ 'aggregate_properties_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void', 294\ 'apache_child_terminate(': 'void | bool', 295\ 'apache_getenv(': 'string variable [, bool walk_to_top] | string', 296\ 'apache_get_modules(': 'void | array', 297\ 'apache_get_version(': 'void | string', 298\ 'apache_lookup_uri(': 'string filename | object', 299\ 'apache_note(': 'string note_name [, string note_value] | string', 300\ 'apache_request_headers(': 'void | array', 301\ 'apache_reset_timeout(': 'void | bool', 302\ 'apache_response_headers(': 'void | array', 303\ 'apache_setenv(': 'string variable, string value [, bool walk_to_top] | int', 304\ 'apd_breakpoint(': 'int debug_level | void', 305\ 'apd_callstack(': 'void | array', 306\ 'apd_clunk(': 'string warning [, string delimiter] | void', 307\ 'apd_continue(': 'int debug_level | void', 308\ 'apd_croak(': 'string warning [, string delimiter] | void', 309\ 'apd_dump_function_table(': 'void | void', 310\ 'apd_dump_persistent_resources(': 'void | array', 311\ 'apd_dump_regular_resources(': 'void | array', 312\ 'apd_echo(': 'string output | void', 313\ 'apd_get_active_symbols(': ' | array', 314\ 'apd_set_pprof_trace(': '[string dump_directory] | void', 315\ 'apd_set_session(': 'int debug_level | void', 316\ 'apd_set_session_trace(': 'int debug_level [, string dump_directory] | void', 317\ 'apd_set_socket_session_trace(': 'string ip_address_or_unix_socket_file, int socket_type, int port, int debug_level | bool', 318\ 'array(': '[mixed ...] | array', 319\ 'array_change_key_case(': 'array input [, int case] | array', 320\ 'array_chunk(': 'array input, int size [, bool preserve_keys] | array', 321\ 'array_combine(': 'array keys, array values | array', 322\ 'array_count_values(': 'array input | array', 323\ 'array_diff(': 'array array1, array array2 [, array ...] | array', 324\ 'array_diff_assoc(': 'array array1, array array2 [, array ...] | array', 325\ 'array_diff_key(': 'array array1, array array2 [, array ...] | array', 326\ 'array_diff_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', 327\ 'array_diff_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', 328\ 'array_fill(': 'int start_index, int num, mixed value | array', 329\ 'array_filter(': 'array input [, callback callback] | array', 330\ 'array_flip(': 'array trans | array', 331\ 'array_intersect(': 'array array1, array array2 [, array ...] | array', 332\ 'array_intersect_assoc(': 'array array1, array array2 [, array ...] | array', 333\ 'array_intersect_key(': 'array array1, array array2 [, array ...] | array', 334\ 'array_intersect_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', 335\ 'array_intersect_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', 336\ 'array_key_exists(': 'mixed key, array search | bool', 337\ 'array_keys(': 'array input [, mixed search_value [, bool strict]] | array', 338\ 'array_map(': 'callback callback, array arr1 [, array ...] | array', 339\ 'array_merge(': 'array array1 [, array array2 [, array ...]] | array', 340\ 'array_merge_recursive(': 'array array1, array array2 [, array ...] | array', 341\ 'array_multisort(': 'array ar1 [, mixed arg [, mixed ... [, array ...]]] | bool', 342\ 'array_pad(': 'array input, int pad_size, mixed pad_value | array', 343\ 'array_pop(': 'array &array | mixed', 344\ 'array_push(': 'array &array, mixed var [, mixed ...] | int', 345\ 'array_rand(': 'array input [, int num_req] | mixed', 346\ 'array_reduce(': 'array input, callback function [, int initial] | mixed', 347\ 'array_reverse(': 'array array [, bool preserve_keys] | array', 348\ 'array_search(': 'mixed needle, array haystack [, bool strict] | mixed', 349\ 'array_shift(': 'array &array | mixed', 350\ 'array_slice(': 'array array, int offset [, int length [, bool preserve_keys]] | array', 351\ 'array_splice(': 'array &input, int offset [, int length [, array replacement]] | array', 352\ 'array_sum(': 'array array | number', 353\ 'array_udiff(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', 354\ 'array_udiff_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', 355\ 'array_udiff_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array', 356\ 'array_uintersect(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', 357\ 'array_uintersect_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', 358\ 'array_uintersect_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array', 359\ 'array_unique(': 'array array | array', 360\ 'array_unshift(': 'array &array, mixed var [, mixed ...] | int', 361\ 'array_values(': 'array input | array', 362\ 'array_walk(': 'array &array, callback funcname [, mixed userdata] | bool', 363\ 'array_walk_recursive(': 'array &input, callback funcname [, mixed userdata] | bool', 364\ 'arsort(': 'array &array [, int sort_flags] | bool', 365\ 'ascii2ebcdic(': 'string ascii_str | int', 366\ 'asin(': 'float arg | float', 367\ 'asinh(': 'float arg | float', 368\ 'asort(': 'array &array [, int sort_flags] | bool', 369\ 'aspell_check(': 'int dictionary_link, string word | bool', 370\ 'aspell_check_raw(': 'int dictionary_link, string word | bool', 371\ 'aspell_new(': 'string master [, string personal] | int', 372\ 'aspell_suggest(': 'int dictionary_link, string word | array', 373\ 'assert(': 'mixed assertion | int', 374\ 'assert_options(': 'int what [, mixed value] | mixed', 375\ 'atan(': 'float arg | float', 376\ 'atan2(': 'float y, float x | float', 377\ 'atanh(': 'float arg | float', 378\ 'base64_decode(': 'string encoded_data | string', 379\ 'base64_encode(': 'string data | string', 380\ 'base_convert(': 'string number, int frombase, int tobase | string', 381\ 'basename(': 'string path [, string suffix] | string', 382\ 'bcadd(': 'string left_operand, string right_operand [, int scale] | string', 383\ 'bccomp(': 'string left_operand, string right_operand [, int scale] | int', 384\ 'bcdiv(': 'string left_operand, string right_operand [, int scale] | string', 385\ 'bcmod(': 'string left_operand, string modulus | string', 386\ 'bcmul(': 'string left_operand, string right_operand [, int scale] | string', 387\ 'bcompiler_load(': 'string filename | bool', 388\ 'bcompiler_load_exe(': 'string filename | bool', 389\ 'bcompiler_parse_class(': 'string class, string callback | bool', 390\ 'bcompiler_read(': 'resource filehandle | bool', 391\ 'bcompiler_write_class(': 'resource filehandle, string className [, string extends] | bool', 392\ 'bcompiler_write_constant(': 'resource filehandle, string constantName | bool', 393\ 'bcompiler_write_exe_footer(': 'resource filehandle, int startpos | bool', 394\ 'bcompiler_write_file(': 'resource filehandle, string filename | bool', 395\ 'bcompiler_write_footer(': 'resource filehandle | bool', 396\ 'bcompiler_write_function(': 'resource filehandle, string functionName | bool', 397\ 'bcompiler_write_functions_from_file(': 'resource filehandle, string fileName | bool', 398\ 'bcompiler_write_header(': 'resource filehandle [, string write_ver] | bool', 399\ 'bcpow(': 'string x, string y [, int scale] | string', 400\ 'bcpowmod(': 'string x, string y, string modulus [, int scale] | string', 401\ 'bcscale(': 'int scale | bool', 402\ 'bcsqrt(': 'string operand [, int scale] | string', 403\ 'bcsub(': 'string left_operand, string right_operand [, int scale] | string', 404\ 'bin2hex(': 'string str | string', 405\ 'bindec(': 'string binary_string | number', 406\ 'bindtextdomain(': 'string domain, string directory | string', 407\ 'bind_textdomain_codeset(': 'string domain, string codeset | string', 408\ 'bzclose(': 'resource bz | int', 409\ 'bzcompress(': 'string source [, int blocksize [, int workfactor]] | string', 410\ 'bzdecompress(': 'string source [, int small] | string', 411\ 'bzerrno(': 'resource bz | int', 412\ 'bzerror(': 'resource bz | array', 413\ 'bzerrstr(': 'resource bz | string', 414\ 'bzflush(': 'resource bz | int', 415\ 'bzopen(': 'string filename, string mode | resource', 416\ 'bzread(': 'resource bz [, int length] | string', 417\ 'bzwrite(': 'resource bz, string data [, int length] | int', 418\ 'cal_days_in_month(': 'int calendar, int month, int year | int', 419\ 'cal_from_jd(': 'int jd, int calendar | array', 420\ 'cal_info(': '[int calendar] | array', 421\ 'call_user_func(': 'callback function [, mixed parameter [, mixed ...]] | mixed', 422\ 'call_user_func_array(': 'callback function, array param_arr | mixed', 423\ 'call_user_method(': 'string method_name, object &obj [, mixed parameter [, mixed ...]] | mixed', 424\ 'call_user_method_array(': 'string method_name, object &obj, array paramarr | mixed', 425\ 'cal_to_jd(': 'int calendar, int month, int day, int year | int', 426\ 'ccvs_add(': 'string session, string invoice, string argtype, string argval | string', 427\ 'ccvs_auth(': 'string session, string invoice | string', 428\ 'ccvs_command(': 'string session, string type, string argval | string', 429\ 'ccvs_count(': 'string session, string type | int', 430\ 'ccvs_delete(': 'string session, string invoice | string', 431\ 'ccvs_done(': 'string sess | string', 432\ 'ccvs_init(': 'string name | string', 433\ 'ccvs_lookup(': 'string session, string invoice, int inum | string', 434\ 'ccvs_new(': 'string session, string invoice | string', 435\ 'ccvs_report(': 'string session, string type | string', 436\ 'ccvs_return(': 'string session, string invoice | string', 437\ 'ccvs_reverse(': 'string session, string invoice | string', 438\ 'ccvs_sale(': 'string session, string invoice | string', 439\ 'ccvs_status(': 'string session, string invoice | string', 440\ 'ccvs_textvalue(': 'string session | string', 441\ 'ccvs_void(': 'string session, string invoice | string', 442\ 'ceil(': 'float value | float', 443\ 'chdir(': 'string directory | bool', 444\ 'checkdate(': 'int month, int day, int year | bool', 445\ 'checkdnsrr(': 'string host [, string type] | int', 446\ 'chgrp(': 'string filename, mixed group | bool', 447\ 'chmod(': 'string filename, int mode | bool', 448\ 'chown(': 'string filename, mixed user | bool', 449\ 'chr(': 'int ascii | string', 450\ 'chroot(': 'string directory | bool', 451\ 'chunk_split(': 'string body [, int chunklen [, string end]] | string', 452\ 'class_exists(': 'string class_name [, bool autoload] | bool', 453\ 'class_implements(': 'object class | array', 454\ 'classkit_import(': 'string filename | array', 455\ 'classkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool', 456\ 'classkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool', 457\ 'classkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool', 458\ 'classkit_method_remove(': 'string classname, string methodname | bool', 459\ 'classkit_method_rename(': 'string classname, string methodname, string newname | bool', 460\ 'class_parents(': 'object class | array', 461\ 'clearstatcache(': 'void | void', 462\ 'closedir(': 'resource dir_handle | void', 463\ 'closelog(': 'void | int', 464\ 'com_addref(': 'void | void', 465\ 'com_create_guid(': 'void | string', 466\ 'com_event_sink(': 'variant comobject, object sinkobject [, mixed sinkinterface] | bool', 467\ 'com_get(': 'resource com_object, string property | mixed', 468\ 'com_get_active_object(': 'string progid [, int code_page] | variant', 469\ 'com_invoke(': 'resource com_object, string function_name [, mixed function_parameters] | mixed', 470\ 'com_isenum(': 'variant com_module | bool', 471\ 'com_load(': 'string module_name [, string server_name [, int codepage]] | resource', 472\ 'com_load_typelib(': 'string typelib_name [, bool case_insensitive] | bool', 473\ 'com_message_pump(': '[int timeoutms] | bool', 474\ 'compact(': 'mixed varname [, mixed ...] | array', 475\ 'com_print_typeinfo(': 'object comobject [, string dispinterface [, bool wantsink]] | bool', 476\ 'com_release(': 'void | void', 477\ 'com_set(': 'resource com_object, string property, mixed value | void', 478\ 'connection_aborted(': 'void | int', 479\ 'connection_status(': 'void | int', 480\ 'connection_timeout(': 'void | bool', 481\ 'constant(': 'string name | mixed', 482\ 'convert_cyr_string(': 'string str, string from, string to | string', 483\ 'convert_uudecode(': 'string data | string', 484\ 'convert_uuencode(': 'string data | string', 485\ 'copy(': 'string source, string dest | bool', 486\ 'cos(': 'float arg | float', 487\ 'cosh(': 'float arg | float', 488\ 'count(': 'mixed var [, int mode] | int', 489\ 'count_chars(': 'string string [, int mode] | mixed', 490\ 'cpdf_add_annotation(': 'int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode] | bool', 491\ 'cpdf_add_outline(': 'int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text | int', 492\ 'cpdf_arc(': 'int pdf_document, float x_coor, float y_coor, float radius, float start, float end [, int mode] | bool', 493\ 'cpdf_begin_text(': 'int pdf_document | bool', 494\ 'cpdf_circle(': 'int pdf_document, float x_coor, float y_coor, float radius [, int mode] | bool', 495\ 'cpdf_clip(': 'int pdf_document | bool', 496\ 'cpdf_close(': 'int pdf_document | bool', 497\ 'cpdf_closepath(': 'int pdf_document | bool', 498\ 'cpdf_closepath_fill_stroke(': 'int pdf_document | bool', 499\ 'cpdf_closepath_stroke(': 'int pdf_document | bool', 500\ 'cpdf_continue_text(': 'int pdf_document, string text | bool', 501\ 'cpdf_curveto(': 'int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode] | bool', 502\ 'cpdf_end_text(': 'int pdf_document | bool', 503\ 'cpdf_fill(': 'int pdf_document | bool', 504\ 'cpdf_fill_stroke(': 'int pdf_document | bool', 505\ 'cpdf_finalize(': 'int pdf_document | bool', 506\ 'cpdf_finalize_page(': 'int pdf_document, int page_number | bool', 507\ 'cpdf_global_set_document_limits(': 'int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects | bool', 508\ '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] | int', 509\ 'cpdf_lineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', 510\ 'cpdf_moveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', 511\ 'cpdf_newpath(': 'int pdf_document | bool', 512\ 'cpdf_open(': 'int compression [, string filename [, array doc_limits]] | int', 513\ 'cpdf_output_buffer(': 'int pdf_document | bool', 514\ 'cpdf_page_init(': 'int pdf_document, int page_number, int orientation, float height, float width [, float unit] | bool', 515\ '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', 516\ 'cpdf_rect(': 'int pdf_document, float x_coor, float y_coor, float width, float height [, int mode] | bool', 517\ 'cpdf_restore(': 'int pdf_document | bool', 518\ 'cpdf_rlineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', 519\ 'cpdf_rmoveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', 520\ 'cpdf_rotate(': 'int pdf_document, float angle | bool', 521\ 'cpdf_rotate_text(': 'int pdfdoc, float angle | bool', 522\ 'cpdf_save(': 'int pdf_document | bool', 523\ 'cpdf_save_to_file(': 'int pdf_document, string filename | bool', 524\ 'cpdf_scale(': 'int pdf_document, float x_scale, float y_scale | bool', 525\ 'cpdf_set_action_url(': 'int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode] | bool', 526\ 'cpdf_set_char_spacing(': 'int pdf_document, float space | bool', 527\ 'cpdf_set_creator(': 'int pdf_document, string creator | bool', 528\ 'cpdf_set_current_page(': 'int pdf_document, int page_number | bool', 529\ 'cpdf_setdash(': 'int pdf_document, float white, float black | bool', 530\ 'cpdf_setflat(': 'int pdf_document, float value | bool', 531\ 'cpdf_set_font(': 'int pdf_document, string font_name, float size, string encoding | bool', 532\ 'cpdf_set_font_directories(': 'int pdfdoc, string pfmdir, string pfbdir | bool', 533\ 'cpdf_set_font_map_file(': 'int pdfdoc, string filename | bool', 534\ 'cpdf_setgray(': 'int pdf_document, float gray_value | bool', 535\ 'cpdf_setgray_fill(': 'int pdf_document, float value | bool', 536\ 'cpdf_setgray_stroke(': 'int pdf_document, float gray_value | bool', 537\ 'cpdf_set_horiz_scaling(': 'int pdf_document, float scale | bool', 538\ 'cpdf_set_keywords(': 'int pdf_document, string keywords | bool', 539\ 'cpdf_set_leading(': 'int pdf_document, float distance | bool', 540\ 'cpdf_setlinecap(': 'int pdf_document, int value | bool', 541\ 'cpdf_setlinejoin(': 'int pdf_document, int value | bool', 542\ 'cpdf_setlinewidth(': 'int pdf_document, float width | bool', 543\ 'cpdf_setmiterlimit(': 'int pdf_document, float value | bool', 544\ 'cpdf_set_page_animation(': 'int pdf_document, int transition, float duration, float direction, int orientation, int inout | bool', 545\ 'cpdf_setrgbcolor(': 'int pdf_document, float red_value, float green_value, float blue_value | bool', 546\ 'cpdf_setrgbcolor_fill(': 'int pdf_document, float red_value, float green_value, float blue_value | bool', 547\ 'cpdf_setrgbcolor_stroke(': 'int pdf_document, float red_value, float green_value, float blue_value | bool', 548\ 'cpdf_set_subject(': 'int pdf_document, string subject | bool', 549\ 'cpdf_set_text_matrix(': 'int pdf_document, array matrix | bool', 550\ 'cpdf_set_text_pos(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', 551\ 'cpdf_set_text_rendering(': 'int pdf_document, int rendermode | bool', 552\ 'cpdf_set_text_rise(': 'int pdf_document, float value | bool', 553\ 'cpdf_set_title(': 'int pdf_document, string title | bool', 554\ 'cpdf_set_viewer_preferences(': 'int pdfdoc, array preferences | bool', 555\ 'cpdf_set_word_spacing(': 'int pdf_document, float space | bool', 556\ 'cpdf_show(': 'int pdf_document, string text | bool', 557\ 'cpdf_show_xy(': 'int pdf_document, string text, float x_coor, float y_coor [, int mode] | bool', 558\ 'cpdf_stringwidth(': 'int pdf_document, string text | float', 559\ 'cpdf_stroke(': 'int pdf_document | bool', 560\ 'cpdf_text(': 'int pdf_document, string text [, float x_coor, float y_coor [, int mode [, float orientation [, int alignmode]]]] | bool', 561\ 'cpdf_translate(': 'int pdf_document, float x_coor, float y_coor | bool', 562\ 'crack_check(': 'resource dictionary, string password | bool', 563\ 'crack_closedict(': '[resource dictionary] | bool', 564\ 'crack_getlastmessage(': 'void | string', 565\ 'crack_opendict(': 'string dictionary | resource', 566\ 'crc32(': 'string str | int', 567\ 'create_function(': 'string args, string code | string', 568\ 'crypt(': 'string str [, string salt] | string', 569\ 'ctype_alnum(': 'string text | bool', 570\ 'ctype_alpha(': 'string text | bool', 571\ 'ctype_cntrl(': 'string text | bool', 572\ 'ctype_digit(': 'string text | bool', 573\ 'ctype_graph(': 'string text | bool', 574\ 'ctype_lower(': 'string text | bool', 575\ 'ctype_print(': 'string text | bool', 576\ 'ctype_punct(': 'string text | bool', 577\ 'ctype_space(': 'string text | bool', 578\ 'ctype_upper(': 'string text | bool', 579\ 'ctype_xdigit(': 'string text | bool', 580\ 'curl_close(': 'resource ch | void', 581\ 'curl_copy_handle(': 'resource ch | resource', 582\ 'curl_errno(': 'resource ch | int', 583\ 'curl_error(': 'resource ch | string', 584\ 'curl_exec(': 'resource ch | mixed', 585\ 'curl_getinfo(': 'resource ch [, int opt] | string', 586\ 'curl_init(': '[string url] | resource', 587\ 'curl_multi_add_handle(': 'resource mh, resource ch | int', 588\ 'curl_multi_close(': 'resource mh | void', 589\ 'curl_multi_exec(': 'resource mh, int &still_running | int', 590\ 'curl_multi_getcontent(': 'resource ch | string', 591\ 'curl_multi_info_read(': 'resource mh | array', 592\ 'curl_multi_init(': 'void | resource', 593\ 'curl_multi_remove_handle(': 'resource mh, resource ch | int', 594\ 'curl_multi_select(': 'resource mh [, float timeout] | int', 595\ 'curl_setopt(': 'resource ch, int option, mixed value | bool', 596\ 'curl_version(': '[int version] | string', 597\ 'current(': 'array &array | mixed', 598\ 'cybercash_base64_decode(': 'string inbuff | string', 599\ 'cybercash_base64_encode(': 'string inbuff | string', 600\ 'cybercash_decr(': 'string wmk, string sk, string inbuff | array', 601\ 'cybercash_encr(': 'string wmk, string sk, string inbuff | array', 602\ 'cyrus_authenticate(': 'resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf [, string authname [, string password]]]]]]] | bool', 603\ 'cyrus_bind(': 'resource connection, array callbacks | bool', 604\ 'cyrus_close(': 'resource connection | bool', 605\ 'cyrus_connect(': '[string host [, string port [, int flags]]] | resource', 606\ 'cyrus_query(': 'resource connection, string query | bool', 607\ 'cyrus_unbind(': 'resource connection, string trigger_name | bool', 608\ 'date(': 'string format [, int timestamp] | string', 609\ 'date_sunrise(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed', 610\ 'date_sunset(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed', 611\ 'dba_close(': 'resource handle | void', 612\ 'dba_delete(': 'string key, resource handle | bool', 613\ 'dba_exists(': 'string key, resource handle | bool', 614\ 'dba_fetch(': 'string key, resource handle | string', 615\ 'dba_firstkey(': 'resource handle | string', 616\ 'dba_handlers(': '[bool full_info] | array', 617\ 'dba_insert(': 'string key, string value, resource handle | bool', 618\ 'dba_key_split(': 'mixed key | mixed', 619\ 'dba_list(': 'void | array', 620\ 'dba_nextkey(': 'resource handle | string', 621\ 'dba_open(': 'string path, string mode, string handler [, ...] | resource', 622\ 'dba_optimize(': 'resource handle | bool', 623\ 'dba_popen(': 'string path, string mode, string handler [, ...] | resource', 624\ 'dba_replace(': 'string key, string value, resource handle | bool', 625\ 'dbase_add_record(': 'int dbase_identifier, array record | bool', 626\ 'dbase_close(': 'int dbase_identifier | bool', 627\ 'dbase_create(': 'string filename, array fields | int', 628\ 'dbase_delete_record(': 'int dbase_identifier, int record_number | bool', 629\ 'dbase_get_header_info(': 'int dbase_identifier | array', 630\ 'dbase_get_record(': 'int dbase_identifier, int record_number | array', 631\ 'dbase_get_record_with_names(': 'int dbase_identifier, int record_number | array', 632\ 'dbase_numfields(': 'int dbase_identifier | int', 633\ 'dbase_numrecords(': 'int dbase_identifier | int', 634\ 'dbase_open(': 'string filename, int mode | int', 635\ 'dbase_pack(': 'int dbase_identifier | bool', 636\ 'dbase_replace_record(': 'int dbase_identifier, array record, int record_number | bool', 637\ 'dba_sync(': 'resource handle | bool', 638\ 'dblist(': 'void | string', 639\ 'dbmclose(': 'resource dbm_identifier | bool', 640\ 'dbmdelete(': 'resource dbm_identifier, string key | bool', 641\ 'dbmexists(': 'resource dbm_identifier, string key | bool', 642\ 'dbmfetch(': 'resource dbm_identifier, string key | string', 643\ 'dbmfirstkey(': 'resource dbm_identifier | string', 644\ 'dbminsert(': 'resource dbm_identifier, string key, string value | int', 645\ 'dbmnextkey(': 'resource dbm_identifier, string key | string', 646\ 'dbmopen(': 'string filename, string flags | resource', 647\ 'dbmreplace(': 'resource dbm_identifier, string key, string value | int', 648\ 'dbplus_add(': 'resource relation, array tuple | int', 649\ 'dbplus_aql(': 'string query [, string server [, string dbpath]] | resource', 650\ 'dbplus_chdir(': '[string newdir] | string', 651\ 'dbplus_close(': 'resource relation | int', 652\ 'dbplus_curr(': 'resource relation, array &tuple | int', 653\ 'dbplus_errcode(': '[int errno] | string', 654\ 'dbplus_errno(': 'void | int', 655\ 'dbplus_find(': 'resource relation, array constraints, mixed tuple | int', 656\ 'dbplus_first(': 'resource relation, array &tuple | int', 657\ 'dbplus_flush(': 'resource relation | int', 658\ 'dbplus_freealllocks(': 'void | int', 659\ 'dbplus_freelock(': 'resource relation, string tname | int', 660\ 'dbplus_freerlocks(': 'resource relation | int', 661\ 'dbplus_getlock(': 'resource relation, string tname | int', 662\ 'dbplus_getunique(': 'resource relation, int uniqueid | int', 663\ 'dbplus_info(': 'resource relation, string key, array &result | int', 664\ 'dbplus_last(': 'resource relation, array &tuple | int', 665\ 'dbplus_lockrel(': 'resource relation | int', 666\ 'dbplus_next(': 'resource relation, array &tuple | int', 667\ 'dbplus_open(': 'string name | resource', 668\ 'dbplus_prev(': 'resource relation, array &tuple | int', 669\ 'dbplus_rchperm(': 'resource relation, int mask, string user, string group | int', 670\ 'dbplus_rcreate(': 'string name, mixed domlist [, bool overwrite] | resource', 671\ 'dbplus_rcrtexact(': 'string name, resource relation [, bool overwrite] | resource', 672\ 'dbplus_rcrtlike(': 'string name, resource relation [, int overwrite] | resource', 673\ 'dbplus_resolve(': 'string relation_name | int', 674\ 'dbplus_restorepos(': 'resource relation, array tuple | int', 675\ 'dbplus_rkeys(': 'resource relation, mixed domlist | resource', 676\ 'dbplus_ropen(': 'string name | resource', 677\ 'dbplus_rquery(': 'string query [, string dbpath] | int', 678\ 'dbplus_rrename(': 'resource relation, string name | int', 679\ 'dbplus_rsecindex(': 'resource relation, mixed domlist, int type | resource', 680\ 'dbplus_runlink(': 'resource relation | int', 681\ 'dbplus_rzap(': 'resource relation | int', 682\ 'dbplus_savepos(': 'resource relation | int', 683\ 'dbplus_setindex(': 'resource relation, string idx_name | int', 684\ 'dbplus_setindexbynumber(': 'resource relation, int idx_number | int', 685\ 'dbplus_sql(': 'string query [, string server [, string dbpath]] | resource', 686\ 'dbplus_tcl(': 'int sid, string script | int', 687\ 'dbplus_tremove(': 'resource relation, array tuple [, array ¤t] | int', 688\ 'dbplus_undo(': 'resource relation | int', 689\ 'dbplus_undoprepare(': 'resource relation | int', 690\ 'dbplus_unlockrel(': 'resource relation | int', 691\ 'dbplus_unselect(': 'resource relation | int', 692\ 'dbplus_update(': 'resource relation, array old, array new | int', 693\ 'dbplus_xlockrel(': 'resource relation | int', 694\ 'dbplus_xunlockrel(': 'resource relation | int', 695\ 'dbx_close(': 'object link_identifier | bool', 696\ 'dbx_compare(': 'array row_a, array row_b, string column_key [, int flags] | int', 697\ 'dbx_connect(': 'mixed module, string host, string database, string username, string password [, int persistent] | object', 698\ 'dbx_error(': 'object link_identifier | string', 699\ 'dbx_escape_string(': 'object link_identifier, string text | string', 700\ 'dbx_fetch_row(': 'object result_identifier | object', 701\ 'dbx_query(': 'object link_identifier, string sql_statement [, int flags] | object', 702\ 'dbx_sort(': 'object result, string user_compare_function | bool', 703\ 'dcgettext(': 'string domain, string message, int category | string', 704\ 'dcngettext(': 'string domain, string msgid1, string msgid2, int n, int category | string', 705\ 'deaggregate(': 'object object [, string class_name] | void', 706\ 'debug_backtrace(': 'void | array', 707\ 'debugger_off(': 'void | int', 708\ 'debugger_on(': 'string address | int', 709\ 'debug_print_backtrace(': 'void | void', 710\ 'debug_zval_dump(': 'mixed variable | void', 711\ 'decbin(': 'int number | string', 712\ 'dechex(': 'int number | string', 713\ 'decoct(': 'int number | string', 714\ 'define(': 'string name, mixed value [, bool case_insensitive] | bool', 715\ 'defined(': 'string name | bool', 716\ 'define_syslog_variables(': 'void | void', 717\ 'deg2rad(': 'float number | float', 718\ 'delete(': 'string file | void', 719\ 'dgettext(': 'string domain, string message | string', 720\ 'dio_close(': 'resource fd | void', 721\ 'dio_fcntl(': 'resource fd, int cmd [, mixed args] | mixed', 722\ 'dio_open(': 'string filename, int flags [, int mode] | resource', 723\ 'dio_read(': 'resource fd [, int n] | string', 724\ 'dio_seek(': 'resource fd, int pos [, int whence] | int', 725\ 'dio_stat(': 'resource fd | array', 726\ 'dio_tcsetattr(': 'resource fd, array options | void', 727\ 'dio_truncate(': 'resource fd, int offset | bool', 728\ 'dio_write(': 'resource fd, string data [, int len] | int', 729\ 'dirname(': 'string path | string', 730\ 'disk_free_space(': 'string directory | float', 731\ 'disk_total_space(': 'string directory | float', 732\ 'dl(': 'string library | int', 733\ 'dngettext(': 'string domain, string msgid1, string msgid2, int n | string', 734\ 'dns_check_record(': 'string host [, string type] | int', 735\ 'dns_get_mx(': 'string hostname, array &mxhosts [, array &weight] | int', 736\ 'dns_get_record(': 'string hostname [, int type [, array &authns, array &addtl]] | array', 737\ 'dom_import_simplexml(': 'SimpleXMLElement node | DOMElement', 738\ 'domxml_new_doc(': 'string version | domdocument', 739\ 'domxml_open_file(': 'string filename [, int mode [, array &error]] | domdocument', 740\ 'domxml_open_mem(': 'string str [, int mode [, array &error]] | domdocument', 741\ 'domxml_version(': 'void | string', 742\ 'domxml_xmltree(': 'string str | domdocument', 743\ 'domxml_xslt_stylesheet(': 'string xsl_document | XsltStylesheet', 744\ 'domxml_xslt_stylesheet_doc(': 'domdocument DocDocumentObject | XsltStylesheet', 745\ 'domxml_xslt_stylesheet_file(': 'string xsl_file | XsltStylesheet', 746\ 'dotnet_load(': 'string assembly_name [, string datatype_name [, int codepage]] | int', 747\ 'each(': 'array &array | array', 748\ 'easter_date(': '[int year] | int', 749\ 'easter_days(': '[int year [, int method]] | int', 750\ 'ebcdic2ascii(': 'string ebcdic_str | int', 751\ 'echo(': 'string arg1 [, string ...] | void', 752\ 'empty(': 'mixed var | bool', 753\ 'end(': 'array &array | mixed', 754\ 'ereg(': 'string pattern, string string [, array ®s] | int', 755\ 'eregi(': 'string pattern, string string [, array ®s] | int', 756\ 'eregi_replace(': 'string pattern, string replacement, string string | string', 757\ 'ereg_replace(': 'string pattern, string replacement, string string | string', 758\ 'error_log(': 'string message [, int message_type [, string destination [, string extra_headers]]] | int', 759\ 'error_reporting(': '[int level] | int', 760\ 'escapeshellarg(': 'string arg | string', 761\ 'escapeshellcmd(': 'string command | string', 762\ 'eval(': 'string code_str | mixed', 763\ 'exec(': 'string command [, array &output [, int &return_var]] | string', 764\ 'exif_imagetype(': 'string filename | int', 765\ 'exif_read_data(': 'string filename [, string sections [, bool arrays [, bool thumbnail]]] | array', 766\ 'exif_tagname(': 'string index | string', 767\ 'exif_thumbnail(': 'string filename [, int &width [, int &height [, int &imagetype]]] | string', 768\ 'exit(': '[string status] | void', 769\ 'exp(': 'float arg | float', 770\ 'explode(': 'string separator, string string [, int limit] | array', 771\ 'expm1(': 'float number | float', 772\ 'extension_loaded(': 'string name | bool', 773\ 'extract(': 'array var_array [, int extract_type [, string prefix]] | int', 774\ 'ezmlm_hash(': 'string addr | int', 775\ 'fam_cancel_monitor(': 'resource fam, resource fam_monitor | bool', 776\ 'fam_close(': 'resource fam | void', 777\ 'fam_monitor_collection(': 'resource fam, string dirname, int depth, string mask | resource', 778\ 'fam_monitor_directory(': 'resource fam, string dirname | resource', 779\ 'fam_monitor_file(': 'resource fam, string filename | resource', 780\ 'fam_next_event(': 'resource fam | array', 781\ 'fam_open(': '[string appname] | resource', 782\ 'fam_pending(': 'resource fam | bool', 783\ 'fam_resume_monitor(': 'resource fam, resource fam_monitor | bool', 784\ 'fam_suspend_monitor(': 'resource fam, resource fam_monitor | bool', 785\ 'fbsql_affected_rows(': '[resource link_identifier] | int', 786\ 'fbsql_autocommit(': 'resource link_identifier [, bool OnOff] | bool', 787\ 'fbsql_blob_size(': 'string blob_handle [, resource link_identifier] | int', 788\ 'fbsql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | resource', 789\ 'fbsql_clob_size(': 'string clob_handle [, resource link_identifier] | int', 790\ 'fbsql_close(': '[resource link_identifier] | bool', 791\ 'fbsql_commit(': '[resource link_identifier] | bool', 792\ 'fbsql_connect(': '[string hostname [, string username [, string password]]] | resource', 793\ 'fbsql_create_blob(': 'string blob_data [, resource link_identifier] | string', 794\ 'fbsql_create_clob(': 'string clob_data [, resource link_identifier] | string', 795\ 'fbsql_create_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool', 796\ 'fbsql_database(': 'resource link_identifier [, string database] | string', 797\ 'fbsql_database_password(': 'resource link_identifier [, string database_password] | string', 798\ 'fbsql_data_seek(': 'resource result_identifier, int row_number | bool', 799\ 'fbsql_db_query(': 'string database, string query [, resource link_identifier] | resource', 800\ 'fbsql_db_status(': 'string database_name [, resource link_identifier] | int', 801\ 'fbsql_drop_db(': 'string database_name [, resource link_identifier] | bool', 802\ 'fbsql_errno(': '[resource link_identifier] | int', 803\ 'fbsql_error(': '[resource link_identifier] | string', 804\ 'fbsql_fetch_array(': 'resource result [, int result_type] | array', 805\ 'fbsql_fetch_assoc(': 'resource result | array', 806\ 'fbsql_fetch_field(': 'resource result [, int field_offset] | object', 807\ 'fbsql_fetch_lengths(': 'resource result | array', 808\ 'fbsql_fetch_object(': 'resource result [, int result_type] | object', 809\ 'fbsql_fetch_row(': 'resource result | array', 810\ 'fbsql_field_flags(': 'resource result [, int field_offset] | string', 811\ 'fbsql_field_len(': 'resource result [, int field_offset] | int', 812\ 'fbsql_field_name(': 'resource result [, int field_index] | string', 813\ 'fbsql_field_seek(': 'resource result [, int field_offset] | bool', 814\ 'fbsql_field_table(': 'resource result [, int field_offset] | string', 815\ 'fbsql_field_type(': 'resource result [, int field_offset] | string', 816\ 'fbsql_free_result(': 'resource result | bool', 817\ 'fbsql_get_autostart_info(': '[resource link_identifier] | array', 818\ 'fbsql_hostname(': 'resource link_identifier [, string host_name] | string', 819\ 'fbsql_insert_id(': '[resource link_identifier] | int', 820\ 'fbsql_list_dbs(': '[resource link_identifier] | resource', 821\ 'fbsql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource', 822\ 'fbsql_list_tables(': 'string database [, resource link_identifier] | resource', 823\ 'fbsql_next_result(': 'resource result_id | bool', 824\ 'fbsql_num_fields(': 'resource result | int', 825\ 'fbsql_num_rows(': 'resource result | int', 826\ 'fbsql_password(': 'resource link_identifier [, string password] | string', 827\ 'fbsql_pconnect(': '[string hostname [, string username [, string password]]] | resource', 828\ 'fbsql_query(': 'string query [, resource link_identifier [, int batch_size]] | resource', 829\ 'fbsql_read_blob(': 'string blob_handle [, resource link_identifier] | string', 830\ 'fbsql_read_clob(': 'string clob_handle [, resource link_identifier] | string', 831\ 'fbsql_result(': 'resource result [, int row [, mixed field]] | mixed', 832\ 'fbsql_rollback(': '[resource link_identifier] | bool', 833\ 'fbsql_select_db(': '[string database_name [, resource link_identifier]] | bool', 834\ 'fbsql_set_lob_mode(': 'resource result, string database_name | bool', 835\ 'fbsql_set_password(': 'resource link_identifier, string user, string password, string old_password | bool', 836\ 'fbsql_set_transaction(': 'resource link_identifier, int Locking, int Isolation | void', 837\ 'fbsql_start_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool', 838\ 'fbsql_stop_db(': 'string database_name [, resource link_identifier] | bool', 839\ 'fbsql_tablename(': 'resource result, int i | string', 840\ 'fbsql_username(': 'resource link_identifier [, string username] | string', 841\ 'fbsql_warnings(': '[bool OnOff] | bool', 842\ 'fclose(': 'resource handle | bool', 843\ 'fdf_add_doc_javascript(': 'resource fdfdoc, string script_name, string script_code | bool', 844\ 'fdf_add_template(': 'resource fdfdoc, int newpage, string filename, string template, int rename | bool', 845\ 'fdf_close(': 'resource fdf_document | bool', 846\ 'fdf_create(': 'void | resource', 847\ 'fdf_enum_values(': 'resource fdfdoc, callback function [, mixed userdata] | bool', 848\ 'fdf_errno(': 'void | int', 849\ 'fdf_error(': '[int error_code] | string', 850\ 'fdf_get_ap(': 'resource fdf_document, string field, int face, string filename | bool', 851\ 'fdf_get_attachment(': 'resource fdf_document, string fieldname, string savepath | array', 852\ 'fdf_get_encoding(': 'resource fdf_document | string', 853\ 'fdf_get_file(': 'resource fdf_document | string', 854\ 'fdf_get_flags(': 'resource fdfdoc, string fieldname, int whichflags | int', 855\ 'fdf_get_opt(': 'resource fdfdof, string fieldname [, int element] | mixed', 856\ 'fdf_get_status(': 'resource fdf_document | string', 857\ 'fdf_get_value(': 'resource fdf_document, string fieldname [, int which] | string', 858\ 'fdf_get_version(': '[resource fdf_document] | string', 859\ 'fdf_header(': 'void | bool', 860\ 'fdf_next_field_name(': 'resource fdf_document [, string fieldname] | string', 861\ 'fdf_open(': 'string filename | resource', 862\ 'fdf_open_string(': 'string fdf_data | resource', 863\ 'fdf_remove_item(': 'resource fdfdoc, string fieldname, int item | bool', 864\ 'fdf_save(': 'resource fdf_document [, string filename] | bool', 865\ 'fdf_save_string(': 'resource fdf_document | string', 866\ 'fdf_set_ap(': 'resource fdf_document, string field_name, int face, string filename, int page_number | bool', 867\ 'fdf_set_encoding(': 'resource fdf_document, string encoding | bool', 868\ 'fdf_set_file(': 'resource fdf_document, string url [, string target_frame] | bool', 869\ 'fdf_set_flags(': 'resource fdf_document, string fieldname, int whichFlags, int newFlags | bool', 870\ 'fdf_set_javascript_action(': 'resource fdf_document, string fieldname, int trigger, string script | bool', 871\ 'fdf_set_on_import_javascript(': 'resource fdfdoc, string script [, bool before_data_import] | bool', 872\ 'fdf_set_opt(': 'resource fdf_document, string fieldname, int element, string str1, string str2 | bool', 873\ 'fdf_set_status(': 'resource fdf_document, string status | bool', 874\ 'fdf_set_submit_form_action(': 'resource fdf_document, string fieldname, int trigger, string script, int flags | bool', 875\ 'fdf_set_target_frame(': 'resource fdf_document, string frame_name | bool', 876\ 'fdf_set_value(': 'resource fdf_document, string fieldname, mixed value [, int isName] | bool', 877\ 'fdf_set_version(': 'resource fdf_document, string version | string', 878\ 'feof(': 'resource handle | bool', 879\ 'fflush(': 'resource handle | bool', 880\ 'fgetc(': 'resource handle | string', 881\ 'fgetcsv(': 'resource handle [, int length [, string delimiter [, string enclosure]]] | array', 882\ 'fgets(': 'resource handle [, int length] | string', 883\ 'fgetss(': 'resource handle [, int length [, string allowable_tags]] | string', 884\ 'file(': 'string filename [, int use_include_path [, resource context]] | array', 885\ 'fileatime(': 'string filename | int', 886\ 'filectime(': 'string filename | int', 887\ 'file_exists(': 'string filename | bool', 888\ 'file_get_contents(': 'string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]] | string', 889\ 'filegroup(': 'string filename | int', 890\ 'fileinode(': 'string filename | int', 891\ 'filemtime(': 'string filename | int', 892\ 'fileowner(': 'string filename | int', 893\ 'fileperms(': 'string filename | int', 894\ 'filepro(': 'string directory | bool', 895\ 'filepro_fieldcount(': 'void | int', 896\ 'filepro_fieldname(': 'int field_number | string', 897\ 'filepro_fieldtype(': 'int field_number | string', 898\ 'filepro_fieldwidth(': 'int field_number | int', 899\ 'filepro_retrieve(': 'int row_number, int field_number | string', 900\ 'filepro_rowcount(': 'void | int', 901\ 'file_put_contents(': 'string filename, mixed data [, int flags [, resource context]] | int', 902\ 'filesize(': 'string filename | int', 903\ 'filetype(': 'string filename | string', 904\ 'floatval(': 'mixed var | float', 905\ 'flock(': 'resource handle, int operation [, int &wouldblock] | bool', 906\ 'floor(': 'float value | float', 907\ 'flush(': 'void | void', 908\ 'fmod(': 'float x, float y | float', 909\ 'fnmatch(': 'string pattern, string string [, int flags] | bool', 910\ 'fopen(': 'string filename, string mode [, bool use_include_path [, resource zcontext]] | resource', 911\ 'fpassthru(': 'resource handle | int', 912\ 'fprintf(': 'resource handle, string format [, mixed args [, mixed ...]] | int', 913\ 'fputcsv(': 'resource handle [, array fields [, string delimiter [, string enclosure]]] | int', 914\ 'fread(': 'resource handle, int length | string', 915\ 'frenchtojd(': 'int month, int day, int year | int', 916\ 'fribidi_log2vis(': 'string str, string direction, int charset | string', 917\ 'fscanf(': 'resource handle, string format [, mixed &...] | mixed', 918\ 'fseek(': 'resource handle, int offset [, int whence] | int', 919\ 'fsockopen(': 'string target, int port [, int &errno [, string &errstr [, float timeout]]] | resource', 920\ 'fstat(': 'resource handle | array', 921\ 'ftell(': 'resource handle | int', 922\ 'ftok(': 'string pathname, string proj | int', 923\ 'ftp_alloc(': 'resource ftp_stream, int filesize [, string &result] | bool', 924\ 'ftp_cdup(': 'resource ftp_stream | bool', 925\ 'ftp_chdir(': 'resource ftp_stream, string directory | bool', 926\ 'ftp_chmod(': 'resource ftp_stream, int mode, string filename | int', 927\ 'ftp_close(': 'resource ftp_stream | bool', 928\ 'ftp_connect(': 'string host [, int port [, int timeout]] | resource', 929\ 'ftp_delete(': 'resource ftp_stream, string path | bool', 930\ 'ftp_exec(': 'resource ftp_stream, string command | bool', 931\ 'ftp_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | bool', 932\ 'ftp_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | bool', 933\ 'ftp_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | bool', 934\ 'ftp_get_option(': 'resource ftp_stream, int option | mixed', 935\ 'ftp_login(': 'resource ftp_stream, string username, string password | bool', 936\ 'ftp_mdtm(': 'resource ftp_stream, string remote_file | int', 937\ 'ftp_mkdir(': 'resource ftp_stream, string directory | string', 938\ 'ftp_nb_continue(': 'resource ftp_stream | int', 939\ 'ftp_nb_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | int', 940\ 'ftp_nb_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | int', 941\ 'ftp_nb_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | int', 942\ 'ftp_nb_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | int', 943\ 'ftp_nlist(': 'resource ftp_stream, string directory | array', 944\ 'ftp_pasv(': 'resource ftp_stream, bool pasv | bool', 945\ 'ftp_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | bool', 946\ 'ftp_pwd(': 'resource ftp_stream | string', 947\ 'ftp_raw(': 'resource ftp_stream, string command | array', 948\ 'ftp_rawlist(': 'resource ftp_stream, string directory [, bool recursive] | array', 949\ 'ftp_rename(': 'resource ftp_stream, string oldname, string newname | bool', 950\ 'ftp_rmdir(': 'resource ftp_stream, string directory | bool', 951\ 'ftp_set_option(': 'resource ftp_stream, int option, mixed value | bool', 952\ 'ftp_site(': 'resource ftp_stream, string command | bool', 953\ 'ftp_size(': 'resource ftp_stream, string remote_file | int', 954\ 'ftp_ssl_connect(': 'string host [, int port [, int timeout]] | resource', 955\ 'ftp_systype(': 'resource ftp_stream | string', 956\ 'ftruncate(': 'resource handle, int size | bool', 957\ 'func_get_arg(': 'int arg_num | mixed', 958\ 'func_get_args(': 'void | array', 959\ 'func_num_args(': 'void | int', 960\ 'function_exists(': 'string function_name | bool', 961\ 'fwrite(': 'resource handle, string string [, int length] | int', 962\ 'gd_info(': 'void | array', 963\ 'getallheaders(': 'void | array', 964\ 'get_browser(': '[string user_agent [, bool return_array]] | object', 965\ 'get_cfg_var(': 'string varname | string', 966\ 'get_class(': 'object obj | string', 967\ 'get_class_methods(': 'mixed class_name | array', 968\ 'get_class_vars(': 'string class_name | array', 969\ 'get_current_user(': 'void | string', 970\ 'getcwd(': 'void | string', 971\ 'getdate(': '[int timestamp] | array', 972\ 'get_declared_classes(': 'void | array', 973\ 'get_declared_interfaces(': 'void | array', 974\ 'get_defined_constants(': '[mixed categorize] | array', 975\ 'get_defined_functions(': 'void | array', 976\ 'get_defined_vars(': 'void | array', 977\ 'getenv(': 'string varname | string', 978\ 'get_extension_funcs(': 'string module_name | array', 979\ 'get_headers(': 'string url [, int format] | array', 980\ 'gethostbyaddr(': 'string ip_address | string', 981\ 'gethostbyname(': 'string hostname | string', 982\ 'gethostbynamel(': 'string hostname | array', 983\ 'get_html_translation_table(': '[int table [, int quote_style]] | array', 984\ 'getimagesize(': 'string filename [, array &imageinfo] | array', 985\ 'get_included_files(': 'void | array', 986\ 'get_include_path(': 'void | string', 987\ 'getlastmod(': 'void | int', 988\ 'get_loaded_extensions(': 'void | array', 989\ 'get_magic_quotes_gpc(': 'void | int', 990\ 'get_magic_quotes_runtime(': 'void | int', 991\ 'get_meta_tags(': 'string filename [, bool use_include_path] | array', 992\ 'getmxrr(': 'string hostname, array &mxhosts [, array &weight] | bool', 993\ 'getmygid(': 'void | int', 994\ 'getmyinode(': 'void | int', 995\ 'getmypid(': 'void | int', 996\ 'getmyuid(': 'void | int', 997\ 'get_object_vars(': 'object obj | array', 998\ 'getopt(': 'string options [, array longopts] | array', 999\ 'get_parent_class(': 'mixed obj | string', 1000\ 'getprotobyname(': 'string name | int', 1001\ 'getprotobynumber(': 'int number | string', 1002\ 'getrandmax(': 'void | int', 1003\ 'get_resource_type(': 'resource handle | string', 1004\ 'getrusage(': '[int who] | array', 1005\ 'getservbyname(': 'string service, string protocol | int', 1006\ 'getservbyport(': 'int port, string protocol | string', 1007\ 'gettext(': 'string message | string', 1008\ 'gettimeofday(': '[bool return_float] | mixed', 1009\ 'gettype(': 'mixed var | string', 1010\ 'glob(': 'string pattern [, int flags] | array', 1011\ 'gmdate(': 'string format [, int timestamp] | string', 1012\ 'gmmktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int', 1013\ 'gmp_abs(': 'resource a | resource', 1014\ 'gmp_add(': 'resource a, resource b | resource', 1015\ 'gmp_and(': 'resource a, resource b | resource', 1016\ 'gmp_clrbit(': 'resource &a, int index | void', 1017\ 'gmp_cmp(': 'resource a, resource b | int', 1018\ 'gmp_com(': 'resource a | resource', 1019\ 'gmp_divexact(': 'resource n, resource d | resource', 1020\ 'gmp_div_q(': 'resource a, resource b [, int round] | resource', 1021\ 'gmp_div_qr(': 'resource n, resource d [, int round] | array', 1022\ 'gmp_div_r(': 'resource n, resource d [, int round] | resource', 1023\ 'gmp_fact(': 'int a | resource', 1024\ 'gmp_gcd(': 'resource a, resource b | resource', 1025\ 'gmp_gcdext(': 'resource a, resource b | array', 1026\ 'gmp_hamdist(': 'resource a, resource b | int', 1027\ 'gmp_init(': 'mixed number [, int base] | resource', 1028\ 'gmp_intval(': 'resource gmpnumber | int', 1029\ 'gmp_invert(': 'resource a, resource b | resource', 1030\ 'gmp_jacobi(': 'resource a, resource p | int', 1031\ 'gmp_legendre(': 'resource a, resource p | int', 1032\ 'gmp_mod(': 'resource n, resource d | resource', 1033\ 'gmp_mul(': 'resource a, resource b | resource', 1034\ 'gmp_neg(': 'resource a | resource', 1035\ 'gmp_or(': 'resource a, resource b | resource', 1036\ 'gmp_perfect_square(': 'resource a | bool', 1037\ 'gmp_popcount(': 'resource a | int', 1038\ 'gmp_pow(': 'resource base, int exp | resource', 1039\ 'gmp_powm(': 'resource base, resource exp, resource mod | resource', 1040\ 'gmp_prob_prime(': 'resource a [, int reps] | int', 1041\ 'gmp_random(': 'int limiter | resource', 1042\ 'gmp_scan0(': 'resource a, int start | int', 1043\ 'gmp_scan1(': 'resource a, int start | int', 1044\ 'gmp_setbit(': 'resource &a, int index [, bool set_clear] | void', 1045\ 'gmp_sign(': 'resource a | int', 1046\ 'gmp_sqrt(': 'resource a | resource', 1047\ 'gmp_sqrtrem(': 'resource a | array', 1048\ 'gmp_strval(': 'resource gmpnumber [, int base] | string', 1049\ 'gmp_sub(': 'resource a, resource b | resource', 1050\ 'gmp_xor(': 'resource a, resource b | resource', 1051\ 'gmstrftime(': 'string format [, int timestamp] | string', 1052\ 'gregoriantojd(': 'int month, int day, int year | int', 1053\ 'gzclose(': 'resource zp | bool', 1054\ 'gzcompress(': 'string data [, int level] | string', 1055\ 'gzdeflate(': 'string data [, int level] | string', 1056\ 'gzencode(': 'string data [, int level [, int encoding_mode]] | string', 1057\ 'gzeof(': 'resource zp | int', 1058\ 'gzfile(': 'string filename [, int use_include_path] | array', 1059\ 'gzgetc(': 'resource zp | string', 1060\ 'gzgets(': 'resource zp, int length | string', 1061\ 'gzgetss(': 'resource zp, int length [, string allowable_tags] | string', 1062\ 'gzinflate(': 'string data [, int length] | string', 1063\ 'gzopen(': 'string filename, string mode [, int use_include_path] | resource', 1064\ 'gzpassthru(': 'resource zp | int', 1065\ 'gzread(': 'resource zp, int length | string', 1066\ 'gzrewind(': 'resource zp | bool', 1067\ 'gzseek(': 'resource zp, int offset | int', 1068\ 'gztell(': 'resource zp | int', 1069\ 'gzuncompress(': 'string data [, int length] | string', 1070\ 'gzwrite(': 'resource zp, string string [, int length] | int', 1071\ 'header(': 'string string [, bool replace [, int http_response_code]] | void', 1072\ 'headers_list(': 'void | array', 1073\ 'headers_sent(': '[string &file [, int &line]] | bool', 1074\ 'hebrev(': 'string hebrew_text [, int max_chars_per_line] | string', 1075\ 'hebrevc(': 'string hebrew_text [, int max_chars_per_line] | string', 1076\ 'hexdec(': 'string hex_string | number', 1077\ 'highlight_file(': 'string filename [, bool return] | mixed', 1078\ 'highlight_string(': 'string str [, bool return] | mixed', 1079\ 'htmlentities(': 'string string [, int quote_style [, string charset]] | string', 1080\ 'html_entity_decode(': 'string string [, int quote_style [, string charset]] | string', 1081\ 'htmlspecialchars(': 'string string [, int quote_style [, string charset]] | string', 1082\ 'htmlspecialchars_decode(': 'string string [, int quote_style] | string', 1083\ 'http_build_query(': 'array formdata [, string numeric_prefix] | string', 1084\ 'hw_api_attribute(': '[string name [, string value]] | HW_API_Attribute', 1085\ 'hwapi_hgcsp(': 'string hostname [, int port] | HW_API', 1086\ 'hw_api_content(': 'string content, string mimetype | HW_API_Content', 1087\ 'hw_api_object(': 'array parameter | hw_api_object', 1088\ 'hw_array2objrec(': 'array object_array | string', 1089\ 'hw_changeobject(': 'int link, int objid, array attributes | void', 1090\ 'hw_children(': 'int connection, int objectID | array', 1091\ 'hw_childrenobj(': 'int connection, int objectID | array', 1092\ 'hw_close(': 'int connection | int', 1093\ 'hw_connect(': 'string host, int port, string username, string password | int', 1094\ 'hw_connection_info(': 'int link | void', 1095\ 'hw_cp(': 'int connection, array object_id_array, int destination_id | int', 1096\ 'hw_deleteobject(': 'int connection, int object_to_delete | int', 1097\ 'hw_docbyanchor(': 'int connection, int anchorID | int', 1098\ 'hw_docbyanchorobj(': 'int connection, int anchorID | string', 1099\ 'hw_document_attributes(': 'int hw_document | string', 1100\ 'hw_document_bodytag(': 'int hw_document [, string prefix] | string', 1101\ 'hw_document_content(': 'int hw_document | string', 1102\ 'hw_document_setcontent(': 'int hw_document, string content | string', 1103\ 'hw_document_size(': 'int hw_document | int', 1104\ 'hw_dummy(': 'int link, int id, int msgid | string', 1105\ 'hw_edittext(': 'int connection, int hw_document | int', 1106\ 'hw_error(': 'int connection | int', 1107\ 'hw_errormsg(': 'int connection | string', 1108\ 'hw_free_document(': 'int hw_document | int', 1109\ 'hw_getanchors(': 'int connection, int objectID | array', 1110\ 'hw_getanchorsobj(': 'int connection, int objectID | array', 1111\ 'hw_getandlock(': 'int connection, int objectID | string', 1112\ 'hw_getchildcoll(': 'int connection, int objectID | array', 1113\ 'hw_getchildcollobj(': 'int connection, int objectID | array', 1114\ 'hw_getchilddoccoll(': 'int connection, int objectID | array', 1115\ 'hw_getchilddoccollobj(': 'int connection, int objectID | array', 1116\ 'hw_getobject(': 'int connection, mixed objectID [, string query] | array', 1117\ 'hw_getobjectbyquery(': 'int connection, string query, int max_hits | array', 1118\ 'hw_getobjectbyquerycoll(': 'int connection, int objectID, string query, int max_hits | array', 1119\ 'hw_getobjectbyquerycollobj(': 'int connection, int objectID, string query, int max_hits | array', 1120\ 'hw_getobjectbyqueryobj(': 'int connection, string query, int max_hits | array', 1121\ 'hw_getparents(': 'int connection, int objectID | array', 1122\ 'hw_getparentsobj(': 'int connection, int objectID | array', 1123\ 'hw_getrellink(': 'int link, int rootid, int sourceid, int destid | string', 1124\ 'hw_getremote(': 'int connection, int objectID | int', 1125\ 'hw_getremotechildren(': 'int connection, string object_record | int', 1126\ 'hw_getsrcbydestobj(': 'int connection, int objectID | array', 1127\ 'hw_gettext(': 'int connection, int objectID [, mixed rootID/prefix] | int', 1128\ 'hw_getusername(': 'int connection | string', 1129\ 'hw_identify(': 'int link, string username, string password | int', 1130\ 'hw_incollections(': 'int connection, array object_id_array, array collection_id_array, int return_collections | array', 1131\ 'hw_info(': 'int connection | string', 1132\ 'hw_inscoll(': 'int connection, int objectID, array object_array | int', 1133\ 'hw_insdoc(': 'resource connection, int parentID, string object_record [, string text] | int', 1134\ 'hw_insertanchors(': 'int hwdoc, array anchorecs, array dest [, array urlprefixes] | string', 1135\ 'hw_insertdocument(': 'int connection, int parent_id, int hw_document | int', 1136\ 'hw_insertobject(': 'int connection, string object_rec, string parameter | int', 1137\ 'hw_mapid(': 'int connection, int server_id, int object_id | int', 1138\ 'hw_modifyobject(': 'int connection, int object_to_change, array remove, array add [, int mode] | int', 1139\ 'hw_mv(': 'int connection, array object_id_array, int source_id, int destination_id | int', 1140\ 'hw_new_document(': 'string object_record, string document_data, int document_size | int', 1141\ 'hw_objrec2array(': 'string object_record [, array format] | array', 1142\ 'hw_output_document(': 'int hw_document | int', 1143\ 'hw_pconnect(': 'string host, int port, string username, string password | int', 1144\ 'hw_pipedocument(': 'int connection, int objectID [, array url_prefixes] | int', 1145\ 'hw_root(': ' | int', 1146\ 'hw_setlinkroot(': 'int link, int rootid | void', 1147\ 'hw_stat(': 'int link | string', 1148\ 'hw_unlock(': 'int connection, int objectID | int', 1149\ 'hw_who(': 'int connection | int', 1150\ 'hypot(': 'float x, float y | float', 1151\ 'ibase_add_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool', 1152\ 'ibase_affected_rows(': '[resource link_identifier] | int', 1153\ 'ibase_backup(': 'resource service_handle, string source_db, string dest_file [, int options [, bool verbose]] | mixed', 1154\ 'ibase_blob_add(': 'resource blob_handle, string data | bool', 1155\ 'ibase_blob_cancel(': 'resource blob_handle | bool', 1156\ 'ibase_blob_close(': 'resource blob_handle | mixed', 1157\ 'ibase_blob_create(': '[resource link_identifier] | resource', 1158\ 'ibase_blob_echo(': 'resource link_identifier, string blob_id | bool', 1159\ 'ibase_blob_get(': 'resource blob_handle, int len | string', 1160\ 'ibase_blob_import(': 'resource link_identifier, resource file_handle | string', 1161\ 'ibase_blob_info(': 'resource link_identifier, string blob_id | array', 1162\ 'ibase_blob_open(': 'resource link_identifier, string blob_id | resource', 1163\ 'ibase_close(': '[resource connection_id] | bool', 1164\ 'ibase_commit(': '[resource link_or_trans_identifier] | bool', 1165\ 'ibase_commit_ret(': '[resource link_or_trans_identifier] | bool', 1166\ 'ibase_connect(': 'string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]] | resource', 1167\ 'ibase_db_info(': 'resource service_handle, string db, int action [, int argument] | string', 1168\ 'ibase_delete_user(': 'resource service_handle, string user_name | bool', 1169\ 'ibase_drop_db(': '[resource connection] | bool', 1170\ 'ibase_errcode(': 'void | int', 1171\ 'ibase_errmsg(': 'void | string', 1172\ 'ibase_execute(': 'resource query [, mixed bind_arg [, mixed ...]] | resource', 1173\ 'ibase_fetch_assoc(': 'resource result [, int fetch_flag] | array', 1174\ 'ibase_fetch_object(': 'resource result_id [, int fetch_flag] | object', 1175\ 'ibase_fetch_row(': 'resource result_identifier [, int fetch_flag] | array', 1176\ 'ibase_field_info(': 'resource result, int field_number | array', 1177\ 'ibase_free_event_handler(': 'resource event | bool', 1178\ 'ibase_free_query(': 'resource query | bool', 1179\ 'ibase_free_result(': 'resource result_identifier | bool', 1180\ 'ibase_gen_id(': 'string generator [, int increment [, resource link_identifier]] | int', 1181\ 'ibase_maintain_db(': 'resource service_handle, string db, int action [, int argument] | bool', 1182\ 'ibase_modify_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool', 1183\ 'ibase_name_result(': 'resource result, string name | bool', 1184\ 'ibase_num_fields(': 'resource result_id | int', 1185\ 'ibase_num_params(': 'resource query | int', 1186\ 'ibase_param_info(': 'resource query, int param_number | array', 1187\ 'ibase_pconnect(': 'string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]] | resource', 1188\ 'ibase_prepare(': 'string query | resource', 1189\ 'ibase_query(': '[resource link_identifier, string query [, int bind_args]] | resource', 1190\ 'ibase_restore(': 'resource service_handle, string source_file, string dest_db [, int options [, bool verbose]] | mixed', 1191\ 'ibase_rollback(': '[resource link_or_trans_identifier] | bool', 1192\ 'ibase_rollback_ret(': '[resource link_or_trans_identifier] | bool', 1193\ 'ibase_server_info(': 'resource service_handle, int action | string', 1194\ 'ibase_service_attach(': 'string host, string dba_username, string dba_password | resource', 1195\ 'ibase_service_detach(': 'resource service_handle | bool', 1196\ 'ibase_set_event_handler(': 'callback event_handler, string event_name1 [, string event_name2 [, string ...]] | resource', 1197\ 'ibase_timefmt(': 'string format [, int columntype] | int', 1198\ 'ibase_trans(': '[int trans_args [, resource link_identifier]] | resource', 1199\ 'ibase_wait_event(': 'string event_name1 [, string event_name2 [, string ...]] | string', 1200\ 'icap_close(': 'int icap_stream [, int flags] | int', 1201\ 'icap_create_calendar(': 'int stream_id, string calendar | string', 1202\ 'icap_delete_calendar(': 'int stream_id, string calendar | string', 1203\ 'icap_delete_event(': 'int stream_id, int uid | string', 1204\ 'icap_fetch_event(': 'int stream_id, int event_id [, int options] | int', 1205\ 'icap_list_alarms(': 'int stream_id, array date, array time | int', 1206\ 'icap_list_events(': 'int stream_id, int begin_date [, int end_date] | array', 1207\ 'icap_open(': 'string calendar, string username, string password, string options | resource', 1208\ 'icap_rename_calendar(': 'int stream_id, string old_name, string new_name | string', 1209\ 'icap_reopen(': 'int stream_id, string calendar [, int options] | int', 1210\ 'icap_snooze(': 'int stream_id, int uid | string', 1211\ 'icap_store_event(': 'int stream_id, object event | string', 1212\ 'iconv(': 'string in_charset, string out_charset, string str | string', 1213\ 'iconv_get_encoding(': '[string type] | mixed', 1214\ 'iconv_mime_decode(': 'string encoded_header [, int mode [, string charset]] | string', 1215\ 'iconv_mime_decode_headers(': 'string encoded_headers [, int mode [, string charset]] | array', 1216\ 'iconv_mime_encode(': 'string field_name, string field_value [, array preferences] | string', 1217\ 'iconv_set_encoding(': 'string type, string charset | bool', 1218\ 'iconv_strlen(': 'string str [, string charset] | int', 1219\ 'iconv_strpos(': 'string haystack, string needle [, int offset [, string charset]] | int', 1220\ 'iconv_strrpos(': 'string haystack, string needle [, string charset] | string', 1221\ 'iconv_substr(': 'string str, int offset [, int length [, string charset]] | string', 1222\ 'id3_get_frame_long_name(': 'string frameId | string', 1223\ 'id3_get_frame_short_name(': 'string frameId | string', 1224\ 'id3_get_genre_id(': 'string genre | int', 1225\ 'id3_get_genre_list(': 'void | array', 1226\ 'id3_get_genre_name(': 'int genre_id | string', 1227\ 'id3_get_tag(': 'string filename [, int version] | array', 1228\ 'id3_get_version(': 'string filename | int', 1229\ 'id3_remove_tag(': 'string filename [, int version] | bool', 1230\ 'id3_set_tag(': 'string filename, array tag [, int version] | bool', 1231\ 'idate(': 'string format [, int timestamp] | int', 1232\ 'ifx_affected_rows(': 'int result_id | int', 1233\ 'ifx_blobinfile_mode(': 'int mode | void', 1234\ 'ifx_byteasvarchar(': 'int mode | void', 1235\ 'ifx_close(': '[int link_identifier] | int', 1236\ 'ifx_connect(': '[string database [, string userid [, string password]]] | int', 1237\ 'ifx_copy_blob(': 'int bid | int', 1238\ 'ifx_create_blob(': 'int type, int mode, string param | int', 1239\ 'ifx_create_char(': 'string param | int', 1240\ 'ifx_do(': 'int result_id | int', 1241\ 'ifx_error(': 'void | string', 1242\ 'ifx_errormsg(': '[int errorcode] | string', 1243\ 'ifx_fetch_row(': 'int result_id [, mixed position] | array', 1244\ 'ifx_fieldproperties(': 'int result_id | array', 1245\ 'ifx_fieldtypes(': 'int result_id | array', 1246\ 'ifx_free_blob(': 'int bid | int', 1247\ 'ifx_free_char(': 'int bid | int', 1248\ 'ifx_free_result(': 'int result_id | int', 1249\ 'ifx_get_blob(': 'int bid | int', 1250\ 'ifx_get_char(': 'int bid | int', 1251\ 'ifx_getsqlca(': 'int result_id | array', 1252\ 'ifx_htmltbl_result(': 'int result_id [, string html_table_options] | int', 1253\ 'ifx_nullformat(': 'int mode | void', 1254\ 'ifx_num_fields(': 'int result_id | int', 1255\ 'ifx_num_rows(': 'int result_id | int', 1256\ 'ifx_pconnect(': '[string database [, string userid [, string password]]] | int', 1257\ 'ifx_prepare(': 'string query, int conn_id [, int cursor_def, mixed blobidarray] | int', 1258\ 'ifx_query(': 'string query, int link_identifier [, int cursor_type [, mixed blobidarray]] | int', 1259\ 'ifx_textasvarchar(': 'int mode | void', 1260\ 'ifx_update_blob(': 'int bid, string content | bool', 1261\ 'ifx_update_char(': 'int bid, string content | int', 1262\ 'ifxus_close_slob(': 'int bid | int', 1263\ 'ifxus_create_slob(': 'int mode | int', 1264\ 'ifxus_free_slob(': 'int bid | int', 1265\ 'ifxus_open_slob(': 'int bid, int mode | int', 1266\ 'ifxus_read_slob(': 'int bid, int nbytes | int', 1267\ 'ifxus_seek_slob(': 'int bid, int mode, int offset | int', 1268\ 'ifxus_tell_slob(': 'int bid | int', 1269\ 'ifxus_write_slob(': 'int bid, string content | int', 1270\ 'ignore_user_abort(': '[bool setting] | int', 1271\ 'iis_add_server(': 'string path, string comment, string server_ip, int port, string host_name, int rights, int start_server | int', 1272\ 'iis_get_dir_security(': 'int server_instance, string virtual_path | int', 1273\ 'iis_get_script_map(': 'int server_instance, string virtual_path, string script_extension | int', 1274\ 'iis_get_server_by_comment(': 'string comment | int', 1275\ 'iis_get_server_by_path(': 'string path | int', 1276\ 'iis_get_server_rights(': 'int server_instance, string virtual_path | int', 1277\ 'iis_get_service_state(': 'string service_id | int', 1278\ 'iis_remove_server(': 'int server_instance | int', 1279\ 'iis_set_app_settings(': 'int server_instance, string virtual_path, string application_scope | int', 1280\ 'iis_set_dir_security(': 'int server_instance, string virtual_path, int directory_flags | int', 1281\ 'iis_set_script_map(': 'int server_instance, string virtual_path, string script_extension, string engine_path, int allow_scripting | int', 1282\ 'iis_set_server_rights(': 'int server_instance, string virtual_path, int directory_flags | int', 1283\ 'iis_start_server(': 'int server_instance | int', 1284\ 'iis_start_service(': 'string service_id | int', 1285\ 'iis_stop_server(': 'int server_instance | int', 1286\ 'iis_stop_service(': 'string service_id | int', 1287\ 'image2wbmp(': 'resource image [, string filename [, int threshold]] | int', 1288\ 'imagealphablending(': 'resource image, bool blendmode | bool', 1289\ 'imageantialias(': 'resource im, bool on | bool', 1290\ 'imagearc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color | int', 1291\ 'imagechar(': 'resource image, int font, int x, int y, string c, int color | int', 1292\ 'imagecharup(': 'resource image, int font, int x, int y, string c, int color | int', 1293\ 'imagecolorallocate(': 'resource image, int red, int green, int blue | int', 1294\ 'imagecolorallocatealpha(': 'resource image, int red, int green, int blue, int alpha | int', 1295\ 'imagecolorat(': 'resource image, int x, int y | int', 1296\ 'imagecolorclosest(': 'resource image, int red, int green, int blue | int', 1297\ 'imagecolorclosestalpha(': 'resource image, int red, int green, int blue, int alpha | int', 1298\ 'imagecolorclosesthwb(': 'resource image, int red, int green, int blue | int', 1299\ 'imagecolordeallocate(': 'resource image, int color | int', 1300\ 'imagecolorexact(': 'resource image, int red, int green, int blue | int', 1301\ 'imagecolorexactalpha(': 'resource image, int red, int green, int blue, int alpha | int', 1302\ 'imagecolormatch(': 'resource image1, resource image2 | bool', 1303\ 'imagecolorresolve(': 'resource image, int red, int green, int blue | int', 1304\ 'imagecolorresolvealpha(': 'resource image, int red, int green, int blue, int alpha | int', 1305\ 'imagecolorset(': 'resource image, int index, int red, int green, int blue | bool', 1306\ 'imagecolorsforindex(': 'resource image, int index | array', 1307\ 'imagecolorstotal(': 'resource image | int', 1308\ 'imagecolortransparent(': 'resource image [, int color] | int', 1309\ '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 | int', 1310\ '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 | int', 1311\ '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 | int', 1312\ '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', 1313\ '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 | int', 1314\ 'imagecreate(': 'int x_size, int y_size | resource', 1315\ 'imagecreatefromgd(': 'string filename | resource', 1316\ 'imagecreatefromgd2(': 'string filename | resource', 1317\ 'imagecreatefromgd2part(': 'string filename, int srcX, int srcY, int width, int height | resource', 1318\ 'imagecreatefromgif(': 'string filename | resource', 1319\ 'imagecreatefromjpeg(': 'string filename | resource', 1320\ 'imagecreatefrompng(': 'string filename | resource', 1321\ 'imagecreatefromstring(': 'string image | resource', 1322\ 'imagecreatefromwbmp(': 'string filename | resource', 1323\ 'imagecreatefromxbm(': 'string filename | resource', 1324\ 'imagecreatefromxpm(': 'string filename | resource', 1325\ 'imagecreatetruecolor(': 'int x_size, int y_size | resource', 1326\ 'imagedashedline(': 'resource image, int x1, int y1, int x2, int y2, int color | int', 1327\ 'imagedestroy(': 'resource image | bool', 1328\ 'imageellipse(': 'resource image, int cx, int cy, int w, int h, int color | int', 1329\ 'imagefill(': 'resource image, int x, int y, int color | int', 1330\ 'imagefilledarc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color, int style | bool', 1331\ 'imagefilledellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool', 1332\ 'imagefilledpolygon(': 'resource image, array points, int num_points, int color | int', 1333\ 'imagefilledrectangle(': 'resource image, int x1, int y1, int x2, int y2, int color | int', 1334\ 'imagefilltoborder(': 'resource image, int x, int y, int border, int color | int', 1335\ 'imagefilter(': 'resource src_im, int filtertype [, int arg1 [, int arg2 [, int arg3]]] | bool', 1336\ 'imagefontheight(': 'int font | int', 1337\ 'imagefontwidth(': 'int font | int', 1338\ 'imageftbbox(': 'float size, float angle, string font_file, string text [, array extrainfo] | array', 1339\ 'imagefttext(': 'resource image, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo] | array', 1340\ 'imagegammacorrect(': 'resource image, float inputgamma, float outputgamma | int', 1341\ 'imagegd(': 'resource image [, string filename] | bool', 1342\ 'imagegd2(': 'resource image [, string filename [, int chunk_size [, int type]]] | bool', 1343\ 'imagegif(': 'resource image [, string filename] | bool', 1344\ 'imageinterlace(': 'resource image [, int interlace] | int', 1345\ 'imageistruecolor(': 'resource image | bool', 1346\ 'imagejpeg(': 'resource image [, string filename [, int quality]] | bool', 1347\ 'imagelayereffect(': 'resource image, int effect | bool', 1348\ 'imageline(': 'resource image, int x1, int y1, int x2, int y2, int color | int', 1349\ 'imageloadfont(': 'string file | int', 1350\ 'imagepalettecopy(': 'resource destination, resource source | int', 1351\ 'imagepng(': 'resource image [, string filename] | bool', 1352\ 'imagepolygon(': 'resource image, array points, int num_points, int color | int', 1353\ 'imagepsbbox(': 'string text, int font, int size [, int space, int tightness, float angle] | array', 1354\ 'imagepscopyfont(': 'int fontindex | int', 1355\ 'imagepsencodefont(': 'int font_index, string encodingfile | int', 1356\ 'imagepsextendfont(': 'int font_index, float extend | bool', 1357\ 'imagepsfreefont(': 'int fontindex | void', 1358\ 'imagepsloadfont(': 'string filename | int', 1359\ 'imagepsslantfont(': 'int font_index, float slant | bool', 1360\ 'imagepstext(': 'resource image, string text, int font, int size, int foreground, int background, int x, int y [, int space, int tightness, float angle, int antialias_steps] | array', 1361\ 'imagerectangle(': 'resource image, int x1, int y1, int x2, int y2, int col | int', 1362\ 'imagerotate(': 'resource src_im, float angle, int bgd_color | resource', 1363\ 'imagesavealpha(': 'resource image, bool saveflag | bool', 1364\ 'imagesetbrush(': 'resource image, resource brush | int', 1365\ 'imagesetpixel(': 'resource image, int x, int y, int color | int', 1366\ 'imagesetstyle(': 'resource image, array style | bool', 1367\ 'imagesetthickness(': 'resource image, int thickness | bool', 1368\ 'imagesettile(': 'resource image, resource tile | int', 1369\ 'imagestring(': 'resource image, int font, int x, int y, string s, int col | int', 1370\ 'imagestringup(': 'resource image, int font, int x, int y, string s, int col | int', 1371\ 'imagesx(': 'resource image | int', 1372\ 'imagesy(': 'resource image | int', 1373\ 'imagetruecolortopalette(': 'resource image, bool dither, int ncolors | void', 1374\ 'imagettfbbox(': 'float size, float angle, string fontfile, string text | array', 1375\ 'imagettftext(': 'resource image, float size, float angle, int x, int y, int color, string fontfile, string text | array', 1376\ 'imagetypes(': 'void | int', 1377\ 'image_type_to_extension(': 'int imagetype [, bool include_dot] | string', 1378\ 'image_type_to_mime_type(': 'int imagetype | string', 1379\ 'imagewbmp(': 'resource image [, string filename [, int foreground]] | bool', 1380\ 'imagexbm(': 'resource image, string filename [, int foreground] | bool', 1381\ 'imap_8bit(': 'string string | string', 1382\ 'imap_alerts(': 'void | array', 1383\ 'imap_append(': 'resource imap_stream, string mbox, string message [, string options] | bool', 1384\ 'imap_base64(': 'string text | string', 1385\ 'imap_binary(': 'string string | string', 1386\ 'imap_body(': 'resource imap_stream, int msg_number [, int options] | string', 1387\ 'imap_bodystruct(': 'resource stream_id, int msg_no, string section | object', 1388\ 'imap_check(': 'resource imap_stream | object', 1389\ 'imap_clearflag_full(': 'resource stream, string sequence, string flag [, string options] | bool', 1390\ 'imap_close(': 'resource imap_stream [, int flag] | bool', 1391\ 'imap_createmailbox(': 'resource imap_stream, string mbox | bool', 1392\ 'imap_delete(': 'int imap_stream, int msg_number [, int options] | bool', 1393\ 'imap_deletemailbox(': 'resource imap_stream, string mbox | bool', 1394\ 'imap_errors(': 'void | array', 1395\ 'imap_expunge(': 'resource imap_stream | bool', 1396\ 'imap_fetchbody(': 'resource imap_stream, int msg_number, string part_number [, int options] | string', 1397\ 'imap_fetchheader(': 'resource imap_stream, int msgno [, int options] | string', 1398\ 'imap_fetch_overview(': 'resource imap_stream, string sequence [, int options] | array', 1399\ 'imap_fetchstructure(': 'resource imap_stream, int msg_number [, int options] | object', 1400\ 'imap_getacl(': 'resource stream_id, string mailbox | array', 1401\ 'imap_getmailboxes(': 'resource imap_stream, string ref, string pattern | array', 1402\ 'imap_get_quota(': 'resource imap_stream, string quota_root | array', 1403\ 'imap_get_quotaroot(': 'resource imap_stream, string quota_root | array', 1404\ 'imap_getsubscribed(': 'resource imap_stream, string ref, string pattern | array', 1405\ 'imap_headerinfo(': 'resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]] | object', 1406\ 'imap_headers(': 'resource imap_stream | array', 1407\ 'imap_last_error(': 'void | string', 1408\ 'imap_list(': 'resource imap_stream, string ref, string pattern | array', 1409\ 'imap_listscan(': 'resource imap_stream, string ref, string pattern, string content | array', 1410\ 'imap_lsub(': 'resource imap_stream, string ref, string pattern | array', 1411\ 'imap_mail(': 'string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]] | bool', 1412\ 'imap_mailboxmsginfo(': 'resource imap_stream | object', 1413\ 'imap_mail_compose(': 'array envelope, array body | string', 1414\ 'imap_mail_copy(': 'resource imap_stream, string msglist, string mbox [, int options] | bool', 1415\ 'imap_mail_move(': 'resource imap_stream, string msglist, string mbox [, int options] | bool', 1416\ 'imap_mime_header_decode(': 'string text | array', 1417\ 'imap_msgno(': 'resource imap_stream, int uid | int', 1418\ 'imap_num_msg(': 'resource imap_stream | int', 1419\ 'imap_num_recent(': 'resource imap_stream | int', 1420\ 'imap_open(': 'string mailbox, string username, string password [, int options] | resource', 1421\ 'imap_ping(': 'resource imap_stream | bool', 1422\ 'imap_qprint(': 'string string | string', 1423\ 'imap_renamemailbox(': 'resource imap_stream, string old_mbox, string new_mbox | bool', 1424\ 'imap_reopen(': 'resource imap_stream, string mailbox [, string options] | bool', 1425\ 'imap_rfc822_parse_adrlist(': 'string address, string default_host | array', 1426\ 'imap_rfc822_parse_headers(': 'string headers [, string defaulthost] | object', 1427\ 'imap_rfc822_write_address(': 'string mailbox, string host, string personal | string', 1428\ 'imap_search(': 'resource imap_stream, string criteria [, int options [, string charset]] | array', 1429\ 'imap_setacl(': 'resource stream_id, string mailbox, string id, string rights | bool', 1430\ 'imap_setflag_full(': 'resource stream, string sequence, string flag [, string options] | bool', 1431\ 'imap_set_quota(': 'resource imap_stream, string quota_root, int quota_limit | bool', 1432\ 'imap_sort(': 'resource stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]] | array', 1433\ 'imap_status(': 'resource imap_stream, string mailbox, int options | object', 1434\ 'imap_subscribe(': 'resource imap_stream, string mbox | bool', 1435\ 'imap_thread(': 'resource stream_id [, int options] | array', 1436\ 'imap_timeout(': 'int timeout_type [, int timeout] | mixed', 1437\ 'imap_uid(': 'resource imap_stream, int msgno | int', 1438\ 'imap_undelete(': 'resource imap_stream, int msg_number [, int flags] | bool', 1439\ 'imap_unsubscribe(': 'string imap_stream, string mbox | bool', 1440\ 'imap_utf7_decode(': 'string text | string', 1441\ 'imap_utf7_encode(': 'string data | string', 1442\ 'imap_utf8(': 'string mime_encoded_text | string', 1443\ 'implode(': 'string glue, array pieces | string', 1444\ 'import_request_variables(': 'string types [, string prefix] | bool', 1445\ 'in_array(': 'mixed needle, array haystack [, bool strict] | bool', 1446\ 'inet_ntop(': 'string in_addr | string', 1447\ 'inet_pton(': 'string address | string', 1448\ 'ingres_autocommit(': '[resource link] | bool', 1449\ 'ingres_close(': '[resource link] | bool', 1450\ 'ingres_commit(': '[resource link] | bool', 1451\ 'ingres_connect(': '[string database [, string username [, string password]]] | resource', 1452\ 'ingres_fetch_array(': '[int result_type [, resource link]] | array', 1453\ 'ingres_fetch_object(': '[int result_type [, resource link]] | object', 1454\ 'ingres_fetch_row(': '[resource link] | array', 1455\ 'ingres_field_length(': 'int index [, resource link] | int', 1456\ 'ingres_field_name(': 'int index [, resource link] | string', 1457\ 'ingres_field_nullable(': 'int index [, resource link] | bool', 1458\ 'ingres_field_precision(': 'int index [, resource link] | int', 1459\ 'ingres_field_scale(': 'int index [, resource link] | int', 1460\ 'ingres_field_type(': 'int index [, resource link] | string', 1461\ 'ingres_num_fields(': '[resource link] | int', 1462\ 'ingres_num_rows(': '[resource link] | int', 1463\ 'ingres_pconnect(': '[string database [, string username [, string password]]] | resource', 1464\ 'ingres_query(': 'string query [, resource link] | bool', 1465\ 'ingres_rollback(': '[resource link] | bool', 1466\ 'ini_get(': 'string varname | string', 1467\ 'ini_get_all(': '[string extension] | array', 1468\ 'ini_restore(': 'string varname | void', 1469\ 'ini_set(': 'string varname, string newvalue | string', 1470\ 'interface_exists(': 'string interface_name [, bool autoload] | bool', 1471\ 'intval(': 'mixed var [, int base] | int', 1472\ 'ip2long(': 'string ip_address | int', 1473\ 'iptcembed(': 'string iptcdata, string jpeg_file_name [, int spool] | array', 1474\ 'iptcparse(': 'string iptcblock | array', 1475\ 'ircg_channel_mode(': 'resource connection, string channel, string mode_spec, string nick | bool', 1476\ 'ircg_disconnect(': 'resource connection, string reason | bool', 1477\ 'ircg_eval_ecmascript_params(': 'string params | array', 1478\ 'ircg_fetch_error_msg(': 'resource connection | array', 1479\ 'ircg_get_username(': 'resource connection | string', 1480\ 'ircg_html_encode(': 'string html_string [, bool auto_links [, bool conv_br]] | bool', 1481\ 'ircg_ignore_add(': 'resource connection, string nick | bool', 1482\ 'ircg_ignore_del(': 'resource connection, string nick | bool', 1483\ 'ircg_invite(': 'resource connection, string channel, string nickname | bool', 1484\ 'ircg_is_conn_alive(': 'resource connection | bool', 1485\ 'ircg_join(': 'resource connection, string channel [, string key] | bool', 1486\ 'ircg_kick(': 'resource connection, string channel, string nick, string reason | bool', 1487\ 'ircg_list(': 'resource connection, string channel | bool', 1488\ 'ircg_lookup_format_messages(': 'string name | bool', 1489\ 'ircg_lusers(': 'resource connection | bool', 1490\ 'ircg_msg(': 'resource connection, string recipient, string message [, bool suppress] | bool', 1491\ 'ircg_names(': 'int connection, string channel [, string target] | bool', 1492\ 'ircg_nick(': 'resource connection, string nick | bool', 1493\ 'ircg_nickname_escape(': 'string nick | string', 1494\ 'ircg_nickname_unescape(': 'string nick | string', 1495\ 'ircg_notice(': 'resource connection, string recipient, string message | bool', 1496\ 'ircg_oper(': 'resource connection, string name, string password | bool', 1497\ 'ircg_part(': 'resource connection, string channel | bool', 1498\ 'ircg_pconnect(': 'string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings [, bool bailout_on_trivial]]]]]] | resource', 1499\ 'ircg_register_format_messages(': 'string name, array messages | bool', 1500\ 'ircg_set_current(': 'resource connection | bool', 1501\ 'ircg_set_file(': 'resource connection, string path | bool', 1502\ 'ircg_set_on_die(': 'resource connection, string host, int port, string data | bool', 1503\ 'ircg_topic(': 'resource connection, string channel, string new_topic | bool', 1504\ 'ircg_who(': 'resource connection, string mask [, bool ops_only] | bool', 1505\ 'ircg_whois(': 'resource connection, string nick | bool', 1506\ 'is_a(': 'object object, string class_name | bool', 1507\ 'is_array(': 'mixed var | bool', 1508\ 'is_bool(': 'mixed var | bool', 1509\ 'is_callable(': 'mixed var [, bool syntax_only [, string &callable_name]] | bool', 1510\ 'is_dir(': 'string filename | bool', 1511\ 'is_executable(': 'string filename | bool', 1512\ 'is_file(': 'string filename | bool', 1513\ 'is_finite(': 'float val | bool', 1514\ 'is_float(': 'mixed var | bool', 1515\ 'is_infinite(': 'float val | bool', 1516\ 'is_int(': 'mixed var | bool', 1517\ 'is_link(': 'string filename | bool', 1518\ 'is_nan(': 'float val | bool', 1519\ 'is_null(': 'mixed var | bool', 1520\ 'is_numeric(': 'mixed var | bool', 1521\ 'is_object(': 'mixed var | bool', 1522\ 'is_readable(': 'string filename | bool', 1523\ 'is_resource(': 'mixed var | bool', 1524\ 'is_scalar(': 'mixed var | bool', 1525\ 'isset(': 'mixed var [, mixed var [, ...]] | bool', 1526\ 'is_soap_fault(': 'mixed obj | bool', 1527\ 'is_string(': 'mixed var | bool', 1528\ 'is_subclass_of(': 'mixed object, string class_name | bool', 1529\ 'is_uploaded_file(': 'string filename | bool', 1530\ 'is_writable(': 'string filename | bool', 1531\ 'iterator_count(': 'IteratorAggregate iterator | int', 1532\ 'iterator_to_array(': 'IteratorAggregate iterator | array', 1533\ 'java_last_exception_clear(': 'void | void', 1534\ 'java_last_exception_get(': 'void | object', 1535\ 'jddayofweek(': 'int julianday [, int mode] | mixed', 1536\ 'jdmonthname(': 'int julianday, int mode | string', 1537\ 'jdtofrench(': 'int juliandaycount | string', 1538\ 'jdtogregorian(': 'int julianday | string', 1539\ 'jdtojewish(': 'int juliandaycount [, bool hebrew [, int fl]] | string', 1540\ 'jdtojulian(': 'int julianday | string', 1541\ 'jdtounix(': 'int jday | int', 1542\ 'jewishtojd(': 'int month, int day, int year | int', 1543\ 'jpeg2wbmp(': 'string jpegname, string wbmpname, int d_height, int d_width, int threshold | int', 1544\ 'juliantojd(': 'int month, int day, int year | int', 1545\ 'key(': 'array &array | mixed', 1546\ 'krsort(': 'array &array [, int sort_flags] | bool', 1547\ 'ksort(': 'array &array [, int sort_flags] | bool', 1548\ 'lcg_value(': 'void | float', 1549\ 'ldap_8859_to_t61(': 'string value | string', 1550\ 'ldap_add(': 'resource link_identifier, string dn, array entry | bool', 1551\ 'ldap_bind(': 'resource link_identifier [, string bind_rdn [, string bind_password]] | bool', 1552\ 'ldap_close(': 'resource link_identifier | bool', 1553\ 'ldap_compare(': 'resource link_identifier, string dn, string attribute, string value | bool', 1554\ 'ldap_connect(': '[string hostname [, int port]] | resource', 1555\ 'ldap_count_entries(': 'resource link_identifier, resource result_identifier | int', 1556\ 'ldap_delete(': 'resource link_identifier, string dn | bool', 1557\ 'ldap_dn2ufn(': 'string dn | string', 1558\ 'ldap_err2str(': 'int errno | string', 1559\ 'ldap_errno(': 'resource link_identifier | int', 1560\ 'ldap_error(': 'resource link_identifier | string', 1561\ 'ldap_explode_dn(': 'string dn, int with_attrib | array', 1562\ 'ldap_first_attribute(': 'resource link_identifier, resource result_entry_identifier, int &ber_identifier | string', 1563\ 'ldap_first_entry(': 'resource link_identifier, resource result_identifier | resource', 1564\ 'ldap_first_reference(': 'resource link, resource result | resource', 1565\ 'ldap_free_result(': 'resource result_identifier | bool', 1566\ 'ldap_get_attributes(': 'resource link_identifier, resource result_entry_identifier | array', 1567\ 'ldap_get_dn(': 'resource link_identifier, resource result_entry_identifier | string', 1568\ 'ldap_get_entries(': 'resource link_identifier, resource result_identifier | array', 1569\ 'ldap_get_option(': 'resource link_identifier, int option, mixed &retval | bool', 1570\ 'ldap_get_values(': 'resource link_identifier, resource result_entry_identifier, string attribute | array', 1571\ 'ldap_get_values_len(': 'resource link_identifier, resource result_entry_identifier, string attribute | array', 1572\ 'ldap_list(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource', 1573\ 'ldap_mod_add(': 'resource link_identifier, string dn, array entry | bool', 1574\ 'ldap_mod_del(': 'resource link_identifier, string dn, array entry | bool', 1575\ 'ldap_modify(': 'resource link_identifier, string dn, array entry | bool', 1576\ 'ldap_mod_replace(': 'resource link_identifier, string dn, array entry | bool', 1577\ 'ldap_next_attribute(': 'resource link_identifier, resource result_entry_identifier, resource &ber_identifier | string', 1578\ 'ldap_next_entry(': 'resource link_identifier, resource result_entry_identifier | resource', 1579\ 'ldap_next_reference(': 'resource link, resource entry | resource', 1580\ 'ldap_parse_reference(': 'resource link, resource entry, array &referrals | bool', 1581\ 'ldap_parse_result(': 'resource link, resource result, int &errcode [, string &matcheddn [, string &errmsg [, array &referrals]]] | bool', 1582\ 'ldap_read(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource', 1583\ 'ldap_rename(': 'resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn | bool', 1584\ 'ldap_sasl_bind(': 'resource link | bool', 1585\ 'ldap_search(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource', 1586\ 'ldap_set_option(': 'resource link_identifier, int option, mixed newval | bool', 1587\ 'ldap_set_rebind_proc(': 'resource link, callback callback | bool', 1588\ 'ldap_sort(': 'resource link, resource result, string sortfilter | bool', 1589\ 'ldap_start_tls(': 'resource link | bool', 1590\ 'ldap_t61_to_8859(': 'string value | string', 1591\ 'ldap_unbind(': 'resource link_identifier | bool', 1592\ 'levenshtein(': 'string str1, string str2 [, int cost_ins [, int cost_rep, int cost_del]] | int', 1593\ 'libxml_clear_errors(': 'void | void', 1594\ 'libxml_get_errors(': 'void | array', 1595\ 'libxml_get_last_error(': 'void | LibXMLError', 1596\ 'libxml_set_streams_context(': 'resource streams_context | void', 1597\ 'libxml_use_internal_errors(': '[bool use_errors] | bool', 1598\ 'link(': 'string target, string link | bool', 1599\ 'linkinfo(': 'string path | int', 1600\ 'list(': 'mixed varname, mixed ... | void', 1601\ 'localeconv(': 'void | array', 1602\ 'localtime(': '[int timestamp [, bool is_associative]] | array', 1603\ 'log(': 'float arg [, float base] | float', 1604\ 'log10(': 'float arg | float', 1605\ 'log1p(': 'float number | float', 1606\ 'long2ip(': 'int proper_address | string', 1607\ 'lstat(': 'string filename | array', 1608\ 'ltrim(': 'string str [, string charlist] | string', 1609\ 'lzf_compress(': 'string data | string', 1610\ 'lzf_decompress(': 'string data | string', 1611\ 'lzf_optimized_for(': 'void | int', 1612\ 'mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameters]] | bool', 1613\ 'mailparse_determine_best_xfer_encoding(': 'resource fp | int', 1614\ 'mailparse_msg_create(': 'void | int', 1615\ 'mailparse_msg_extract_part(': 'resource rfc2045, string msgbody [, callback callbackfunc] | void', 1616\ 'mailparse_msg_extract_part_file(': 'resource rfc2045, string filename [, callback callbackfunc] | string', 1617\ 'mailparse_msg_free(': 'resource rfc2045buf | void', 1618\ 'mailparse_msg_get_part(': 'resource rfc2045, string mimesection | int', 1619\ 'mailparse_msg_get_part_data(': 'resource rfc2045 | array', 1620\ 'mailparse_msg_get_structure(': 'resource rfc2045 | array', 1621\ 'mailparse_msg_parse(': 'resource rfc2045buf, string data | void', 1622\ 'mailparse_msg_parse_file(': 'string filename | resource', 1623\ 'mailparse_rfc822_parse_addresses(': 'string addresses | array', 1624\ 'mailparse_stream_encode(': 'resource sourcefp, resource destfp, string encoding | bool', 1625\ 'mailparse_uudecode_all(': 'resource fp | array', 1626\ 'max(': 'number arg1, number arg2 [, number ...] | mixed', 1627\ 'maxdb_affected_rows(': 'resource link | mixed', 1628\ 'maxdb_autocommit(': 'resource link, bool mode | bool', 1629\ 'maxdb_change_user(': 'resource link, string user, string password, string database | bool', 1630\ 'maxdb_character_set_name(': 'resource link | string', 1631\ 'maxdb_close(': 'resource link | bool', 1632\ 'maxdb_commit(': 'resource link | bool', 1633\ 'maxdb_connect(': '[string host [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]] | resource', 1634\ 'maxdb_connect_errno(': 'void | int', 1635\ 'maxdb_connect_error(': 'void | string', 1636\ 'maxdb_data_seek(': 'resource result, int offset | bool', 1637\ 'maxdb_debug(': 'string debug | void', 1638\ 'maxdb_disable_reads_from_master(': 'resource link | void', 1639\ 'maxdb_disable_rpl_parse(': 'resource link | void', 1640\ 'maxdb_dump_debug_info(': 'resource link | bool', 1641\ 'maxdb_embedded_connect(': '[string dbname] | resource', 1642\ 'maxdb_enable_reads_from_master(': 'resource link | void', 1643\ 'maxdb_enable_rpl_parse(': 'resource link | void', 1644\ 'maxdb_errno(': 'resource link | int', 1645\ 'maxdb_error(': 'resource link | string', 1646\ 'maxdb_fetch_array(': 'resource result [, int resulttype] | mixed', 1647\ 'maxdb_fetch_assoc(': 'resource result | array', 1648\ 'maxdb_fetch_field(': 'resource result | mixed', 1649\ 'maxdb_fetch_field_direct(': 'resource result, int fieldnr | mixed', 1650\ 'maxdb_fetch_fields(': 'resource result | mixed', 1651\ 'maxdb_fetch_lengths(': 'resource result | mixed', 1652\ 'maxdb_fetch_object(': 'object result | mixed', 1653\ 'maxdb_fetch_row(': 'resource result | mixed', 1654\ 'maxdb_field_count(': 'object link | int', 1655\ 'maxdb_field_seek(': 'object result, int fieldnr | int', 1656\ 'maxdb_field_tell(': 'resource result | int', 1657\ 'maxdb_free_result(': 'resource result | void', 1658\ 'maxdb_get_client_info(': 'void | string', 1659\ 'maxdb_get_client_version(': 'void | int', 1660\ 'maxdb_get_host_info(': 'resource link | string', 1661\ 'maxdb_get_proto_info(': 'resource link | int', 1662\ 'maxdb_get_server_info(': 'resource link | string', 1663\ 'maxdb_get_server_version(': 'resource link | int', 1664\ 'maxdb_info(': 'resource link | string', 1665\ 'maxdb_init(': 'void | resource', 1666\ 'maxdb_insert_id(': 'resource link | mixed', 1667\ 'maxdb_kill(': 'resource link, int processid | bool', 1668\ 'maxdb_master_query(': 'resource link, string query | bool', 1669\ 'maxdb_more_results(': 'resource link | bool', 1670\ 'maxdb_multi_query(': 'resource link, string query | bool', 1671\ 'maxdb_next_result(': 'resource link | bool', 1672\ 'maxdb_num_fields(': 'resource result | int', 1673\ 'maxdb_num_rows(': 'resource result | mixed', 1674\ 'maxdb_options(': 'resource link, int option, mixed value | bool', 1675\ 'maxdb_ping(': 'resource link | bool', 1676\ 'maxdb_prepare(': 'resource link, string query | mixed', 1677\ 'maxdb_query(': 'resource link, string query [, int resultmode] | mixed', 1678\ 'maxdb_real_connect(': 'resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]] | bool', 1679\ 'maxdb_real_escape_string(': 'resource link, string escapestr | string', 1680\ 'maxdb_real_query(': 'resource link, string query | bool', 1681\ 'maxdb_report(': 'int flags | bool', 1682\ 'maxdb_rollback(': 'resource link | bool', 1683\ 'maxdb_rpl_parse_enabled(': 'resource link | int', 1684\ 'maxdb_rpl_probe(': 'resource link | bool', 1685\ 'maxdb_rpl_query_type(': 'string query | int', 1686\ 'maxdb_select_db(': 'resource link, string dbname | bool', 1687\ 'maxdb_send_query(': 'resource link, string query | bool', 1688\ 'maxdb_server_end(': 'void | void', 1689\ 'maxdb_server_init(': '[array server [, array groups]] | bool', 1690\ 'maxdb_sqlstate(': 'resource link | string', 1691\ 'maxdb_ssl_set(': 'resource link [, string key [, string cert [, string ca [, string capath [, string cipher]]]]] | bool', 1692\ 'maxdb_stat(': 'resource link | mixed', 1693\ 'maxdb_stmt_affected_rows(': 'resource stmt | mixed', 1694\ 'maxdb_stmt_bind_param(': 'resource stmt, string types, mixed &var1 [, mixed &...] | bool', 1695\ 'maxdb_stmt_bind_result(': 'resource stmt, mixed &var1 [, mixed &...] | bool', 1696\ 'maxdb_stmt_close(': 'resource stmt | bool', 1697\ 'maxdb_stmt_data_seek(': 'resource statement, int offset | bool', 1698\ 'maxdb_stmt_errno(': 'resource stmt | int', 1699\ 'maxdb_stmt_error(': 'resource stmt | string', 1700\ 'maxdb_stmt_execute(': 'resource stmt | bool', 1701\ 'maxdb_stmt_fetch(': 'resource stmt | mixed', 1702\ 'maxdb_stmt_free_result(': 'resource stmt | void', 1703\ 'maxdb_stmt_init(': 'resource link | resource', 1704\ 'maxdb_stmt_num_rows(': 'resource stmt | mixed', 1705\ 'maxdb_stmt_param_count(': 'resource stmt | int', 1706\ 'maxdb_stmt_prepare(': 'resource stmt, string query | bool', 1707\ 'maxdb_stmt_reset(': 'resource stmt | bool', 1708\ 'maxdb_stmt_result_metadata(': 'resource stmt | mixed', 1709\ 'maxdb_stmt_send_long_data(': 'resource stmt, int param_nr [, string data] | bool', 1710\ 'maxdb_stmt_sqlstate(': 'resource stmt | string', 1711\ 'maxdb_stmt_store_result(': 'resource stmt | bool', 1712\ 'maxdb_store_result(': 'resource link | resource', 1713\ 'maxdb_thread_id(': 'resource link | int', 1714\ 'maxdb_thread_safe(': 'void | bool', 1715\ 'maxdb_use_result(': 'resource link | mixed', 1716\ 'maxdb_warning_count(': 'resource link | int', 1717\ 'mb_convert_case(': 'string str, int mode [, string encoding] | string', 1718\ 'mb_convert_encoding(': 'string str, string to_encoding [, mixed from_encoding] | string', 1719\ 'mb_convert_kana(': 'string str [, string option [, string encoding]] | string', 1720\ 'mb_convert_variables(': 'string to_encoding, mixed from_encoding, mixed &vars [, mixed &...] | string', 1721\ 'mb_decode_mimeheader(': 'string str | string', 1722\ 'mb_decode_numericentity(': 'string str, array convmap [, string encoding] | string', 1723\ 'mb_detect_encoding(': 'string str [, mixed encoding_list [, bool strict]] | string', 1724\ 'mb_detect_order(': '[mixed encoding_list] | array', 1725\ 'mb_encode_mimeheader(': 'string str [, string charset [, string transfer_encoding [, string linefeed]]] | string', 1726\ 'mb_encode_numericentity(': 'string str, array convmap [, string encoding] | string', 1727\ 'mb_ereg(': 'string pattern, string string [, array regs] | int', 1728\ 'mb_eregi(': 'string pattern, string string [, array regs] | int', 1729\ 'mb_eregi_replace(': 'string pattern, string replace, string string | string', 1730\ 'mb_ereg_match(': 'string pattern, string string [, string option] | bool', 1731\ 'mb_ereg_replace(': 'string pattern, string replacement, string string [, array option] | string', 1732\ 'mb_ereg_search(': '[string pattern [, string option]] | bool', 1733\ 'mb_ereg_search_getpos(': 'void | array', 1734\ 'mb_ereg_search_getregs(': 'void | array', 1735\ 'mb_ereg_search_init(': 'string string [, string pattern [, string option]] | array', 1736\ 'mb_ereg_search_pos(': '[string pattern [, string option]] | array', 1737\ 'mb_ereg_search_regs(': '[string pattern [, string option]] | array', 1738\ 'mb_ereg_search_setpos(': 'int position | array', 1739\ 'mb_get_info(': '[string type] | string', 1740\ 'mb_http_input(': '[string type] | string', 1741\ 'mb_http_output(': '[string encoding] | string', 1742\ 'mb_internal_encoding(': '[string encoding] | mixed', 1743\ 'mb_language(': '[string language] | string', 1744\ 'mb_list_encodings(': 'void | array', 1745\ 'mb_output_handler(': 'string contents, int status | string', 1746\ 'mb_parse_str(': 'string encoded_string [, array &result] | bool', 1747\ 'mb_preferred_mime_name(': 'string encoding | string', 1748\ 'mb_regex_encoding(': '[string encoding] | string', 1749\ 'mb_regex_set_options(': '[string options] | string', 1750\ 'mb_send_mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameter]] | bool', 1751\ 'mb_split(': 'string pattern, string string [, int limit] | array', 1752\ 'mb_strcut(': 'string str, int start [, int length [, string encoding]] | string', 1753\ 'mb_strimwidth(': 'string str, int start, int width [, string trimmarker [, string encoding]] | string', 1754\ 'mb_strlen(': 'string str [, string encoding] | string', 1755\ 'mb_strpos(': 'string haystack, string needle [, int offset [, string encoding]] | int', 1756\ 'mb_strrpos(': 'string haystack, string needle [, string encoding] | int', 1757\ 'mb_strtolower(': 'string str [, string encoding] | string', 1758\ 'mb_strtoupper(': 'string str [, string encoding] | string', 1759\ 'mb_strwidth(': 'string str [, string encoding] | int', 1760\ 'mb_substitute_character(': '[mixed substrchar] | mixed', 1761\ 'mb_substr(': 'string str, int start [, int length [, string encoding]] | string', 1762\ 'mb_substr_count(': 'string haystack, string needle [, string encoding] | int', 1763\ 'mcal_append_event(': 'int mcal_stream | int', 1764\ 'mcal_close(': 'int mcal_stream [, int flags] | int', 1765\ 'mcal_create_calendar(': 'int stream, string calendar | bool', 1766\ 'mcal_date_compare(': 'int a_year, int a_month, int a_day, int b_year, int b_month, int b_day | int', 1767\ 'mcal_date_valid(': 'int year, int month, int day | int', 1768\ 'mcal_day_of_week(': 'int year, int month, int day | int', 1769\ 'mcal_day_of_year(': 'int year, int month, int day | int', 1770\ 'mcal_days_in_month(': 'int month, int leap_year | int', 1771\ 'mcal_delete_calendar(': 'int stream, string calendar | string', 1772\ 'mcal_delete_event(': 'int mcal_stream, int event_id | int', 1773\ 'mcal_event_add_attribute(': 'int stream, string attribute, string value | void', 1774\ 'mcal_event_init(': 'int stream | int', 1775\ 'mcal_event_set_alarm(': 'int stream, int alarm | int', 1776\ 'mcal_event_set_category(': 'int stream, string category | int', 1777\ 'mcal_event_set_class(': 'int stream, int class | int', 1778\ 'mcal_event_set_description(': 'int stream, string description | int', 1779\ 'mcal_event_set_end(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | int', 1780\ 'mcal_event_set_recur_daily(': 'int stream, int year, int month, int day, int interval | int', 1781\ 'mcal_event_set_recur_monthly_mday(': 'int stream, int year, int month, int day, int interval | int', 1782\ 'mcal_event_set_recur_monthly_wday(': 'int stream, int year, int month, int day, int interval | int', 1783\ 'mcal_event_set_recur_none(': 'int stream | int', 1784\ 'mcal_event_set_recur_weekly(': 'int stream, int year, int month, int day, int interval, int weekdays | int', 1785\ 'mcal_event_set_recur_yearly(': 'int stream, int year, int month, int day, int interval | int', 1786\ 'mcal_event_set_start(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | int', 1787\ 'mcal_event_set_title(': 'int stream, string title | int', 1788\ 'mcal_expunge(': 'int stream | int', 1789\ 'mcal_fetch_current_stream_event(': 'int stream | object', 1790\ 'mcal_fetch_event(': 'int mcal_stream, int event_id [, int options] | object', 1791\ 'mcal_is_leap_year(': 'int year | int', 1792\ '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', 1793\ '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', 1794\ 'mcal_next_recurrence(': 'int stream, int weekstart, array next | int', 1795\ 'mcal_open(': 'string calendar, string username, string password [, int options] | int', 1796\ 'mcal_popen(': 'string calendar, string username, string password [, int options] | int', 1797\ 'mcal_rename_calendar(': 'int stream, string old_name, string new_name | string', 1798\ 'mcal_reopen(': 'int mcal_stream, string calendar [, int options] | int', 1799\ 'mcal_snooze(': 'int stream_id, int event_id | bool', 1800\ 'mcal_store_event(': 'int mcal_stream | int', 1801\ 'mcal_time_valid(': 'int hour, int minutes, int seconds | int', 1802\ 'mcal_week_of_year(': 'int day, int month, int year | int', 1803\ 'mcrypt_cbc(': 'int cipher, string key, string data, int mode [, string iv] | string', 1804\ 'mcrypt_cfb(': 'int cipher, string key, string data, int mode, string iv | string', 1805\ 'mcrypt_create_iv(': 'int size [, int source] | string', 1806\ 'mcrypt_decrypt(': 'string cipher, string key, string data, string mode [, string iv] | string', 1807\ 'mcrypt_ecb(': 'int cipher, string key, string data, int mode | string', 1808\ 'mcrypt_enc_get_algorithms_name(': 'resource td | string', 1809\ 'mcrypt_enc_get_block_size(': 'resource td | int', 1810\ 'mcrypt_enc_get_iv_size(': 'resource td | int', 1811\ 'mcrypt_enc_get_key_size(': 'resource td | int', 1812\ 'mcrypt_enc_get_modes_name(': 'resource td | string', 1813\ 'mcrypt_enc_get_supported_key_sizes(': 'resource td | array', 1814\ 'mcrypt_enc_is_block_algorithm(': 'resource td | bool', 1815\ 'mcrypt_enc_is_block_algorithm_mode(': 'resource td | bool', 1816\ 'mcrypt_enc_is_block_mode(': 'resource td | bool', 1817\ 'mcrypt_encrypt(': 'string cipher, string key, string data, string mode [, string iv] | string', 1818\ 'mcrypt_enc_self_test(': 'resource td | bool', 1819\ 'mcrypt_generic(': 'resource td, string data | string', 1820\ 'mcrypt_generic_deinit(': 'resource td | bool', 1821\ 'mcrypt_generic_end(': 'resource td | bool', 1822\ 'mcrypt_generic_init(': 'resource td, string key, string iv | int', 1823\ 'mcrypt_get_block_size(': 'int cipher | int', 1824\ 'mcrypt_get_cipher_name(': 'int cipher | string', 1825\ 'mcrypt_get_iv_size(': 'string cipher, string mode | int', 1826\ 'mcrypt_get_key_size(': 'int cipher | int', 1827\ 'mcrypt_list_algorithms(': '[string lib_dir] | array', 1828\ 'mcrypt_list_modes(': '[string lib_dir] | array', 1829\ 'mcrypt_module_close(': 'resource td | bool', 1830\ 'mcrypt_module_get_algo_block_size(': 'string algorithm [, string lib_dir] | int', 1831\ 'mcrypt_module_get_algo_key_size(': 'string algorithm [, string lib_dir] | int', 1832\ 'mcrypt_module_get_supported_key_sizes(': 'string algorithm [, string lib_dir] | array', 1833\ 'mcrypt_module_is_block_algorithm(': 'string algorithm [, string lib_dir] | bool', 1834\ 'mcrypt_module_is_block_algorithm_mode(': 'string mode [, string lib_dir] | bool', 1835\ 'mcrypt_module_is_block_mode(': 'string mode [, string lib_dir] | bool', 1836\ 'mcrypt_module_open(': 'string algorithm, string algorithm_directory, string mode, string mode_directory | resource', 1837\ 'mcrypt_module_self_test(': 'string algorithm [, string lib_dir] | bool', 1838\ 'mcrypt_ofb(': 'int cipher, string key, string data, int mode, string iv | string', 1839\ 'mcve_adduser(': 'resource conn, string admin_password, int usersetup | int', 1840\ 'mcve_adduserarg(': 'resource usersetup, int argtype, string argval | int', 1841\ 'mcve_bt(': 'resource conn, string username, string password | int', 1842\ 'mcve_checkstatus(': 'resource conn, int identifier | int', 1843\ 'mcve_chkpwd(': 'resource conn, string username, string password | int', 1844\ 'mcve_chngpwd(': 'resource conn, string admin_password, string new_password | int', 1845\ 'mcve_completeauthorizations(': 'resource conn, int &array | int', 1846\ 'mcve_connect(': 'resource conn | int', 1847\ 'mcve_connectionerror(': 'resource conn | string', 1848\ 'mcve_deleteresponse(': 'resource conn, int identifier | bool', 1849\ 'mcve_deletetrans(': 'resource conn, int identifier | bool', 1850\ 'mcve_deleteusersetup(': 'resource usersetup | void', 1851\ 'mcve_deluser(': 'resource conn, string admin_password, string username | int', 1852\ 'mcve_destroyconn(': 'resource conn | void', 1853\ 'mcve_destroyengine(': 'void | void', 1854\ 'mcve_disableuser(': 'resource conn, string admin_password, string username | int', 1855\ 'mcve_edituser(': 'resource conn, string admin_password, int usersetup | int', 1856\ 'mcve_enableuser(': 'resource conn, string admin_password, string username | int', 1857\ 'mcve_force(': 'resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum | int', 1858\ 'mcve_getcell(': 'resource conn, int identifier, string column, int row | string', 1859\ 'mcve_getcellbynum(': 'resource conn, int identifier, int column, int row | string', 1860\ 'mcve_getcommadelimited(': 'resource conn, int identifier | string', 1861\ 'mcve_getheader(': 'resource conn, int identifier, int column_num | string', 1862\ 'mcve_getuserarg(': 'resource usersetup, int argtype | string', 1863\ 'mcve_getuserparam(': 'resource conn, int identifier, int key | string', 1864\ 'mcve_gft(': 'resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate | int', 1865\ 'mcve_gl(': 'int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate | int', 1866\ 'mcve_gut(': 'resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate | int', 1867\ 'mcve_initconn(': 'void | resource', 1868\ 'mcve_initengine(': 'string location | int', 1869\ 'mcve_initusersetup(': 'void | resource', 1870\ 'mcve_iscommadelimited(': 'resource conn, int identifier | int', 1871\ 'mcve_liststats(': 'resource conn, string admin_password | int', 1872\ 'mcve_listusers(': 'resource conn, string admin_password | int', 1873\ 'mcve_maxconntimeout(': 'resource conn, int secs | bool', 1874\ 'mcve_monitor(': 'resource conn | int', 1875\ 'mcve_numcolumns(': 'resource conn, int identifier | int', 1876\ 'mcve_numrows(': 'resource conn, int identifier | int', 1877\ 'mcve_override(': 'resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum | int', 1878\ 'mcve_parsecommadelimited(': 'resource conn, int identifier | int', 1879\ 'mcve_ping(': 'resource conn | int', 1880\ 'mcve_preauth(': 'resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum | int', 1881\ 'mcve_preauthcompletion(': 'resource conn, string username, string password, float finalamount, int sid, int ptrannum | int', 1882\ 'mcve_qc(': 'resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum | int', 1883\ 'mcve_responseparam(': 'resource conn, int identifier, string key | string', 1884\ 'mcve_return(': 'int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum | int', 1885\ 'mcve_returncode(': 'resource conn, int identifier | int', 1886\ 'mcve_returnstatus(': 'resource conn, int identifier | int', 1887\ 'mcve_sale(': 'resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum | int', 1888\ 'mcve_setblocking(': 'resource conn, int tf | int', 1889\ 'mcve_setdropfile(': 'resource conn, string directory | int', 1890\ 'mcve_setip(': 'resource conn, string host, int port | int', 1891\ 'mcve_setssl(': 'resource conn, string host, int port | int', 1892\ 'mcve_setssl_files(': 'string sslkeyfile, string sslcertfile | int', 1893\ 'mcve_settimeout(': 'resource conn, int seconds | int', 1894\ 'mcve_settle(': 'resource conn, string username, string password, string batch | int', 1895\ 'mcve_text_avs(': 'string code | string', 1896\ 'mcve_text_code(': 'string code | string', 1897\ 'mcve_text_cv(': 'int code | string', 1898\ 'mcve_transactionauth(': 'resource conn, int identifier | string', 1899\ 'mcve_transactionavs(': 'resource conn, int identifier | int', 1900\ 'mcve_transactionbatch(': 'resource conn, int identifier | int', 1901\ 'mcve_transactioncv(': 'resource conn, int identifier | int', 1902\ 'mcve_transactionid(': 'resource conn, int identifier | int', 1903\ 'mcve_transactionitem(': 'resource conn, int identifier | int', 1904\ 'mcve_transactionssent(': 'resource conn | int', 1905\ 'mcve_transactiontext(': 'resource conn, int identifier | string', 1906\ 'mcve_transinqueue(': 'resource conn | int', 1907\ 'mcve_transnew(': 'resource conn | int', 1908\ 'mcve_transparam(': 'resource conn, int identifier, int key | int', 1909\ 'mcve_transsend(': 'resource conn, int identifier | int', 1910\ 'mcve_ub(': 'resource conn, string username, string password | int', 1911\ 'mcve_uwait(': 'int microsecs | int', 1912\ 'mcve_verifyconnection(': 'resource conn, int tf | bool', 1913\ 'mcve_verifysslcert(': 'resource conn, int tf | bool', 1914\ 'mcve_void(': 'resource conn, string username, string password, int sid, int ptrannum | int', 1915\ 'md5(': 'string str [, bool raw_output] | string', 1916\ 'md5_file(': 'string filename [, bool raw_output] | string', 1917\ 'mdecrypt_generic(': 'resource td, string data | string', 1918\ 'memcache_debug(': 'int on_off | bool', 1919\ 'memory_get_usage(': 'void | int', 1920\ 'metaphone(': 'string str [, int phones] | string', 1921\ 'method_exists(': 'object object, string method_name | bool', 1922\ 'mhash(': 'int hash, string data [, string key] | string', 1923\ 'mhash_count(': 'void | int', 1924\ 'mhash_get_block_size(': 'int hash | int', 1925\ 'mhash_get_hash_name(': 'int hash | string', 1926\ 'mhash_keygen_s2k(': 'int hash, string password, string salt, int bytes | string', 1927\ 'microtime(': '[bool get_as_float] | mixed', 1928\ 'mime_content_type(': 'string filename | string', 1929\ 'min(': 'number arg1, number arg2 [, number ...] | mixed', 1930\ 'ming_setcubicthreshold(': 'int threshold | void', 1931\ 'ming_setscale(': 'int scale | void', 1932\ 'ming_useswfversion(': 'int version | void', 1933\ 'mkdir(': 'string pathname [, int mode [, bool recursive [, resource context]]] | bool', 1934\ 'mktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int', 1935\ 'money_format(': 'string format, float number | string', 1936\ 'move_uploaded_file(': 'string filename, string destination | bool', 1937\ 'msession_connect(': 'string host, string port | bool', 1938\ 'msession_count(': 'void | int', 1939\ 'msession_create(': 'string session | bool', 1940\ 'msession_destroy(': 'string name | bool', 1941\ 'msession_disconnect(': 'void | void', 1942\ 'msession_find(': 'string name, string value | array', 1943\ 'msession_get(': 'string session, string name, string value | string', 1944\ 'msession_get_array(': 'string session | array', 1945\ 'msession_get_data(': 'string session | string', 1946\ 'msession_inc(': 'string session, string name | string', 1947\ 'msession_list(': 'void | array', 1948\ 'msession_listvar(': 'string name | array', 1949\ 'msession_lock(': 'string name | int', 1950\ 'msession_plugin(': 'string session, string val [, string param] | string', 1951\ 'msession_randstr(': 'int param | string', 1952\ 'msession_set(': 'string session, string name, string value | bool', 1953\ 'msession_set_array(': 'string session, array tuples | bool', 1954\ 'msession_set_data(': 'string session, string value | bool', 1955\ 'msession_timeout(': 'string session [, int param] | int', 1956\ 'msession_uniq(': 'int param | string', 1957\ 'msession_unlock(': 'string session, int key | int', 1958\ 'msg_get_queue(': 'int key [, int perms] | resource', 1959\ 'msg_receive(': 'resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed &message [, bool unserialize [, int flags [, int &errorcode]]] | bool', 1960\ 'msg_remove_queue(': 'resource queue | bool', 1961\ 'msg_send(': 'resource queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int &errorcode]]] | bool', 1962\ 'msg_set_queue(': 'resource queue, array data | bool', 1963\ 'msg_stat_queue(': 'resource queue | array', 1964\ 'msql_affected_rows(': 'resource query_identifier | int', 1965\ 'msql_close(': '[resource link_identifier] | int', 1966\ 'msql_connect(': '[string hostname] | int', 1967\ 'msql_create_db(': 'string database_name [, resource link_identifier] | bool', 1968\ 'msql_data_seek(': 'resource query_identifier, int row_number | bool', 1969\ 'msql_db_query(': 'string database, string query [, resource link_identifier] | resource', 1970\ 'msql_drop_db(': 'string database_name [, resource link_identifier] | int', 1971\ 'msql_error(': 'void | string', 1972\ 'msql_fetch_array(': 'resource query_identifier [, int result_type] | array', 1973\ 'msql_fetch_field(': 'resource query_identifier [, int field_offset] | object', 1974\ 'msql_fetch_object(': 'resource query_identifier [, int result_type] | object', 1975\ 'msql_fetch_row(': 'resource query_identifier [, int result_type] | array', 1976\ 'msql_field_flags(': 'resource query_identifier, int field_offset | string', 1977\ 'msql_field_len(': 'resource query_identifier, int field_offset | int', 1978\ 'msql_field_name(': 'resource query_identifier, int field | string', 1979\ 'msql_field_seek(': 'int query_identifier, int field_offset | int', 1980\ 'msql_field_table(': 'int query_identifier, int field | int', 1981\ 'msql_field_type(': 'resource query_identifier, int field_offset | string', 1982\ 'msql_free_result(': 'resource query_identifier | int', 1983\ 'msql_list_dbs(': '[resource link_identifier] | resource', 1984\ 'msql_list_fields(': 'string database, string tablename [, resource link_identifier] | resource', 1985\ 'msql_list_tables(': 'string database [, resource link_identifier] | resource', 1986\ 'msql_num_fields(': 'resource query_identifier | int', 1987\ 'msql_num_rows(': 'resource query_identifier | int', 1988\ 'msql_pconnect(': '[string server [, string username [, string password]]] | int', 1989\ 'msql_query(': 'string query [, resource link_identifier] | resource', 1990\ 'msql_result(': 'resource query_identifier, int row [, mixed field] | string', 1991\ 'msql_select_db(': 'string database_name [, resource link_identifier] | bool', 1992\ 'mssql_bind(': 'resource stmt, string param_name, mixed &var, int type [, int is_output [, int is_null [, int maxlen]]] | bool', 1993\ 'mssql_close(': '[resource link_identifier] | bool', 1994\ 'mssql_connect(': '[string servername [, string username [, string password]]] | int', 1995\ 'mssql_data_seek(': 'resource result_identifier, int row_number | bool', 1996\ 'mssql_execute(': 'resource stmt [, bool skip_results] | mixed', 1997\ 'mssql_fetch_array(': 'resource result [, int result_type] | array', 1998\ 'mssql_fetch_assoc(': 'resource result_id | array', 1999\ 'mssql_fetch_batch(': 'resource result_index | int', 2000\ 'mssql_fetch_field(': 'resource result [, int field_offset] | object', 2001\ 'mssql_fetch_object(': 'resource result | object', 2002\ 'mssql_fetch_row(': 'resource result | array', 2003\ 'mssql_field_length(': 'resource result [, int offset] | int', 2004\ 'mssql_field_name(': 'resource result [, int offset] | string', 2005\ 'mssql_field_seek(': 'resource result, int field_offset | bool', 2006\ 'mssql_field_type(': 'resource result [, int offset] | string', 2007\ 'mssql_free_result(': 'resource result | bool', 2008\ 'mssql_free_statement(': 'resource statement | bool', 2009\ 'mssql_get_last_message(': 'void | string', 2010\ 'mssql_guid_string(': 'string binary [, int short_format] | string', 2011\ 'mssql_init(': 'string sp_name [, resource conn_id] | int', 2012\ 'mssql_min_error_severity(': 'int severity | void', 2013\ 'mssql_min_message_severity(': 'int severity | void', 2014\ 'mssql_next_result(': 'resource result_id | bool', 2015\ 'mssql_num_fields(': 'resource result | int', 2016\ 'mssql_num_rows(': 'resource result | int', 2017\ 'mssql_pconnect(': '[string servername [, string username [, string password]]] | int', 2018\ 'mssql_query(': 'string query [, resource link_identifier [, int batch_size]] | resource', 2019\ 'mssql_result(': 'resource result, int row, mixed field | string', 2020\ 'mssql_rows_affected(': 'resource conn_id | int', 2021\ 'mssql_select_db(': 'string database_name [, resource link_identifier] | bool', 2022\ 'mt_getrandmax(': 'void | int', 2023\ 'mt_rand(': '[int min, int max] | int', 2024\ 'mt_srand(': '[int seed] | void', 2025\ 'muscat_close(': 'resource muscat_handle | int', 2026\ 'muscat_get(': 'resource muscat_handle | string', 2027\ 'muscat_give(': 'resource muscat_handle, string string | int', 2028\ 'muscat_setup(': 'int size [, string muscat_dir] | resource', 2029\ 'muscat_setup_net(': 'string muscat_host | resource', 2030\ 'mysql_affected_rows(': '[resource link_identifier] | int', 2031\ 'mysql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | int', 2032\ 'mysql_client_encoding(': '[resource link_identifier] | string', 2033\ 'mysql_close(': '[resource link_identifier] | bool', 2034\ 'mysql_connect(': '[string server [, string username [, string password [, bool new_link [, int client_flags]]]]] | resource', 2035\ 'mysql_create_db(': 'string database_name [, resource link_identifier] | bool', 2036\ 'mysql_data_seek(': 'resource result, int row_number | bool', 2037\ 'mysql_db_name(': 'resource result, int row [, mixed field] | string', 2038\ 'mysql_db_query(': 'string database, string query [, resource link_identifier] | resource', 2039\ 'mysql_drop_db(': 'string database_name [, resource link_identifier] | bool', 2040\ 'mysql_errno(': '[resource link_identifier] | int', 2041\ 'mysql_error(': '[resource link_identifier] | string', 2042\ 'mysql_escape_string(': 'string unescaped_string | string', 2043\ 'mysql_fetch_array(': 'resource result [, int result_type] | array', 2044\ 'mysql_fetch_assoc(': 'resource result | array', 2045\ 'mysql_fetch_field(': 'resource result [, int field_offset] | object', 2046\ 'mysql_fetch_lengths(': 'resource result | array', 2047\ 'mysql_fetch_object(': 'resource result | object', 2048\ 'mysql_fetch_row(': 'resource result | array', 2049\ 'mysql_field_flags(': 'resource result, int field_offset | string', 2050\ 'mysql_field_len(': 'resource result, int field_offset | int', 2051\ 'mysql_field_name(': 'resource result, int field_offset | string', 2052\ 'mysql_field_seek(': 'resource result, int field_offset | int', 2053\ 'mysql_field_table(': 'resource result, int field_offset | string', 2054\ 'mysql_field_type(': 'resource result, int field_offset | string', 2055\ 'mysql_free_result(': 'resource result | bool', 2056\ 'mysql_get_client_info(': 'void | string', 2057\ 'mysql_get_host_info(': '[resource link_identifier] | string', 2058\ 'mysql_get_proto_info(': '[resource link_identifier] | int', 2059\ 'mysql_get_server_info(': '[resource link_identifier] | string', 2060\ 'mysqli_affected_rows(': 'mysqli link | mixed', 2061\ 'mysqli_autocommit(': 'mysqli link, bool mode | bool', 2062\ 'mysqli_change_user(': 'mysqli link, string user, string password, string database | bool', 2063\ 'mysqli_character_set_name(': 'mysqli link | string', 2064\ 'mysqli_close(': 'mysqli link | bool', 2065\ 'mysqli_commit(': 'mysqli link | bool', 2066\ 'mysqli_connect(': '[string host [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]] | mysqli', 2067\ 'mysqli_connect_errno(': 'void | int', 2068\ 'mysqli_connect_error(': 'void | string', 2069\ 'mysqli_data_seek(': 'mysqli_result result, int offset | bool', 2070\ 'mysqli_debug(': 'string debug | void', 2071\ 'mysqli_disable_reads_from_master(': 'mysqli link | void', 2072\ 'mysqli_disable_rpl_parse(': 'mysqli link | void', 2073\ 'mysqli_dump_debug_info(': 'mysqli link | bool', 2074\ 'mysqli_embedded_connect(': '[string dbname] | mysqli', 2075\ 'mysqli_enable_reads_from_master(': 'mysqli link | void', 2076\ 'mysqli_enable_rpl_parse(': 'mysqli link | void', 2077\ 'mysqli_errno(': 'mysqli link | int', 2078\ 'mysqli_error(': 'mysqli link | string', 2079\ 'mysqli_fetch_array(': 'mysqli_result result [, int resulttype] | mixed', 2080\ 'mysqli_fetch_assoc(': 'mysqli_result result | array', 2081\ 'mysqli_fetch_field(': 'mysqli_result result | mixed', 2082\ 'mysqli_fetch_field_direct(': 'mysqli_result result, int fieldnr | mixed', 2083\ 'mysqli_fetch_fields(': 'mysqli_result result | mixed', 2084\ 'mysqli_fetch_lengths(': 'mysqli_result result | mixed', 2085\ 'mysqli_fetch_object(': 'mysqli_result result | mixed', 2086\ 'mysqli_fetch_row(': 'mysqli_result result | mixed', 2087\ 'mysqli_field_count(': 'mysqli link | int', 2088\ 'mysqli_field_seek(': 'mysqli_result result, int fieldnr | int', 2089\ 'mysqli_field_tell(': 'mysqli_result result | int', 2090\ 'mysqli_free_result(': 'mysqli_result result | void', 2091\ 'mysqli_get_client_info(': 'void | string', 2092\ 'mysqli_get_client_version(': 'void | int', 2093\ 'mysqli_get_host_info(': 'mysqli link | string', 2094\ 'mysqli_get_proto_info(': 'mysqli link | int', 2095\ 'mysqli_get_server_info(': 'mysqli link | string', 2096\ 'mysqli_get_server_version(': 'mysqli link | int', 2097\ 'mysqli_info(': 'mysqli link | string', 2098\ 'mysqli_init(': 'void | mysqli', 2099\ 'mysqli_insert_id(': 'mysqli link | mixed', 2100\ 'mysqli_kill(': 'mysqli link, int processid | bool', 2101\ 'mysqli_master_query(': 'mysqli link, string query | bool', 2102\ 'mysqli_more_results(': 'mysqli link | bool', 2103\ 'mysqli_multi_query(': 'mysqli link, string query | bool', 2104\ 'mysqli_next_result(': 'mysqli link | bool', 2105\ 'mysql_info(': '[resource link_identifier] | string', 2106\ 'mysql_insert_id(': '[resource link_identifier] | int', 2107\ 'mysqli_num_fields(': 'mysqli_result result | int', 2108\ 'mysqli_num_rows(': 'mysqli result | mixed', 2109\ 'mysqli_options(': 'mysqli link, int option, mixed value | bool', 2110\ 'mysqli_ping(': 'mysqli link | bool', 2111\ 'mysqli_prepare(': 'mysqli link, string query | mixed', 2112\ 'mysqli_query(': 'mysqli link, string query [, int resultmode] | mixed', 2113\ 'mysqli_real_connect(': 'mysqli link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket [, int flags]]]]]]] | bool', 2114\ 'mysqli_real_escape_string(': 'mysqli link, string escapestr | string', 2115\ 'mysqli_real_query(': 'mysqli link, string query | bool', 2116\ 'mysqli_report(': 'int flags | bool', 2117\ 'mysqli_rollback(': 'mysqli link | bool', 2118\ 'mysqli_rpl_parse_enabled(': 'mysqli link | int', 2119\ 'mysqli_rpl_probe(': 'mysqli link | bool', 2120\ 'mysqli_rpl_query_type(': 'mysqli link, string query | int', 2121\ 'mysqli_select_db(': 'mysqli link, string dbname | bool', 2122\ 'mysqli_send_query(': 'mysqli link, string query | bool', 2123\ 'mysqli_server_end(': 'void | void', 2124\ 'mysqli_server_init(': '[array server [, array groups]] | bool', 2125\ 'mysqli_sqlstate(': 'mysqli link | string', 2126\ 'mysqli_ssl_set(': 'mysqli link, string key, string cert, string ca, string capath, string cipher | bool', 2127\ 'mysqli_stat(': 'mysqli link | mixed', 2128\ 'mysqli_stmt_affected_rows(': 'mysqli_stmt stmt | mixed', 2129\ 'mysqli_stmt_bind_param(': 'mysqli_stmt stmt, string types, mixed &var1 [, mixed &...] | bool', 2130\ 'mysqli_stmt_bind_result(': 'mysqli_stmt stmt, mixed &var1 [, mixed &...] | bool', 2131\ 'mysqli_stmt_close(': 'mysqli_stmt stmt | bool', 2132\ 'mysqli_stmt_data_seek(': 'mysqli_stmt statement, int offset | bool', 2133\ 'mysqli_stmt_errno(': 'mysqli_stmt stmt | int', 2134\ 'mysqli_stmt_error(': 'mysqli_stmt stmt | string', 2135\ 'mysqli_stmt_execute(': 'mysqli_stmt stmt | bool', 2136\ 'mysqli_stmt_fetch(': 'mysqli_stmt stmt | mixed', 2137\ 'mysqli_stmt_free_result(': 'mysqli_stmt stmt | void', 2138\ 'mysqli_stmt_init(': 'mysqli link | mysqli_stmt', 2139\ 'mysqli_stmt_num_rows(': 'mysqli_stmt stmt | mixed', 2140\ 'mysqli_stmt_param_count(': 'mysqli_stmt stmt | int', 2141\ 'mysqli_stmt_prepare(': 'mysqli_stmt stmt, string query | bool', 2142\ 'mysqli_stmt_reset(': 'mysqli_stmt stmt | bool', 2143\ 'mysqli_stmt_result_metadata(': 'mysqli_stmt stmt | mixed', 2144\ 'mysqli_stmt_send_long_data(': 'mysqli_stmt stmt, int param_nr, string data | bool', 2145\ 'mysqli_stmt_sqlstate(': 'mysqli_stmt stmt | string', 2146\ 'mysqli_stmt_store_result(': 'mysqli_stmt stmt | bool', 2147\ 'mysqli_store_result(': 'mysqli link | mysqli_result', 2148\ 'mysqli_thread_id(': 'mysqli link | int', 2149\ 'mysqli_thread_safe(': 'void | bool', 2150\ 'mysqli_use_result(': 'mysqli link | mixed', 2151\ 'mysqli_warning_count(': 'mysqli link | int', 2152\ 'mysql_list_dbs(': '[resource link_identifier] | resource', 2153\ 'mysql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource', 2154\ 'mysql_list_processes(': '[resource link_identifier] | resource', 2155\ 'mysql_list_tables(': 'string database [, resource link_identifier] | resource', 2156\ 'mysql_num_fields(': 'resource result | int', 2157\ 'mysql_num_rows(': 'resource result | int', 2158\ 'mysql_pconnect(': '[string server [, string username [, string password [, int client_flags]]]] | resource', 2159\ 'mysql_ping(': '[resource link_identifier] | bool', 2160\ 'mysql_query(': 'string query [, resource link_identifier] | resource', 2161\ 'mysql_real_escape_string(': 'string unescaped_string [, resource link_identifier] | string', 2162\ 'mysql_result(': 'resource result, int row [, mixed field] | mixed', 2163\ 'mysql_select_db(': 'string database_name [, resource link_identifier] | bool', 2164\ 'mysql_stat(': '[resource link_identifier] | string', 2165\ 'mysql_tablename(': 'resource result, int i | string', 2166\ 'mysql_thread_id(': '[resource link_identifier] | int', 2167\ 'mysql_unbuffered_query(': 'string query [, resource link_identifier] | resource', 2168\ 'natcasesort(': 'array &array | bool', 2169\ 'natsort(': 'array &array | bool', 2170\ 'ncurses_addch(': 'int ch | int', 2171\ 'ncurses_addchnstr(': 'string s, int n | int', 2172\ 'ncurses_addchstr(': 'string s | int', 2173\ 'ncurses_addnstr(': 'string s, int n | int', 2174\ 'ncurses_addstr(': 'string text | int', 2175\ 'ncurses_assume_default_colors(': 'int fg, int bg | int', 2176\ 'ncurses_attroff(': 'int attributes | int', 2177\ 'ncurses_attron(': 'int attributes | int', 2178\ 'ncurses_attrset(': 'int attributes | int', 2179\ 'ncurses_baudrate(': 'void | int', 2180\ 'ncurses_beep(': 'void | int', 2181\ 'ncurses_bkgd(': 'int attrchar | int', 2182\ 'ncurses_bkgdset(': 'int attrchar | void', 2183\ 'ncurses_border(': 'int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner | int', 2184\ 'ncurses_bottom_panel(': 'resource panel | int', 2185\ 'ncurses_can_change_color(': 'void | bool', 2186\ 'ncurses_cbreak(': 'void | bool', 2187\ 'ncurses_clear(': 'void | bool', 2188\ 'ncurses_clrtobot(': 'void | bool', 2189\ 'ncurses_clrtoeol(': 'void | bool', 2190\ 'ncurses_color_content(': 'int color, int &r, int &g, int &b | int', 2191\ 'ncurses_color_set(': 'int pair | int', 2192\ 'ncurses_curs_set(': 'int visibility | int', 2193\ 'ncurses_define_key(': 'string definition, int keycode | int', 2194\ 'ncurses_def_prog_mode(': 'void | bool', 2195\ 'ncurses_def_shell_mode(': 'void | bool', 2196\ 'ncurses_delay_output(': 'int milliseconds | int', 2197\ 'ncurses_delch(': 'void | bool', 2198\ 'ncurses_deleteln(': 'void | bool', 2199\ 'ncurses_del_panel(': 'resource panel | int', 2200\ 'ncurses_delwin(': 'resource window | int', 2201\ 'ncurses_doupdate(': 'void | bool', 2202\ 'ncurses_echo(': 'void | bool', 2203\ 'ncurses_echochar(': 'int character | int', 2204\ 'ncurses_end(': 'void | int', 2205\ 'ncurses_erase(': 'void | bool', 2206\ 'ncurses_erasechar(': 'void | string', 2207\ 'ncurses_filter(': 'void | int', 2208\ 'ncurses_flash(': 'void | bool', 2209\ 'ncurses_flushinp(': 'void | bool', 2210\ 'ncurses_getch(': 'void | int', 2211\ 'ncurses_getmaxyx(': 'resource window, int &y, int &x | void', 2212\ 'ncurses_getmouse(': 'array &mevent | bool', 2213\ 'ncurses_getyx(': 'resource window, int &y, int &x | void', 2214\ 'ncurses_halfdelay(': 'int tenth | int', 2215\ 'ncurses_has_colors(': 'void | bool', 2216\ 'ncurses_has_ic(': 'void | bool', 2217\ 'ncurses_has_il(': 'void | bool', 2218\ 'ncurses_has_key(': 'int keycode | int', 2219\ 'ncurses_hide_panel(': 'resource panel | int', 2220\ 'ncurses_hline(': 'int charattr, int n | int', 2221\ 'ncurses_inch(': 'void | string', 2222\ 'ncurses_init(': 'void | int', 2223\ 'ncurses_init_color(': 'int color, int r, int g, int b | int', 2224\ 'ncurses_init_pair(': 'int pair, int fg, int bg | int', 2225\ 'ncurses_insch(': 'int character | int', 2226\ 'ncurses_insdelln(': 'int count | int', 2227\ 'ncurses_insertln(': 'void | bool', 2228\ 'ncurses_insstr(': 'string text | int', 2229\ 'ncurses_instr(': 'string &buffer | int', 2230\ 'ncurses_isendwin(': 'void | bool', 2231\ 'ncurses_keyok(': 'int keycode, bool enable | int', 2232\ 'ncurses_keypad(': 'resource window, bool bf | int', 2233\ 'ncurses_killchar(': 'void | bool', 2234\ 'ncurses_longname(': 'void | string', 2235\ 'ncurses_meta(': 'resource window, bool 8bit | int', 2236\ 'ncurses_mouseinterval(': 'int milliseconds | int', 2237\ 'ncurses_mousemask(': 'int newmask, int &oldmask | int', 2238\ 'ncurses_mouse_trafo(': 'int &y, int &x, bool toscreen | bool', 2239\ 'ncurses_move(': 'int y, int x | int', 2240\ 'ncurses_move_panel(': 'resource panel, int startx, int starty | int', 2241\ 'ncurses_mvaddch(': 'int y, int x, int c | int', 2242\ 'ncurses_mvaddchnstr(': 'int y, int x, string s, int n | int', 2243\ 'ncurses_mvaddchstr(': 'int y, int x, string s | int', 2244\ 'ncurses_mvaddnstr(': 'int y, int x, string s, int n | int', 2245\ 'ncurses_mvaddstr(': 'int y, int x, string s | int', 2246\ 'ncurses_mvcur(': 'int old_y, int old_x, int new_y, int new_x | int', 2247\ 'ncurses_mvdelch(': 'int y, int x | int', 2248\ 'ncurses_mvgetch(': 'int y, int x | int', 2249\ 'ncurses_mvhline(': 'int y, int x, int attrchar, int n | int', 2250\ 'ncurses_mvinch(': 'int y, int x | int', 2251\ 'ncurses_mvvline(': 'int y, int x, int attrchar, int n | int', 2252\ 'ncurses_mvwaddstr(': 'resource window, int y, int x, string text | int', 2253\ 'ncurses_napms(': 'int milliseconds | int', 2254\ 'ncurses_newpad(': 'int rows, int cols | resource', 2255\ 'ncurses_new_panel(': 'resource window | resource', 2256\ 'ncurses_newwin(': 'int rows, int cols, int y, int x | resource', 2257\ 'ncurses_nl(': 'void | bool', 2258\ 'ncurses_nocbreak(': 'void | bool', 2259\ 'ncurses_noecho(': 'void | bool', 2260\ 'ncurses_nonl(': 'void | bool', 2261\ 'ncurses_noqiflush(': 'void | int', 2262\ 'ncurses_noraw(': 'void | bool', 2263\ 'ncurses_pair_content(': 'int pair, int &f, int &b | int', 2264\ 'ncurses_panel_above(': 'resource panel | int', 2265\ 'ncurses_panel_below(': 'resource panel | int', 2266\ 'ncurses_panel_window(': 'resource panel | int', 2267\ 'ncurses_pnoutrefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int', 2268\ 'ncurses_prefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int', 2269\ 'ncurses_putp(': 'string text | int', 2270\ 'ncurses_qiflush(': 'void | int', 2271\ 'ncurses_raw(': 'void | bool', 2272\ 'ncurses_refresh(': 'int ch | int', 2273\ 'ncurses_replace_panel(': 'resource panel, resource window | int', 2274\ 'ncurses_reset_prog_mode(': 'void | int', 2275\ 'ncurses_reset_shell_mode(': 'void | int', 2276\ 'ncurses_resetty(': 'void | bool', 2277\ 'ncurses_savetty(': 'void | bool', 2278\ 'ncurses_scr_dump(': 'string filename | int', 2279\ 'ncurses_scr_init(': 'string filename | int', 2280\ 'ncurses_scrl(': 'int count | int', 2281\ 'ncurses_scr_restore(': 'string filename | int', 2282\ 'ncurses_scr_set(': 'string filename | int', 2283\ 'ncurses_show_panel(': 'resource panel | int', 2284\ 'ncurses_slk_attr(': 'void | bool', 2285\ 'ncurses_slk_attroff(': 'int intarg | int', 2286\ 'ncurses_slk_attron(': 'int intarg | int', 2287\ 'ncurses_slk_attrset(': 'int intarg | int', 2288\ 'ncurses_slk_clear(': 'void | bool', 2289\ 'ncurses_slk_color(': 'int intarg | int', 2290\ 'ncurses_slk_init(': 'int format | bool', 2291\ 'ncurses_slk_noutrefresh(': 'void | bool', 2292\ 'ncurses_slk_refresh(': 'void | bool', 2293\ 'ncurses_slk_restore(': 'void | bool', 2294\ 'ncurses_slk_set(': 'int labelnr, string label, int format | bool', 2295\ 'ncurses_slk_touch(': 'void | bool', 2296\ 'ncurses_standend(': 'void | int', 2297\ 'ncurses_standout(': 'void | int', 2298\ 'ncurses_start_color(': 'void | int', 2299\ 'ncurses_termattrs(': 'void | bool', 2300\ 'ncurses_termname(': 'void | string', 2301\ 'ncurses_timeout(': 'int millisec | void', 2302\ 'ncurses_top_panel(': 'resource panel | int', 2303\ 'ncurses_typeahead(': 'int fd | int', 2304\ 'ncurses_ungetch(': 'int keycode | int', 2305\ 'ncurses_ungetmouse(': 'array mevent | bool', 2306\ 'ncurses_update_panels(': 'void | void', 2307\ 'ncurses_use_default_colors(': 'void | bool', 2308\ 'ncurses_use_env(': 'bool flag | void', 2309\ 'ncurses_use_extended_names(': 'bool flag | int', 2310\ 'ncurses_vidattr(': 'int intarg | int', 2311\ 'ncurses_vline(': 'int charattr, int n | int', 2312\ 'ncurses_waddch(': 'resource window, int ch | int', 2313\ 'ncurses_waddstr(': 'resource window, string str [, int n] | int', 2314\ 'ncurses_wattroff(': 'resource window, int attrs | int', 2315\ 'ncurses_wattron(': 'resource window, int attrs | int', 2316\ 'ncurses_wattrset(': 'resource window, int attrs | int', 2317\ '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', 2318\ 'ncurses_wclear(': 'resource window | int', 2319\ 'ncurses_wcolor_set(': 'resource window, int color_pair | int', 2320\ 'ncurses_werase(': 'resource window | int', 2321\ 'ncurses_wgetch(': 'resource window | int', 2322\ 'ncurses_whline(': 'resource window, int charattr, int n | int', 2323\ 'ncurses_wmouse_trafo(': 'resource window, int &y, int &x, bool toscreen | bool', 2324\ 'ncurses_wmove(': 'resource window, int y, int x | int', 2325\ 'ncurses_wnoutrefresh(': 'resource window | int', 2326\ 'ncurses_wrefresh(': 'resource window | int', 2327\ 'ncurses_wstandend(': 'resource window | int', 2328\ 'ncurses_wstandout(': 'resource window | int', 2329\ 'ncurses_wvline(': 'resource window, int charattr, int n | int', 2330\ 'next(': 'array &array | mixed', 2331\ 'ngettext(': 'string msgid1, string msgid2, int n | string', 2332\ 'nl2br(': 'string string | string', 2333\ 'nl_langinfo(': 'int item | string', 2334\ 'notes_body(': 'string server, string mailbox, int msg_number | array', 2335\ 'notes_copy_db(': 'string from_database_name, string to_database_name | string', 2336\ 'notes_create_db(': 'string database_name | bool', 2337\ 'notes_create_note(': 'string database_name, string form_name | string', 2338\ 'notes_drop_db(': 'string database_name | bool', 2339\ 'notes_find_note(': 'string database_name, string name [, string type] | bool', 2340\ 'notes_header_info(': 'string server, string mailbox, int msg_number | object', 2341\ 'notes_list_msgs(': 'string db | bool', 2342\ 'notes_mark_read(': 'string database_name, string user_name, string note_id | string', 2343\ 'notes_mark_unread(': 'string database_name, string user_name, string note_id | string', 2344\ 'notes_nav_create(': 'string database_name, string name | bool', 2345\ 'notes_search(': 'string database_name, string keywords | string', 2346\ 'notes_unread(': 'string database_name, string user_name | string', 2347\ 'notes_version(': 'string database_name | string', 2348\ 'nsapi_request_headers(': 'void | array', 2349\ 'nsapi_response_headers(': 'void | array', 2350\ 'nsapi_virtual(': 'string uri | bool', 2351\ 'number_format(': 'float number [, int decimals [, string dec_point, string thousands_sep]] | string', 2352\ 'ob_clean(': 'void | void', 2353\ 'ob_end_clean(': 'void | bool', 2354\ 'ob_end_flush(': 'void | bool', 2355\ 'ob_flush(': 'void | void', 2356\ 'ob_get_clean(': 'void | string', 2357\ 'ob_get_contents(': 'void | string', 2358\ 'ob_get_flush(': 'void | string', 2359\ 'ob_get_length(': 'void | int', 2360\ 'ob_get_level(': 'void | int', 2361\ 'ob_get_status(': '[bool full_status] | array', 2362\ 'ob_gzhandler(': 'string buffer, int mode | string', 2363\ 'ob_iconv_handler(': 'string contents, int status | array', 2364\ 'ob_implicit_flush(': '[int flag] | void', 2365\ 'ob_list_handlers(': 'void | array', 2366\ 'ob_start(': '[callback output_callback [, int chunk_size [, bool erase]]] | bool', 2367\ 'ob_tidyhandler(': 'string input [, int mode] | string', 2368\ 'ocibindbyname(': 'resource stmt, string ph_name, mixed &variable [, int maxlength [, int type]] | bool', 2369\ 'oci_bind_by_name(': 'resource stmt, string ph_name, mixed &variable [, int maxlength [, int type]] | bool', 2370\ 'ocicancel(': 'resource stmt | bool', 2371\ 'oci_cancel(': 'resource stmt | bool', 2372\ 'oci_close(': 'resource connection | bool', 2373\ 'ocicloselob(': 'void | bool', 2374\ 'ocicollappend(': 'string value | bool', 2375\ 'ocicollassign(': 'OCI-Collection from | bool', 2376\ 'ocicollassignelem(': 'int ndx, string val | bool', 2377\ 'ocicollgetelem(': 'int ndx | string', 2378\ 'ocicollmax(': 'void | int', 2379\ 'ocicollsize(': 'void | int', 2380\ 'ocicolltrim(': 'int num | bool', 2381\ 'ocicolumnisnull(': 'resource stmt, mixed col | bool', 2382\ 'ocicolumnname(': 'resource stmt, int col | string', 2383\ 'ocicolumnprecision(': 'resource stmt, int col | int', 2384\ 'ocicolumnscale(': 'resource stmt, int col | int', 2385\ 'ocicolumnsize(': 'resource stmt, mixed column | int', 2386\ 'ocicolumntype(': 'resource stmt, int col | mixed', 2387\ 'ocicolumntyperaw(': 'resource stmt, int col | int', 2388\ 'ocicommit(': 'resource connection | bool', 2389\ 'oci_commit(': 'resource connection | bool', 2390\ 'oci_connect(': 'string username, string password [, string db [, string charset]] | resource', 2391\ 'ocidefinebyname(': 'resource stmt, string column_name, mixed &variable [, int type] | bool', 2392\ 'oci_define_by_name(': 'resource statement, string column_name, mixed &variable [, int type] | bool', 2393\ 'ocierror(': '[resource stmt_or_conn_or_global] | array', 2394\ 'oci_error(': '[resource source] | array', 2395\ 'ociexecute(': 'resource stmt [, int mode] | bool', 2396\ 'oci_execute(': 'resource stmt [, int mode] | bool', 2397\ 'ocifetch(': 'resource stmt | bool', 2398\ 'oci_fetch(': 'resource statement | bool', 2399\ 'oci_fetch_all(': 'resource statement, array &output [, int skip [, int maxrows [, int flags]]] | int', 2400\ 'oci_fetch_array(': 'resource statement [, int mode] | array', 2401\ 'oci_fetch_assoc(': 'resource statement | array', 2402\ 'ocifetchinto(': 'resource statement, array &result [, int mode] | int', 2403\ 'oci_fetch_object(': 'resource statement | object', 2404\ 'oci_fetch_row(': 'resource statement | array', 2405\ 'ocifetchstatement(': 'resource stmt, array &output [, int skip [, int maxrows [, int flags]]] | int', 2406\ 'oci_field_is_null(': 'resource stmt, mixed field | bool', 2407\ 'oci_field_name(': 'resource statement, int field | string', 2408\ 'oci_field_precision(': 'resource statement, int field | int', 2409\ 'oci_field_scale(': 'resource statement, int field | int', 2410\ 'oci_field_size(': 'resource stmt, mixed field | int', 2411\ 'oci_field_type(': 'resource stmt, int field | mixed', 2412\ 'oci_field_type_raw(': 'resource statement, int field | int', 2413\ 'ocifreecollection(': 'void | bool', 2414\ 'ocifreecursor(': 'resource stmt | bool', 2415\ 'ocifreedesc(': 'void | bool', 2416\ 'ocifreestatement(': 'resource stmt | bool', 2417\ 'oci_free_statement(': 'resource statement | bool', 2418\ 'ociinternaldebug(': 'int onoff | void', 2419\ 'oci_internal_debug(': 'int onoff | void', 2420\ 'ociloadlob(': 'void | string', 2421\ 'oci_lob_copy(': 'OCI-Lob lob_to, OCI-Lob lob_from [, int length] | bool', 2422\ 'oci_lob_is_equal(': 'OCI-Lob lob1, OCI-Lob lob2 | bool', 2423\ 'ocilogoff(': 'resource connection | bool', 2424\ 'ocilogon(': 'string username, string password [, string db [, string charset]] | resource', 2425\ 'OCI-ocinewcollection(': 'resource connection, string tdo [, string schema] | Collection', 2426\ 'OCI-oci_new_collection(': 'resource connection, string tdo [, string schema] | Collection', 2427\ 'oci_new_connect(': 'string username, string password [, string db [, string charset]] | resource', 2428\ 'ocinewcursor(': 'resource conn | resource', 2429\ 'oci_new_cursor(': 'resource connection | resource', 2430\ 'OCI-ocinewdescriptor(': 'resource connection [, int type] | Lob', 2431\ 'OCI-oci_new_descriptor(': 'resource connection [, int type] | Lob', 2432\ 'ocinlogon(': 'string username, string password [, string db [, string charset]] | resource', 2433\ 'ocinumcols(': 'resource stmt | int', 2434\ 'oci_num_fields(': 'resource statement | int', 2435\ 'oci_num_rows(': 'resource stmt | int', 2436\ 'ociparse(': 'resource conn, string query | resource', 2437\ 'oci_parse(': 'resource connection, string query | resource', 2438\ 'oci_password_change(': 'resource connection, string username, string old_password, string new_password | bool', 2439\ 'oci_pconnect(': 'string username, string password [, string db [, string charset]] | resource', 2440\ 'ociplogon(': 'string username, string password [, string db [, string charset]] | resource', 2441\ 'ociresult(': 'resource statement, mixed col | mixed', 2442\ 'oci_result(': 'resource statement, mixed field | mixed', 2443\ 'ocirollback(': 'resource connection | bool', 2444\ 'oci_rollback(': 'resource connection | bool', 2445\ 'ocirowcount(': 'resource stmt | int', 2446\ 'ocisavelob(': 'void | bool', 2447\ 'ocisavelobfile(': 'void | bool', 2448\ 'ociserverversion(': 'resource conn | string', 2449\ 'oci_server_version(': 'resource connection | string', 2450\ 'ocisetprefetch(': 'resource stmt, int rows | bool', 2451\ 'oci_set_prefetch(': 'resource statement [, int rows] | bool', 2452\ 'ocistatementtype(': 'resource stmt | string', 2453\ 'oci_statement_type(': 'resource statement | string', 2454\ 'ociwritelobtofile(': '[string filename [, int start [, int length]]] | bool', 2455\ 'ociwritetemporarylob(': 'string var [, int lob_type] | bool', 2456\ 'octdec(': 'string octal_string | number', 2457\ 'odbc_autocommit(': 'resource connection_id [, bool OnOff] | bool', 2458\ 'odbc_binmode(': 'resource result_id, int mode | bool', 2459\ 'odbc_close(': 'resource connection_id | void', 2460\ 'odbc_close_all(': 'void | void', 2461\ 'odbc_columnprivileges(': 'resource connection_id, string qualifier, string owner, string table_name, string column_name | resource', 2462\ 'odbc_columns(': 'resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]] | resource', 2463\ 'odbc_commit(': 'resource connection_id | bool', 2464\ 'odbc_connect(': 'string dsn, string user, string password [, int cursor_type] | resource', 2465\ 'odbc_cursor(': 'resource result_id | string', 2466\ 'odbc_data_source(': 'resource connection_id, int fetch_type | array', 2467\ 'odbc_do(': 'resource conn_id, string query | resource', 2468\ 'odbc_error(': '[resource connection_id] | string', 2469\ 'odbc_errormsg(': '[resource connection_id] | string', 2470\ 'odbc_exec(': 'resource connection_id, string query_string [, int flags] | resource', 2471\ 'odbc_execute(': 'resource result_id [, array parameters_array] | bool', 2472\ 'odbc_fetch_array(': 'resource result [, int rownumber] | array', 2473\ 'odbc_fetch_into(': 'resource result_id, array &result_array [, int rownumber] | int', 2474\ 'odbc_fetch_object(': 'resource result [, int rownumber] | object', 2475\ 'odbc_fetch_row(': 'resource result_id [, int row_number] | bool', 2476\ 'odbc_field_len(': 'resource result_id, int field_number | int', 2477\ 'odbc_field_name(': 'resource result_id, int field_number | string', 2478\ 'odbc_field_num(': 'resource result_id, string field_name | int', 2479\ 'odbc_field_precision(': 'resource result_id, int field_number | int', 2480\ 'odbc_field_scale(': 'resource result_id, int field_number | int', 2481\ 'odbc_field_type(': 'resource result_id, int field_number | string', 2482\ 'odbc_foreignkeys(': 'resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table | resource', 2483\ 'odbc_free_result(': 'resource result_id | bool', 2484\ 'odbc_gettypeinfo(': 'resource connection_id [, int data_type] | resource', 2485\ 'odbc_longreadlen(': 'resource result_id, int length | bool', 2486\ 'odbc_next_result(': 'resource result_id | bool', 2487\ 'odbc_num_fields(': 'resource result_id | int', 2488\ 'odbc_num_rows(': 'resource result_id | int', 2489\ 'odbc_pconnect(': 'string dsn, string user, string password [, int cursor_type] | resource', 2490\ 'odbc_prepare(': 'resource connection_id, string query_string | resource', 2491\ 'odbc_primarykeys(': 'resource connection_id, string qualifier, string owner, string table | resource', 2492\ 'odbc_procedurecolumns(': 'resource connection_id [, string qualifier, string owner, string proc, string column] | resource', 2493\ 'odbc_procedures(': 'resource connection_id [, string qualifier, string owner, string name] | resource', 2494\ 'odbc_result(': 'resource result_id, mixed field | string', 2495\ 'odbc_result_all(': 'resource result_id [, string format] | int', 2496\ 'odbc_rollback(': 'resource connection_id | bool', 2497\ 'odbc_setoption(': 'resource id, int function, int option, int param | bool', 2498\ 'odbc_specialcolumns(': 'resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable | resource', 2499\ 'odbc_statistics(': 'resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy | resource', 2500\ 'odbc_tableprivileges(': 'resource connection_id, string qualifier, string owner, string name | resource', 2501\ 'odbc_tables(': 'resource connection_id [, string qualifier [, string owner [, string name [, string types]]]] | resource', 2502\ 'openal_buffer_create(': 'void | resource', 2503\ 'openal_buffer_data(': 'resource buffer, int format, string data, int freq | bool', 2504\ 'openal_buffer_destroy(': 'resource buffer | bool', 2505\ 'openal_buffer_get(': 'resource buffer, int property | int', 2506\ 'openal_buffer_loadwav(': 'resource buffer, string wavfile | bool', 2507\ 'openal_context_create(': 'resource device | resource', 2508\ 'openal_context_current(': 'resource context | bool', 2509\ 'openal_context_destroy(': 'resource context | bool', 2510\ 'openal_context_process(': 'resource context | bool', 2511\ 'openal_context_suspend(': 'resource context | bool', 2512\ 'openal_device_close(': 'resource device | bool', 2513\ 'openal_device_open(': '[string device_desc] | resource', 2514\ 'openal_listener_get(': 'int property | mixed', 2515\ 'openal_listener_set(': 'int property, mixed setting | bool', 2516\ 'openal_source_create(': 'void | resource', 2517\ 'openal_source_destroy(': 'resource source | resource', 2518\ 'openal_source_get(': 'resource source, int property | mixed', 2519\ 'openal_source_pause(': 'resource source | bool', 2520\ 'openal_source_play(': 'resource source | bool', 2521\ 'openal_source_rewind(': 'resource source | bool', 2522\ 'openal_source_set(': 'resource source, int property, mixed setting | bool', 2523\ 'openal_source_stop(': 'resource source | bool', 2524\ 'openal_stream(': 'resource source, int format, int rate | resource', 2525\ 'opendir(': 'string path | resource', 2526\ 'openlog(': 'string ident, int option, int facility | int', 2527\ 'openssl_csr_export(': 'resource csr, string &out [, bool notext] | bool', 2528\ 'openssl_csr_export_to_file(': 'resource csr, string outfilename [, bool notext] | bool', 2529\ 'openssl_csr_new(': 'array dn, resource &privkey [, array configargs [, array extraattribs]] | bool', 2530\ 'openssl_csr_sign(': 'mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]] | resource', 2531\ 'openssl_error_string(': 'void | mixed', 2532\ 'openssl_free_key(': 'resource key_identifier | void', 2533\ 'openssl_get_privatekey(': 'mixed key [, string passphrase] | resource', 2534\ 'openssl_get_publickey(': 'mixed certificate | resource', 2535\ 'openssl_open(': 'string sealed_data, string &open_data, string env_key, mixed priv_key_id | bool', 2536\ 'openssl_pkcs7_decrypt(': 'string infilename, string outfilename, mixed recipcert [, mixed recipkey] | bool', 2537\ 'openssl_pkcs7_encrypt(': 'string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid]] | bool', 2538\ 'openssl_pkcs7_sign(': 'string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]] | bool', 2539\ 'openssl_pkcs7_verify(': 'string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]] | bool', 2540\ 'openssl_pkey_export(': 'mixed key, string &out [, string passphrase [, array configargs]] | bool', 2541\ 'openssl_pkey_export_to_file(': 'mixed key, string outfilename [, string passphrase [, array configargs]] | bool', 2542\ 'openssl_pkey_get_private(': 'mixed key [, string passphrase] | resource', 2543\ 'openssl_pkey_get_public(': 'mixed certificate | resource', 2544\ 'openssl_pkey_new(': '[array configargs] | resource', 2545\ 'openssl_private_decrypt(': 'string data, string &decrypted, mixed key [, int padding] | bool', 2546\ 'openssl_private_encrypt(': 'string data, string &crypted, mixed key [, int padding] | bool', 2547\ 'openssl_public_decrypt(': 'string data, string &decrypted, mixed key [, int padding] | bool', 2548\ 'openssl_public_encrypt(': 'string data, string &crypted, mixed key [, int padding] | bool', 2549\ 'openssl_seal(': 'string data, string &sealed_data, array &env_keys, array pub_key_ids | int', 2550\ 'openssl_sign(': 'string data, string &signature, mixed priv_key_id [, int signature_alg] | bool', 2551\ 'openssl_verify(': 'string data, string signature, mixed pub_key_id | int', 2552\ 'openssl_x509_check_private_key(': 'mixed cert, mixed key | bool', 2553\ 'openssl_x509_checkpurpose(': 'mixed x509cert, int purpose [, array cainfo [, string untrustedfile]] | bool', 2554\ 'openssl_x509_export(': 'mixed x509, string &output [, bool notext] | bool', 2555\ 'openssl_x509_export_to_file(': 'mixed x509, string outfilename [, bool notext] | bool', 2556\ 'openssl_x509_free(': 'resource x509cert | void', 2557\ 'openssl_x509_parse(': 'mixed x509cert [, bool shortnames] | array', 2558\ 'openssl_x509_read(': 'mixed x509certdata | resource', 2559\ 'ora_bind(': 'resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type] | bool', 2560\ 'ora_close(': 'resource cursor | bool', 2561\ 'ora_columnname(': 'resource cursor, int column | string', 2562\ 'ora_columnsize(': 'resource cursor, int column | int', 2563\ 'ora_columntype(': 'resource cursor, int column | string', 2564\ 'ora_commit(': 'resource conn | bool', 2565\ 'ora_commitoff(': 'resource conn | bool', 2566\ 'ora_commiton(': 'resource conn | bool', 2567\ 'ora_do(': 'resource conn, string query | resource', 2568\ 'ora_error(': '[resource cursor_or_connection] | string', 2569\ 'ora_errorcode(': '[resource cursor_or_connection] | int', 2570\ 'ora_exec(': 'resource cursor | bool', 2571\ 'ora_fetch(': 'resource cursor | bool', 2572\ 'ora_fetch_into(': 'resource cursor, array &result [, int flags] | int', 2573\ 'ora_getcolumn(': 'resource cursor, int column | mixed', 2574\ 'ora_logoff(': 'resource connection | bool', 2575\ 'ora_logon(': 'string user, string password | resource', 2576\ 'ora_numcols(': 'resource cursor | int', 2577\ 'ora_numrows(': 'resource cursor | int', 2578\ 'ora_open(': 'resource connection | resource', 2579\ 'ora_parse(': 'resource cursor, string sql_statement [, int defer] | bool', 2580\ 'ora_plogon(': 'string user, string password | resource', 2581\ 'ora_rollback(': 'resource connection | bool', 2582\ 'ord(': 'string string | int', 2583\ 'output_add_rewrite_var(': 'string name, string value | bool', 2584\ 'output_reset_rewrite_vars(': 'void | bool', 2585\ 'overload(': '[string class_name] | void', 2586\ 'override_function(': 'string function_name, string function_args, string function_code | bool', 2587\ 'ovrimos_close(': 'int connection | void', 2588\ 'ovrimos_commit(': 'int connection_id | bool', 2589\ 'ovrimos_connect(': 'string host, string db, string user, string password | int', 2590\ 'ovrimos_cursor(': 'int result_id | string', 2591\ 'ovrimos_exec(': 'int connection_id, string query | int', 2592\ 'ovrimos_execute(': 'int result_id [, array parameters_array] | bool', 2593\ 'ovrimos_fetch_into(': 'int result_id, array &result_array [, string how [, int rownumber]] | bool', 2594\ 'ovrimos_fetch_row(': 'int result_id [, int how [, int row_number]] | bool', 2595\ 'ovrimos_field_len(': 'int result_id, int field_number | int', 2596\ 'ovrimos_field_name(': 'int result_id, int field_number | string', 2597\ 'ovrimos_field_num(': 'int result_id, string field_name | int', 2598\ 'ovrimos_field_type(': 'int result_id, int field_number | int', 2599\ 'ovrimos_free_result(': 'int result_id | bool', 2600\ 'ovrimos_longreadlen(': 'int result_id, int length | bool', 2601\ 'ovrimos_num_fields(': 'int result_id | int', 2602\ 'ovrimos_num_rows(': 'int result_id | int', 2603\ 'ovrimos_prepare(': 'int connection_id, string query | int', 2604\ 'ovrimos_result(': 'int result_id, mixed field | string', 2605\ 'ovrimos_result_all(': 'int result_id [, string format] | int', 2606\ 'ovrimos_rollback(': 'int connection_id | bool', 2607\ 'pack(': 'string format [, mixed args [, mixed ...]] | string', 2608\ 'parse_ini_file(': 'string filename [, bool process_sections] | array', 2609\ 'parsekit_compile_file(': 'string filename [, array &errors [, int options]] | array', 2610\ 'parsekit_compile_string(': 'string phpcode [, array &errors [, int options]] | array', 2611\ 'parsekit_func_arginfo(': 'mixed function | array', 2612\ 'parse_str(': 'string str [, array &arr] | void', 2613\ 'parse_url(': 'string url | array', 2614\ 'passthru(': 'string command [, int &return_var] | void', 2615\ 'pathinfo(': 'string path [, int options] | array', 2616\ 'pclose(': 'resource handle | int', 2617\ 'pcntl_alarm(': 'int seconds | int', 2618\ 'pcntl_exec(': 'string path [, array args [, array envs]] | bool', 2619\ 'pcntl_fork(': 'void | int', 2620\ 'pcntl_getpriority(': '[int pid [, int process_identifier]] | int', 2621\ 'pcntl_setpriority(': 'int priority [, int pid [, int process_identifier]] | bool', 2622\ 'pcntl_signal(': 'int signo, callback handle [, bool restart_syscalls] | bool', 2623\ 'pcntl_wait(': 'int &status [, int options] | int', 2624\ 'pcntl_waitpid(': 'int pid, int &status [, int options] | int', 2625\ 'pcntl_wexitstatus(': 'int status | int', 2626\ 'pcntl_wifexited(': 'int status | int', 2627\ 'pcntl_wifsignaled(': 'int status | int', 2628\ 'pcntl_wifstopped(': 'int status | int', 2629\ 'pcntl_wstopsig(': 'int status | int', 2630\ 'pcntl_wtermsig(': 'int status | int', 2631\ 'pdf_add_bookmark(': 'resource pdfdoc, string text, int parent, int open | int', 2632\ 'pdf_add_launchlink(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename | bool', 2633\ 'pdf_add_locallink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest | bool', 2634\ 'pdf_add_note(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool', 2635\ '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', 2636\ 'pdf_add_thumbnail(': 'resource pdfdoc, int image | bool', 2637\ 'pdf_add_weblink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url | bool', 2638\ 'pdf_arc(': 'resource pdfdoc, float x, float y, float r, float alpha, float beta | bool', 2639\ 'pdf_arcn(': 'resource pdfdoc, float x, float y, float r, float alpha, float beta | bool', 2640\ 'pdf_attach_file(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon | bool', 2641\ 'pdf_begin_page(': 'resource pdfdoc, float width, float height | bool', 2642\ 'pdf_begin_pattern(': 'resource pdfdoc, float width, float height, float xstep, float ystep, int painttype | int', 2643\ 'pdf_begin_template(': 'resource pdfdoc, float width, float height | int', 2644\ 'pdf_circle(': 'resource pdfdoc, float x, float y, float r | bool', 2645\ 'pdf_clip(': 'resource pdfdoc | bool', 2646\ 'pdf_close(': 'resource pdfdoc | bool', 2647\ 'pdf_close_image(': 'resource pdfdoc, int image | void', 2648\ 'pdf_closepath(': 'resource pdfdoc | bool', 2649\ 'pdf_closepath_fill_stroke(': 'resource pdfdoc | bool', 2650\ 'pdf_closepath_stroke(': 'resource pdfdoc | bool', 2651\ 'pdf_close_pdi(': 'resource pdfdoc, int dochandle | bool', 2652\ 'pdf_close_pdi_page(': 'resource pdfdoc, int pagehandle | bool', 2653\ 'pdf_concat(': 'resource pdfdoc, float a, float b, float c, float d, float e, float f | bool', 2654\ 'pdf_continue_text(': 'resource pdfdoc, string text | bool', 2655\ 'pdf_curveto(': 'resource pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3 | bool', 2656\ 'pdf_delete(': 'resource pdfdoc | bool', 2657\ 'pdf_end_page(': 'resource pdfdoc | bool', 2658\ 'pdf_end_pattern(': 'resource pdfdoc | bool', 2659\ 'pdf_end_template(': 'resource pdfdoc | bool', 2660\ 'pdf_fill(': 'resource pdfdoc | bool', 2661\ 'pdf_fill_stroke(': 'resource pdfdoc | bool', 2662\ 'pdf_findfont(': 'resource pdfdoc, string fontname, string encoding, int embed | int', 2663\ 'pdf_get_buffer(': 'resource pdfdoc | string', 2664\ 'pdf_get_majorversion(': 'void | int', 2665\ 'pdf_get_minorversion(': 'void | int', 2666\ 'pdf_get_parameter(': 'resource pdfdoc, string key, float modifier | string', 2667\ 'pdf_get_pdi_parameter(': 'resource pdfdoc, string key, int document, int page, int index | string', 2668\ 'pdf_get_pdi_value(': 'resource pdfdoc, string key, int doc, int page, int index | string', 2669\ 'pdf_get_value(': 'resource pdfdoc, string key, float modifier | float', 2670\ 'pdf_initgraphics(': 'resource pdfdoc | bool', 2671\ 'pdf_lineto(': 'resource pdfdoc, float x, float y | bool', 2672\ 'pdf_makespotcolor(': 'resource pdfdoc, string spotname | bool', 2673\ 'pdf_moveto(': 'resource pdfdoc, float x, float y | bool', 2674\ 'pdf_new(': ' | resource', 2675\ 'pdf_open_ccitt(': 'resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1 | int', 2676\ 'pdf_open_file(': 'resource pdfdoc, string filename | bool', 2677\ 'pdf_open_image(': 'resource pdfdoc, string imagetype, string source, string data, int length, int width, int height, int components, int bpc, string params | int', 2678\ 'pdf_open_image_file(': 'resource pdfdoc, string imagetype, string filename, string stringparam, int intparam | int', 2679\ 'pdf_open_memory_image(': 'resource pdfdoc, resource image | int', 2680\ 'pdf_open_pdi(': 'resource pdfdoc, string filename, string stringparam, int intparam | int', 2681\ 'pdf_open_pdi_page(': 'resource pdfdoc, int dochandle, int pagenumber, string pagelabel | int', 2682\ 'pdf_place_image(': 'resource pdfdoc, int image, float x, float y, float scale | bool', 2683\ 'pdf_place_pdi_page(': 'resource pdfdoc, int page, float x, float y, float sx, float sy | bool', 2684\ 'pdf_rect(': 'resource pdfdoc, float x, float y, float width, float height | bool', 2685\ 'pdf_restore(': 'resource pdfdoc | bool', 2686\ 'pdf_rotate(': 'resource pdfdoc, float phi | bool', 2687\ 'pdf_save(': 'resource pdfdoc | bool', 2688\ 'pdf_scale(': 'resource pdfdoc, float x_scale, float y_scale | bool', 2689\ 'pdf_set_border_color(': 'resource pdfdoc, float red, float green, float blue | bool', 2690\ 'pdf_set_border_dash(': 'resource pdfdoc, float black, float white | bool', 2691\ 'pdf_set_border_style(': 'resource pdfdoc, string style, float width | bool', 2692\ 'pdf_setcolor(': 'resource pdfdoc, string type, string colorspace, float c1, float c2, float c3, float c4 | bool', 2693\ 'pdf_setdash(': 'resource pdfdoc, float b, float w | bool', 2694\ 'pdf_setflat(': 'resource pdfdoc, float flatness | bool', 2695\ 'pdf_setfont(': 'resource pdfdoc, int font, float size | bool', 2696\ 'pdf_setgray(': 'resource pdfdoc, float gray | bool', 2697\ 'pdf_setgray_fill(': 'resource pdfdoc, float gray | bool', 2698\ 'pdf_setgray_stroke(': 'resource pdfdoc, float gray | bool', 2699\ 'pdf_set_info(': 'resource pdfdoc, string key, string value | bool', 2700\ 'pdf_setlinecap(': 'resource pdfdoc, int linecap | void', 2701\ 'pdf_setlinejoin(': 'resource pdfdoc, int value | bool', 2702\ 'pdf_setlinewidth(': 'resource pdfdoc, float width | void', 2703\ 'pdf_setmatrix(': 'resource pdfdoc, float a, float b, float c, float d, float e, float f | bool', 2704\ 'pdf_setmiterlimit(': 'resource pdfdoc, float miter | bool', 2705\ 'pdf_set_parameter(': 'resource pdfdoc, string key, string value | bool', 2706\ 'pdf_setrgbcolor(': 'resource pdfdoc, float red_value, float green_value, float blue_value | bool', 2707\ 'pdf_setrgbcolor_fill(': 'resource pdfdoc, float red_value, float green_value, float blue_value | bool', 2708\ 'pdf_setrgbcolor_stroke(': 'resource pdfdoc, float red_value, float green_value, float blue_value | bool', 2709\ 'pdf_set_text_pos(': 'resource pdfdoc, float x, float y | bool', 2710\ 'pdf_set_value(': 'resource pdfdoc, string key, float value | bool', 2711\ 'pdf_show(': 'resource pdfdoc, string text | bool', 2712\ 'pdf_show_boxed(': 'resource pdfdoc, string text, float left, float top, float width, float height, string mode, string feature | int', 2713\ 'pdf_show_xy(': 'resource pdfdoc, string text, float x, float y | bool', 2714\ 'pdf_skew(': 'resource pdfdoc, float alpha, float beta | bool', 2715\ 'pdf_stringwidth(': 'resource pdfdoc, string text, int font, float size | float', 2716\ 'pdf_stroke(': 'resource pdfdoc | bool', 2717\ 'pdf_translate(': 'resource pdfdoc, float tx, float ty | bool', 2718\ 'pfpro_cleanup(': 'void | void', 2719\ 'pfpro_init(': 'void | void', 2720\ 'pfpro_process(': 'array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | array', 2721\ 'pfpro_process_raw(': 'string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | string', 2722\ 'pfpro_version(': 'void | string', 2723\ 'pfsockopen(': 'string hostname, int port [, int &errno [, string &errstr [, int timeout]]] | resource', 2724\ 'pg_transaction_status(': 'resource connection | int', 2725\ 'pg_affected_rows(': 'resource result | int', 2726\ 'pg_cancel_query(': 'resource connection | bool', 2727\ 'pg_client_encoding(': '[resource connection] | string', 2728\ 'pg_close(': '[resource connection] | bool', 2729\ 'pg_connect(': 'string connection_string [, int connect_type] | resource', 2730\ 'pg_connection_busy(': 'resource connection | bool', 2731\ 'pg_connection_reset(': 'resource connection | bool', 2732\ 'pg_connection_status(': 'resource connection | int', 2733\ 'pg_convert(': 'resource connection, string table_name, array assoc_array [, int options] | array', 2734\ 'pg_copy_from(': 'resource connection, string table_name, array rows [, string delimiter [, string null_as]] | bool', 2735\ 'pg_copy_to(': 'resource connection, string table_name [, string delimiter [, string null_as]] | array', 2736\ 'pg_dbname(': 'resource connection | string', 2737\ 'pg_delete(': 'resource connection, string table_name, array assoc_array [, int options] | mixed', 2738\ 'pg_end_copy(': '[resource connection] | bool', 2739\ 'pg_escape_bytea(': 'string data | string', 2740\ 'pg_escape_string(': 'string data | string', 2741\ 'pg_execute(': 'string stmtname, array params | resource', 2742\ 'pg_fetch_all(': 'resource result | array', 2743\ 'pg_fetch_array(': 'resource result [, int row [, int result_type]] | array', 2744\ 'pg_fetch_assoc(': 'resource result [, int row] | array', 2745\ 'pg_fetch_object(': 'resource result [, int row [, int result_type]] | object', 2746\ 'pg_fetch_result(': 'resource result, int row, mixed field | mixed', 2747\ 'pg_fetch_row(': 'resource result [, int row] | array', 2748\ 'pg_field_is_null(': 'resource result, int row, mixed field | int', 2749\ 'pg_field_name(': 'resource result, int field_number | string', 2750\ 'pg_field_num(': 'resource result, string field_name | int', 2751\ 'pg_field_prtlen(': 'resource result [, int row_number, mixed field_name_or_number] | int', 2752\ 'pg_field_size(': 'resource result, int field_number | int', 2753\ 'pg_field_type(': 'resource result, int field_number | string', 2754\ 'pg_field_type_oid(': 'resource result, int field_number | int', 2755\ 'pg_free_result(': 'resource result | bool', 2756\ 'pg_get_notify(': 'resource connection [, int result_type] | array', 2757\ 'pg_get_pid(': 'resource connection | int', 2758\ 'pg_get_result(': '[resource connection] | resource', 2759\ 'pg_host(': 'resource connection | string', 2760\ 'pg_insert(': 'resource connection, string table_name, array assoc_array [, int options] | bool', 2761\ 'pg_last_error(': '[resource connection] | string', 2762\ 'pg_last_notice(': 'resource connection | string', 2763\ 'pg_last_oid(': 'resource result | int', 2764\ 'pg_lo_close(': 'resource large_object | bool', 2765\ 'pg_lo_create(': '[resource connection] | int', 2766\ 'pg_lo_export(': '[resource connection, int oid, string pathname] | bool', 2767\ 'pg_lo_import(': '[resource connection, string pathname] | int', 2768\ 'pg_lo_open(': 'resource connection, int oid, string mode | resource', 2769\ 'pg_lo_read(': 'resource large_object [, int len] | string', 2770\ 'pg_lo_read_all(': 'resource large_object | int', 2771\ 'pg_lo_seek(': 'resource large_object, int offset [, int whence] | bool', 2772\ 'pg_lo_tell(': 'resource large_object | int', 2773\ 'pg_lo_unlink(': 'resource connection, int oid | bool', 2774\ 'pg_lo_write(': 'resource large_object, string data [, int len] | int', 2775\ 'pg_meta_data(': 'resource connection, string table_name | array', 2776\ 'pg_num_fields(': 'resource result | int', 2777\ 'pg_num_rows(': 'resource result | int', 2778\ 'pg_options(': 'resource connection | string', 2779\ 'pg_parameter_status(': '[resource connection, string param_name] | string', 2780\ 'pg_pconnect(': 'string connection_string [, int connect_type] | resource', 2781\ 'pg_ping(': 'resource connection | bool', 2782\ 'pg_port(': 'resource connection | int', 2783\ 'pg_prepare(': 'string stmtname, string query | resource', 2784\ 'pg_put_line(': 'string data | bool', 2785\ 'pg_query(': 'string query | resource', 2786\ 'pg_query_params(': 'string query, array params | resource', 2787\ 'pg_result_error(': 'resource result | string', 2788\ 'pg_result_error_field(': 'resource result, int fieldcode | string', 2789\ 'pg_result_seek(': 'resource result, int offset | array', 2790\ 'pg_result_status(': 'resource result [, int type] | mixed', 2791\ 'pg_select(': 'resource connection, string table_name, array assoc_array [, int options] | array', 2792\ 'pg_send_execute(': 'string stmtname, array params | resource', 2793\ 'pg_send_prepare(': 'string stmtname, string query | resource', 2794\ 'pg_send_query(': 'resource connection, string query | bool', 2795\ 'pg_send_query_params(': 'resource connection, string query, array params | bool', 2796\ 'pg_set_client_encoding(': 'string encoding | int', 2797\ 'pg_set_error_verbosity(': 'int verbosity | int', 2798\ 'pg_trace(': 'string pathname [, string mode [, resource connection]] | bool', 2799\ 'pg_tty(': 'resource connection | string', 2800\ 'pg_unescape_bytea(': 'string data | string', 2801\ 'pg_untrace(': '[resource connection] | bool', 2802\ 'pg_update(': 'resource connection, string table_name, array data, array condition [, int options] | mixed', 2803\ 'pg_version(': '[resource connection] | array', 2804\ 'php_check_syntax(': 'string file_name [, string &error_message] | bool', 2805\ 'phpcredits(': '[int flag] | void', 2806\ 'phpinfo(': '[int what] | int', 2807\ 'php_ini_scanned_files(': 'void | string', 2808\ 'php_logo_guid(': 'void | string', 2809\ 'php_sapi_name(': 'void | string', 2810\ 'php_strip_whitespace(': 'string filename | string', 2811\ 'php_uname(': '[string mode] | string', 2812\ 'phpversion(': '[string extension] | string', 2813\ 'pi(': 'void | float', 2814\ 'png2wbmp(': 'string pngname, string wbmpname, int d_height, int d_width, int threshold | int', 2815\ 'popen(': 'string command, string mode | resource', 2816\ 'posix_access(': 'string file [, int mode] | bool', 2817\ 'posix_ctermid(': 'void | string', 2818\ 'posix_getcwd(': 'void | string', 2819\ 'posix_getegid(': 'void | int', 2820\ 'posix_geteuid(': 'void | int', 2821\ 'posix_getgid(': 'void | int', 2822\ 'posix_getgrgid(': 'int gid | array', 2823\ 'posix_getgrnam(': 'string name | array', 2824\ 'posix_getgroups(': 'void | array', 2825\ 'posix_get_last_error(': 'void | int', 2826\ 'posix_getlogin(': 'void | string', 2827\ 'posix_getpgid(': 'int pid | int', 2828\ 'posix_getpgrp(': 'void | int', 2829\ 'posix_getpid(': 'void | int', 2830\ 'posix_getppid(': 'void | int', 2831\ 'posix_getpwnam(': 'string username | array', 2832\ 'posix_getpwuid(': 'int uid | array', 2833\ 'posix_getrlimit(': 'void | array', 2834\ 'posix_getsid(': 'int pid | int', 2835\ 'posix_getuid(': 'void | int', 2836\ 'posix_isatty(': 'int fd | bool', 2837\ 'posix_kill(': 'int pid, int sig | bool', 2838\ 'posix_mkfifo(': 'string pathname, int mode | bool', 2839\ 'posix_setegid(': 'int gid | bool', 2840\ 'posix_seteuid(': 'int uid | bool', 2841\ 'posix_setgid(': 'int gid | bool', 2842\ 'posix_setpgid(': 'int pid, int pgid | int', 2843\ 'posix_setsid(': 'void | int', 2844\ 'posix_setuid(': 'int uid | bool', 2845\ 'posix_strerror(': 'int errno | string', 2846\ 'posix_times(': 'void | array', 2847\ 'posix_ttyname(': 'int fd | string', 2848\ 'posix_uname(': 'void | array', 2849\ 'pow(': 'number base, number exp | number', 2850\ 'preg_grep(': 'string pattern, array input [, int flags] | array', 2851\ 'preg_match(': 'string pattern, string subject [, array &matches [, int flags [, int offset]]] | mixed', 2852\ 'preg_match_all(': 'string pattern, string subject, array &matches [, int flags [, int offset]] | int', 2853\ 'preg_quote(': 'string str [, string delimiter] | string', 2854\ 'preg_replace(': 'mixed pattern, mixed replacement, mixed subject [, int limit [, int &count]] | mixed', 2855\ 'preg_replace_callback(': 'mixed pattern, callback callback, mixed subject [, int limit] | mixed', 2856\ 'preg_split(': 'string pattern, string subject [, int limit [, int flags]] | array', 2857\ 'prev(': 'array &array | mixed', 2858\ 'print(': 'string arg | int', 2859\ 'printer_abort(': 'resource handle | void', 2860\ 'printer_close(': 'resource handle | void', 2861\ 'printer_create_brush(': 'int style, string color | mixed', 2862\ 'printer_create_dc(': 'resource handle | void', 2863\ 'printer_create_font(': 'string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation | mixed', 2864\ 'printer_create_pen(': 'int style, int width, string color | mixed', 2865\ 'printer_delete_brush(': 'resource handle | bool', 2866\ 'printer_delete_dc(': 'resource handle | bool', 2867\ 'printer_delete_font(': 'resource handle | bool', 2868\ 'printer_delete_pen(': 'resource handle | bool', 2869\ 'printer_draw_bmp(': 'resource handle, string filename, int x, int y [, int width, int height] | void', 2870\ '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', 2871\ 'printer_draw_elipse(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void', 2872\ 'printer_draw_line(': 'resource printer_handle, int from_x, int from_y, int to_x, int to_y | void', 2873\ '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', 2874\ 'printer_draw_rectangle(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void', 2875\ 'printer_draw_roundrect(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height | void', 2876\ 'printer_draw_text(': 'resource printer_handle, string text, int x, int y | void', 2877\ 'printer_end_doc(': 'resource handle | bool', 2878\ 'printer_end_page(': 'resource handle | bool', 2879\ 'printer_get_option(': 'resource handle, string option | mixed', 2880\ 'printer_list(': 'int enumtype [, string name [, int level]] | array', 2881\ 'printer_logical_fontheight(': 'resource handle, int height | int', 2882\ 'printer_open(': '[string devicename] | mixed', 2883\ 'printer_select_brush(': 'resource printer_handle, resource brush_handle | void', 2884\ 'printer_select_font(': 'resource printer_handle, resource font_handle | void', 2885\ 'printer_select_pen(': 'resource printer_handle, resource pen_handle | void', 2886\ 'printer_set_option(': 'resource handle, int option, mixed value | bool', 2887\ 'printer_start_doc(': 'resource handle [, string document] | bool', 2888\ 'printer_start_page(': 'resource handle | bool', 2889\ 'printer_write(': 'resource handle, string content | bool', 2890\ 'printf(': 'string format [, mixed args [, mixed ...]] | int', 2891\ 'print_r(': 'mixed expression [, bool return] | bool', 2892\ 'proc_close(': 'resource process | int', 2893\ 'proc_get_status(': 'resource process | array', 2894\ 'proc_nice(': 'int increment | bool', 2895\ 'proc_open(': 'string cmd, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]] | resource', 2896\ 'proc_terminate(': 'resource process [, int signal] | int', 2897\ 'pspell_add_to_personal(': 'int dictionary_link, string word | int', 2898\ 'pspell_add_to_session(': 'int dictionary_link, string word | int', 2899\ 'pspell_check(': 'int dictionary_link, string word | bool', 2900\ 'pspell_clear_session(': 'int dictionary_link | int', 2901\ 'pspell_config_create(': 'string language [, string spelling [, string jargon [, string encoding]]] | int', 2902\ 'pspell_config_data_dir(': 'int conf, string directory | bool', 2903\ 'pspell_config_dict_dir(': 'int conf, string directory | bool', 2904\ 'pspell_config_ignore(': 'int dictionary_link, int n | int', 2905\ 'pspell_config_mode(': 'int dictionary_link, int mode | int', 2906\ 'pspell_config_personal(': 'int dictionary_link, string file | int', 2907\ 'pspell_config_repl(': 'int dictionary_link, string file | int', 2908\ 'pspell_config_runtogether(': 'int dictionary_link, bool flag | int', 2909\ 'pspell_config_save_repl(': 'int dictionary_link, bool flag | int', 2910\ 'pspell_new(': 'string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int', 2911\ 'pspell_new_config(': 'int config | int', 2912\ 'pspell_new_personal(': 'string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int', 2913\ 'pspell_save_wordlist(': 'int dictionary_link | int', 2914\ 'pspell_store_replacement(': 'int dictionary_link, string misspelled, string correct | int', 2915\ 'pspell_suggest(': 'int dictionary_link, string word | array', 2916\ 'putenv(': 'string setting | void', 2917\ 'qdom_error(': 'void | string', 2918\ 'qdom_tree(': 'string doc | QDomDocument', 2919\ 'quoted_printable_decode(': 'string str | string', 2920\ 'quotemeta(': 'string str | string', 2921\ 'rad2deg(': 'float number | float', 2922\ 'rand(': '[int min, int max] | int', 2923\ 'range(': 'number low, number high [, number step] | array', 2924\ 'rar_close(': 'resource rar_file | bool', 2925\ 'rar_entry_get(': 'resource rar_file, string entry_name | RarEntry', 2926\ 'rar_list(': 'resource rar_file | array', 2927\ 'rar_open(': 'string filename [, string password] | resource', 2928\ 'rawurldecode(': 'string str | string', 2929\ 'rawurlencode(': 'string str | string', 2930\ 'readdir(': 'resource dir_handle | string', 2931\ 'readfile(': 'string filename [, bool use_include_path [, resource context]] | int', 2932\ 'readgzfile(': 'string filename [, int use_include_path] | int', 2933\ 'readline(': 'string prompt | string', 2934\ 'readline_add_history(': 'string line | void', 2935\ 'readline_callback_handler_install(': 'string prompt, callback callback | bool', 2936\ 'readline_callback_handler_remove(': 'void | bool', 2937\ 'readline_callback_read_char(': 'void | void', 2938\ 'readline_clear_history(': 'void | bool', 2939\ 'readline_completion_function(': 'callback function | bool', 2940\ 'readline_info(': '[string varname [, string newvalue]] | mixed', 2941\ 'readline_list_history(': 'void | array', 2942\ 'readline_on_new_line(': 'void | void', 2943\ 'readline_read_history(': '[string filename] | bool', 2944\ 'readline_redisplay(': 'void | void', 2945\ 'readline_write_history(': '[string filename] | bool', 2946\ 'readlink(': 'string path | string', 2947\ 'realpath(': 'string path | string', 2948\ 'recode_file(': 'string request, resource input, resource output | bool', 2949\ 'recode_string(': 'string request, string string | string', 2950\ 'register_shutdown_function(': 'callback function [, mixed parameter [, mixed ...]] | void', 2951\ 'register_tick_function(': 'callback function [, mixed arg [, mixed ...]] | void', 2952\ 'rename(': 'string oldname, string newname [, resource context] | bool', 2953\ 'rename_function(': 'string original_name, string new_name | bool', 2954\ 'reset(': 'array &array | mixed', 2955\ 'restore_error_handler(': 'void | bool', 2956\ 'restore_exception_handler(': 'void | bool', 2957\ 'restore_include_path(': 'void | void', 2958\ 'rewind(': 'resource handle | bool', 2959\ 'rewinddir(': 'resource dir_handle | void', 2960\ 'rmdir(': 'string dirname [, resource context] | bool', 2961\ 'round(': 'float val [, int precision] | float', 2962\ 'rsort(': 'array &array [, int sort_flags] | bool', 2963\ 'rtrim(': 'string str [, string charlist] | string', 2964\ 'scandir(': 'string directory [, int sorting_order [, resource context]] | array', 2965\ 'sem_acquire(': 'resource sem_identifier | bool', 2966\ 'sem_get(': 'int key [, int max_acquire [, int perm [, int auto_release]]] | resource', 2967\ 'sem_release(': 'resource sem_identifier | bool', 2968\ 'sem_remove(': 'resource sem_identifier | bool', 2969\ 'serialize(': 'mixed value | string', 2970\ 'sesam_affected_rows(': 'string result_id | int', 2971\ 'sesam_commit(': 'void | bool', 2972\ 'sesam_connect(': 'string catalog, string schema, string user | bool', 2973\ 'sesam_diagnostic(': 'void | array', 2974\ 'sesam_disconnect(': 'void | bool', 2975\ 'sesam_errormsg(': 'void | string', 2976\ 'sesam_execimm(': 'string query | string', 2977\ 'sesam_fetch_array(': 'string result_id [, int whence [, int offset]] | array', 2978\ 'sesam_fetch_result(': 'string result_id [, int max_rows] | mixed', 2979\ 'sesam_fetch_row(': 'string result_id [, int whence [, int offset]] | array', 2980\ 'sesam_field_array(': 'string result_id | array', 2981\ 'sesam_field_name(': 'string result_id, int index | int', 2982\ 'sesam_free_result(': 'string result_id | int', 2983\ 'sesam_num_fields(': 'string result_id | int', 2984\ 'sesam_query(': 'string query [, bool scrollable] | string', 2985\ 'sesam_rollback(': 'void | bool', 2986\ 'sesam_seek_row(': 'string result_id, int whence [, int offset] | bool', 2987\ 'sesam_settransaction(': 'int isolation_level, int read_only | bool', 2988\ 'session_cache_expire(': '[int new_cache_expire] | int', 2989\ 'session_cache_limiter(': '[string cache_limiter] | string', 2990\ 'session_decode(': 'string data | bool', 2991\ 'session_destroy(': 'void | bool', 2992\ 'session_encode(': 'void | string', 2993\ 'session_get_cookie_params(': 'void | array', 2994\ 'session_id(': '[string id] | string', 2995\ 'session_is_registered(': 'string name | bool', 2996\ 'session_module_name(': '[string module] | string', 2997\ 'session_name(': '[string name] | string', 2998\ 'session_regenerate_id(': 'void | bool', 2999\ 'session_register(': 'mixed name [, mixed ...] | bool', 3000\ 'session_save_path(': '[string path] | string', 3001\ 'session_set_cookie_params(': 'int lifetime [, string path [, string domain [, bool secure]]] | void', 3002\ 'session_set_save_handler(': 'string open, string close, string read, string write, string destroy, string gc | bool', 3003\ 'session_start(': 'void | bool', 3004\ 'session_unregister(': 'string name | bool', 3005\ 'session_unset(': 'void | void', 3006\ 'session_write_close(': 'void | void', 3007\ 'setcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool', 3008\ 'set_error_handler(': 'callback error_handler [, int error_types] | mixed', 3009\ 'set_exception_handler(': 'callback exception_handler | string', 3010\ 'set_include_path(': 'string new_include_path | string', 3011\ 'setlocale(': 'mixed category, string locale [, string ...] | string', 3012\ 'set_magic_quotes_runtime(': 'int new_setting | bool', 3013\ 'setrawcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool', 3014\ 'set_time_limit(': 'int seconds | void', 3015\ 'settype(': 'mixed &var, string type | bool', 3016\ 'sha1(': 'string str [, bool raw_output] | string', 3017\ 'sha1_file(': 'string filename [, bool raw_output] | string', 3018\ 'shell_exec(': 'string cmd | string', 3019\ 'shm_attach(': 'int key [, int memsize [, int perm]] | int', 3020\ 'shm_detach(': 'int shm_identifier | bool', 3021\ 'shm_get_var(': 'int shm_identifier, int variable_key | mixed', 3022\ 'shmop_close(': 'int shmid | int', 3023\ 'shmop_delete(': 'int shmid | int', 3024\ 'shmop_open(': 'int key, string flags, int mode, int size | int', 3025\ 'shmop_read(': 'int shmid, int start, int count | string', 3026\ 'shmop_size(': 'int shmid | int', 3027\ 'shmop_write(': 'int shmid, string data, int offset | int', 3028\ 'shm_put_var(': 'int shm_identifier, int variable_key, mixed variable | bool', 3029\ 'shm_remove(': 'int shm_identifier | int', 3030\ 'shm_remove_var(': 'int shm_identifier, int variable_key | int', 3031\ 'shuffle(': 'array &array | bool', 3032\ 'similar_text(': 'string first, string second [, float &percent] | int', 3033\ 'simplexml_import_dom(': 'DOMNode node [, string class_name] | SimpleXMLElement', 3034\ 'simplexml_load_file(': 'string filename [, string class_name [, int options]] | object', 3035\ 'simplexml_load_string(': 'string data [, string class_name [, int options]] | object', 3036\ 'sin(': 'float arg | float', 3037\ 'sinh(': 'float arg | float', 3038\ 'sleep(': 'int seconds | void', 3039\ 'snmpget(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | string', 3040\ 'snmpgetnext(': 'string host, string community, string object_id [, int timeout [, int retries]] | string', 3041\ 'snmp_get_quick_print(': 'void | bool', 3042\ 'snmp_get_valueretrieval(': 'void | int', 3043\ 'snmp_read_mib(': 'string filename | int', 3044\ 'snmprealwalk(': 'string host, string community, string object_id [, int timeout [, int retries]] | array', 3045\ 'snmpset(': 'string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]] | bool', 3046\ 'snmp_set_enum_print(': 'int enum_print | void', 3047\ 'snmp_set_oid_numeric_print(': 'int oid_numeric_print | void', 3048\ 'snmp_set_quick_print(': 'bool quick_print | void', 3049\ 'snmp_set_valueretrieval(': 'int method | int', 3050\ 'snmpwalk(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array', 3051\ 'snmpwalkoid(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array', 3052\ 'socket_accept(': 'resource socket | resource', 3053\ 'socket_bind(': 'resource socket, string address [, int port] | bool', 3054\ 'socket_clear_error(': '[resource socket] | void', 3055\ 'socket_close(': 'resource socket | void', 3056\ 'socket_connect(': 'resource socket, string address [, int port] | bool', 3057\ 'socket_create(': 'int domain, int type, int protocol | resource', 3058\ 'socket_create_listen(': 'int port [, int backlog] | resource', 3059\ 'socket_create_pair(': 'int domain, int type, int protocol, array &fd | bool', 3060\ 'socket_get_option(': 'resource socket, int level, int optname | mixed', 3061\ 'socket_getpeername(': 'resource socket, string &addr [, int &port] | bool', 3062\ 'socket_getsockname(': 'resource socket, string &addr [, int &port] | bool', 3063\ 'socket_last_error(': '[resource socket] | int', 3064\ 'socket_listen(': 'resource socket [, int backlog] | bool', 3065\ 'socket_read(': 'resource socket, int length [, int type] | string', 3066\ 'socket_recv(': 'resource socket, string &buf, int len, int flags | int', 3067\ 'socket_recvfrom(': 'resource socket, string &buf, int len, int flags, string &name [, int &port] | int', 3068\ 'socket_select(': 'array &read, array &write, array &except, int tv_sec [, int tv_usec] | int', 3069\ 'socket_send(': 'resource socket, string buf, int len, int flags | int', 3070\ 'socket_sendto(': 'resource socket, string buf, int len, int flags, string addr [, int port] | int', 3071\ 'socket_set_block(': 'resource socket | bool', 3072\ 'socket_set_nonblock(': 'resource socket | bool', 3073\ 'socket_set_option(': 'resource socket, int level, int optname, mixed optval | bool', 3074\ 'socket_shutdown(': 'resource socket [, int how] | bool', 3075\ 'socket_strerror(': 'int errno | string', 3076\ 'socket_write(': 'resource socket, string buffer [, int length] | int', 3077\ 'sort(': 'array &array [, int sort_flags] | bool', 3078\ 'soundex(': 'string str | string', 3079\ 'spl_classes(': 'void | array', 3080\ 'split(': 'string pattern, string string [, int limit] | array', 3081\ 'spliti(': 'string pattern, string string [, int limit] | array', 3082\ 'sprintf(': 'string format [, mixed args [, mixed ...]] | string', 3083\ 'sqlite_array_query(': 'resource dbhandle, string query [, int result_type [, bool decode_binary]] | array', 3084\ 'sqlite_busy_timeout(': 'resource dbhandle, int milliseconds | void', 3085\ 'sqlite_changes(': 'resource dbhandle | int', 3086\ 'sqlite_close(': 'resource dbhandle | void', 3087\ 'sqlite_column(': 'resource result, mixed index_or_name [, bool decode_binary] | mixed', 3088\ 'sqlite_create_aggregate(': 'resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args] | bool', 3089\ 'sqlite_create_function(': 'resource dbhandle, string function_name, callback callback [, int num_args] | bool', 3090\ 'sqlite_current(': 'resource result [, int result_type [, bool decode_binary]] | array', 3091\ 'sqlite_error_string(': 'int error_code | string', 3092\ 'sqlite_escape_string(': 'string item | string', 3093\ 'sqlite_exec(': 'resource dbhandle, string query | bool', 3094\ 'sqlite_factory(': 'string filename [, int mode [, string &error_message]] | SQLiteDatabase', 3095\ 'sqlite_fetch_all(': 'resource result [, int result_type [, bool decode_binary]] | array', 3096\ 'sqlite_fetch_array(': 'resource result [, int result_type [, bool decode_binary]] | array', 3097\ 'sqlite_fetch_column_types(': 'string table_name, resource dbhandle [, int result_type] | array', 3098\ 'sqlite_fetch_object(': 'resource result [, string class_name [, array ctor_params [, bool decode_binary]]] | object', 3099\ 'sqlite_fetch_single(': 'resource result [, bool decode_binary] | string', 3100\ 'sqlite_field_name(': 'resource result, int field_index | string', 3101\ 'sqlite_has_more(': 'resource result | bool', 3102\ 'sqlite_has_prev(': 'resource result | bool', 3103\ 'sqlite_key(': 'resource result | int', 3104\ 'sqlite_last_error(': 'resource dbhandle | int', 3105\ 'sqlite_last_insert_rowid(': 'resource dbhandle | int', 3106\ 'sqlite_libencoding(': 'void | string', 3107\ 'sqlite_libversion(': 'void | string', 3108\ 'sqlite_next(': 'resource result | bool', 3109\ 'sqlite_num_fields(': 'resource result | int', 3110\ 'sqlite_num_rows(': 'resource result | int', 3111\ 'sqlite_open(': 'string filename [, int mode [, string &error_message]] | resource', 3112\ 'sqlite_popen(': 'string filename [, int mode [, string &error_message]] | resource', 3113\ 'sqlite_prev(': 'resource result | bool', 3114\ 'sqlite_query(': 'resource dbhandle, string query | resource', 3115\ 'sqlite_rewind(': 'resource result | bool', 3116\ 'sqlite_seek(': 'resource result, int rownum | bool', 3117\ 'sqlite_single_query(': 'resource db, string query [, bool first_row_only [, bool decode_binary]] | mixed', 3118\ 'sqlite_udf_decode_binary(': 'string data | string', 3119\ 'sqlite_udf_encode_binary(': 'string data | string', 3120\ 'sqlite_unbuffered_query(': 'resource dbhandle, string query | resource', 3121\ 'sqlite_valid(': 'resource result | bool', 3122\ 'sql_regcase(': 'string string | string', 3123\ 'sqrt(': 'float arg | float', 3124\ 'srand(': '[int seed] | void', 3125\ 'sscanf(': 'string str, string format [, mixed &...] | mixed', 3126\ 'ssh2_auth_hostbased_file(': 'resource session, string username, string hostname, string pubkeyfile, string privkeyfile [, string passphrase [, string local_username]] | bool', 3127\ 'ssh2_auth_none(': 'resource session, string username | array', 3128\ 'ssh2_auth_password(': 'resource session, string username, string password | bool', 3129\ 'ssh2_auth_pubkey_file(': 'resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase] | bool', 3130\ 'ssh2_connect(': 'string host [, int port [, array methods [, array callbacks]]] | resource', 3131\ 'ssh2_exec(': 'resource session, string command [, array env] | stream', 3132\ 'ssh2_fetch_stream(': 'stream channel, int streamid | stream', 3133\ 'ssh2_fingerprint(': 'resource session [, int flags] | string', 3134\ 'ssh2_methods_negotiated(': 'resource session | array', 3135\ 'ssh2_scp_recv(': 'resource session, string remote_file, string local_file | bool', 3136\ 'ssh2_scp_send(': 'resource session, string local_file, string remote_file [, int create_mode] | stream', 3137\ 'ssh2_sftp(': 'resource session | resource', 3138\ 'ssh2_sftp_lstat(': 'resource sftp, string path | array', 3139\ 'ssh2_sftp_mkdir(': 'resource sftp, string dirname [, int mode [, bool recursive]] | bool', 3140\ 'ssh2_sftp_readlink(': 'resource sftp, string link | string', 3141\ 'ssh2_sftp_realpath(': 'resource sftp, string filename | string', 3142\ 'ssh2_sftp_rename(': 'resource sftp, string from, string to | bool', 3143\ 'ssh2_sftp_rmdir(': 'resource sftp, string dirname | bool', 3144\ 'ssh2_sftp_stat(': 'resource sftp, string path | array', 3145\ 'ssh2_sftp_symlink(': 'resource sftp, string target, string link | bool', 3146\ 'ssh2_sftp_unlink(': 'resource sftp, string filename | bool', 3147\ 'ssh2_shell(': 'resource session [, string term_type [, array env [, int width [, int height [, int width_height_type]]]]] | stream', 3148\ 'ssh2_tunnel(': 'resource session, string host, int port | stream', 3149\ 'stat(': 'string filename | array', 3150\ 'strcasecmp(': 'string str1, string str2 | int', 3151\ 'strcmp(': 'string str1, string str2 | int', 3152\ 'strcoll(': 'string str1, string str2 | int', 3153\ 'strcspn(': 'string str1, string str2 [, int start [, int length]] | int', 3154\ 'stream_context_create(': '[array options] | resource', 3155\ 'stream_context_get_default(': '[array options] | resource', 3156\ 'stream_context_get_options(': 'resource stream_or_context | array', 3157\ 'stream_context_set_option(': 'resource stream_or_context, string wrapper, string option, mixed value | bool', 3158\ 'stream_context_set_params(': 'resource stream_or_context, array params | bool', 3159\ 'stream_copy_to_stream(': 'resource source, resource dest [, int maxlength] | int', 3160\ 'stream_filter_append(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource', 3161\ 'stream_filter_prepend(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource', 3162\ 'stream_filter_register(': 'string filtername, string classname | bool', 3163\ 'stream_filter_remove(': 'resource stream_filter | bool', 3164\ 'stream_get_contents(': 'resource handle [, int maxlength [, int offset]] | string', 3165\ 'stream_get_filters(': 'void | array', 3166\ 'stream_get_line(': 'resource handle, int length [, string ending] | string', 3167\ 'stream_get_meta_data(': 'resource stream | array', 3168\ 'stream_get_transports(': 'void | array', 3169\ 'stream_get_wrappers(': 'void | array', 3170\ 'stream_select(': 'array &read, array &write, array &except, int tv_sec [, int tv_usec] | int', 3171\ 'stream_set_blocking(': 'resource stream, int mode | bool', 3172\ 'stream_set_timeout(': 'resource stream, int seconds [, int microseconds] | bool', 3173\ 'stream_set_write_buffer(': 'resource stream, int buffer | int', 3174\ 'stream_socket_accept(': 'resource server_socket [, float timeout [, string &peername]] | resource', 3175\ 'stream_socket_client(': 'string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context]]]]] | resource', 3176\ 'stream_socket_enable_crypto(': 'resource stream, bool enable [, int crypto_type [, resource session_stream]] | mixed', 3177\ 'stream_socket_get_name(': 'resource handle, bool want_peer | string', 3178\ 'stream_socket_pair(': 'int domain, int type, int protocol | array', 3179\ 'stream_socket_recvfrom(': 'resource socket, int length [, int flags [, string &address]] | string', 3180\ 'stream_socket_sendto(': 'resource socket, string data [, int flags [, string address]] | int', 3181\ 'stream_socket_server(': 'string local_socket [, int &errno [, string &errstr [, int flags [, resource context]]]] | resource', 3182\ 'stream_wrapper_register(': 'string protocol, string classname | bool', 3183\ 'stream_wrapper_restore(': 'string protocol | bool', 3184\ 'stream_wrapper_unregister(': 'string protocol | bool', 3185\ 'strftime(': 'string format [, int timestamp] | string', 3186\ 'stripcslashes(': 'string str | string', 3187\ 'stripos(': 'string haystack, string needle [, int offset] | int', 3188\ 'stripslashes(': 'string str | string', 3189\ 'strip_tags(': 'string str [, string allowable_tags] | string', 3190\ 'str_ireplace(': 'mixed search, mixed replace, mixed subject [, int &count] | mixed', 3191\ 'stristr(': 'string haystack, string needle | string', 3192\ 'strlen(': 'string string | int', 3193\ 'strnatcasecmp(': 'string str1, string str2 | int', 3194\ 'strnatcmp(': 'string str1, string str2 | int', 3195\ 'strncasecmp(': 'string str1, string str2, int len | int', 3196\ 'strncmp(': 'string str1, string str2, int len | int', 3197\ 'str_pad(': 'string input, int pad_length [, string pad_string [, int pad_type]] | string', 3198\ 'strpbrk(': 'string haystack, string char_list | string', 3199\ 'strpos(': 'string haystack, mixed needle [, int offset] | int', 3200\ 'strptime(': 'string timestamp, string format | array', 3201\ 'strrchr(': 'string haystack, string needle | string', 3202\ 'str_repeat(': 'string input, int multiplier | string', 3203\ 'str_replace(': 'mixed search, mixed replace, mixed subject [, int &count] | mixed', 3204\ 'strrev(': 'string string | string', 3205\ 'strripos(': 'string haystack, string needle [, int offset] | int', 3206\ 'str_rot13(': 'string str | string', 3207\ 'strrpos(': 'string haystack, string needle [, int offset] | int', 3208\ 'str_shuffle(': 'string str | string', 3209\ 'str_split(': 'string string [, int split_length] | array', 3210\ 'strspn(': 'string str1, string str2 [, int start [, int length]] | int', 3211\ 'strstr(': 'string haystack, string needle | string', 3212\ 'strtok(': 'string str, string token | string', 3213\ 'strtolower(': 'string str | string', 3214\ 'strtotime(': 'string time [, int now] | int', 3215\ 'strtoupper(': 'string string | string', 3216\ 'strtr(': 'string str, string from, string to | string', 3217\ 'strval(': 'mixed var | string', 3218\ 'str_word_count(': 'string string [, int format [, string charlist]] | mixed', 3219\ 'substr(': 'string string, int start [, int length] | string', 3220\ 'substr_compare(': 'string main_str, string str, int offset [, int length [, bool case_insensitivity]] | int', 3221\ 'substr_count(': 'string haystack, string needle | int', 3222\ 'substr_replace(': 'string string, string replacement, int start [, int length] | string', 3223\ 'swfaction(': 'string script | SWFAction', 3224\ 'swf_actiongeturl(': 'string url, string target | void', 3225\ 'swf_actiongotoframe(': 'int framenumber | void', 3226\ 'swf_actiongotolabel(': 'string label | void', 3227\ 'swf_actionnextframe(': 'void | void', 3228\ 'swf_actionplay(': 'void | void', 3229\ 'swf_actionprevframe(': 'void | void', 3230\ 'swf_actionsettarget(': 'string target | void', 3231\ 'swf_actionstop(': 'void | void', 3232\ 'swf_actiontogglequality(': 'void | void', 3233\ 'swf_actionwaitforframe(': 'int framenumber, int skipcount | void', 3234\ 'swf_addbuttonrecord(': 'int states, int shapeid, int depth | void', 3235\ 'swf_addcolor(': 'float r, float g, float b, float a | void', 3236\ 'swfbitmap(': 'mixed file [, mixed alphafile] | SWFBitmap', 3237\ 'swfbutton(': 'void | SWFButton', 3238\ 'swfbutton_keypress(': 'string str | int', 3239\ 'swf_closefile(': '[int return_file] | void', 3240\ 'swf_definebitmap(': 'int objid, string image_name | void', 3241\ 'swf_definefont(': 'int fontid, string fontname | void', 3242\ 'swf_defineline(': 'int objid, float x1, float y1, float x2, float y2, float width | void', 3243\ 'swf_definepoly(': 'int objid, array coords, int npoints, float width | void', 3244\ 'swf_definerect(': 'int objid, float x1, float y1, float x2, float y2, float width | void', 3245\ 'swf_definetext(': 'int objid, string str, int docenter | void', 3246\ 'swfdisplayitem(': 'void | SWFDisplayItem', 3247\ 'swf_endbutton(': 'void | void', 3248\ 'swf_enddoaction(': 'void | void', 3249\ 'swf_endshape(': 'void | void', 3250\ 'swf_endsymbol(': 'void | void', 3251\ 'swffill(': 'void | SWFFill', 3252\ 'swffont(': 'string filename | SWFFont', 3253\ 'swf_fontsize(': 'float size | void', 3254\ 'swf_fontslant(': 'float slant | void', 3255\ 'swf_fonttracking(': 'float tracking | void', 3256\ 'swf_getbitmapinfo(': 'int bitmapid | array', 3257\ 'swf_getfontinfo(': 'void | array', 3258\ 'swf_getframe(': 'void | int', 3259\ 'swfgradient(': 'void | SWFGradient', 3260\ 'swf_labelframe(': 'string name | void', 3261\ 'swf_lookat(': 'float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist | void', 3262\ 'swf_modifyobject(': 'int depth, int how | void', 3263\ 'swfmorph(': 'void | SWFMorph', 3264\ 'swfmovie(': 'void | SWFMovie', 3265\ 'swf_mulcolor(': 'float r, float g, float b, float a | void', 3266\ 'swf_nextid(': 'void | int', 3267\ 'swf_oncondition(': 'int transition | void', 3268\ 'swf_openfile(': 'string filename, float width, float height, float framerate, float r, float g, float b | void', 3269\ 'swf_ortho(': 'float xmin, float xmax, float ymin, float ymax, float zmin, float zmax | void', 3270\ 'swf_ortho2(': 'float xmin, float xmax, float ymin, float ymax | void', 3271\ 'swf_perspective(': 'float fovy, float aspect, float near, float far | void', 3272\ 'swf_placeobject(': 'int objid, int depth | void', 3273\ 'swf_polarview(': 'float dist, float azimuth, float incidence, float twist | void', 3274\ 'swf_popmatrix(': 'void | void', 3275\ 'swf_posround(': 'int round | void', 3276\ 'swf_pushmatrix(': 'void | void', 3277\ 'swf_removeobject(': 'int depth | void', 3278\ 'swf_rotate(': 'float angle, string axis | void', 3279\ 'swf_scale(': 'float x, float y, float z | void', 3280\ 'swf_setfont(': 'int fontid | void', 3281\ 'swf_setframe(': 'int framenumber | void', 3282\ 'swfshape(': 'void | SWFShape', 3283\ 'swf_shapearc(': 'float x, float y, float r, float ang1, float ang2 | void', 3284\ 'swf_shapecurveto(': 'float x1, float y1, float x2, float y2 | void', 3285\ 'swf_shapecurveto3(': 'float x1, float y1, float x2, float y2, float x3, float y3 | void', 3286\ 'swf_shapefillbitmapclip(': 'int bitmapid | void', 3287\ 'swf_shapefillbitmaptile(': 'int bitmapid | void', 3288\ 'swf_shapefilloff(': 'void | void', 3289\ 'swf_shapefillsolid(': 'float r, float g, float b, float a | void', 3290\ 'swf_shapelinesolid(': 'float r, float g, float b, float a, float width | void', 3291\ 'swf_shapelineto(': 'float x, float y | void', 3292\ 'swf_shapemoveto(': 'float x, float y | void', 3293\ 'swf_showframe(': 'void | void', 3294\ 'swfsprite(': 'void | SWFSprite', 3295\ 'swf_startbutton(': 'int objid, int type | void', 3296\ 'swf_startdoaction(': 'void | void', 3297\ 'swf_startshape(': 'int objid | void', 3298\ 'swf_startsymbol(': 'int objid | void', 3299\ 'swftext(': 'void | SWFText', 3300\ 'swftextfield(': '[int flags] | SWFTextField', 3301\ 'swf_textwidth(': 'string str | float', 3302\ 'swf_translate(': 'float x, float y, float z | void', 3303\ 'swf_viewport(': 'float xmin, float xmax, float ymin, float ymax | void', 3304\ 'sybase_affected_rows(': '[resource link_identifier] | int', 3305\ 'sybase_close(': '[resource link_identifier] | bool', 3306\ 'sybase_connect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource', 3307\ 'sybase_data_seek(': 'resource result_identifier, int row_number | bool', 3308\ 'sybase_deadlock_retry_count(': 'int retry_count | void', 3309\ 'sybase_fetch_array(': 'resource result | array', 3310\ 'sybase_fetch_assoc(': 'resource result | array', 3311\ 'sybase_fetch_field(': 'resource result [, int field_offset] | object', 3312\ 'sybase_fetch_object(': 'resource result [, mixed object] | object', 3313\ 'sybase_fetch_row(': 'resource result | array', 3314\ 'sybase_field_seek(': 'resource result, int field_offset | bool', 3315\ 'sybase_free_result(': 'resource result | bool', 3316\ 'sybase_get_last_message(': 'void | string', 3317\ 'sybase_min_client_severity(': 'int severity | void', 3318\ 'sybase_min_error_severity(': 'int severity | void', 3319\ 'sybase_min_message_severity(': 'int severity | void', 3320\ 'sybase_min_server_severity(': 'int severity | void', 3321\ 'sybase_num_fields(': 'resource result | int', 3322\ 'sybase_num_rows(': 'resource result | int', 3323\ 'sybase_pconnect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource', 3324\ 'sybase_query(': 'string query [, resource link_identifier] | resource', 3325\ 'sybase_result(': 'resource result, int row, mixed field | string', 3326\ 'sybase_select_db(': 'string database_name [, resource link_identifier] | bool', 3327\ 'sybase_set_message_handler(': 'callback handler [, resource connection] | bool', 3328\ 'sybase_unbuffered_query(': 'string query, resource link_identifier [, bool store_result] | resource', 3329\ 'symlink(': 'string target, string link | bool', 3330\ 'syslog(': 'int priority, string message | int', 3331\ 'system(': 'string command [, int &return_var] | string', 3332\ 'tan(': 'float arg | float', 3333\ 'tanh(': 'float arg | float', 3334\ 'tcpwrap_check(': 'string daemon, string address [, string user [, bool nodns]] | bool', 3335\ 'tempnam(': 'string dir, string prefix | string', 3336\ 'textdomain(': 'string text_domain | string', 3337\ 'tidy_access_count(': 'tidy object | int', 3338\ 'tidy_clean_repair(': 'tidy object | bool', 3339\ 'tidy_config_count(': 'tidy object | int', 3340\ 'tidy_diagnose(': 'tidy object | bool', 3341\ 'tidy_error_count(': 'tidy object | int', 3342\ 'tidy_get_body(': 'tidy object | tidyNode', 3343\ 'tidy_get_config(': 'tidy object | array', 3344\ 'tidy_get_error_buffer(': 'tidy object | string', 3345\ 'tidy_get_head(': 'tidy object | tidyNode', 3346\ 'tidy_get_html(': 'tidy object | tidyNode', 3347\ 'tidy_get_html_ver(': 'tidy object | int', 3348\ 'tidy_getopt(': 'tidy object, string option | mixed', 3349\ 'tidy_get_output(': 'tidy object | string', 3350\ 'tidy_get_release(': 'void | string', 3351\ 'tidy_get_root(': 'tidy object | tidyNode', 3352\ 'tidy_get_status(': 'tidy object | int', 3353\ 'tidy_is_xhtml(': 'tidy object | bool', 3354\ 'tidy_is_xml(': 'tidy object | bool', 3355\ 'tidy_load_config(': 'string filename, string encoding | void', 3356\ 'tidy_parse_file(': 'string filename [, mixed config [, string encoding [, bool use_include_path]]] | tidy', 3357\ 'tidy_parse_string(': 'string input [, mixed config [, string encoding]] | tidy', 3358\ 'tidy_repair_file(': 'string filename [, mixed config [, string encoding [, bool use_include_path]]] | string', 3359\ 'tidy_repair_string(': 'string data [, mixed config [, string encoding]] | string', 3360\ 'tidy_reset_config(': 'void | bool', 3361\ 'tidy_save_config(': 'string filename | bool', 3362\ 'tidy_set_encoding(': 'string encoding | bool', 3363\ 'tidy_setopt(': 'string option, mixed value | bool', 3364\ 'tidy_warning_count(': 'tidy object | int', 3365\ 'time(': 'void | int', 3366\ 'time_nanosleep(': 'int seconds, int nanoseconds | mixed', 3367\ 'tmpfile(': 'void | resource', 3368\ 'token_get_all(': 'string source | array', 3369\ 'token_name(': 'int token | string', 3370\ 'touch(': 'string filename [, int time [, int atime]] | bool', 3371\ 'trigger_error(': 'string error_msg [, int error_type] | bool', 3372\ 'trim(': 'string str [, string charlist] | string', 3373\ 'uasort(': 'array &array, callback cmp_function | bool', 3374\ 'ucfirst(': 'string str | string', 3375\ 'ucwords(': 'string str | string', 3376\ 'udm_add_search_limit(': 'resource agent, int var, string val | bool', 3377\ 'udm_alloc_agent(': 'string dbaddr [, string dbmode] | resource', 3378\ 'udm_alloc_agent_array(': 'array databases | resource', 3379\ 'udm_api_version(': 'void | int', 3380\ 'udm_cat_list(': 'resource agent, string category | array', 3381\ 'udm_cat_path(': 'resource agent, string category | array', 3382\ 'udm_check_charset(': 'resource agent, string charset | bool', 3383\ 'udm_check_stored(': 'resource agent, int link, string doc_id | int', 3384\ 'udm_clear_search_limits(': 'resource agent | bool', 3385\ 'udm_close_stored(': 'resource agent, int link | int', 3386\ 'udm_crc32(': 'resource agent, string str | int', 3387\ 'udm_errno(': 'resource agent | int', 3388\ 'udm_error(': 'resource agent | string', 3389\ 'udm_find(': 'resource agent, string query | resource', 3390\ 'udm_free_agent(': 'resource agent | int', 3391\ 'udm_free_ispell_data(': 'int agent | bool', 3392\ 'udm_free_res(': 'resource res | bool', 3393\ 'udm_get_doc_count(': 'resource agent | int', 3394\ 'udm_get_res_field(': 'resource res, int row, int field | string', 3395\ 'udm_get_res_param(': 'resource res, int param | string', 3396\ 'udm_hash32(': 'resource agent, string str | int', 3397\ 'udm_load_ispell_data(': 'resource agent, int var, string val1, string val2, int flag | bool', 3398\ 'udm_open_stored(': 'resource agent, string storedaddr | int', 3399\ 'udm_set_agent_param(': 'resource agent, int var, string val | bool', 3400\ 'uksort(': 'array &array, callback cmp_function | bool', 3401\ 'umask(': '[int mask] | int', 3402\ 'uniqid(': '[string prefix [, bool more_entropy]] | string', 3403\ 'unixtojd(': '[int timestamp] | int', 3404\ 'unlink(': 'string filename [, resource context] | bool', 3405\ 'unpack(': 'string format, string data | array', 3406\ 'unregister_tick_function(': 'string function_name | void', 3407\ 'unserialize(': 'string str | mixed', 3408\ 'unset(': 'mixed var [, mixed var [, mixed ...]] | void', 3409\ 'urldecode(': 'string str | string', 3410\ 'urlencode(': 'string str | string', 3411\ 'use_soap_error_handler(': '[bool handler] | void', 3412\ 'usleep(': 'int micro_seconds | void', 3413\ 'usort(': 'array &array, callback cmp_function | bool', 3414\ 'utf8_decode(': 'string data | string', 3415\ 'utf8_encode(': 'string data | string', 3416\ 'var_dump(': 'mixed expression [, mixed expression [, ...]] | void', 3417\ 'var_export(': 'mixed expression [, bool return] | mixed', 3418\ 'variant_abs(': 'mixed val | mixed', 3419\ 'variant_add(': 'mixed left, mixed right | mixed', 3420\ 'variant_and(': 'mixed left, mixed right | mixed', 3421\ 'variant_cast(': 'variant variant, int type | variant', 3422\ 'variant_cat(': 'mixed left, mixed right | mixed', 3423\ 'variant_cmp(': 'mixed left, mixed right [, int lcid [, int flags]] | int', 3424\ 'variant_date_from_timestamp(': 'int timestamp | variant', 3425\ 'variant_date_to_timestamp(': 'variant variant | int', 3426\ 'variant_div(': 'mixed left, mixed right | mixed', 3427\ 'variant_eqv(': 'mixed left, mixed right | mixed', 3428\ 'variant_fix(': 'mixed variant | mixed', 3429\ 'variant_get_type(': 'variant variant | int', 3430\ 'variant_idiv(': 'mixed left, mixed right | mixed', 3431\ 'variant_imp(': 'mixed left, mixed right | mixed', 3432\ 'variant_int(': 'mixed variant | mixed', 3433\ 'variant_mod(': 'mixed left, mixed right | mixed', 3434\ 'variant_mul(': 'mixed left, mixed right | mixed', 3435\ 'variant_neg(': 'mixed variant | mixed', 3436\ 'variant_not(': 'mixed variant | mixed', 3437\ 'variant_or(': 'mixed left, mixed right | mixed', 3438\ 'variant_pow(': 'mixed left, mixed right | mixed', 3439\ 'variant_round(': 'mixed variant, int decimals | mixed', 3440\ 'variant_set(': 'variant variant, mixed value | void', 3441\ 'variant_set_type(': 'variant variant, int type | void', 3442\ 'variant_sub(': 'mixed left, mixed right | mixed', 3443\ 'variant_xor(': 'mixed left, mixed right | mixed', 3444\ 'version_compare(': 'string version1, string version2 [, string operator] | int', 3445\ 'vfprintf(': 'resource handle, string format, array args | int', 3446\ 'virtual(': 'string filename | int', 3447\ 'vpopmail_add_alias_domain(': 'string domain, string aliasdomain | bool', 3448\ 'vpopmail_add_alias_domain_ex(': 'string olddomain, string newdomain | bool', 3449\ 'vpopmail_add_domain(': 'string domain, string dir, int uid, int gid | bool', 3450\ 'vpopmail_add_domain_ex(': 'string domain, string passwd [, string quota [, string bounce [, bool apop]]] | bool', 3451\ 'vpopmail_add_user(': 'string user, string domain, string password [, string gecos [, bool apop]] | bool', 3452\ 'vpopmail_alias_add(': 'string user, string domain, string alias | bool', 3453\ 'vpopmail_alias_del(': 'string user, string domain | bool', 3454\ 'vpopmail_alias_del_domain(': 'string domain | bool', 3455\ 'vpopmail_alias_get(': 'string alias, string domain | array', 3456\ 'vpopmail_alias_get_all(': 'string domain | array', 3457\ 'vpopmail_auth_user(': 'string user, string domain, string password [, string apop] | bool', 3458\ 'vpopmail_del_domain(': 'string domain | bool', 3459\ 'vpopmail_del_domain_ex(': 'string domain | bool', 3460\ 'vpopmail_del_user(': 'string user, string domain | bool', 3461\ 'vpopmail_error(': 'void | string', 3462\ 'vpopmail_passwd(': 'string user, string domain, string password [, bool apop] | bool', 3463\ 'vpopmail_set_user_quota(': 'string user, string domain, string quota | bool', 3464\ 'vprintf(': 'string format, array args | int', 3465\ 'vsprintf(': 'string format, array args | string', 3466\ 'w32api_deftype(': 'string typename, string member1_type, string member1_name [, string ... [, string ...]] | bool', 3467\ 'w32api_init_dtype(': 'string typename, mixed value [, mixed ...] | resource', 3468\ 'w32api_invoke_function(': 'string funcname, mixed argument [, mixed ...] | mixed', 3469\ 'w32api_register_function(': 'string library, string function_name, string return_type | bool', 3470\ 'w32api_set_call_method(': 'int method | void', 3471\ 'wddx_add_vars(': 'int packet_id, mixed name_var [, mixed ...] | bool', 3472\ 'wddx_deserialize(': 'string packet | mixed', 3473\ 'wddx_packet_end(': 'int packet_id | string', 3474\ 'wddx_packet_start(': '[string comment] | int', 3475\ 'wddx_serialize_value(': 'mixed var [, string comment] | string', 3476\ 'wddx_serialize_vars(': 'mixed var_name [, mixed ...] | string', 3477\ 'wordwrap(': 'string str [, int width [, string break [, bool cut]]] | string', 3478\ 'xattr_get(': 'string filename, string name [, int flags] | string', 3479\ 'xattr_list(': 'string filename [, int flags] | array', 3480\ 'xattr_remove(': 'string filename, string name [, int flags] | bool', 3481\ 'xattr_set(': 'string filename, string name, string value [, int flags] | bool', 3482\ 'xattr_supported(': 'string filename [, int flags] | bool', 3483\ 'xdiff_file_diff(': 'string file1, string file2, string dest [, int context [, bool minimal]] | bool', 3484\ 'xdiff_file_diff_binary(': 'string file1, string file2, string dest | bool', 3485\ 'xdiff_file_merge3(': 'string file1, string file2, string file3, string dest | mixed', 3486\ 'xdiff_file_patch(': 'string file, string patch, string dest [, int flags] | mixed', 3487\ 'xdiff_file_patch_binary(': 'string file, string patch, string dest | bool', 3488\ 'xdiff_string_diff(': 'string str1, string str2 [, int context [, bool minimal]] | mixed', 3489\ 'xdiff_string_diff_binary(': 'string str1, string str2 | mixed', 3490\ 'xdiff_string_merge3(': 'string str1, string str2, string str3 [, string &error] | string', 3491\ 'xdiff_string_patch(': 'string str, string patch [, int flags [, string &error]] | string', 3492\ 'xdiff_string_patch_binary(': 'string str, string patch | string', 3493\ 'xml_error_string(': 'int code | string', 3494\ 'xml_get_current_byte_index(': 'resource parser | int', 3495\ 'xml_get_current_column_number(': 'resource parser | int', 3496\ 'xml_get_current_line_number(': 'resource parser | int', 3497\ 'xml_get_error_code(': 'resource parser | int', 3498\ 'xml_parse(': 'resource parser, string data [, bool is_final] | bool', 3499\ 'xml_parse_into_struct(': 'resource parser, string data, array &values [, array &index] | int', 3500\ 'xml_parser_create(': '[string encoding] | resource', 3501\ 'xml_parser_create_ns(': '[string encoding [, string separator]] | resource', 3502\ 'xml_parser_free(': 'resource parser | bool', 3503\ 'xml_parser_get_option(': 'resource parser, int option | mixed', 3504\ 'xml_parser_set_option(': 'resource parser, int option, mixed value | bool', 3505\ 'xmlrpc_decode(': 'string xml [, string encoding] | array', 3506\ 'xmlrpc_decode_request(': 'string xml, string &method [, string encoding] | array', 3507\ 'xmlrpc_encode(': 'mixed value | string', 3508\ 'xmlrpc_encode_request(': 'string method, mixed params [, array output_options] | string', 3509\ 'xmlrpc_get_type(': 'mixed value | string', 3510\ 'xmlrpc_is_fault(': 'array arg | bool', 3511\ 'xmlrpc_parse_method_descriptions(': 'string xml | array', 3512\ 'xmlrpc_server_add_introspection_data(': 'resource server, array desc | int', 3513\ 'xmlrpc_server_call_method(': 'resource server, string xml, mixed user_data [, array output_options] | mixed', 3514\ 'xmlrpc_server_create(': 'void | resource', 3515\ 'xmlrpc_server_destroy(': 'resource server | int', 3516\ 'xmlrpc_server_register_introspection_callback(': 'resource server, string function | bool', 3517\ 'xmlrpc_server_register_method(': 'resource server, string method_name, string function | bool', 3518\ 'xmlrpc_set_type(': 'string &value, string type | bool', 3519\ 'xml_set_character_data_handler(': 'resource parser, callback handler | bool', 3520\ 'xml_set_default_handler(': 'resource parser, callback handler | bool', 3521\ 'xml_set_element_handler(': 'resource parser, callback start_element_handler, callback end_element_handler | bool', 3522\ 'xml_set_end_namespace_decl_handler(': 'resource parser, callback handler | bool', 3523\ 'xml_set_external_entity_ref_handler(': 'resource parser, callback handler | bool', 3524\ 'xml_set_notation_decl_handler(': 'resource parser, callback handler | bool', 3525\ 'xml_set_object(': 'resource parser, object &object | void', 3526\ 'xml_set_processing_instruction_handler(': 'resource parser, callback handler | bool', 3527\ 'xml_set_start_namespace_decl_handler(': 'resource parser, callback handler | bool', 3528\ 'xml_set_unparsed_entity_decl_handler(': 'resource parser, callback handler | bool', 3529\ 'xpath_eval(': 'XPathContext xpath_context, string xpath_expression [, domnode contextnode] | array', 3530\ 'xpath_eval_expression(': 'XPathContext xpath_context, string expression | XPathObject', 3531\ 'xpath_new_context(': 'domdocument dom_document | XPathContext', 3532\ 'xptr_eval(': '[XPathContext xpath_context, string eval_str] | int', 3533\ 'xptr_new_context(': 'void | XPathContext', 3534\ 'xslt_backend_info(': 'void | string', 3535\ 'xslt_backend_name(': 'void | string', 3536\ 'xslt_backend_version(': 'void | string', 3537\ 'xslt_create(': 'void | resource', 3538\ 'xslt_errno(': 'resource xh | int', 3539\ 'xslt_error(': 'resource xh | mixed', 3540\ 'xslt_free(': 'resource xh | void', 3541\ 'xslt_getopt(': 'resource processor | int', 3542\ 'xslt_process(': 'resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]] | mixed', 3543\ 'xslt_set_base(': 'resource xh, string uri | void', 3544\ 'xslt_set_encoding(': 'resource xh, string encoding | void', 3545\ 'xslt_set_error_handler(': 'resource xh, mixed handler | void', 3546\ 'xslt_set_log(': 'resource xh [, mixed log] | void', 3547\ 'xslt_set_object(': 'resource processor, object &obj | int', 3548\ 'xslt_setopt(': 'resource processor, int newmask | int', 3549\ 'xslt_set_sax_handler(': 'resource xh, array handlers | void', 3550\ 'xslt_set_sax_handlers(': 'resource processor, array handlers | void', 3551\ 'xslt_set_scheme_handler(': 'resource xh, array handlers | void', 3552\ 'xslt_set_scheme_handlers(': 'resource processor, array handlers | void', 3553\ 'yaz_addinfo(': 'resource id | string', 3554\ 'yaz_ccl_conf(': 'resource id, array config | int', 3555\ 'yaz_ccl_parse(': 'resource id, string query, array &result | bool', 3556\ 'yaz_close(': 'resource id | bool', 3557\ 'yaz_connect(': 'string zurl [, mixed options] | resource', 3558\ 'yaz_database(': 'resource id, string databases | bool', 3559\ 'yaz_element(': 'resource id, string elementset | bool', 3560\ 'yaz_errno(': 'resource id | int', 3561\ 'yaz_error(': 'resource id | string', 3562\ 'yaz_es_result(': 'resource id | array', 3563\ 'yaz_get_option(': 'resource id, string name | string', 3564\ 'yaz_hits(': 'resource id | int', 3565\ 'yaz_itemorder(': 'resource id, array args | int', 3566\ 'yaz_present(': 'resource id | bool', 3567\ 'yaz_range(': 'resource id, int start, int number | bool', 3568\ 'yaz_record(': 'resource id, int pos, string type | string', 3569\ 'yaz_scan(': 'resource id, string type, string startterm [, array flags] | int', 3570\ 'yaz_scan_result(': 'resource id [, array &result] | array', 3571\ 'yaz_schema(': 'resource id, string schema | int', 3572\ 'yaz_search(': 'resource id, string type, string query | int', 3573\ 'yaz_set_option(': 'resource id, string name, string value | string', 3574\ 'yaz_sort(': 'resource id, string criteria | int', 3575\ 'yaz_syntax(': 'resource id, string syntax | int', 3576\ 'yaz_wait(': '[array &options] | int', 3577\ 'yp_all(': 'string domain, string map, string callback | void', 3578\ 'yp_cat(': 'string domain, string map | array', 3579\ 'yp_errno(': 'void | int', 3580\ 'yp_err_string(': 'int errorcode | string', 3581\ 'yp_first(': 'string domain, string map | array', 3582\ 'yp_get_default_domain(': 'void | int', 3583\ 'yp_master(': 'string domain, string map | string', 3584\ 'yp_match(': 'string domain, string map, string key | string', 3585\ 'yp_next(': 'string domain, string map, string key | array', 3586\ 'yp_order(': 'string domain, string map | int', 3587\ 'zend_logo_guid(': 'void | string', 3588\ 'zend_version(': 'void | string', 3589\ 'zip_close(': 'resource zip | void', 3590\ 'zip_entry_close(': 'resource zip_entry | void', 3591\ 'zip_entry_compressedsize(': 'resource zip_entry | int', 3592\ 'zip_entry_compressionmethod(': 'resource zip_entry | string', 3593\ 'zip_entry_filesize(': 'resource zip_entry | int', 3594\ 'zip_entry_name(': 'resource zip_entry | string', 3595\ 'zip_entry_open(': 'resource zip, resource zip_entry [, string mode] | bool', 3596\ 'zip_entry_read(': 'resource zip_entry [, int length] | string', 3597\ 'zip_open(': 'string filename | resource', 3598\ 'zip_read(': 'resource zip | resource', 3599\ 'zlib_get_coding_type(': 'void | string'} 3600endfunction 3601" }}} 3602" vim:set foldmethod=marker: 3603