Menu

php autocomplete function parameters ifUneed

2007-10-15
2012-11-13
  • daghan dinc

    daghan dinc - 2007-10-15

    autocomplete feature of n++ is very useful especially for php. However it just puts the name of the function, not the parameters thus i usually look php documentation for the use of the functions.
    i.e:
    when you write
    "expl"
    it completes to
    "explode"
    but not to
    "explode(string delimiter, string string [, int limit])"
    i parsed the php  documentation and modified the php.api file thus it now can autocomplete functions with parameters. If you think it is useful for you, first clear the contents of the php.api file, then copy-paste the text below into php.api file. (it is recommended to save a copy of the original php.api file)
    notes:
    - if anyone knows a better way of getting function uses of php instead of parsing documentation, you are welcome to state it
    - you should clear parameter types (i.e string or array keyword before the parameter) and update the parameter names according to your code. If you think this is more cumbersome than checking documentation, do not use it
    -the new contents of the php.api file::

    __halt_compiler(void)
    abs(mixed number)
    abstract
    acos(float arg)
    acosh(float arg)
    addcslashes(string str, string charlist)
    addslashes(string str)
    aggregate(object object, string class_name)
    aggregate_info(object object)
    aggregate_methods(object object, string class_name)
    aggregate_methods_by_list(object object, string class_name, array methods_list [, bool exclude])
    aggregate_methods_by_regexp(object object, string class_name, string regexp [, bool exclude])
    aggregate_properties(object object, string class_name)
    aggregate_properties_by_list(object object, string class_name, array properties_list [, bool exclude])
    aggregate_properties_by_regexp(object object, string class_name, string regexp [, bool exclude])
    apache_child_terminate(void)
    apache_get_modules(void)
    apache_get_version(void)
    apache_getenv(string variable [, bool walk_to_top])
    apache_lookup_uri(string filename)
    apache_note(string note_name [, string note_value])
    apache_request_headers(void)
    apache_reset_timeout(void)
    apache_response_headers(void)
    apache_setenv(string variable, string value [, bool walk_to_top])
    apc_add(string key, mixed var [, int ttl])
    apc_cache_info([string cache_type [, bool limited]])
    apc_clear_cache([string cache_type])
    apc_compile_file(string filename)
    apc_define_constants(string key, array constants [, bool case_sensitive])
    apc_delete(string key)
    apc_fetch(string key)
    apc_load_constants(string key [, bool case_sensitive])
    apc_sma_info([bool limited])
    apc_store(string key, mixed var [, int ttl])
    apd_breakpoint(int debug_level)
    apd_callstack(void)
    apd_clunk(string warning [, string delimiter])
    apd_continue(int debug_level)
    apd_croak(string warning [, string delimiter])
    apd_dump_function_table(void)
    apd_dump_persistent_resources(void)
    apd_dump_regular_resources(void)
    apd_echo(string output)
    apd_get_active_symbols(void)
    apd_set_pprof_trace([string dump_directory [, string fragment]])
    apd_set_session(int debug_level)
    apd_set_session_trace(int debug_level [, string dump_directory])
    apd_set_socket_session_trace(string tcp_server, int socket_type, int port, int debug_level)
    array([mixed ...])
    array_change_key_case(array input [, int case])
    array_chunk(array input, int size [, bool preserve_keys])
    array_combine(array keys, array values)
    array_count_values(array input)
    array_diff(array array1, array array2 [, array ...])
    array_diff_assoc(array array1, array array2 [, array ...])
    array_diff_key(array array1, array array2 [, array ...])
    array_diff_uassoc(array array1, array array2 [, array ..., callback key_compare_func])
    array_diff_ukey(array array1, array array2 [, array ..., callback key_compare_func])
    array_fill(int start_index, int num, mixed value)
    array_fill_keys(array keys, mixed value)
    array_filter(array input [, callback callback])
    array_flip(array trans)
    array_intersect(array array1, array array2 [, array ...])
    array_intersect_assoc(array array1, array array2 [, array ...])
    array_intersect_key(array array1, array array2 [, array ...])
    array_intersect_uassoc(array array1, array array2 [, array ..., callback key_compare_func])
    array_intersect_ukey(array array1, array array2 [, array ..., callback key_compare_func])
    array_key_exists(mixed key, array search)
    array_keys(array input [, mixed search_value [, bool strict]])
    array_map(callback callback, array arr1 [, array ...])
    array_merge(array array1 [, array array2 [, array ...]])
    array_merge_recursive(array array1 [, array ...])
    array_multisort(array ar1 [, mixed arg [, mixed ... [, array ...]]])
    array_pad(array input, int pad_size, mixed pad_value)
    array_pop
    array_product(array array)
    array_push
    array_rand(array input [, int num_req])
    array_reduce(array input, callback function [, int initial])
    array_reverse(array array [, bool preserve_keys])
    array_search(mixed needle, array haystack [, bool strict])
    array_shift
    array_slice(array array, int offset [, int length [, bool preserve_keys]])
    array_splice
    array_sum(array array)
    array_udiff(array array1, array array2 [, array ..., callback data_compare_func])
    array_udiff_assoc(array array1, array array2 [, array ..., callback data_compare_func])
    array_udiff_uassoc(array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func])
    array_uintersect(array array1, array array2 [, array ..., callback data_compare_func])
    array_uintersect_assoc(array array1, array array2 [, array ..., callback data_compare_func])
    array_uintersect_uassoc(array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func])
    array_unique(array array)
    array_unshift
    array_values(array input)
    array_walk
    arsort
    ascii2ebcdic(string ascii_str)
    asin(float arg)
    asinh(float arg)
    asort
    aspell_check(int dictionary_link, string word)
    aspell_check_raw(int dictionary_link, string word)
    aspell_new(string master [, string personal])
    aspell_suggest(int dictionary_link, string word)
    assert(mixed assertion)
    assert_options(int what [, mixed value])
    atan(float arg)
    atan2(float y, float x)
    atanh(float arg)
    base64_decode(string data [, bool strict])
    base64_encode(string data)
    base_convert(string number, int frombase, int tobase)
    basename(string path [, string suffix])
    bcadd(string left_operand, string right_operand [, int scale])
    bccomp(string left_operand, string right_operand [, int scale])
    bcdiv(string left_operand, string right_operand [, int scale])
    bcmod(string left_operand, string modulus)
    bcmul(string left_operand, string right_operand [, int scale])
    bcompiler_load(string filename)
    bcompiler_load_exe(string filename)
    bcompiler_parse_class(string class, string callback)
    bcompiler_read(resource filehandle)
    bcompiler_write_class(resource filehandle, string className [, string extends])
    bcompiler_write_constant(resource filehandle, string constantName)
    bcompiler_write_exe_footer(resource filehandle, int startpos)
    bcompiler_write_file(resource filehandle, string filename)
    bcompiler_write_footer(resource filehandle)
    bcompiler_write_function(resource filehandle, string functionName)
    bcompiler_write_functions_from_file(resource filehandle, string fileName)
    bcompiler_write_header(resource filehandle [, string write_ver])
    bcompiler_write_included_filename(resource filehandle, string filename)
    bcpow(string left_operand, string right_operand [, int scale])
    bcpowmod(string left_operand, string right_operand, string modulus [, int scale])
    bcscale(int scale)
    bcsqrt(string operand [, int scale])
    bcsub(string left_operand, string right_operand [, int scale])
    bin2hex(string str)
    bind_textdomain_codeset(string domain, string codeset)
    bindec(string binary_string)
    bindtextdomain(string domain, string directory)
    bzclose(resource bz)
    bzcompress(string source [, int blocksize [, int workfactor]])
    bzdecompress(string source [, int small])
    bzerrno(resource bz)
    bzerror(resource bz)
    bzerrstr(resource bz)
    bzflush(resource bz)
    bzopen(string filename, string mode)
    bzread(resource bz [, int length])
    bzwrite(resource bz, string data [, int length])
    caching the response should be attemptedprotectedbooleangzipwhether the sent entity should be gzip'ed on the flyprotectedstringeTagthe generated or custom ETagprotectedintegerlastModifiedthe generated or custom timestamp of last modificationprotectedstringcacheControlCache-Control settingprotectedstringcontentTypethe Content-Type of the sent entityprotectedstringcontentDispositionthe Content-Disposition of the sent entityprotectedintegerbufferSizethe chunk buffer size used for throttlingprotecteddoublethrottleDelaythe seconds to delay when throttlingPredefined ConstantsTable 2. TypeName
    cal_days_in_month(int calendar, int month, int year)
    cal_from_jd(int jd, int calendar)
    cal_info([int calendar])
    cal_to_jd(int calendar, int month, int day, int year)
    call_user_func(callback function [, mixed parameter [, mixed ...]])
    call_user_func_array(callback function, array param_arr)
    call_user_method
    call_user_method_array
    catalog that contains the table. The value is NULL if
    ccvs_add(string session, string invoice, string argtype, string argval)
    ccvs_auth(string session, string invoice)
    ccvs_command(string session, string type, string argval)
    ccvs_count(string session, string type)
    ccvs_delete(string session, string invoice)
    ccvs_done(string sess)
    ccvs_init(string name)
    ccvs_lookup(string session, string invoice, int inum)
    ccvs_new(string session, string invoice)
    ccvs_report(string session, string type)
    ccvs_return(string session, string invoice)
    ccvs_reverse(string session, string invoice)
    ccvs_sale(string session, string invoice)
    ccvs_status(string session, string invoice)
    ccvs_textvalue(string session)
    ccvs_void(string session, string invoice)
    ceil(float value)
    chdir(string directory)
    checkdate(int month, int day, int year)
    checkdnsrr(string host [, string type])
    chgrp(string filename, mixed group)
    chmod(string filename, int mode)
    chop
    chown(string filename, mixed user)
    chr(int ascii)
    chroot(string directory)
    chunk_split(string body [, int chunklen [, string end]])
    class
    class_exists(string class_name [, bool autoload])
    class_implements(mixed class [, bool autoload])
    class_parents(mixed class [, bool autoload])
    classkit_import(string filename)
    classkit_method_add(string classname, string methodname, string args, string code [, int flags])
    classkit_method_copy(string dClass, string dMethod, string sClass [, string sMethod])
    classkit_method_redefine(string classname, string methodname, string args, string code [, int flags])
    classkit_method_remove(string classname, string methodname)
    classkit_method_rename(string classname, string methodname, string newname)
    clearstatcache(void)
    closedir(resource dir_handle)
    closelog(void)
    com_addref(void)
    com_create_guid(void)
    com_event_sink(variant comobject, object sinkobject [, mixed sinkinterface])
    com_get(resource com_object, string property)
    com_get_active_object(string progid [, int code_page])
    com_invoke(resource com_object, string function_name [, mixed function_parameters])
    com_isenum(variant com_module)
    com_load(string module_name [, string server_name [, int codepage]])
    com_load_typelib(string typelib_name [, bool case_insensitive])
    com_message_pump([int timeoutms])
    com_print_typeinfo(object comobject [, string dispinterface [, bool wantsink]])
    com_propget
    com_propput
    com_propset
    com_release(void)
    com_set(resource com_object, string property, mixed value)
    compact(mixed varname [, mixed ...])
    connection_aborted(void)
    connection_status(void)
    connection_timeout(void)
    const
    constant(string name)
    convert_cyr_string(string str, string from, string to)
    convert_uudecode(string data)
    convert_uuencode(string data)
    copy(string source, string dest)
    cos(float arg)
    cosh(float arg)
    count(mixed var [, int mode])
    count_chars(string string [, int mode])
    cpdf_add_annotation(int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode])
    cpdf_add_outline(int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text)
    cpdf_arc(int pdf_document, float x_coor, float y_coor, float radius, float start, float end [, int mode])
    cpdf_begin_text(int pdf_document)
    cpdf_circle(int pdf_document, float x_coor, float y_coor, float radius [, int mode])
    cpdf_clip(int pdf_document)
    cpdf_close(int pdf_document)
    cpdf_closepath(int pdf_document)
    cpdf_closepath_fill_stroke(int pdf_document)
    cpdf_closepath_stroke(int pdf_document)
    cpdf_continue_text(int pdf_document, string text)
    cpdf_curveto(int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode])
    cpdf_end_text(int pdf_document)
    cpdf_fill(int pdf_document)
    cpdf_fill_stroke(int pdf_document)
    cpdf_finalize(int pdf_document)
    cpdf_finalize_page(int pdf_document, int page_number)
    cpdf_global_set_document_limits(int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects)
    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])
    cpdf_lineto(int pdf_document, float x_coor, float y_coor [, int mode])
    cpdf_moveto(int pdf_document, float x_coor, float y_coor [, int mode])
    cpdf_newpath(int pdf_document)
    cpdf_open(int compression [, string filename [, array doc_limits]])
    cpdf_output_buffer(int pdf_document)
    cpdf_page_init(int pdf_document, int page_number, int orientation, float height, float width [, float unit])
    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])
    cpdf_rect(int pdf_document, float x_coor, float y_coor, float width, float height [, int mode])
    cpdf_restore(int pdf_document)
    cpdf_rlineto(int pdf_document, float x_coor, float y_coor [, int mode])
    cpdf_rmoveto(int pdf_document, float x_coor, float y_coor [, int mode])
    cpdf_rotate(int pdf_document, float angle)
    cpdf_rotate_text(int pdfdoc, float angle)
    cpdf_save(int pdf_document)
    cpdf_save_to_file(int pdf_document, string filename)
    cpdf_scale(int pdf_document, float x_scale, float y_scale)
    cpdf_set_action_url(int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode])
    cpdf_set_char_spacing(int pdf_document, float space)
    cpdf_set_creator(int pdf_document, string creator)
    cpdf_set_current_page(int pdf_document, int page_number)
    cpdf_set_font(int pdf_document, string font_name, float size, string encoding)
    cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir)
    cpdf_set_font_map_file(int pdfdoc, string filename)
    cpdf_set_horiz_scaling(int pdf_document, float scale)
    cpdf_set_keywords(int pdf_document, string keywords)
    cpdf_set_leading(int pdf_document, float distance)
    cpdf_set_page_animation(int pdf_document, int transition, float duration, float direction, int orientation, int inout)
    cpdf_set_subject(int pdf_document, string subject)
    cpdf_set_text_matrix(int pdf_document, array matrix)
    cpdf_set_text_pos(int pdf_document, float x_coor, float y_coor [, int mode])
    cpdf_set_text_rendering(int pdf_document, int rendermode)
    cpdf_set_text_rise(int pdf_document, float value)
    cpdf_set_title(int pdf_document, string title)
    cpdf_set_viewer_preferences(int pdfdoc, array preferences)
    cpdf_set_word_spacing(int pdf_document, float space)
    cpdf_setdash(int pdf_document, float white, float black)
    cpdf_setflat(int pdf_document, float value)
    cpdf_setgray(int pdf_document, float gray_value)
    cpdf_setgray_fill(int pdf_document, float value)
    cpdf_setgray_stroke(int pdf_document, float gray_value)
    cpdf_setlinecap(int pdf_document, int value)
    cpdf_setlinejoin(int pdf_document, int value)
    cpdf_setlinewidth(int pdf_document, float width)
    cpdf_setmiterlimit(int pdf_document, float value)
    cpdf_setrgbcolor(int pdf_document, float red_value, float green_value, float blue_value)
    cpdf_setrgbcolor_fill(int pdf_document, float red_value, float green_value, float blue_value)
    cpdf_setrgbcolor_stroke(int pdf_document, float red_value, float green_value, float blue_value)
    cpdf_show(int pdf_document, string text)
    cpdf_show_xy(int pdf_document, string text, float x_coor, float y_coor [, int mode])
    cpdf_stringwidth(int pdf_document, string text)
    cpdf_stroke(int pdf_document)
    cpdf_text(int pdf_document, string text [, float x_coor, float y_coor [, int mode [, float orientation [, int alignmode]]]])
    cpdf_translate(int pdf_document, float x_coor, float y_coor)
    crack_check(resource dictionary, string password)
    crack_closedict([resource dictionary])
    crack_getlastmessage(void)
    crack_opendict(string dictionary)
    crc32(string str)
    create_function(string args, string code)
    crypt(string str [, string salt])
    ctype_alnum(string text)
    ctype_alpha(string text)
    ctype_cntrl(string text)
    ctype_digit(string text)
    ctype_graph(string text)
    ctype_lower(string text)
    ctype_print(string text)
    ctype_punct(string text)
    ctype_space(string text)
    ctype_upper(string text)
    ctype_xdigit(string text)
    curl_close(resource ch)
    curl_copy_handle(resource ch)
    curl_errno(resource ch)
    curl_error(resource ch)
    curl_exec(resource ch)
    curl_getinfo(resource ch [, int opt])
    curl_init([string url])
    curl_multi_add_handle(resource mh, resource ch)
    curl_multi_close(resource mh)
    curl_multi_getcontent(resource ch)
    curl_multi_info_read(resource mh [, int msgs_in_queue])
    curl_multi_init(void)
    curl_multi_remove_handle(resource mh, resource ch)
    curl_multi_select(resource mh [, float timeout])
    curl_setopt(resource ch, int option, mixed value)
    curl_setopt_array(resource ch, array options)
    curl_version([int age])
    current
    cybercash_base64_decode(string inbuff)
    cybercash_base64_encode(string inbuff)
    cybercash_decr(string wmk, string sk, string inbuff)
    cybercash_encr(string wmk, string sk, string inbuff)
    cybermut_creerformulairecm(string url_cm, string version, string tpe, string price, string ref_command, string text_free, string url_return, string url_return_ok, string url_return_err, string language, string code_company, string text_button)
    cybermut_creerreponsecm(string sentence)
    cybermut_testmac(string code_mac, string version, string tpe, string cdate, string price, string ref_command, string text_free, string code_return)
    cyrus_authenticate(resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf [, string authname [, string password]]]]]]])
    cyrus_bind(resource connection, array callbacks)
    cyrus_close(resource connection)
    cyrus_connect([string host [, string port [, int flags]]])
    cyrus_query(resource connection, string query)
    cyrus_unbind(resource connection, string trigger_name)
    date(string format [, int timestamp])
    date_create([string time [, DateTimeZone timezone]])
    date_date_set(DateTime object, int year, int month, int day)
    date_default_timezone_get(void)
    date_default_timezone_set(string timezone_identifier)
    date_format(DateTime object, string format)
    date_isodate_set(DateTime object, int year, int week [, int day])
    date_modify(DateTime object, string modify)
    date_offset_get(DateTime object)
    date_parse(string date)
    date_sun_info(int time, float latitude, float longitude)
    date_sunrise(int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])
    date_sunset(int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])
    date_time_set(DateTime object, int hour, int minute [, int second])
    date_timezone_get(DateTime object)
    date_timezone_set(DateTime object, DateTimeZone timezone)
    db2_autocommit(resource connection [, bool value])
    db2_bind_param(resource stmt, int parameter-number, string variable-name [, int parameter-type [, int data-type [, int precision [, int scale]]]])
    db2_client_info(resource connection)
    db2_close(resource connection)
    db2_column_privileges(resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]])
    db2_columns(resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]])
    db2_commit(resource connection)
    db2_conn_error([resource connection])
    db2_conn_errormsg([resource connection])
    db2_connect(string database, string username, string password [, array options])
    db2_cursor_type(resource stmt)
    db2_escape_string(string string_literal)
    db2_exec(resource connection, string statement [, array options])
    db2_execute(resource stmt [, array parameters])
    db2_fetch_array(resource stmt [, int row_number])
    db2_fetch_assoc(resource stmt [, int row_number])
    db2_fetch_both(resource stmt [, int row_number])
    db2_fetch_object(resource stmt [, int row_number])
    db2_fetch_row(resource stmt [, int row_number])
    db2_field_display_size(resource stmt, mixed column)
    db2_field_name(resource stmt, mixed column)
    db2_field_num(resource stmt, mixed column)
    db2_field_precision(resource stmt, mixed column)
    db2_field_scale(resource stmt, mixed column)
    db2_field_type(resource stmt, mixed column)
    db2_field_width(resource stmt, mixed column)
    db2_foreign_keys(resource connection, string qualifier, string schema, string table-name)
    db2_free_result(resource stmt)
    db2_free_stmt(resource stmt)
    db2_get_option(resource resource, string option)
    db2_lob_read(resource stmt, int colnum, int length)
    db2_next_result(resource stmt)
    db2_num_fields(resource stmt)
    db2_num_rows(resource stmt)
    db2_pconnect(string database, string username, string password [, array options])
    db2_prepare(resource connection, string statement [, array options])
    db2_primary_keys(resource connection, string qualifier, string schema, string table-name)
    db2_procedure_columns(resource connection, string qualifier, string schema, string procedure, string parameter)
    db2_procedures(resource connection, string qualifier, string schema, string procedure)
    db2_result(resource stmt, mixed column)
    db2_rollback(resource connection)
    db2_server_info(resource connection)
    db2_set_option(resource resource, array options, int type)
    db2_special_columns(resource connection, string qualifier, string schema, string table_name, int scope)
    db2_statistics(resource connection, string qualifier, string schema, string table-name, bool unique)
    db2_stmt_error([resource stmt])
    db2_stmt_errormsg([resource stmt])
    db2_table_privileges(resource connection [, string qualifier [, string schema [, string table_name]]])
    db2_tables(resource connection [, string qualifier [, string schema [, string table-name [, string table-type]]]])
    dba_close(resource handle)
    dba_delete(string key, resource handle)
    dba_exists(string key, resource handle)
    dba_fetch(string key, resource handle)
    dba_firstkey(resource handle)
    dba_handlers([bool full_info])
    dba_insert(string key, string value, resource handle)
    dba_key_split(mixed key)
    dba_list(void)
    dba_nextkey(resource handle)
    dba_open(string path, string mode [, string handler [, mixed ...]])
    dba_optimize(resource handle)
    dba_popen(string path, string mode [, string handler [, mixed ...]])
    dba_replace(string key, string value, resource handle)
    dba_sync(resource handle)
    dbase_add_record(int dbase_identifier, array record)
    dbase_close(int dbase_identifier)
    dbase_create(string filename, array fields)
    dbase_delete_record(int dbase_identifier, int record_number)
    dbase_get_header_info(int dbase_identifier)
    dbase_get_record(int dbase_identifier, int record_number)
    dbase_get_record_with_names(int dbase_identifier, int record_number)
    dbase_numfields(int dbase_identifier)
    dbase_numrecords(int dbase_identifier)
    dbase_open(string filename, int mode)
    dbase_pack(int dbase_identifier)
    dbase_replace_record(int dbase_identifier, array record, int record_number)
    dblist(void)
    dbmclose(resource dbm_identifier)
    dbmdelete(resource dbm_identifier, string key)
    dbmexists(resource dbm_identifier, string key)
    dbmfetch(resource dbm_identifier, string key)
    dbmfirstkey(resource dbm_identifier)
    dbminsert(resource dbm_identifier, string key, string value)
    dbmnextkey(resource dbm_identifier, string key)
    dbmopen(string filename, string flags)
    dbmreplace(resource dbm_identifier, string key, string value)
    dbplus_add(resource relation, array tuple)
    dbplus_aql(string query [, string server [, string dbpath]])
    dbplus_chdir([string newdir])
    dbplus_close(resource relation)
    dbplus_curr
    dbplus_errcode([int errno])
    dbplus_errno(void)
    dbplus_find(resource relation, array constraints, mixed tuple)
    dbplus_first
    dbplus_flush(resource relation)
    dbplus_freealllocks(void)
    dbplus_freelock(resource relation, string tuple)
    dbplus_freerlocks(resource relation)
    dbplus_getlock(resource relation, string tuple)
    dbplus_getunique(resource relation, int uniqueid)
    dbplus_info
    dbplus_last
    dbplus_lockrel(resource relation)
    dbplus_next
    dbplus_open(string name)
    dbplus_prev
    dbplus_rchperm(resource relation, int mask, string user, string group)
    dbplus_rcreate(string name, mixed domlist [, bool overwrite])
    dbplus_rcrtexact(string name, resource relation [, bool overwrite])
    dbplus_rcrtlike(string name, resource relation [, int overwrite])
    dbplus_resolve(string relation_name)
    dbplus_restorepos(resource relation, array tuple)
    dbplus_rkeys(resource relation, mixed domlist)
    dbplus_ropen(string name)
    dbplus_rquery(string query [, string dbpath])
    dbplus_rrename(resource relation, string name)
    dbplus_rsecindex(resource relation, mixed domlist, int type)
    dbplus_runlink(resource relation)
    dbplus_rzap(resource relation)
    dbplus_savepos(resource relation)
    dbplus_setindex(resource relation, string idx_name)
    dbplus_setindexbynumber(resource relation, int idx_number)
    dbplus_sql(string query [, string server [, string dbpath]])
    dbplus_tcl(int sid, string script)
    dbplus_tremove
    dbplus_undo(resource relation)
    dbplus_undoprepare(resource relation)
    dbplus_unlockrel(resource relation)
    dbplus_unselect(resource relation)
    dbplus_update(resource relation, array old, array new)
    dbplus_xlockrel(resource relation)
    dbplus_xunlockrel(resource relation)
    dbx_close(object link_identifier)
    dbx_compare(array row_a, array row_b, string column_key [, int flags])
    dbx_connect(mixed module, string host, string database, string username, string password [, int persistent])
    dbx_error(object link_identifier)
    dbx_escape_string(object link_identifier, string text)
    dbx_fetch_row(object result_identifier)
    dbx_query(object link_identifier, string sql_statement [, int flags])
    dbx_sort(object result, string user_compare_function)
    dcgettext(string domain, string message, int category)
    dcngettext(string domain, string msgid1, string msgid2, int n, int category)
    deaggregate(object object [, string class_name])
    debug_backtrace(void)
    debug_print_backtrace(void)
    debug_zval_dump(mixed variable)
    debugger_off(void)
    debugger_on(string address)
    decbin(int number)
    dechex(int number)
    decoct(int number)
    define(string name, mixed value [, bool case_insensitive])
    define_syslog_variables(void)
    defined(string name)
    deg2rad(float number)
    delete(void)
    dgettext(string domain, string message)
    die
    dio_close(resource fd)
    dio_fcntl(resource fd, int cmd [, mixed args])
    dio_open(string filename, int flags [, int mode])
    dio_read(resource fd [, int len])
    dio_seek(resource fd, int pos [, int whence])
    dio_stat(resource fd)
    dio_tcsetattr(resource fd, array options)
    dio_truncate(resource fd, int offset)
    dio_write(resource fd, string data [, int len])
    dirname(string path)
    disk_free_space(string directory)
    disk_total_space(string directory)
    diskfreespace
    dl(string library)
    dngettext(string domain, string msgid1, string msgid2, int n)
    dom_import_simplexml(SimpleXMLElement node)
    domattribute->name
    domattribute->specified
    domattribute->value
    domdocument->create_attribute
    domdocument->create_cdata_section
    domdocument->create_comment
    domdocument->create_element
    domdocument->create_entity_reference
    domdocument->create_processing_instruction
    domdocument->create_text_node
    domdocument->doctype
    domdocument->document_element
    domdocument->dump_file
    domdocument->dump_mem
    domdocument->get_element_by_id
    domdocument->get_elements_by_tagname
    domdocument->html_dump_mem
    domdocumenttype->entities
    domdocumenttype->internal_subset
    domdocumenttype->name
    domdocumenttype->notations
    domdocumenttype->public_id
    domdocumenttype->system_id
    domelement->get_attribute
    domelement->get_attribute_node
    domelement->get_elements_by_tagname
    domelement->has_attribute
    domelement->remove_attribute
    domelement->set_attribute
    domelement->set_attribute_node
    domelement->tagname
    domnode->append_child
    domnode->append_sibling
    domnode->attributes
    domnode->clone_node
    domnode->dump_node
    domnode->first_child
    domnode->get_content
    domnode->has_child_nodes
    domnode->insert_before
    domnode->is_blank_node
    domnode->last_child
    domnode->next_sibling
    domnode->node_name
    domnode->node_type
    domnode->node_value
    domnode->owner_document
    domnode->parent_node
    domnode->prefix
    domnode->previous_sibling
    domnode->remove_child
    domnode->replace_child
    domnode->replace_node
    domnode->set_content
    domnode->set_name
    domnode->unlink_node
    domprocessinginstruction->data
    domprocessinginstruction->target
    domxml_new_doc(string version)
    domxml_open_file
    domxml_open_mem
    domxml_version(void)
    domxml_xmltree(string str)
    domxml_xslt_stylesheet(string xsl_buf)
    domxml_xslt_stylesheet_doc(DomDocument xsl_doc)
    domxml_xslt_stylesheet_file(string xsl_file)
    domxml_xslt_version(void)
    dotnet_load(string assembly_name [, string datatype_name [, int codepage]])
    doubleval
    each
    easter_date([int year])
    easter_days([int year [, int method]])
    ebcdic2ascii(string ebcdic_str)
    echo(string arg1 [, string ...])
    empty(mixed var)
    enchant_broker_describe(resource broker)
    enchant_broker_dict_exists(resource broker, string tag)
    enchant_broker_free(resource broker)
    enchant_broker_free_dict(resource dict)
    enchant_broker_get_error(resource broker)
    enchant_broker_init(void)
    enchant_broker_list_dicts(resource broker)
    enchant_broker_request_dict(resource broker, string tag)
    enchant_broker_request_pwl_dict(resource broker, string filename)
    enchant_broker_set_ordering(resource broker, string tag, string ordering)
    enchant_dict_add_to_personal(resource dict, string word)
    enchant_dict_add_to_session(resource dict, string word)
    enchant_dict_check(resource dict, string word)
    enchant_dict_describe(resource dict)
    enchant_dict_get_error(resource dict)
    enchant_dict_is_in_session(resource dict, string word)
    enchant_dict_store_replacement(resource dict, string mis, string cor)
    enchant_dict_suggest(resource dict, string word)
    end
    ereg
    ereg_replace(string pattern, string replacement, string string)
    eregi
    eregi_replace(string pattern, string replacement, string string)
    error_get_last(void)
    error_log(string message [, int message_type [, string destination [, string extra_headers]]])
    error_reporting([int level])
    escapeshellarg(string arg)
    escapeshellcmd(string command)
    eval(string code_str)
    exec
    exif_imagetype(string filename)
    exif_read_data(string filename [, string sections [, bool arrays [, bool thumbnail]]])
    exif_tagname(string index)
    exif_thumbnail
    exit([string status])
    exp(float arg)
    expect_popen(string command)
    explode(string delimiter, string string [, int limit])
    expm1(float arg)
    extension_loaded(string name)
    extract(array var_array [, int extract_type [, string prefix]])
    ezmlm_hash(string addr)
    fam_cancel_monitor(resource fam, resource fam_monitor)
    fam_close(resource fam)
    fam_monitor_collection(resource fam, string dirname, int depth, string mask)
    fam_monitor_directory(resource fam, string dirname)
    fam_monitor_file(resource fam, string filename)
    fam_next_event(resource fam)
    fam_open([string appname])
    fam_pending(resource fam)
    fam_resume_monitor(resource fam, resource fam_monitor)
    fam_suspend_monitor(resource fam, resource fam_monitor)
    fbsql_affected_rows([resource link_identifier])
    fbsql_autocommit(resource link_identifier [, bool OnOff])
    fbsql_blob_size(string blob_handle [, resource link_identifier])
    fbsql_change_user(string user, string password [, string database [, resource link_identifier]])
    fbsql_clob_size(string clob_handle [, resource link_identifier])
    fbsql_close([resource link_identifier])
    fbsql_commit([resource link_identifier])
    fbsql_connect([string hostname [, string username [, string password]]])
    fbsql_create_blob(string blob_data [, resource link_identifier])
    fbsql_create_clob(string clob_data [, resource link_identifier])
    fbsql_create_db(string database_name [, resource link_identifier [, string database_options]])
    fbsql_data_seek(resource result, int row_number)
    fbsql_database(resource link_identifier [, string database])
    fbsql_database_password(resource link_identifier [, string database_password])
    fbsql_db_query(string database, string query [, resource link_identifier])
    fbsql_db_status(string database_name [, resource link_identifier])
    fbsql_drop_db(string database_name [, resource link_identifier])
    fbsql_errno([resource link_identifier])
    fbsql_error([resource link_identifier])
    fbsql_fetch_array(resource result [, int result_type])
    fbsql_fetch_assoc(resource result)
    fbsql_fetch_field(resource result [, int field_offset])
    fbsql_fetch_lengths(resource result)
    fbsql_fetch_object(resource result)
    fbsql_fetch_row(resource result)
    fbsql_field_flags(resource result [, int field_offset])
    fbsql_field_len(resource result [, int field_offset])
    fbsql_field_name(resource result [, int field_index])
    fbsql_field_seek(resource result [, int field_offset])
    fbsql_field_table(resource result [, int field_offset])
    fbsql_field_type(resource result [, int field_offset])
    fbsql_free_result(resource result)
    fbsql_get_autostart_info([resource link_identifier])
    fbsql_hostname(resource link_identifier [, string host_name])
    fbsql_insert_id([resource link_identifier])
    fbsql_list_dbs([resource link_identifier])
    fbsql_list_fields(string database_name, string table_name [, resource link_identifier])
    fbsql_list_tables(string database [, resource link_identifier])
    fbsql_next_result(resource result)
    fbsql_num_fields(resource result)
    fbsql_num_rows(resource result)
    fbsql_password(resource link_identifier [, string password])
    fbsql_pconnect([string hostname [, string username [, string password]]])
    fbsql_query(string query [, resource link_identifier [, int batch_size]])
    fbsql_read_blob(string blob_handle [, resource link_identifier])
    fbsql_read_clob(string clob_handle [, resource link_identifier])
    fbsql_result(resource result [, int row [, mixed field]])
    fbsql_rollback([resource link_identifier])
    fbsql_rows_fetched(resource result)
    fbsql_select_db([string database_name [, resource link_identifier]])
    fbsql_set_characterset(resource link_identifier, int characterset [, int in_out_both])
    fbsql_set_lob_mode(resource result, int lob_mode)
    fbsql_set_password(resource link_identifier, string user, string password, string old_password)
    fbsql_set_transaction(resource link_identifier, int locking, int isolation)
    fbsql_start_db(string database_name [, resource link_identifier [, string database_options]])
    fbsql_stop_db(string database_name [, resource link_identifier])
    fbsql_table_name(resource result, int index)
    fbsql_tablename
    fbsql_username(resource link_identifier [, string username])
    fbsql_warnings([bool OnOff])
    fclose(resource handle)
    fdf_add_doc_javascript(resource fdf_document, string script_name, string script_code)
    fdf_add_template(resource fdf_document, int newpage, string filename, string template, int rename)
    fdf_close(resource fdf_document)
    fdf_create(void)
    fdf_enum_values(resource fdf_document, callback function [, mixed userdata])
    fdf_errno(void)
    fdf_error([int error_code])
    fdf_get_ap(resource fdf_document, string field, int face, string filename)
    fdf_get_attachment(resource fdf_document, string fieldname, string savepath)
    fdf_get_encoding(resource fdf_document)
    fdf_get_file(resource fdf_document)
    fdf_get_flags(resource fdf_document, string fieldname, int whichflags)
    fdf_get_opt(resource fdf_document, string fieldname [, int element])
    fdf_get_status(resource fdf_document)
    fdf_get_value(resource fdf_document, string fieldname [, int which])
    fdf_get_version([resource fdf_document])
    fdf_header(void)
    fdf_next_field_name(resource fdf_document [, string fieldname])
    fdf_open(string filename)
    fdf_open_string(string fdf_data)
    fdf_remove_item(resource fdf_document, string fieldname, int item)
    fdf_save(resource fdf_document [, string filename])
    fdf_save_string(resource fdf_document)
    fdf_set_ap(resource fdf_document, string field_name, int face, string filename, int page_number)
    fdf_set_encoding(resource fdf_document, string encoding)
    fdf_set_file(resource fdf_document, string url [, string target_frame])
    fdf_set_flags(resource fdf_document, string fieldname, int whichFlags, int newFlags)
    fdf_set_javascript_action(resource fdf_document, string fieldname, int trigger, string script)
    fdf_set_on_import_javascript(resource fdf_document, string script, bool before_data_import)
    fdf_set_opt(resource fdf_document, string fieldname, int element, string str1, string str2)
    fdf_set_status(resource fdf_document, string status)
    fdf_set_submit_form_action(resource fdf_document, string fieldname, int trigger, string script, int flags)
    fdf_set_target_frame(resource fdf_document, string frame_name)
    fdf_set_value(resource fdf_document, string fieldname, mixed value [, int isName])
    fdf_set_version(resource fdf_document, string version)
    feof(resource handle)
    fflush(resource handle)
    fgetc(resource handle)
    fgetcsv(resource handle [, int length [, string delimiter [, string enclosure]]])
    fgets(resource handle [, int length])
    fgetss(resource handle [, int length [, string allowable_tags]])
    file(string filename [, int flags [, resource context]])
    file_exists(string filename)
    file_get_contents(string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]])
    file_get_wrapper_data
    file_put_contents(string filename, mixed data [, int flags [, resource context]])
    file_register_wrapper
    fileatime(string filename)
    filectime(string filename)
    filegroup(string filename)
    fileinode(string filename)
    filemtime(string filename)
    fileowner(string filename)
    fileperms(string filename)
    filepro(string directory)
    filepro_fieldcount(void)
    filepro_fieldname(int field_number)
    filepro_fieldtype(int field_number)
    filepro_fieldwidth(int field_number)
    filepro_retrieve(int row_number, int field_number)
    filepro_rowcount(void)
    filesize(string filename)
    filetype(string filename)
    filter_has_var(int type, string variable_name)
    filter_id(string filtername)
    filter_input(int type, string variable_name [, int filter [, mixed options]])
    filter_input_array(int type [, mixed definition])
    filter_list(void)
    filter_var(mixed variable [, int filter [, mixed options]])
    filter_var_array(array data [, mixed definition])
    finfo_buffer(resource finfo, string string [, int options [, resource context]])
    finfo_close(resource finfo)
    finfo_file(resource finfo, string file_name [, int options [, resource context]])
    finfo_set_flags(resource finfo, int options)
    floatval(mixed var)
    flock
    floor(float value)
    flush(void)
    fmod(float x, float y)
    fnmatch(string pattern, string string [, int flags])
    fopen(string filename, string mode [, bool use_include_path [, resource context]])
    fpassthru(resource handle)
    fprintf(resource handle, string format [, mixed args [, mixed ...]])
    fputcsv(resource handle [, array fields [, string delimiter [, string enclosure]]])
    fputs
    fread(resource handle, int length)
    frenchtojd(int month, int day, int year)
    fribidi_log2vis(string str, string direction, int charset)
    fscanf
    fseek(resource handle, int offset [, int whence])
    fsockopen
    fstat(resource handle)
    ftell(resource handle)
    ftok(string pathname, string proj)
    ftp_cdup(resource ftp_stream)
    ftp_chdir(resource ftp_stream, string directory)
    ftp_chmod(resource ftp_stream, int mode, string filename)
    ftp_close(resource ftp_stream)
    ftp_connect(string host [, int port [, int timeout]])
    ftp_delete(resource ftp_stream, string path)
    ftp_exec(resource ftp_stream, string command)
    ftp_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos])
    ftp_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos])
    ftp_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos])
    ftp_get_option(resource ftp_stream, int option)
    ftp_login(resource ftp_stream, string username, string password)
    ftp_mdtm(resource ftp_stream, string remote_file)
    ftp_mkdir(resource ftp_stream, string directory)
    ftp_nb_continue(resource ftp_stream)
    ftp_nb_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos])
    ftp_nb_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos])
    ftp_nb_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos])
    ftp_nb_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos])
    ftp_nlist(resource ftp_stream, string directory)
    ftp_pasv(resource ftp_stream, bool pasv)
    ftp_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos])
    ftp_pwd(resource ftp_stream)
    ftp_quit
    ftp_raw(resource ftp_stream, string command)
    ftp_rawlist(resource ftp_stream, string directory [, bool recursive])
    ftp_rename(resource ftp_stream, string oldname, string newname)
    ftp_rmdir(resource ftp_stream, string directory)
    ftp_set_option(resource ftp_stream, int option, mixed value)
    ftp_site(resource ftp_stream, string command)
    ftp_size(resource ftp_stream, string remote_file)
    ftp_ssl_connect(string host [, int port [, int timeout]])
    ftp_systype(resource ftp_stream)
    ftruncate(resource handle, int size)
    func_get_arg(int arg_num)
    func_get_args(void)
    func_num_args(void)
    function
    function_exists(string function_name)
    fwrite(resource handle, string string [, int length])
    gd_info(void)
    geoip_country_code3_by_name(string hostname)
    geoip_country_code_by_name(string hostname)
    geoip_country_name_by_name(string hostname)
    geoip_database_info([int database])
    geoip_id_by_name(string hostname)
    geoip_org_by_name(string hostname)
    geoip_record_by_name(string hostname)
    geoip_region_by_name(string hostname)
    get_browser([string user_agent [, bool return_array]])
    get_cfg_var(string option)
    get_class([object object])
    get_class_methods(mixed class_name)
    get_class_vars(string class_name)
    get_current_user(void)
    get_declared_classes(void)
    get_declared_interfaces(void)
    get_defined_constants([mixed categorize])
    get_defined_functions(void)
    get_defined_vars(void)
    get_extension_funcs(string module_name)
    get_headers(string url [, int format])
    get_html_translation_table([int table [, int quote_style]])
    get_include_path(void)
    get_included_files(void)
    get_loaded_extensions(void)
    get_magic_quotes_gpc(void)
    get_magic_quotes_runtime(void)
    get_meta_tags(string filename [, bool use_include_path])
    get_object_vars(object object)
    get_parent_class([mixed object])
    get_required_files
    get_resource_type(resource handle)
    getallheaders(void)
    getcwd(void)
    getdate([int timestamp])
    getenv(string varname)
    gethostbyaddr(string ip_address)
    gethostbyname(string hostname)
    gethostbynamel(string hostname)
    getimagesize
    getlastmod(void)
    getmxrr
    getmygid(void)
    getmyinode(void)
    getmypid(void)
    getmyuid(void)
    getopt(string options [, array longopts])
    getprotobyname(string name)
    getprotobynumber(int number)
    getrandmax(void)
    getrusage([int who])
    getservbyname(string service, string protocol)
    getservbyport(int port, string protocol)
    gettext(string message)
    gettimeofday([bool return_float])
    gettype(mixed var)
    glob(string pattern [, int flags])
    gmdate(string format [, int timestamp])
    gmmktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]])
    gmp_abs(resource a)
    gmp_add(resource a, resource b)
    gmp_and(resource a, resource b)
    gmp_clrbit
    gmp_cmp(resource a, resource b)
    gmp_com(resource a)
    gmp_div
    gmp_div_q(resource a, resource b [, int round])
    gmp_div_qr(resource n, resource d [, int round])
    gmp_div_r(resource n, resource d [, int round])
    gmp_divexact(resource n, resource d)
    gmp_fact(int a)
    gmp_gcd(resource a, resource b)
    gmp_gcdext(resource a, resource b)
    gmp_hamdist(resource a, resource b)
    gmp_init(mixed number [, int base])
    gmp_intval(resource gmpnumber)
    gmp_invert(resource a, resource b)
    gmp_jacobi(resource a, resource p)
    gmp_legendre(resource a, resource p)
    gmp_mod(resource n, resource d)
    gmp_mul(resource a, resource b)
    gmp_neg(resource a)
    gmp_nextprime(int a)
    gmp_or(resource a, resource b)
    gmp_perfect_square(resource a)
    gmp_popcount(resource a)
    gmp_pow(resource base, int exp)
    gmp_powm(resource base, resource exp, resource mod)
    gmp_prob_prime(resource a [, int reps])
    gmp_random(int limiter)
    gmp_scan0(resource a, int start)
    gmp_scan1(resource a, int start)
    gmp_setbit
    gmp_sign(resource a)
    gmp_sqrt(resource a)
    gmp_sqrtrem(resource a)
    gmp_strval(resource gmpnumber [, int base])
    gmp_sub(resource a, resource b)
    gmp_testbit(resource a, int index)
    gmp_xor(resource a, resource b)
    gmstrftime(string format [, int timestamp])
    gnupg_adddecryptkey(resource identifier, string fingerprint, string passphrase)
    gnupg_addencryptkey(resource identifier, string fingerprint)
    gnupg_addsignkey(resource identifier, string fingerprint [, string passphrase])
    gnupg_cleardecryptkeys(resource identifier)
    gnupg_clearencryptkeys(resource identifier)
    gnupg_clearsignkeys(resource identifier)
    gnupg_decrypt(resource identifier, string text)
    gnupg_encrypt(resource identifier, string plaintext)
    gnupg_encryptsign(resource identifier, string plaintext)
    gnupg_export(resource identifier, string fingerprint)
    gnupg_geterror(resource identifier)
    gnupg_getprotocol(resource identifier)
    gnupg_import(resource identifier, string keydata)
    gnupg_keyinfo(resource identifier, string pattern)
    gnupg_setarmor(resource identifier, int armor)
    gnupg_seterrormode(resource identifier, int errormode)
    gnupg_setsignmode(resource identifier, int signmode)
    gnupg_sign(resource identifier, string plaintext)
    gopher_parsedir(string dirent)
    gregoriantojd(int month, int day, int year)
    gzclose(resource zp)
    gzcompress(string data [, int level])
    gzdecode(string data [, int length])
    gzdeflate(string data [, int level])
    gzencode(string data [, int level [, int encoding_mode]])
    gzeof(resource zp)
    gzfile(string filename [, int use_include_path])
    gzgetc(resource zp)
    gzgets(resource zp, int length)
    gzgetss(resource zp, int length [, string allowable_tags])
    gzinflate(string data [, int length])
    gzopen(string filename, string mode [, int use_include_path])
    gzpassthru(resource zp)
    gzputs
    gzread(resource zp, int length)
    gzrewind(resource zp)
    gzseek(resource zp, int offset)
    gztell(resource zp)
    gzuncompress(string data [, int length])
    gzwrite(resource zp, string string [, int length])
    hash(string algo, string data [, bool raw_output])
    hash_algos(void)
    hash_file(string algo, string filename [, bool raw_output])
    hash_final(resource context [, bool raw_output])
    hash_hmac(string algo, string data, string key [, bool raw_output])
    hash_hmac_file(string algo, string filename, string key [, bool raw_output])
    hash_init(string algo [, int options, string key])
    hash_update(resource context, string data)
    hash_update_file(resource context, string filename [, resource context])
    hash_update_stream(resource context, resource handle [, int length])
    header(string string [, bool replace [, int http_response_code]])
    headers_list(void)
    headers_sent
    hebrev(string hebrew_text [, int max_chars_per_line])
    hebrevc(string hebrew_text [, int max_chars_per_line])
    hexdec(string hex_string)
    highlight_file(string filename [, bool return])
    highlight_string(string str [, bool return])
    html_entity_decode(string string [, int quote_style [, string charset]])
    htmlentities(string string [, int quote_style [, string charset [, bool double_encode]]])
    htmlspecialchars(string string [, int quote_style [, string charset [, bool double_encode]]])
    htmlspecialchars_decode(string string [, int quote_style])
    http_build_cookie(array cookie)
    http_build_query(array formdata [, string numeric_prefix [, string arg_separator]])
    http_build_str(array query [, string prefix [, string arg_separator]])
    http_cache_etag([string etag])
    http_cache_last_modified([int timestamp_or_expires])
    http_chunked_decode(string encoded)
    http_date([int timestamp])
    http_deflate(string data [, int flags = 0])
    http_get_request_body(void)
    http_get_request_body_stream(void)
    http_get_request_headers(void)
    http_inflate(string data)
    http_match_etag(string etag [, bool for_range = FALSE])
    http_match_modified([int timestamp [, bool for_range = FALSE]])
    http_match_request_header(string header, string value [, bool match_case = FALSE])
    http_parse_cookie(string cookie [, int flags [, array allowed_extras]])
    http_parse_headers(string header)
    http_parse_message(string message)
    http_parse_params(string param [, int flags = HTTP_PARAMS_DEFAULT])
    http_persistent_handles_clean([string ident])
    http_persistent_handles_count(void)
    http_persistent_handles_ident(string ident)
    http_redirect([string url [, array params [, bool session = FALSE [, int status]]]])
    http_request_body_encode(array fields, array files)
    http_request_method_exists(mixed method)
    http_request_method_name(int method)
    http_request_method_register(string method)
    http_request_method_unregister(mixed method)
    http_send_content_disposition(string filename [, bool inline = FALSE])
    http_send_content_type([string content_type = 'application/x-octetstream'])
    http_send_data(string data)
    http_send_file(string file)
    http_send_last_modified([int timestamp])
    http_send_status(int status)
    http_send_stream(resource stream)
    http_support([int feature = 0])
    http_throttle([float sec [, int bytes = 40960]])
    hw_api_attribute([string name [, string value]])
    hw_api_content(string content, string mimetype)
    hw_api_object(array parameter)
    hw_array2objrec(array object_array)
    hw_changeobject(int link, int objid, array attributes)
    hw_children(int connection, int objectID)
    hw_childrenobj(int connection, int objectID)
    hw_close(int connection)
    hw_connect(string host, int port [, string username, string password])
    hw_connection_info(int link)
    hw_cp(int connection, array object_id_array, int destination_id)
    hw_deleteobject(int connection, int object_to_delete)
    hw_docbyanchor(int connection, int anchorID)
    hw_docbyanchorobj(int connection, int anchorID)
    hw_document_attributes(int hw_document)
    hw_document_bodytag(int hw_document [, string prefix])
    hw_document_content(int hw_document)
    hw_document_setcontent(int hw_document, string content)
    hw_document_size(int hw_document)
    hw_dummy(int link, int id, int msgid)
    hw_edittext(int connection, int hw_document)
    hw_error(int connection)
    hw_errormsg(int connection)
    hw_free_document(int hw_document)
    hw_getanchors(int connection, int objectID)
    hw_getanchorsobj(int connection, int objectID)
    hw_getandlock(int connection, int objectID)
    hw_getchildcoll(int connection, int objectID)
    hw_getchildcollobj(int connection, int objectID)
    hw_getchilddoccoll(int connection, int objectID)
    hw_getchilddoccollobj(int connection, int objectID)
    hw_getobject(int connection, mixed objectID [, string query])
    hw_getobjectbyquery(int connection, string query, int max_hits)
    hw_getobjectbyquerycoll(int connection, int objectID, string query, int max_hits)
    hw_getobjectbyquerycollobj(int connection, int objectID, string query, int max_hits)
    hw_getobjectbyqueryobj(int connection, string query, int max_hits)
    hw_getparents(int connection, int objectID)
    hw_getparentsobj(int connection, int objectID)
    hw_getrellink(int link, int rootid, int sourceid, int destid)
    hw_getremote(int connection, int objectID)
    hw_getremotechildren(int connection, string object_record)
    hw_getsrcbydestobj(int connection, int objectID)
    hw_gettext(int connection, int objectID [, mixed rootID/prefix])
    hw_getusername(int connection)
    hw_identify(int link, string username, string password)
    hw_incollections(int connection, array object_id_array, array collection_id_array, int return_collections)
    hw_info(int connection)
    hw_inscoll(int connection, int objectID, array object_array)
    hw_insdoc(resource connection, int parentID, string object_record [, string text])
    hw_insertanchors(int hwdoc, array anchorecs, array dest [, array urlprefixes])
    hw_insertdocument(int connection, int parent_id, int hw_document)
    hw_insertobject(int connection, string object_rec, string parameter)
    hw_mapid(int connection, int server_id, int object_id)
    hw_modifyobject(int connection, int object_to_change, array remove, array add [, int mode])
    hw_mv(int connection, array object_id_array, int source_id, int destination_id)
    hw_new_document(string object_record, string document_data, int document_size)
    hw_objrec2array(string object_record [, array format])
    hw_output_document(int hw_document)
    hw_pconnect(string host, int port [, string username, string password])
    hw_pipedocument(int connection, int objectID [, array url_prefixes])
    hw_root()
    hw_setlinkroot(int link, int rootid)
    hw_stat(int link)
    hw_unlock(int connection, int objectID)
    hw_who(int connection)
    hwapi_hgcsp(string hostname [, int port])
    hypot(float x, float y)
    ibase_add_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])
    ibase_affected_rows([resource link_identifier])
    ibase_backup(resource service_handle, string source_db, string dest_file [, int options [, bool verbose]])
    ibase_blob_add(resource blob_handle, string data)
    ibase_blob_cancel(resource blob_handle)
    ibase_blob_close(resource blob_handle)
    ibase_blob_create([resource link_identifier])
    ibase_blob_echo([resource link_identifier, string blob_id])
    ibase_blob_get(resource blob_handle, int len)
    ibase_blob_import(resource link_identifier, resource file_handle)
    ibase_blob_info(resource link_identifier, string blob_id)
    ibase_blob_open(resource link_identifier, string blob_id)
    ibase_close([resource connection_id])
    ibase_commit([resource link_or_trans_identifier])
    ibase_commit_ret([resource link_or_trans_identifier])
    ibase_connect([string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]])
    ibase_db_info(resource service_handle, string db, int action [, int argument])
    ibase_delete_user(resource service_handle, string user_name)
    ibase_drop_db([resource connection])
    ibase_errcode(void)
    ibase_errmsg(void)
    ibase_execute(resource query [, mixed bind_arg [, mixed ...]])
    ibase_fetch_assoc(resource result [, int fetch_flag])
    ibase_fetch_object(resource result_id [, int fetch_flag])
    ibase_fetch_row(resource result_identifier [, int fetch_flag])
    ibase_field_info(resource result, int field_number)
    ibase_free_event_handler(resource event)
    ibase_free_query(resource query)
    ibase_free_result(resource result_identifier)
    ibase_gen_id(string generator [, int increment [, resource link_identifier]])
    ibase_maintain_db(resource service_handle, string db, int action [, int argument])
    ibase_modify_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])
    ibase_name_result(resource result, string name)
    ibase_num_fields(resource result_id)
    ibase_num_params(resource query)
    ibase_param_info(resource query, int param_number)
    ibase_pconnect([string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]])
    ibase_prepare(string query)
    ibase_query([resource link_identifier, string query [, int bind_args]])
    ibase_restore(resource service_handle, string source_file, string dest_db [, int options [, bool verbose]])
    ibase_rollback([resource link_or_trans_identifier])
    ibase_rollback_ret([resource link_or_trans_identifier])
    ibase_server_info(resource service_handle, int action)
    ibase_service_attach(string host, string dba_username, string dba_password)
    ibase_service_detach(resource service_handle)
    ibase_set_event_handler(callback event_handler, string event_name1 [, string event_name2 [, string ...]])
    ibase_timefmt(string format [, int columntype])
    ibase_trans([int trans_args [, resource link_identifier]])
    ibase_wait_event(string event_name1 [, string event_name2 [, string ...]])
    icap_close(int icap_stream [, int flags])
    icap_create_calendar(int stream_id, string calendar)
    icap_delete_calendar(int stream_id, string calendar)
    icap_delete_event(int stream_id, int uid)
    icap_fetch_event(int stream_id, int event_id [, int options])
    icap_list_alarms(int stream_id, array date, array time)
    icap_list_events(int stream_id, int begin_date [, int end_date])
    icap_open(string calendar, string username, string password, string options)
    icap_rename_calendar(int stream_id, string old_name, string new_name)
    icap_reopen(int stream_id, string calendar [, int options])
    icap_snooze(int stream_id, int uid)
    icap_store_event(int stream_id, object event)
    iconv(string in_charset, string out_charset, string str)
    iconv_get_encoding([string type])
    iconv_mime_decode(string encoded_header [, int mode [, string charset]])
    iconv_mime_decode_headers(string encoded_headers [, int mode [, string charset]])
    iconv_mime_encode(string field_name, string field_value [, array preferences])
    iconv_set_encoding(string type, string charset)
    iconv_strlen(string str [, string charset])
    iconv_strpos(string haystack, string needle [, int offset [, string charset]])
    iconv_strrpos(string haystack, string needle [, string charset])
    iconv_substr(string str, int offset [, int length [, string charset]])
    id3_get_frame_long_name(string frameId)
    id3_get_frame_short_name(string frameId)
    id3_get_genre_id(string genre)
    id3_get_genre_list(void)
    id3_get_genre_name(int genre_id)
    id3_get_tag(string filename [, int version])
    id3_get_version(string filename)
    id3_remove_tag(string filename [, int version])
    id3_set_tag(string filename, array tag [, int version])
    idate(string format [, int timestamp])
    ifx_affected_rows(resource result_id)
    ifx_blobinfile_mode(int mode)
    ifx_byteasvarchar(int mode)
    ifx_close([resource link_identifier])
    ifx_connect([string database [, string userid [, string password]]])
    ifx_copy_blob(int bid)
    ifx_create_blob(int type, int mode, string param)
    ifx_create_char(string param)
    ifx_do(resource result_id)
    ifx_error([resource link_identifier])
    ifx_errormsg([int errorcode])
    ifx_fetch_row(resource result_id [, mixed position])
    ifx_fieldproperties(resource result_id)
    ifx_fieldtypes(resource result_id)
    ifx_free_blob(int bid)
    ifx_free_char(int bid)
    ifx_free_result(resource result_id)
    ifx_get_blob(int bid)
    ifx_get_char(int bid)
    ifx_getsqlca(resource result_id)
    ifx_htmltbl_result(resource result_id [, string html_table_options])
    ifx_nullformat(int mode)
    ifx_num_fields(resource result_id)
    ifx_num_rows(resource result_id)
    ifx_pconnect([string database [, string userid [, string password]]])
    ifx_prepare(string query, resource link_identifier [, int cursor_def, mixed blobidarray])
    ifx_query(string query, resource link_identifier [, int cursor_type [, mixed blobidarray]])
    ifx_textasvarchar(int mode)
    ifx_update_blob(int bid, string content)
    ifx_update_char(int bid, string content)
    ifxus_close_slob(int bid)
    ifxus_create_slob(int mode)
    ifxus_free_slob(int bid)
    ifxus_open_slob(int bid, int mode)
    ifxus_read_slob(int bid, int nbytes)
    ifxus_seek_slob(int bid, int mode, int offset)
    ifxus_tell_slob(int bid)
    ifxus_write_slob(int bid, string content)
    ignore_user_abort([bool setting])
    iis_add_server(string path, string comment, string server_ip, int port, string host_name, int rights, int start_server)
    iis_get_dir_security(int server_instance, string virtual_path)
    iis_get_script_map(int server_instance, string virtual_path, string script_extension)
    iis_get_server_by_comment(string comment)
    iis_get_server_by_path(string path)
    iis_get_server_rights(int server_instance, string virtual_path)
    iis_get_service_state(string service_id)
    iis_remove_server(int server_instance)
    iis_set_app_settings(int server_instance, string virtual_path, string application_scope)
    iis_set_dir_security(int server_instance, string virtual_path, int directory_flags)
    iis_set_script_map(int server_instance, string virtual_path, string script_extension, string engine_path, int allow_scripting)
    iis_set_server_rights(int server_instance, string virtual_path, int directory_flags)
    iis_start_server(int server_instance)
    iis_start_service(string service_id)
    iis_stop_server(int server_instance)
    iis_stop_service(string service_id)
    image2wbmp(resource image [, string filename [, int threshold]])
    image_type_to_extension(int imagetype [, bool include_dot])
    image_type_to_mime_type(int imagetype)
    imagealphablending(resource image, bool blendmode)
    imageantialias(resource image, bool on)
    imagearc(resource image, int cx, int cy, int width, int height, int start, int end, int color)
    imagechar(resource image, int font, int x, int y, string c, int color)
    imagecharup(resource image, int font, int x, int y, string c, int color)
    imagecolorallocate(resource image, int red, int green, int blue)
    imagecolorallocatealpha(resource image, int red, int green, int blue, int alpha)
    imagecolorat(resource image, int x, int y)
    imagecolorclosest(resource image, int red, int green, int blue)
    imagecolorclosestalpha(resource image, int red, int green, int blue, int alpha)
    imagecolorclosesthwb(resource image, int red, int green, int blue)
    imagecolordeallocate(resource image, int color)
    imagecolorexact(resource image, int red, int green, int blue)
    imagecolorexactalpha(resource image, int red, int green, int blue, int alpha)
    imagecolormatch(resource image1, resource image2)
    imagecolorresolve(resource image, int red, int green, int blue)
    imagecolorresolvealpha(resource image, int red, int green, int blue, int alpha)
    imagecolorset(resource image, int index, int red, int green, int blue)
    imagecolorsforindex(resource image, int index)
    imagecolorstotal(resource image)
    imagecolortransparent(resource image [, int color])
    imageconvolution(resource image, array matrix, float div, float offset)
    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)
    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)
    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)
    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)
    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)
    imagecreate(int width, int height)
    imagecreatefromgd(string filename)
    imagecreatefromgd2(string filename)
    imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height)
    imagecreatefromgif(string filename)
    imagecreatefromjpeg(string filename)
    imagecreatefrompng(string filename)
    imagecreatefromstring(string data)
    imagecreatefromwbmp(string filename)
    imagecreatefromxbm(string filename)
    imagecreatefromxpm(string filename)
    imagecreatetruecolor(int width, int height)
    imagedashedline(resource image, int x1, int y1, int x2, int y2, int color)
    imagedestroy(resource image)
    imageellipse(resource image, int cx, int cy, int width, int height, int color)
    imagefill(resource image, int x, int y, int color)
    imagefilledarc(resource image, int cx, int cy, int width, int height, int start, int end, int color, int style)
    imagefilledellipse(resource image, int cx, int cy, int width, int height, int color)
    imagefilledpolygon(resource image, array points, int num_points, int color)
    imagefilledrectangle(resource image, int x1, int y1, int x2, int y2, int color)
    imagefilltoborder(resource image, int x, int y, int border, int color)
    imagefilter(resource image, int filtertype [, int arg1 [, int arg2 [, int arg3]]])
    imagefontheight(int font)
    imagefontwidth(int font)
    imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])
    imagefttext(resource image, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])
    imagegammacorrect(resource image, float inputgamma, float outputgamma)
    imagegd(resource image [, string filename])
    imagegd2(resource image [, string filename [, int chunk_size [, int type]]])
    imagegif(resource image [, string filename])
    imagegrabscreen(void)
    imagegrabwindow(int window [, int client_area])
    imageinterlace(resource image [, int interlace])
    imageistruecolor(resource image)
    imagejpeg(resource image [, string filename [, int quality]])
    imagelayereffect(resource image, int effect)
    imageline(resource image, int x1, int y1, int x2, int y2, int color)
    imageloadfont(string file)
    imagepalettecopy(resource destination, resource source)
    imagepng(resource image [, string filename [, int quality [, int filters]]])
    imagepolygon(resource image, array points, int num_points, int color)
    imagepsbbox(string text, int font, int size [, int space, int tightness, float angle])
    imagepscopyfont
    imagepsencodefont(resource font_index, string encodingfile)
    imagepsextendfont(int font_index, float extend)
    imagepsfreefont(resource fontindex)
    imagepsloadfont(string filename)
    imagepsslantfont(resource font_index, float slant)
    imagepstext(resource image, string text, resource font, int size, int foreground, int background, int x, int y [, int space [, int tightness [, float angle [, int antialias_steps]]]])
    imagerectangle(resource image, int x1, int y1, int x2, int y2, int color)
    imagerotate(resource source_image, float angle, int bgd_color [, int ignore_transparent])
    imagesavealpha(resource image, bool saveflag)
    imagesetbrush(resource image, resource brush)
    imagesetpixel(resource image, int x, int y, int color)
    imagesetstyle(resource image, array style)
    imagesetthickness(resource image, int thickness)
    imagesettile(resource image, resource tile)
    imagestring(resource image, int font, int x, int y, string string, int color)
    imagestringup(resource image, int font, int x, int y, string string, int color)
    imagesx(resource image)
    imagesy(resource image)
    imagetruecolortopalette(resource image, bool dither, int ncolors)
    imagettfbbox(float size, float angle, string fontfile, string text)
    imagettftext(resource image, float size, float angle, int x, int y, int color, string fontfile, string text)
    imagetypes(void)
    imagewbmp(resource image [, string filename [, int foreground]])
    imagexbm(resource image, string filename [, int foreground])
    imap_8bit(string string)
    imap_alerts(void)
    imap_append(resource imap_stream, string mailbox, string message [, string options])
    imap_base64(string text)
    imap_binary(string string)
    imap_body(resource imap_stream, int msg_number [, int options])
    imap_bodystruct(resource imap_stream, int msg_number, string section)
    imap_check(resource imap_stream)
    imap_clearflag_full(resource imap_stream, string sequence, string flag [, string options])
    imap_close(resource imap_stream [, int flag])
    imap_createmailbox(resource imap_stream, string mailbox)
    imap_delete(int imap_stream, int msg_number [, int options])
    imap_deletemailbox(resource imap_stream, string mailbox)
    imap_errors(void)
    imap_expunge(resource imap_stream)
    imap_fetch_overview(resource imap_stream, string sequence [, int options])
    imap_fetchbody(resource imap_stream, int msg_number, string part_number [, int options])
    imap_fetchheader(resource imap_stream, int msg_number [, int options])
    imap_fetchstructure(resource imap_stream, int msg_number [, int options])
    imap_get_quota(resource imap_stream, string quota_root)
    imap_get_quotaroot(resource imap_stream, string quota_root)
    imap_getacl(resource imap_stream, string mailbox)
    imap_getmailboxes(resource imap_stream, string ref, string pattern)
    imap_getsubscribed(resource imap_stream, string ref, string pattern)
    imap_header
    imap_headerinfo(resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]])
    imap_headers(resource imap_stream)
    imap_last_error(void)
    imap_list(resource imap_stream, string ref, string pattern)
    imap_listmailbox
    imap_listscan(resource imap_stream, string ref, string pattern, string content)
    imap_listsubscribed
    imap_lsub(resource imap_stream, string ref, string pattern)
    imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])
    imap_mail_compose(array envelope, array body)
    imap_mail_copy(resource imap_stream, string msglist, string mailbox [, int options])
    imap_mail_move(resource imap_stream, string msglist, string mailbox [, int options])
    imap_mailboxmsginfo(resource imap_stream)
    imap_mime_header_decode(string text)
    imap_msgno(resource imap_stream, int uid)
    imap_num_msg(resource imap_stream)
    imap_num_recent(resource imap_stream)
    imap_open(string mailbox, string username, string password [, int options [, int n_retries]])
    imap_ping(resource imap_stream)
    imap_popen
    imap_qprint(string string)
    imap_renamemailbox(resource imap_stream, string old_mbox, string new_mbox)
    imap_reopen(resource imap_stream, string mailbox [, int options [, int n_retries]])
    imap_rfc822_parse_adrlist(string address, string default_host)
    imap_rfc822_parse_headers(string headers [, string defaulthost])
    imap_rfc822_write_address(string mailbox, string host, string personal)
    imap_savebody(resource imap_stream, mixed file, int msg_number [, string part_number [, int options]])
    imap_scanmailbox
    imap_search(resource imap_stream, string criteria [, int options [, string charset]])
    imap_set_quota(resource imap_stream, string quota_root, int quota_limit)
    imap_setacl(resource imap_stream, string mailbox, string id, string rights)
    imap_setflag_full(resource imap_stream, string sequence, string flag [, int options])
    imap_sort(resource imap_stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]])
    imap_status(resource imap_stream, string mailbox, int options)
    imap_subscribe(resource imap_stream, string mailbox)
    imap_thread(resource imap_stream [, int options])
    imap_timeout(int timeout_type [, int timeout])
    imap_uid(resource imap_stream, int msg_number)
    imap_undelete(resource imap_stream, int msg_number [, int flags])
    imap_unsubscribe(string imap_stream, string mailbox)
    imap_utf7_decode(string text)
    imap_utf7_encode(string data)
    imap_utf8(string mime_encoded_text)
    implements
    implode(string glue, array pieces)
    import_request_variables(string types [, string prefix])
    in_array(mixed needle, array haystack [, bool strict])
    include
    include_once
    inet_ntop(string in_addr)
    inet_pton(string address)
    ingres_autocommit([resource link])
    ingres_close([resource link])
    ingres_commit([resource link])
    ingres_connect([string database [, string username [, string password [, array options]]]])
    ingres_cursor([resource link])
    ingres_errno([resource link])
    ingres_error([resource link])
    ingres_errsqlstate([resource link])
    ingres_fetch_array([int result_type [, resource link]])
    ingres_fetch_object([int result_type [, resource link]])
    ingres_fetch_row([resource link])
    ingres_field_length(int index [, resource link])
    ingres_field_name(int index [, resource link])
    ingres_field_nullable(int index [, resource link])
    ingres_field_precision(int index [, resource link])
    ingres_field_scale(int index [, resource link])
    ingres_field_type(int index [, resource link])
    ingres_num_fields([resource link])
    ingres_num_rows([resource link])
    ingres_pconnect([string database [, string username [, string password]]])
    ingres_query(string query [, resource link])
    ingres_rollback([resource link])
    ini_alter
    ini_get(string varname)
    ini_get_all([string extension])
    ini_restore(string varname)
    ini_set(string varname, string newvalue)
    instanceof
    interface
    interface_exists(string interface_name [, bool autoload])
    intval(mixed var [, int base])
    ip2long(string ip_address)
    iptcembed(string iptcdata, string jpeg_file_name [, int spool])
    iptcparse(string iptcblock)
    ircg_channel_mode(resource connection, string channel, string mode_spec, string nick)
    ircg_disconnect(resource connection, string reason)
    ircg_eval_ecmascript_params(string params)
    ircg_fetch_error_msg(resource connection)
    ircg_get_username(resource connection)
    ircg_html_encode(string html_string [, bool auto_links [, bool conv_br]])
    ircg_ignore_add(resource connection, string nick)
    ircg_ignore_del(resource connection, string nick)
    ircg_invite(resource connection, string channel, string nickname)
    ircg_is_conn_alive(resource connection)
    ircg_join(resource connection, string channel [, string key])
    ircg_kick(resource connection, string channel, string nick, string reason)
    ircg_list(resource connection, string channel)
    ircg_lookup_format_messages(string name)
    ircg_lusers(resource connection)
    ircg_msg(resource connection, string recipient, string message [, bool suppress])
    ircg_names(int connection, string channel [, string target])
    ircg_nick(resource connection, string nick)
    ircg_nickname_escape(string nick)
    ircg_nickname_unescape(string nick)
    ircg_notice(resource connection, string nick, string message)
    ircg_oper(resource connection, string name, string password)
    ircg_part(resource connection, string channel)
    ircg_pconnect(string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings [, bool bailout_on_trivial]]]]]])
    ircg_register_format_messages(string name, array messages)
    ircg_set_current(resource connection)
    ircg_set_file(resource connection, string path)
    ircg_set_on_die(resource connection, string host, int port, string data)
    ircg_topic(resource connection, string channel, string new_topic)
    ircg_who(resource connection, string mask [, bool ops_only])
    ircg_whois(resource connection, string nick)
    is unusableLOG_ALERTaction must be taken immediatelyLOG_CRITcritical conditionsLOG_ERRerror conditionsLOG_WARNINGwarning conditionsLOG_NOTICEnormal, but significant, conditionLOG_INFOinformational messageLOG_DEBUGdebug-level messageTable 5. dns_get_record()OptionsConstant
    is_a(object object, string class_name)
    is_array(mixed var)
    is_binary(mixed var)
    is_bool(mixed var)
    is_buffer(mixed var)
    is_callable
    is_dir(string filename)
    is_double
    is_executable(string filename)
    is_file(string filename)
    is_finite(float val)
    is_float(mixed var)
    is_infinite(float val)
    is_int(mixed var)
    is_integer
    is_link(string filename)
    is_long
    is_nan(float val)
    is_null(mixed var)
    is_numeric(mixed var)
    is_object(mixed var)
    is_readable(string filename)
    is_real
    is_resource(mixed var)
    is_scalar(mixed var)
    is_soap_fault(mixed obj)
    is_string(mixed var)
    is_subclass_of(mixed object, string class_name)
    is_unicode(mixed var)
    is_uploaded_file(string filename)
    is_writable(string filename)
    is_writeable
    isset(mixed var [, mixed var [, ...]])
    iterator_count(IteratorAggregate iterator)
    iterator_to_array(IteratorAggregate iterator [, bool use_keys])
    java_last_exception_clear(void)
    java_last_exception_get(void)
    jddayofweek(int julianday [, int mode])
    jdmonthname(int julianday, int mode)
    jdtofrench(int juliandaycount)
    jdtogregorian(int julianday)
    jdtojewish(int juliandaycount [, bool hebrew [, int fl]])
    jdtojulian(int julianday)
    jdtounix(int jday)
    jewishtojd(int month, int day, int year)
    join
    jpeg2wbmp(string jpegname, string wbmpname, int dest_height, int dest_width, int threshold)
    json_decode(string json [, bool assoc])
    json_encode(mixed value)
    juliantojd(int month, int day, int year)
    kadm5_chpass_principal(resource handle, string principal, string password)
    kadm5_create_principal(resource handle, string principal [, string password [, array options]])
    kadm5_delete_principal(resource handle, string principal)
    kadm5_destroy(resource handle)
    kadm5_flush(resource handle)
    kadm5_get_policies(resource handle)
    kadm5_get_principal(resource handle, string principal)
    kadm5_get_principals(resource handle)
    kadm5_init_with_password(string admin_server, string realm, string principal, string password)
    kadm5_modify_principal(resource handle, string principal, array options)
    key
    krsort
    ksort
    lcg_value(void)
    lchgrp(string filename, mixed group)
    lchown(string filename, mixed user)
    ldap_8859_to_t61(string value)
    ldap_add(resource link_identifier, string dn, array entry)
    ldap_bind(resource link_identifier [, string bind_rdn [, string bind_password]])
    ldap_close
    ldap_compare(resource link_identifier, string dn, string attribute, string value)
    ldap_connect([string hostname [, int port]])
    ldap_count_entries(resource link_identifier, resource result_identifier)
    ldap_delete(resource link_identifier, string dn)
    ldap_dn2ufn(string dn)
    ldap_err2str(int errno)
    ldap_errno(resource link_identifier)
    ldap_error(resource link_identifier)
    ldap_explode_dn(string dn, int with_attrib)
    ldap_first_attribute
    ldap_first_entry(resource link_identifier, resource result_identifier)
    ldap_first_reference(resource link, resource result)
    ldap_free_result(resource result_identifier)
    ldap_get_attributes(resource link_identifier, resource result_entry_identifier)
    ldap_get_dn(resource link_identifier, resource result_entry_identifier)
    ldap_get_entries(resource link_identifier, resource result_identifier)
    ldap_get_option
    ldap_get_values(resource link_identifier, resource result_entry_identifier, string attribute)
    ldap_get_values_len(resource link_identifier, resource result_entry_identifier, string attribute)
    ldap_list(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
    ldap_mod_add(resource link_identifier, string dn, array entry)
    ldap_mod_del(resource link_identifier, string dn, array entry)
    ldap_mod_replace(resource link_identifier, string dn, array entry)
    ldap_modify(resource link_identifier, string dn, array entry)
    ldap_next_attribute
    ldap_next_entry(resource link_identifier, resource result_entry_identifier)
    ldap_next_reference(resource link, resource entry)
    ldap_parse_reference
    ldap_parse_result
    ldap_read(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
    ldap_rename(resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn)
    ldap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authz_id [, string props]]]]]])
    ldap_search(resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
    ldap_set_option(resource link_identifier, int option, mixed newval)
    ldap_set_rebind_proc(resource link, callback callback)
    ldap_sort(resource link, resource result, string sortfilter)
    ldap_start_tls(resource link)
    ldap_t61_to_8859(string value)
    ldap_unbind(resource link_identifier)
    leak
    levenshtein(string str1, string str2 [, int cost_ins, int cost_rep, int cost_del])
    libxml_clear_errors(void)
    libxml_get_errors(void)
    libxml_get_last_error(void)
    libxml_set_streams_context(resource streams_context)
    libxml_use_internal_errors([bool use_errors])
    link(string target, string link)
    linkinfo(string path)
    list(mixed varname, mixed ...)
    locale_get_default(void)
    locale_set_default(string name)
    localeconv(void)
    localtime([int timestamp [, bool is_associative]])
    log(float arg [, float base])
    log10(float arg)
    log1p(float number)
    long2ip(int proper_address)
    lstat(string filename)
    ltrim(string str [, string charlist])
    lzf_compress(string data)
    lzf_decompress(string data)
    lzf_optimized_for(void)
    m_checkstatus(resource conn, int identifier)
    m_connect(resource conn)
    m_connectionerror(resource conn)
    m_deletetrans(resource conn, int identifier)
    m_destroyconn(resource conn)
    m_destroyengine(void)
    m_getcell(resource conn, int identifier, string column, int row)
    m_getcellbynum(resource conn, int identifier, int column, int row)
    m_getcommadelimited(resource conn, int identifier)
    m_getheader(resource conn, int identifier, int column_num)
    m_initconn(void)
    m_initengine(string location)
    m_iscommadelimited(resource conn, int identifier)
    m_maxconntimeout(resource conn, int secs)
    m_monitor(resource conn)
    m_numcolumns(resource conn, int identifier)
    m_numrows(resource conn, int identifier)
    m_parsecommadelimited(resource conn, int identifier)
    m_responsekeys(resource conn, int identifier)
    m_responseparam(resource conn, int identifier, string key)
    m_returnstatus(resource conn, int identifier)
    m_setblocking(resource conn, int tf)
    m_setdropfile(resource conn, string directory)
    m_setip(resource conn, string host, int port)
    m_setssl(resource conn, string host, int port)
    m_setssl_cafile(resource conn, string cafile)
    m_setssl_files(resource conn, string sslkeyfile, string sslcertfile)
    m_settimeout(resource conn, int seconds)
    m_sslcert_gen_hash(string filename)
    m_transactionssent(resource conn)
    m_transinqueue(resource conn)
    m_transkeyval(resource conn, int identifier, string key, string value)
    m_transnew(resource conn)
    m_transsend(resource conn, int identifier)
    m_uwait(int microsecs)
    m_validateidentifier(resource conn, int tf)
    m_verifyconnection(resource conn, int tf)
    m_verifysslcert(resource conn, int tf)
    mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])
    mailparse_determine_best_xfer_encoding(resource fp)
    mailparse_msg_create(void)
    mailparse_msg_extract_part(resource mimemail, string msgbody [, callback callbackfunc])
    mailparse_msg_extract_part_file(resource mimemail, mixed filename [, callback callbackfunc])
    mailparse_msg_extract_whole_part_file(resource mimemail, string filename [, callback callbackfunc])
    mailparse_msg_free(resource mimemail)
    mailparse_msg_get_part(resource mimemail, string mimesection)
    mailparse_msg_get_part_data(resource mimemail)
    mailparse_msg_get_structure(resource mimemail)
    mailparse_msg_parse(resource mimemail, string data)
    mailparse_msg_parse_file(string filename)
    mailparse_rfc822_parse_addresses(string addresses)
    mailparse_stream_encode(resource sourcefp, resource destfp, string encoding)
    mailparse_uudecode_all(resource fp)
    max(array values)
    maxdb_connect_errno(void)
    maxdb_connect_error(void)
    maxdb_debug(string debug)
    maxdb_disable_rpl_parse(resource link)
    maxdb_dump_debug_info(resource link)
    maxdb_embedded_connect([string dbname])
    maxdb_enable_reads_from_master(resource link)
    maxdb_enable_rpl_parse(resource link)
    maxdb_get_client_info(void)
    maxdb_get_client_version(void)
    maxdb_init(void)
    maxdb_master_query(resource link, string query)
    maxdb_more_results(resource link)
    maxdb_next_result(resource link)
    maxdb_report(int flags)
    maxdb_rollback(resource link)
    maxdb_rpl_parse_enabled(resource link)
    maxdb_rpl_probe(resource link)
    maxdb_rpl_query_type(resource link)
    maxdb_select_db(resource link, string dbname)
    maxdb_send_query(resource link, string query)
    maxdb_server_end(void)
    maxdb_server_init([array server [, array groups]])
    maxdb_stmt_sqlstate(resource stmt)
    mb_check_encoding([string var [, string encoding]])
    mb_convert_case(string str, int mode [, string encoding])
    mb_convert_encoding(string str, string to_encoding [, mixed from_encoding])
    mb_convert_kana(string str [, string option [, string encoding]])
    mb_convert_variables
    mb_decode_mimeheader(string str)
    mb_decode_numericentity(string str, array convmap [, string encoding])
    mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])
    mb_detect_order([mixed encoding_list])
    mb_encode_mimeheader(string str [, string charset [, string transfer_encoding [, string linefeed [, int indent]]]])
    mb_encode_numericentity(string str, array convmap [, string encoding])
    mb_ereg(string pattern, string string [, array regs])
    mb_ereg_match(string pattern, string string [, string option])
    mb_ereg_replace(string pattern, string replacement, string string [, string option])
    mb_ereg_search([string pattern [, string option]])
    mb_ereg_search_getpos(void)
    mb_ereg_search_getregs(void)
    mb_ereg_search_init(string string [, string pattern [, string option]])
    mb_ereg_search_pos([string pattern [, string option]])
    mb_ereg_search_regs([string pattern [, string option]])
    mb_ereg_search_setpos(int position)
    mb_eregi(string pattern, string string [, array regs])
    mb_eregi_replace(string pattern, string replace, string string [, string option])
    mb_get_info([string type])
    mb_http_input([string type])
    mb_http_output([string encoding])
    mb_internal_encoding([string encoding])
    mb_language([string language])
    mb_list_encodings(void)
    mb_list_encodings_alias_names([string encoding])
    mb_list_mime_names([string encoding])
    mb_output_handler(string contents, int status)
    mb_parse_str
    mb_preferred_mime_name(string encoding)
    mb_regex_encoding([string encoding])
    mb_regex_set_options([string options])
    mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameter]])
    mb_split(string pattern, string string [, int limit])
    mb_strcut(string str, int start [, int length [, string encoding]])
    mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]])
    mb_stripos(string haystack, string needle [, int offset [, string encoding]])
    mb_stristr(string haystack, string needle [, bool part [, string encoding]])
    mb_strlen(string str [, string encoding])
    mb_strpos(string haystack, string needle [, int offset [, string encoding]])
    mb_strrchr(string haystack, string needle [, bool part [, string encoding]])
    mb_strrichr(string haystack, string needle [, bool part [, string encoding]])
    mb_strripos(string haystack, string needle [, int offset [, string encoding]])
    mb_strrpos(string haystack, string needle [, int offset [, string encoding]])
    mb_strstr(string haystack, string needle [, bool part [, string encoding]])
    mb_strtolower(string str [, string encoding])
    mb_strtoupper(string str [, string encoding])
    mb_strwidth(string str [, string encoding])
    mb_substitute_character([mixed substrchar])
    mb_substr(string str, int start [, int length [, string encoding]])
    mb_substr_count(string haystack, string needle [, string encoding])
    mcal_append_event(int mcal_stream)
    mcal_close(int mcal_stream [, int flags])
    mcal_create_calendar(int stream, string calendar)
    mcal_date_compare(int a_year, int a_month, int a_day, int b_year, int b_month, int b_day)
    mcal_date_valid(int year, int month, int day)
    mcal_day_of_week(int year, int month, int day)
    mcal_day_of_year(int year, int month, int day)
    mcal_days_in_month(int month, int leap_year)
    mcal_delete_calendar(int stream, string calendar)
    mcal_delete_event(int mcal_stream, int event_id)
    mcal_event_add_attribute(int stream, string attribute, string value)
    mcal_event_init(int stream)
    mcal_event_set_alarm(int stream, int alarm)
    mcal_event_set_category(int stream, string category)
    mcal_event_set_class(int stream, int class)
    mcal_event_set_description(int stream, string description)
    mcal_event_set_end(int stream, int year, int month, int day [, int hour [, int min [, int sec]]])
    mcal_event_set_recur_daily(int stream, int year, int month, int day, int interval)
    mcal_event_set_recur_monthly_mday(int stream, int year, int month, int day, int interval)
    mcal_event_set_recur_monthly_wday(int stream, int year, int month, int day, int interval)
    mcal_event_set_recur_none(int stream)
    mcal_event_set_recur_weekly(int stream, int year, int month, int day, int interval, int weekdays)
    mcal_event_set_recur_yearly(int stream, int year, int month, int day, int interval)
    mcal_event_set_start(int stream, int year, int month, int day [, int hour [, int min [, int sec]]])
    mcal_event_set_title(int stream, string title)
    mcal_expunge(int stream)
    mcal_fetch_current_stream_event(int stream)
    mcal_fetch_event(int mcal_stream, int event_id [, int options])
    mcal_is_leap_year(int year)
    mcal_list_alarms(int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day])
    mcal_list_events(int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day])
    mcal_next_recurrence(int stream, int weekstart, array next)
    mcal_open(string calendar, string username, string password [, int options])
    mcal_popen(string calendar, string username, string password [, int options])
    mcal_rename_calendar(int stream, string old_name, string new_name)
    mcal_reopen(int mcal_stream, string calendar [, int options])
    mcal_snooze(int stream_id, int event_id)
    mcal_store_event(int mcal_stream)
    mcal_time_valid(int hour, int minutes, int seconds)
    mcal_week_of_year(int day, int month, int year)
    mcrypt_cbc(int cipher, string key, string data, int mode [, string iv])
    mcrypt_cfb(int cipher, string key, string data, int mode, string iv)
    mcrypt_create_iv(int size [, int source])
    mcrypt_decrypt(string cipher, string key, string data, string mode [, string iv])
    mcrypt_ecb(int cipher, string key, string data, int mode)
    mcrypt_enc_get_algorithms_name(resource td)
    mcrypt_enc_get_block_size(resource td)
    mcrypt_enc_get_iv_size(resource td)
    mcrypt_enc_get_key_size(resource td)
    mcrypt_enc_get_modes_name(resource td)
    mcrypt_enc_get_supported_key_sizes(resource td)
    mcrypt_enc_is_block_algorithm(resource td)
    mcrypt_enc_is_block_algorithm_mode(resource td)
    mcrypt_enc_is_block_mode(resource td)
    mcrypt_enc_self_test(resource td)
    mcrypt_encrypt(string cipher, string key, string data, string mode [, string iv])
    mcrypt_generic(resource td, string data)
    mcrypt_generic_deinit(resource td)
    mcrypt_generic_end(resource td)
    mcrypt_generic_init(resource td, string key, string iv)
    mcrypt_get_block_size(int cipher)
    mcrypt_get_cipher_name(int cipher)
    mcrypt_get_iv_size(string cipher, string mode)
    mcrypt_get_key_size(int cipher)
    mcrypt_list_algorithms([string lib_dir])
    mcrypt_list_modes([string lib_dir])
    mcrypt_module_close(resource td)
    mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir])
    mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir])
    mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir])
    mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir])
    mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir])
    mcrypt_module_is_block_mode(string mode [, string lib_dir])
    mcrypt_module_open(string algorithm, string algorithm_directory, string mode, string mode_directory)
    mcrypt_module_self_test(string algorithm [, string lib_dir])
    mcrypt_ofb(int cipher, string key, string data, int mode, string iv)
    md5(string str [, bool raw_output])
    md5_file(string filename [, bool raw_output])
    mdecrypt_generic(resource td, string data)
    memcache_debug(bool on_off)
    memory_get_peak_usage([bool real_usage])
    memory_get_usage([bool real_usage])
    metaphone(string str [, int phones])
    method_exists(object object, string method_name)
    mhash(int hash, string data [, string key])
    mhash_count(void)
    mhash_get_block_size(int hash)
    mhash_get_hash_name(int hash)
    mhash_keygen_s2k(int hash, string password, string salt, int bytes)
    microtime([bool get_as_float])
    mime_content_type(string filename)
    min(array values)
    ming_keypress(string char)
    ming_setcubicthreshold(int threshold)
    ming_setscale(int scale)
    ming_setswfcompression(int level)
    ming_useconstants(int use)
    ming_useswfversion(int version)
    mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
    mktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]])
    money_format(string format, float number)
    move_uploaded_file(string filename, string destination)
    msession_connect(string host, string port)
    msession_count(void)
    msession_create(string session, string classname, string data)
    msession_destroy(string name)
    msession_disconnect(void)
    msession_find(string name, string value)
    msession_get(string session, string name, string value)
    msession_get_array(string session)
    msession_get_data(string session)
    msession_getdata
    msession_inc(string session, string name)
    msession_list(void)
    msession_listvar(string name)
    msession_lock(string name)
    msession_plugin(string session, string val [, string param])
    msession_randstr(int param)
    msession_set(string session, string name, string value)
    msession_set_array(string session, array tuples)
    msession_set_data(string session, string value)
    msession_setdata
    msession_timeout(string session [, int param])
    msession_uniq(int param, string classname, string data)
    msession_unlock(string session, int key)
    msg_get_queue(int key [, int perms])
    msg_remove_queue(resource queue)
    msg_set_queue(resource queue, array data)
    msg_stat_queue(resource queue)
    msql
    msql_affected_rows(resource result)
    msql_close([resource link_identifier])
    msql_connect([string hostname])
    msql_create_db(string database_name [, resource link_identifier])
    msql_createdb
    msql_data_seek(resource result, int row_number)
    msql_db_query(string database, string query [, resource link_identifier])
    msql_dbname
    msql_drop_db(string database_name [, resource link_identifier])
    msql_dropdb
    msql_error(void)
    msql_fetch_array(resource result [, int result_type])
    msql_fetch_field(resource result [, int field_offset])
    msql_fetch_object(resource result)
    msql_fetch_row(resource result)
    msql_field_flags(resource result, int field_offset)
    msql_field_len(resource result, int field_offset)
    msql_field_name(resource result, int field_offset)
    msql_field_seek(resource result, int field_offset)
    msql_field_table(resource result, int field_offset)
    msql_field_type(resource result, int field_offset)
    msql_fieldflags
    msql_fieldlen
    msql_fieldname
    msql_fieldtable
    msql_fieldtype
    msql_free_result(resource result)
    msql_freeresult
    msql_list_dbs([resource link_identifier])
    msql_list_fields(string database, string tablename [, resource link_identifier])
    msql_list_tables(string database [, resource link_identifier])
    msql_listdbs
    msql_listfields
    msql_listtables
    msql_num_fields(resource result)
    msql_num_rows(resource query_identifier)
    msql_numfields
    msql_numrows
    msql_pconnect([string hostname])
    msql_query(string query [, resource link_identifier])
    msql_regcase
    msql_result(resource result, int row [, mixed field])
    msql_select_db(string database_name [, resource link_identifier])
    msql_selectdb
    msql_tablename
    mssql_bind
    mssql_close([resource link_identifier])
    mssql_connect([string servername [, string username [, string password [, bool new_link]]]])
    mssql_data_seek(resource result_identifier, int row_number)
    mssql_execute(resource stmt [, bool skip_results])
    mssql_fetch_array(resource result [, int result_type])
    mssql_fetch_assoc(resource result_id)
    mssql_fetch_batch(resource result)
    mssql_fetch_field(resource result [, int field_offset])
    mssql_fetch_object(resource result)
    mssql_fetch_row(resource result)
    mssql_field_length(resource result [, int offset])
    mssql_field_name(resource result [, int offset])
    mssql_field_seek(resource result, int field_offset)
    mssql_field_type(resource result [, int offset])
    mssql_free_result(resource result)
    mssql_free_statement(resource stmt)
    mssql_get_last_message(void)
    mssql_guid_string(string binary [, int short_format])
    mssql_init(string sp_name [, resource link_identifier])
    mssql_min_error_severity(int severity)
    mssql_min_message_severity(int severity)
    mssql_next_result(resource result_id)
    mssql_num_fields(resource result)
    mssql_num_rows(resource result)
    mssql_pconnect([string servername [, string username [, string password [, bool new_link]]]])
    mssql_query(string query [, resource link_identifier [, int batch_size]])
    mssql_result(resource result, int row, mixed field)
    mssql_rows_affected(resource link_identifier)
    mssql_select_db(string database_name [, resource link_identifier])
    mt_getrandmax(void)
    mt_rand([int min, int max])
    mt_srand([int seed])
    muscat_close(resource muscat_handle)
    muscat_get(resource muscat_handle)
    muscat_give(resource muscat_handle, string string)
    muscat_setup(int size [, string muscat_dir])
    muscat_setup_net(resource socket)
    mysql_affected_rows([resource link_identifier])
    mysql_change_user(string user, string password [, string database [, resource link_identifier]])
    mysql_character_set_name
    mysql_client_encoding([resource link_identifier])
    mysql_close([resource link_identifier])
    mysql_connect([string server [, string username [, string password [, bool new_link [, int client_flags]]]]])
    mysql_create_db(string database_name [, resource link_identifier])
    mysql_data_seek(resource result, int row_number)
    mysql_db_name(resource result, int row [, mixed field])
    mysql_db_query(string database, string query [, resource link_identifier])
    mysql_drop_db(string database_name [, resource link_identifier])
    mysql_errno([resource link_identifier])
    mysql_error([resource link_identifier])
    mysql_escape_string(string unescaped_string)
    mysql_fetch_array(resource result [, int result_type])
    mysql_fetch_assoc(resource result)
    mysql_fetch_field(resource result [, int field_offset])
    mysql_fetch_lengths(resource result)
    mysql_fetch_object(resource result [, string class_name [, array params]])
    mysql_fetch_row(resource result)
    mysql_field_flags(resource result, int field_offset)
    mysql_field_len(resource result, int field_offset)
    mysql_field_name(resource result, int field_offset)
    mysql_field_seek(resource result, int field_offset)
    mysql_field_table(resource result, int field_offset)
    mysql_field_type(resource result, int field_offset)
    mysql_free_result(resource result)
    mysql_get_client_info(void)
    mysql_get_host_info([resource link_identifier])
    mysql_get_proto_info([resource link_identifier])
    mysql_get_server_info([resource link_identifier])
    mysql_info([resource link_identifier])
    mysql_insert_id([resource link_identifier])
    mysql_list_dbs([resource link_identifier])
    mysql_list_fields(string database_name, string table_name [, resource link_identifier])
    mysql_list_processes([resource link_identifier])
    mysql_list_tables(string database [, resource link_identifier])
    mysql_num_fields(resource result)
    mysql_num_rows(resource result)
    mysql_pconnect([string server [, string username [, string password [, int client_flags]]]])
    mysql_ping([resource link_identifier])
    mysql_query(string query [, resource link_identifier])
    mysql_real_escape_string(string unescaped_string [, resource link_identifier])
    mysql_result(resource result, int row [, mixed field])
    mysql_select_db(string database_name [, resource link_identifier])
    mysql_set_charset(string charset [, resource link_identifier])
    mysql_stat([resource link_identifier])
    mysql_tablename(resource result, int i)
    mysql_thread_id([resource link_identifier])
    mysql_unbuffered_query(string query [, resource link_identifier])
    mysqli_connect_errno(void)
    mysqli_connect_error(void)
    mysqli_disable_rpl_parse(mysqli link)
    mysqli_embedded_server_end(void)
    mysqli_embedded_server_start(bool start, array arguments, array groups)
    mysqli_enable_reads_from_master(mysqli link)
    mysqli_enable_rpl_parse(mysqli link)
    mysqli_get_charset(mysqli link)
    mysqli_get_client_info(void)
    mysqli_get_client_version(void)
    mysqli_get_warnings(mysqli link)
    mysqli_master_query(mysqli link, string query)
    mysqli_more_results(mysqli link)
    mysqli_next_result(mysqli link)
    mysqli_report(int flags)
    mysqli_rollback(mysqli link)
    mysqli_rpl_parse_enabled(mysqli link)
    mysqli_rpl_probe(mysqli link)
    mysqli_server_end(void)
    mysqli_server_init([array server [, array groups]])
    mysqli_set_local_infile_default(mysqli link)
    mysqli_set_local_infile_handler(mysqli link, callback read_func)
    mysqli_slave_query(mysqli link, string query)
    mysqli_stmt_attr_get(mysqli_stmt stmt, int attr)
    mysqli_stmt_attr_set(mysqli_stmt stmt, int attr, int mode)
    mysqli_stmt_field_count(mysqli_stmt stmt)
    mysqli_stmt_get_warnings(mysqli_stmt stmt)
    mysqli_stmt_insert_id(mysqli_stmt stmt)
    mysqli_stmt_sqlstate(mysqli_stmt stmt)
    natcasesort
    natsort
    ncurses_addch(int ch)
    ncurses_addchnstr(string s, int n)
    ncurses_addchstr(string s)
    ncurses_addnstr(string s, int n)
    ncurses_addstr(string text)
    ncurses_assume_default_colors(int fg, int bg)
    ncurses_attroff(int attributes)
    ncurses_attron(int attributes)
    ncurses_attrset(int attributes)
    ncurses_baudrate(void)
    ncurses_beep(void)
    ncurses_bkgd(int attrchar)
    ncurses_bkgdset(int attrchar)
    ncurses_border(int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
    ncurses_bottom_panel(resource panel)
    ncurses_can_change_color(void)
    ncurses_cbreak(void)
    ncurses_clear(void)
    ncurses_clrtobot(void)
    ncurses_clrtoeol(void)
    ncurses_color_set(int pair)
    ncurses_curs_set(int visibility)
    ncurses_def_prog_mode(void)
    ncurses_def_shell_mode(void)
    ncurses_define_key(string definition, int keycode)
    ncurses_del_panel(resource panel)
    ncurses_delay_output(int milliseconds)
    ncurses_delch(void)
    ncurses_deleteln(void)
    ncurses_delwin(resource window)
    ncurses_doupdate(void)
    ncurses_echo(void)
    ncurses_echochar(int character)
    ncurses_end(void)
    ncurses_erase(void)
    ncurses_erasechar(void)
    ncurses_filter(void)
    ncurses_flash(void)
    ncurses_flushinp(void)
    ncurses_getch(void)
    ncurses_getmouse
    ncurses_halfdelay(int tenth)
    ncurses_has_colors(void)
    ncurses_has_ic(void)
    ncurses_has_il(void)
    ncurses_has_key(int keycode)
    ncurses_hide_panel(resource panel)
    ncurses_hline(int charattr, int n)
    ncurses_inch(void)
    ncurses_init(void)
    ncurses_init_color(int color, int r, int g, int b)
    ncurses_init_pair(int pair, int fg, int bg)
    ncurses_insch(int character)
    ncurses_insdelln(int count)
    ncurses_insertln(void)
    ncurses_insstr(string text)
    ncurses_instr
    ncurses_isendwin(void)
    ncurses_keyok(int keycode, bool enable)
    ncurses_keypad(resource window, bool bf)
    ncurses_killchar(void)
    ncurses_longname(void)
    ncurses_meta(resource window, bool 8bit)
    ncurses_mouseinterval(int milliseconds)
    ncurses_mousemask
    ncurses_move(int y, int x)
    ncurses_move_panel(resource panel, int startx, int starty)
    ncurses_mvaddch(int y, int x, int c)
    ncurses_mvaddchnstr(int y, int x, string s, int n)
    ncurses_mvaddchstr(int y, int x, string s)
    ncurses_mvaddnstr(int y, int x, string s, int n)
    ncurses_mvaddstr(int y, int x, string s)
    ncurses_mvcur(int old_y, int old_x, int new_y, int new_x)
    ncurses_mvdelch(int y, int x)
    ncurses_mvgetch(int y, int x)
    ncurses_mvhline(int y, int x, int attrchar, int n)
    ncurses_mvinch(int y, int x)
    ncurses_mvvline(int y, int x, int attrchar, int n)
    ncurses_mvwaddstr(resource window, int y, int x, string text)
    ncurses_napms(int milliseconds)
    ncurses_new_panel(resource window)
    ncurses_newpad(int rows, int cols)
    ncurses_newwin(int rows, int cols, int y, int x)
    ncurses_nl(void)
    ncurses_nocbreak(void)
    ncurses_noecho(void)
    ncurses_nonl(void)
    ncurses_noqiflush(void)
    ncurses_noraw(void)
    ncurses_panel_above(resource panel)
    ncurses_panel_below(resource panel)
    ncurses_panel_window(resource panel)
    ncurses_pnoutrefresh(resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
    ncurses_prefresh(resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
    ncurses_putp(string text)
    ncurses_qiflush(void)
    ncurses_raw(void)
    ncurses_refresh(int ch)
    ncurses_replace_panel(resource panel, resource window)
    ncurses_reset_prog_mode(void)
    ncurses_reset_shell_mode(void)
    ncurses_resetty(void)
    ncurses_savetty(void)
    ncurses_scr_dump(string filename)
    ncurses_scr_init(string filename)
    ncurses_scr_restore(string filename)
    ncurses_scr_set(string filename)
    ncurses_scrl(int count)
    ncurses_show_panel(resource panel)
    ncurses_slk_attr(void)
    ncurses_slk_attroff(int intarg)
    ncurses_slk_attron(int intarg)
    ncurses_slk_attrset(int intarg)
    ncurses_slk_clear(void)
    ncurses_slk_color(int intarg)
    ncurses_slk_init(int format)
    ncurses_slk_noutrefresh(void)
    ncurses_slk_refresh(void)
    ncurses_slk_restore(void)
    ncurses_slk_set(int labelnr, string label, int format)
    ncurses_slk_touch(void)
    ncurses_standend(void)
    ncurses_standout(void)
    ncurses_start_color(void)
    ncurses_termattrs(void)
    ncurses_termname(void)
    ncurses_timeout(int millisec)
    ncurses_top_panel(resource panel)
    ncurses_typeahead(int fd)
    ncurses_ungetch(int keycode)
    ncurses_ungetmouse(array mevent)
    ncurses_update_panels(void)
    ncurses_use_default_colors(void)
    ncurses_use_env(bool flag)
    ncurses_use_extended_names(bool flag)
    ncurses_vidattr(int intarg)
    ncurses_vline(int charattr, int n)
    ncurses_waddch(resource window, int ch)
    ncurses_waddstr(resource window, string str [, int n])
    ncurses_wattroff(resource window, int attrs)
    ncurses_wattron(resource window, int attrs)
    ncurses_wattrset(resource window, int attrs)
    ncurses_wborder(resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
    ncurses_wclear(resource window)
    ncurses_wcolor_set(resource window, int color_pair)
    ncurses_werase(resource window)
    ncurses_wgetch(resource window)
    ncurses_whline(resource window, int charattr, int n)
    ncurses_wmove(resource window, int y, int x)
    ncurses_wnoutrefresh(resource window)
    ncurses_wrefresh(resource window)
    ncurses_wstandend(resource window)
    ncurses_wstandout(resource window)
    ncurses_wvline(resource window, int charattr, int n)
    newt_bell(void)
    newt_button(int left, int top, string text)
    newt_centered_window(int width, int height [, string title])
    newt_checkbox(int left, int top, string text, string def_value [, string seq])
    newt_checkbox_get_value(resource checkbox)
    newt_checkbox_set_flags(resource checkbox, int flags, int sense)
    newt_checkbox_set_value(resource checkbox, string value)
    newt_checkbox_tree(int left, int top, int height [, int flags])
    newt_checkbox_tree_add_item(resource checkboxtree, string text, mixed data, int flags, int index [, int ...])
    newt_checkbox_tree_find_item(resource checkboxtree, mixed data)
    newt_checkbox_tree_get_current(resource checkboxtree)
    newt_checkbox_tree_get_entry_value(resource checkboxtree, mixed data)
    newt_checkbox_tree_get_multi_selection(resource checkboxtree, string seqnum)
    newt_checkbox_tree_get_selection(resource checkboxtree)
    newt_checkbox_tree_multi(int left, int top, int height, string seq [, int flags])
    newt_checkbox_tree_set_current(resource checkboxtree, mixed data)
    newt_checkbox_tree_set_entry(resource checkboxtree, mixed data, string text)
    newt_checkbox_tree_set_entry_value(resource checkboxtree, mixed data, string value)
    newt_checkbox_tree_set_width(resource checkbox_tree, int width)
    newt_clear_key_buffer(void)
    newt_cls(void)
    newt_compact_button(int left, int top, string text)
    newt_component_add_callback(resource component, mixed func_name, mixed data)
    newt_component_takes_focus(resource component, bool takes_focus)
    newt_create_grid(int cols, int rows)
    newt_cursor_off(void)
    newt_cursor_on(void)
    newt_delay(int microseconds)
    newt_draw_form(resource form)
    newt_draw_root_text(int left, int top, string text)
    newt_entry(int left, int top, int width [, string init_value [, int flags]])
    newt_entry_get_value(resource entry)
    newt_entry_set(resource entry, string value [, bool cursor_at_end])
    newt_entry_set_filter(resource entry, callback filter, mixed data)
    newt_entry_set_flags(resource entry, int flags, int sense)
    newt_finished(void)
    newt_form([resource vert_bar [, string help [, int flags]]])
    newt_form_add_component(resource form, resource component)
    newt_form_add_components(resource form, array components)
    newt_form_add_hot_key(resource form, int key)
    newt_form_destroy(resource form)
    newt_form_get_current(resource form)
    newt_form_set_background(resource from, int background)
    newt_form_set_height(resource form, int height)
    newt_form_set_size(resource form)
    newt_form_set_timer(resource form, int milliseconds)
    newt_form_set_width(resource form, int width)
    newt_form_watch_fd(resource form, resource stream [, int flags])
    newt_grid_add_components_to_form(resource grid, resource form, bool recurse)
    newt_grid_basic_window(resource text, resource middle, resource buttons)
    newt_grid_free(resource grid, bool recurse)
    newt_grid_h_close_stacked(int element1_type, resource element1 [, int ... [, resource ...]])
    newt_grid_h_stacked(int element1_type, resource element1 [, int ... [, resource ...]])
    newt_grid_place(resource grid, int left, int top)
    newt_grid_set_field(resource grid, int col, int row, int type, resource val, int pad_left, int pad_top, int pad_right, int pad_bottom, int anchor [, int flags])
    newt_grid_simple_window(resource text, resource middle, resource buttons)
    newt_grid_v_close_stacked(int element1_type, resource element1 [, int ... [, resource ...]])
    newt_grid_v_stacked(int element1_type, resource element1 [, int ... [, resource ...]])
    newt_grid_wrapped_window(resource grid, string title)
    newt_grid_wrapped_window_at(resource grid, string title, int left, int top)
    newt_init(void)
    newt_label(int left, int top, string text)
    newt_label_set_text(resource label, string text)
    newt_listbox(int left, int top, int height [, int flags])
    newt_listbox_append_entry(resource listbox, string text, mixed data)
    newt_listbox_clear(resource listobx)
    newt_listbox_clear_selection(resource listbox)
    newt_listbox_delete_entry(resource listbox, mixed key)
    newt_listbox_get_current(resource listbox)
    newt_listbox_get_selection(resource listbox)
    newt_listbox_insert_entry(resource listbox, string text, mixed data, mixed key)
    newt_listbox_item_count(resource listbox)
    newt_listbox_select_item(resource listbox, mixed key, int sense)
    newt_listbox_set_current(resource listbox, int num)
    newt_listbox_set_current_by_key(resource listbox, mixed key)
    newt_listbox_set_data(resource listbox, int num, mixed data)
    newt_listbox_set_entry(resource listbox, int num, string text)
    newt_listbox_set_width(resource listbox, int width)
    newt_listitem(int left, int top, string text, bool is_default, resouce prev_item, mixed data [, int flags])
    newt_listitem_get_data(resource item)
    newt_listitem_set(resource item, string text)
    newt_open_window(int left, int top, int width, int height [, string title])
    newt_pop_help_line(void)
    newt_pop_window(void)
    newt_push_help_line([string text])
    newt_radio_get_current(resource set_member)
    newt_radiobutton(int left, int top, string text, bool is_default [, resource prev_button])
    newt_redraw_help_line(void)
    newt_refresh(void)
    newt_resize_screen([bool redraw])
    newt_resume(void)
    newt_run_form(resource form)
    newt_scale(int left, int top, int width, int full_value)
    newt_scale_set(resource scale, int amount)
    newt_scrollbar_set(resource scrollbar, int where, int total)
    newt_set_help_callback(mixed function)
    newt_set_suspend_callback(callback function, mixed data)
    newt_suspend(void)
    newt_textbox(int left, int top, int width, int height [, int flags])
    newt_textbox_get_num_lines(resource textbox)
    newt_textbox_reflowed(int left, int top, char *text, int width, int flex_down, int flex_up [, int flags])
    newt_textbox_set_height(resource textbox, int height)
    newt_textbox_set_text(resource textbox, string text)
    newt_vertical_scrollbar(int left, int top, int height [, int normal_colorset [, int thumb_colorset]])
    newt_wait_for_key(void)
    newt_win_choice(string title, string button1_text, string button2_text, string format [, mixed args [, mixed ...]])
    newt_win_message(string title, string button_text, string format [, mixed args [, mixed ...]])
    newt_win_messagev(string title, string button_text, string format, array args)
    newt_win_ternary(string title, string button1_text, string button2_text, string button3_text, string format [, mixed args [, mixed ...]])
    next
    ngettext(string msgid1, string msgid2, int n)
    nl2br(string string)
    nl_langinfo(int item)
    notes_body(string server, string mailbox, int msg_number)
    notes_copy_db(string from_database_name, string to_database_name)
    notes_create_db(string database_name)
    notes_create_note(string database_name, string form_name)
    notes_drop_db(string database_name)
    notes_find_note(string database_name, string name [, string type])
    notes_header_info(string server, string mailbox, int msg_number)
    notes_list_msgs(string db)
    notes_mark_read(string database_name, string user_name, string note_id)
    notes_mark_unread(string database_name, string user_name, string note_id)
    notes_nav_create(string database_name, string name)
    notes_search(string database_name, string keywords)
    notes_unread(string database_name, string user_name)
    notes_version(string database_name)
    nsapi_request_headers(void)
    nsapi_response_headers(void)
    nsapi_virtual(string uri)
    number_format(float number [, int decimals [, string dec_point, string thousands_sep]])
    ob_clean(void)
    ob_deflatehandler(string data, int mode)
    ob_end_clean(void)
    ob_end_flush(void)
    ob_etaghandler(string data, int mode)
    ob_flush(void)
    ob_get_clean(void)
    ob_get_contents(void)
    ob_get_flush(void)
    ob_get_length(void)
    ob_get_level(void)
    ob_get_status([bool full_status=FALSE])
    ob_gzhandler(string buffer, int mode)
    ob_iconv_handler(string contents, int status)
    ob_implicit_flush([int flag])
    ob_inflatehandler(string data, int mode)
    ob_list_handlers(void)
    ob_start([callback output_callback [, int chunk_size [, bool erase]]])
    ob_tidyhandler(string input [, int mode])
    oci_cancel(resource statement)
    oci_close(resource connection)
    oci_commit(resource connection)
    oci_connect(string username, string password [, string db [, string charset [, int session_mode]]])
    oci_error([resource source])
    oci_execute(resource statement [, int mode])
    oci_fetch(resource statement)
    oci_fetch_array(resource statement [, int mode])
    oci_fetch_assoc(resource statement)
    oci_fetch_object(resource statement)
    oci_fetch_row(resource statement)
    oci_field_is_null(resource statement, mixed field)
    oci_field_name(resource statement, int field)
    oci_field_precision(resource statement, int field)
    oci_field_scale(resource statement, int field)
    oci_field_size(resource statement, mixed field)
    oci_field_type(resource statement, int field)
    oci_field_type_raw(resource statement, int field)
    oci_free_statement(resource statement)
    oci_internal_debug(bool onoff)
    oci_lob_copy(OCI-Lob lob_to, OCI-Lob lob_from [, int length])
    oci_lob_is_equal(OCI-Lob lob1, OCI-Lob lob2)
    oci_new_connect(string username, string password [, string db [, string charset [, int session_mode]]])
    oci_new_cursor(resource connection)
    oci_num_fields(resource statement)
    oci_num_rows(resource statement)
    oci_parse(resource connection, string query)
    oci_password_change(resource connection, string username, string old_password, string new_password)
    oci_pconnect(string username, string password [, string db [, string charset [, int session_mode]]])
    oci_result(resource statement, mixed field)
    oci_rollback(resource connection)
    oci_server_version(resource connection)
    oci_set_prefetch(resource statement, int rows)
    oci_statement_type(resource statement)
    ocibindbyname
    ocicancel
    ocicollappend
    ocicollassign
    ocicollassignelem
    ocicollgetelem
    ocicollmax
    ocicollsize
    ocicolltrim
    ocicolumnisnull
    ocicolumnname
    ocicolumnprecision
    ocicolumnscale
    ocicolumnsize
    ocicolumntype
    ocicolumntyperaw
    ocicommit
    ocidefinebyname
    ocierror
    ociexecute
    ocifetch
    ocifetchinto
    ocifetchstatement
    ocifreecollection
    ocifreecursor
    ocifreedesc
    ocifreestatement
    ociinternaldebug
    ociloadlob
    ocilogoff
    ocilogon
    ocinewcollection
    ocinewcursor
    ocinewdescriptor
    ocinlogon
    ocinumcols
    ociparse
    ociplogon
    ociresult
    ocirollback
    ocirowcount
    ocisavelob
    ocisavelobfile
    ociserverversion
    ocisetprefetch
    ocistatementtype
    ociwritelobtofile
    octdec(string octal_string)
    odbc_autocommit(resource connection_id [, bool OnOff])
    odbc_binmode(resource result_id, int mode)
    odbc_close(resource connection_id)
    odbc_close_all(void)
    odbc_columnprivileges(resource connection_id, string qualifier, string owner, string table_name, string column_name)
    odbc_columns(resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]])
    odbc_commit(resource connection_id)
    odbc_connect(string dsn, string user, string password [, int cursor_type])
    odbc_cursor(resource result_id)
    odbc_data_source(resource connection_id, int fetch_type)
    odbc_do(resource conn_id, string query)
    odbc_error([resource connection_id])
    odbc_errormsg([resource connection_id])
    odbc_exec(resource connection_id, string query_string [, int flags])
    odbc_execute(resource result_id [, array parameters_array])
    odbc_fetch_array(resource result [, int rownumber])
    odbc_fetch_into
    odbc_fetch_object(resource result [, int rownumber])
    odbc_fetch_row(resource result_id [, int row_number])
    odbc_field_len(resource result_id, int field_number)
    odbc_field_name(resource result_id, int field_number)
    odbc_field_num(resource result_id, string field_name)
    odbc_field_precision(resource result_id, int field_number)
    odbc_field_scale(resource result_id, int field_number)
    odbc_field_type(resource result_id, int field_number)
    odbc_foreignkeys(resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)
    odbc_free_result(resource result_id)
    odbc_gettypeinfo(resource connection_id [, int data_type])
    odbc_longreadlen(resource result_id, int length)
    odbc_next_result(resource result_id)
    odbc_num_fields(resource result_id)
    odbc_num_rows(resource result_id)
    odbc_pconnect(string dsn, string user, string password [, int cursor_type])
    odbc_prepare(resource connection_id, string query_string)
    odbc_primarykeys(resource connection_id, string qualifier, string owner, string table)
    odbc_procedurecolumns(resource connection_id [, string qualifier, string owner, string proc, string column])
    odbc_procedures(resource connection_id [, string qualifier, string owner, string name])
    odbc_result(resource result_id, mixed field)
    odbc_result_all(resource result_id [, string format])
    odbc_rollback(resource connection_id)
    odbc_setoption(resource id, int function, int option, int param)
    odbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)
    odbc_statistics(resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy)
    odbc_tableprivileges(resource connection_id, string qualifier, string owner, string name)
    odbc_tables(resource connection_id [, string qualifier [, string owner [, string name [, string types]]]])
    openal_buffer_create(void)
    openal_buffer_data(resource buffer, int format, string data, int freq)
    openal_buffer_destroy(resource buffer)
    openal_buffer_get(resource buffer, int property)
    openal_buffer_loadwav(resource buffer, string wavfile)
    openal_context_create(resource device)
    openal_context_current(resource context)
    openal_context_destroy(resource context)
    openal_context_process(resource context)
    openal_context_suspend(resource context)
    openal_device_close(resource device)
    openal_device_open([string device_desc])
    openal_listener_get(int property)
    openal_listener_set(int property, mixed setting)
    openal_source_create(void)
    openal_source_destroy(resource source)
    openal_source_get(resource source, int property)
    openal_source_pause(resource source)
    openal_source_play(resource source)
    openal_source_rewind(resource source)
    openal_source_set(resource source, int property, mixed setting)
    openal_source_stop(resource source)
    openal_stream(resource source, int format, int rate)
    opendir(string path [, resource context])
    openlog(string ident, int option, int facility)
    openssl_csr_export
    openssl_csr_export_to_file(resource csr, string outfilename [, bool notext])
    openssl_csr_get_public_key(mixed csr [, bool use_shortnames])
    openssl_csr_get_subject(mixed csr [, bool use_shortnames])
    openssl_csr_new
    openssl_csr_sign(mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]])
    openssl_error_string(void)
    openssl_free_key(resource key_identifier)
    openssl_get_privatekey
    openssl_get_publickey
    openssl_open
    openssl_pkcs7_decrypt(string infilename, string outfilename, mixed recipcert [, mixed recipkey])
    openssl_pkcs7_encrypt(string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid]])
    openssl_pkcs7_sign(string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]])
    openssl_pkcs7_verify(string filename, int flags [, string outfilename [, array cainfo [, string extracerts [, string content]]]])
    openssl_pkey_export
    openssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase [, array configargs]])
    openssl_pkey_free(resource key)
    openssl_pkey_get_details(resource key)
    openssl_pkey_get_private(mixed key [, string passphrase])
    openssl_pkey_get_public(mixed certificate)
    openssl_pkey_new([array configargs])
    openssl_private_decrypt
    openssl_private_encrypt
    openssl_public_decrypt
    openssl_public_encrypt
    openssl_seal
    openssl_sign
    openssl_verify(string data, string signature, mixed pub_key_id [, int signature_alg])
    openssl_x509_check_private_key(mixed cert, mixed key)
    openssl_x509_checkpurpose(mixed x509cert, int purpose [, array cainfo [, string untrustedfile]])
    openssl_x509_export
    openssl_x509_export_to_file(mixed x509, string outfilename [, bool notext])
    openssl_x509_free(resource x509cert)
    openssl_x509_parse(mixed x509cert [, bool shortnames])
    openssl_x509_read(mixed x509certdata)
    ora_bind(resource cursor, string phpvar, string sqlparam, int length [, int type])
    ora_close(resource cursor)
    ora_columnname(resource cursor, int column)
    ora_columnsize(resource cursor, int column)
    ora_columntype(resource cursor, int column)
    ora_commit(resource connection)
    ora_commitoff(resource connection)
    ora_commiton(resource connection)
    ora_do(resource connection, string query)
    ora_error([resource cursor_or_connection])
    ora_errorcode([resource cursor_or_connection])
    ora_exec(resource cursor)
    ora_fetch(resource cursor)
    ora_fetch_into
    ora_getcolumn(resource cursor, int column)
    ora_logoff(resource connection)
    ora_logon(string user, string password)
    ora_numcols(resource cursor)
    ora_numrows(resource cursor)
    ora_open(resource connection)
    ora_parse(resource cursor, string sql_statement [, int defer])
    ora_plogon(string user, string password)
    ora_rollback(resource connection)
    ord(string string)
    output_add_rewrite_var(string name, string value)
    output_reset_rewrite_vars(void)
    overload(string class_name)
    override_function(string function_name, string function_args, string function_code)
    ovrimos_close(int connection)
    ovrimos_commit(int connection_id)
    ovrimos_connect(string host, string dborport, string user, string password)
    ovrimos_cursor(int result_id)
    ovrimos_exec(int connection_id, string query)
    ovrimos_execute(int result_id [, array parameters_array])
    ovrimos_fetch_into
    ovrimos_fetch_row(int result_id [, int how [, int row_number]])
    ovrimos_field_len(int result_id, int field_number)
    ovrimos_field_name(int result_id, int field_number)
    ovrimos_field_num(int result_id, string field_name)
    ovrimos_field_type(int result_id, int field_number)
    ovrimos_free_result(int result_id)
    ovrimos_longreadlen(int result_id, int length)
    ovrimos_num_fields(int result_id)
    ovrimos_num_rows(int result_id)
    ovrimos_prepare(int connection_id, string query)
    ovrimos_result(int result_id, mixed field)
    ovrimos_result_all(int result_id [, string format])
    ovrimos_rollback(int connection_id)
    pack(string format [, mixed args [, mixed ...]])
    parametersprivatestringqueryStringserialized query parametersTable 2. Static PropertiesModifiersTypeName
    parse_ini_file(string filename [, bool process_sections])
    parse_str
    parse_url(string url [, int component])
    parsekit_func_arginfo(mixed function)
    passthru
    pathinfo(string path [, int options])
    pclose(resource handle)
    pcntl_alarm(int seconds)
    pcntl_exec(string path [, array args [, array envs]])
    pcntl_fork(void)
    pcntl_getpriority([int pid [, int process_identifier]])
    pcntl_setpriority(int priority [, int pid [, int process_identifier]])
    pcntl_signal(int signo, callback handler [, bool restart_syscalls])
    pcntl_waitpid
    pcntl_wexitstatus(int status)
    pcntl_wifexited(int status)
    pcntl_wifsignaled(int status)
    pcntl_wifstopped(int status)
    pcntl_wstopsig(int status)
    pcntl_wtermsig(int status)
    pdf_add_annotation
    pdf_add_bookmark
    pdf_add_launchlink
    pdf_add_locallink
    pdf_add_note
    pdf_add_outline
    pdf_add_pdflink
    pdf_add_thumbnail
    pdf_add_weblink
    pdf_arc
    pdf_arcn
    pdf_attach_file
    pdf_begin_page
    pdf_begin_pattern
    pdf_begin_template
    pdf_circle
    pdf_clip
    pdf_close
    pdf_close_image
    pdf_close_pdi
    pdf_close_pdi_page
    pdf_closepath
    pdf_closepath_fill_stroke
    pdf_closepath_stroke
    pdf_concat
    pdf_continue_text
    pdf_curveto
    pdf_delete
    pdf_end_page
    pdf_end_pattern
    pdf_end_template
    pdf_endpath
    pdf_fill
    pdf_fill_stroke
    pdf_findfont
    pdf_get_buffer
    pdf_get_font
    pdf_get_fontname
    pdf_get_fontsize
    pdf_get_image_height
    pdf_get_image_width
    pdf_get_majorversion
    pdf_get_minorversion
    pdf_get_parameter
    pdf_get_pdi_parameter
    pdf_get_pdi_value
    pdf_get_value
    pdf_initgraphics
    pdf_lineto
    pdf_makespotcolor
    pdf_moveto
    pdf_new
    pdf_open
    pdf_open_ccitt
    pdf_open_file
    pdf_open_gif
    pdf_open_image
    pdf_open_image_file
    pdf_open_jpeg
    pdf_open_memory_image
    pdf_open_pdi
    pdf_open_pdi_page
    pdf_open_png
    pdf_open_tiff
    pdf_place_image
    pdf_place_pdi_page
    pdf_rect
    pdf_restore
    pdf_rotate
    pdf_save
    pdf_scale
    pdf_set_border_color
    pdf_set_border_dash
    pdf_set_border_style
    pdf_set_char_spacing
    pdf_set_duration
    pdf_set_font
    pdf_set_horiz_scaling
    pdf_set_info
    pdf_set_info_author
    pdf_set_info_creator
    pdf_set_info_keywords
    pdf_set_info_subject
    pdf_set_info_title
    pdf_set_leading
    pdf_set_parameter
    pdf_set_text_pos
    pdf_set_text_rendering
    pdf_set_text_rise
    pdf_set_value
    pdf_set_word_spacing
    pdf_setcolor
    pdf_setdash
    pdf_setflat
    pdf_setfont
    pdf_setgray
    pdf_setgray_fill
    pdf_setgray_stroke
    pdf_setlinecap
    pdf_setlinejoin
    pdf_setlinewidth
    pdf_setmatrix
    pdf_setmiterlimit
    pdf_setpolydash
    pdf_setrgbcolor
    pdf_setrgbcolor_fill
    pdf_setrgbcolor_stroke
    pdf_show
    pdf_show_boxed
    pdf_show_xy
    pdf_skew
    pdf_stringwidth
    pdf_stroke
    pdf_translate
    pfpro_cleanup(void)
    pfpro_init(void)
    pfpro_process(array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]])
    pfpro_process_raw(string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]])
    pfpro_version(void)
    pfsockopen
    pg_affected_rows(resource result)
    pg_cancel_query(resource connection)
    pg_client_encoding([resource connection])
    pg_close([resource connection])
    pg_connect(string connection_string [, int connect_type])
    pg_connection_busy(resource connection)
    pg_connection_reset(resource connection)
    pg_connection_status(resource connection)
    pg_convert(resource connection, string table_name, array assoc_array [, int options])
    pg_copy_from(resource connection, string table_name, array rows [, string delimiter [, string null_as]])
    pg_copy_to(resource connection, string table_name [, string delimiter [, string null_as]])
    pg_dbname([resource connection])
    pg_delete(resource connection, string table_name, array assoc_array [, int options])
    pg_end_copy([resource connection])
    pg_escape_bytea([resource connection, string data])
    pg_escape_string([resource connection, string data])
    pg_execute(resource connection, string stmtname, array params)
    pg_fetch_all(resource result)
    pg_fetch_all_columns(resource result [, int column])
    pg_fetch_array(resource result [, int row [, int result_type]])
    pg_fetch_assoc(resource result [, int row])
    pg_fetch_object(resource result [, int row [, int result_type]])
    pg_fetch_result(resource result, int row, mixed field)
    pg_fetch_row(resource result [, int row])
    pg_field_is_null(resource result, int row, mixed field)
    pg_field_name(resource result, int field_number)
    pg_field_num(resource result, string field_name)
    pg_field_prtlen(resource result, int row_number, mixed field_name_or_number)
    pg_field_size(resource result, int field_number)
    pg_field_table(resource result, int field_number [, bool oid_only])
    pg_field_type(resource result, int field_number)
    pg_field_type_oid(resource result, int field_number)
    pg_free_result(resource result)
    pg_get_notify(resource connection [, int result_type])
    pg_get_pid(resource connection)
    pg_get_result([resource connection])
    pg_host([resource connection])
    pg_insert(resource connection, string table_name, array assoc_array [, int options])
    pg_last_error([resource connection])
    pg_last_notice(resource connection)
    pg_last_oid(resource result)
    pg_lo_close(resource large_object)
    pg_lo_create([resource connection])
    pg_lo_export(resource connection, int oid, string pathname)
    pg_lo_import(resource connection, string pathname)
    pg_lo_open(resource connection, int oid, string mode)
    pg_lo_read(resource large_object [, int len])
    pg_lo_read_all(resource large_object)
    pg_lo_seek(resource large_object, int offset [, int whence])
    pg_lo_tell(resource large_object)
    pg_lo_unlink(resource connection, int oid)
    pg_lo_write(resource large_object, string data [, int len])
    pg_meta_data(resource connection, string table_name)
    pg_metadata
    pg_num_fields(resource result)
    pg_num_rows(resource result)
    pg_options([resource connection])
    pg_parameter_status(resource connection, string param_name)
    pg_pconnect(string connection_string [, int connect_type])
    pg_ping([resource connection])
    pg_port([resource connection])
    pg_prepare(resource connection, string stmtname, string query)
    pg_put_line(string data)
    pg_query(string query)
    pg_query_params(resource connection, string query, array params)
    pg_result_error(resource result)
    pg_result_error_field(resource result, int fieldcode)
    pg_result_seek(resource result, int offset)
    pg_result_status(resource result [, int type])
    pg_select(resource connection, string table_name, array assoc_array [, int options])
    pg_send_execute(resource connection, string stmtname, array params)
    pg_send_prepare(resource connection, string stmtname, string query)
    pg_send_query(resource connection, string query)
    pg_send_query_params(resource connection, string query, array params)
    pg_set_client_encoding(string encoding)
    pg_set_error_verbosity(resource connection, int verbosity)
    pg_trace(string pathname [, string mode [, resource connection]])
    pg_transaction_status(resource connection)
    pg_tty([resource connection])
    pg_unescape_bytea(string data)
    pg_untrace([resource connection])
    pg_update(resource connection, string table_name, array data, array condition [, int options])
    pg_version([resource connection])
    php_ini_scanned_files(void)
    php_logo_guid(void)
    php_register_url_stream_wrapper(char * protocol, php_stream_wrapper * wrapper, TSRMLS_DC)
    php_sapi_name(void)
    php_stream_can_cast(php_stream * stream, int castas)
    php_stream_cast(php_stream * stream, int castas, void ** ret, int flags)
    php_stream_close(php_stream * stream)
    php_stream_closedir(php_stream * dirstream)
    php_stream_copy_to_mem(php_stream * src, char ** buf, size_t maxlen, int persistent)
    php_stream_copy_to_stream(php_stream * src, php_stream * dest, size_t maxlen)
    php_stream_eof(php_stream * stream)
    php_stream_filter_register_factory(const char * filterpattern, php_stream_filter_factory * factory)
    php_stream_filter_unregister_factory(const char * filterpattern)
    php_stream_flush(php_stream * stream)
    php_stream_fopen_from_file(FILE * file, char * mode)
    php_stream_fopen_temporary_file(const char * dir, const char * pfx, char ** opened)
    php_stream_fopen_tmpfile(void)
    php_stream_getc(php_stream * stream)
    php_stream_gets(php_stream * stream, char * buf, size_t maxlen)
    php_stream_is(php_stream * stream, int istype)
    php_stream_is_persistent(php_stream * stream)
    php_stream_make_seekable(php_stream * origstream, php_stream ** newstream, int flags)
    php_stream_open_wrapper(char * path, char * mode, int options, char ** opened)
    php_stream_open_wrapper_as_file(char * path, char * mode, int options, char ** opened)
    php_stream_open_wrapper_ex(char * path, char * mode, int options, char ** opened, php_stream_context * context)
    php_stream_opendir(char * path, php_stream_context * context)
    php_stream_passthru(php_stream * stream)
    php_stream_read(php_stream * stream, char * buf, size_t count)
    php_stream_readdir(php_stream * dirstream, php_stream_dirent * ent)
    php_stream_rewinddir(php_stream * dirstream)
    php_stream_seek(php_stream * stream, off_t offset, int whence)
    php_stream_sock_open_from_socket(int socket, int persistent)
    php_stream_sock_open_host(const char * host, unsigned short port, int socktype, struct timeval * timeout, int persistent)
    php_stream_sock_open_unix(const char * path, int pathlen, int persistent, struct timeval * timeout)
    php_stream_stat(php_stream * stream, php_stream_statbuf * ssb)
    php_stream_stat_path(char * path, php_stream_statbuf * ssb)
    php_stream_tell(php_stream * stream)
    php_stream_write(php_stream * stream, const char * buf, size_t count)
    php_strip_whitespace(string filename)
    php_uname([string mode])
    php_unregister_url_stream_wrapper(char * protocol, TSRMLS_DC)
    phpcredits([int flag])
    phpinfo([int what])
    phpversion([string extension])
    pi(void)
    png2wbmp(string pngname, string wbmpname, int dest_height, int dest_width, int threshold)
    popen(string command, string mode)
    pos
    posix_access(string file [, int mode])
    posix_ctermid(void)
    posix_get_last_error(void)
    posix_getcwd(void)
    posix_getegid(void)
    posix_geteuid(void)
    posix_getgid(void)
    posix_getgrgid(int gid)
    posix_getgrnam(string name)
    posix_getgroups(void)
    posix_getlogin(void)
    posix_getpgid(int pid)
    posix_getpgrp(void)
    posix_getpid(void)
    posix_getppid(void)
    posix_getpwnam(string username)
    posix_getpwuid(int uid)
    posix_getrlimit(void)
    posix_getsid(int pid)
    posix_getuid(void)
    posix_initgroups(string name, int base_group_id)
    posix_isatty(int fd)
    posix_kill(int pid, int sig)
    posix_mkfifo(string pathname, int mode)
    posix_mknod(string pathname, int mode [, int major [, int minor]])
    posix_setegid(int gid)
    posix_seteuid(int uid)
    posix_setgid(int gid)
    posix_setpgid(int pid, int pgid)
    posix_setsid(void)
    posix_setuid(int uid)
    posix_strerror(int errno)
    posix_times(void)
    posix_ttyname(int fd)
    posix_uname(void)
    pow(number base, number exp)
    preg_grep(string pattern, array input [, int flags])
    preg_last_error(void)
    preg_match
    preg_match_all
    preg_quote(string str [, string delimiter])
    preg_replace
    preg_replace_callback
    preg_split(string pattern, string subject [, int limit [, int flags]])
    prev
    print(string arg)
    print_r(mixed expression [, bool return])
    printer_abort(resource printer_handle)
    printer_close(resource printer_handle)
    printer_create_brush(int style, string color)
    printer_create_dc(resource printer_handle)
    printer_create_font(string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation)
    printer_create_pen(int style, int width, string color)
    printer_delete_brush(resource brush_handle)
    printer_delete_dc(resource printer_handle)
    printer_delete_font(resource font_handle)
    printer_delete_pen(resource pen_handle)
    printer_draw_bmp(resource printer_handle, string filename, int x, int y [, int width, int height])
    printer_draw_chord(resource printer_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)
    printer_draw_elipse(resource printer_handle, int ul_x, int ul_y, int lr_x, int lr_y)
    printer_draw_line(resource printer_handle, int from_x, int from_y, int to_x, int to_y)
    printer_draw_pie(resource printer_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)
    printer_draw_rectangle(resource printer_handle, int ul_x, int ul_y, int lr_x, int lr_y)
    printer_draw_roundrect(resource printer_handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height)
    printer_draw_text(resource printer_handle, string text, int x, int y)
    printer_end_doc(resource printer_handle)
    printer_end_page(resource printer_handle)
    printer_get_option(resource printer_handle, string option)
    printer_list(int enumtype [, string name [, int level]])
    printer_logical_fontheight(resource printer_handle, int height)
    printer_open([string printername])
    printer_select_brush(resource printer_handle, resource brush_handle)
    printer_select_font(resource printer_handle, resource font_handle)
    printer_select_pen(resource printer_handle, resource pen_handle)
    printer_set_option(resource printer_handle, int option, mixed value)
    printer_start_doc(resource printer_handle [, string document])
    printer_start_page(resource printer_handle)
    printer_write(resource printer_handle, string content)
    printf(string format [, mixed args [, mixed ...]])
    private
    proc_close(resource process)
    proc_get_status(resource process)
    proc_nice(int increment)
    proc_open
    proc_terminate(resource process [, int signal])
    property_exists(mixed class, string property)
    protected
    ps_add_bookmark(resource psdoc, string text [, int parent [, int open]])
    ps_add_launchlink(resource psdoc, float llx, float lly, float urx, float ury, string filename)
    ps_add_locallink(resource psdoc, float llx, float lly, float urx, float ury, int page, string dest)
    ps_add_note(resource psdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open)
    ps_add_pdflink(resource psdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest)
    ps_add_weblink(resource psdoc, float llx, float lly, float urx, float ury, string url)
    ps_arc(resource psdoc, float x, float y, float radius, float alpha, float beta)
    ps_arcn(resource psdoc, float x, float y, float radius, float alpha, float beta)
    ps_begin_page(resource psdoc, float width, float height)
    ps_begin_pattern(resource psdoc, float width, float height, float xstep, float ystep, int painttype)
    ps_begin_template(resource psdoc, float width, float height)
    ps_circle(resource psdoc, float x, float y, float radius)
    ps_clip(resource psdoc)
    ps_close(resource psdoc)
    ps_close_image(resource psdoc, int imageid)
    ps_closepath(resource psdoc)
    ps_closepath_stroke(resource psdoc)
    ps_continue_text(resource psdoc, string text)
    ps_curveto(resource psdoc, float x1, float y1, float x2, float y2, float x3, float y3)
    ps_delete(resource psdoc)
    ps_end_page(resource psdoc)
    ps_end_pattern(resource psdoc)
    ps_end_template(resource psdoc)
    ps_fill(resource psdoc)
    ps_fill_stroke(resource psdoc)
    ps_findfont(resource psdoc, string fontname, string encoding [, bool embed])
    ps_get_buffer(resource psdoc)
    ps_get_parameter(resource psdoc, string name [, float modifier])
    ps_get_value(resource psdoc, string name [, float modifier])
    ps_hyphenate(resource psdoc, string text)
    ps_include_file(resource psdoc, string file)
    ps_lineto(resource psdoc, float x, float y)
    ps_makespotcolor(resource psdoc, string name [, float reserved])
    ps_moveto(resource psdoc, float x, float y)
    ps_new(void)
    ps_open_file(resource psdoc [, string filename])
    ps_open_image(resource psdoc, string type, string source, string data, int lenght, int width, int height, int components, int bpc, string params)
    ps_open_image_file(resource psdoc, string type, string filename [, string stringparam [, int intparam]])
    ps_open_memory_image(resource psdoc, int gd)
    ps_place_image(resource psdoc, int imageid, float x, float y, float scale)
    ps_rect(resource psdoc, float x, float y, float width, float height)
    ps_restore(resource psdoc)
    ps_rotate(resource psdoc, float rot)
    ps_save(resource psdoc)
    ps_scale(resource psdoc, float x, float y)
    ps_set_border_color(resource psdoc, float red, float green, float blue)
    ps_set_border_dash(resource psdoc, float black, float white)
    ps_set_border_style(resource psdoc, string style, float width)
    ps_set_info(resource p, string key, string val)
    ps_set_parameter(resource psdoc, string name, string value)
    ps_set_text_pos(resource psdoc, float x, float y)
    ps_set_value(resource psdoc, string name, float value)
    ps_setcolor(resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4)
    ps_setdash(resource psdoc, float on, float off)
    ps_setflat(resource psdoc, float value)
    ps_setfont(resource psdoc, int fontid, float size)
    ps_setgray(resource psdoc, float gray)
    ps_setlinecap(resource psdoc, int type)
    ps_setlinejoin(resource psdoc, int type)
    ps_setlinewidth(resource psdoc, float width)
    ps_setmiterlimit(resource psdoc, float value)
    ps_setoverprintmode(resource psdoc, int mode)
    ps_setpolydash(resource psdoc, float arr)
    ps_shading(resource psdoc, string type, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist)
    ps_shading_pattern(resource psdoc, int shadingid, string optlist)
    ps_shfill(resource psdoc, int shadingid)
    ps_show(resource psdoc, string text)
    ps_show2(resource psdoc, string text, int len)
    ps_show_boxed(resource psdoc, string text, float left, float bottom, float width, float height, string hmode [, string feature])
    ps_show_xy(resource psdoc, string text, float x, float y)
    ps_show_xy2(resource psdoc, string text, int len, float xcoor, float ycoor)
    ps_string_geometry(resource psdoc, string text [, int fontid [, float size]])
    ps_stringwidth(resource psdoc, string text [, int fontid [, float size]])
    ps_stroke(resource psdoc)
    ps_symbol(resource psdoc, int ord)
    ps_symbol_name(resource psdoc, int ord [, int fontid])
    ps_symbol_width(resource psdoc, int ord [, int fontid [, float size]])
    ps_translate(resource psdoc, float x, float y)
    pspell_add_to_personal(int dictionary_link, string word)
    pspell_add_to_session(int dictionary_link, string word)
    pspell_check(int dictionary_link, string word)
    pspell_clear_session(int dictionary_link)
    pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]])
    pspell_config_data_dir(int conf, string directory)
    pspell_config_dict_dir(int conf, string directory)
    pspell_config_ignore(int dictionary_link, int n)
    pspell_config_mode(int dictionary_link, int mode)
    pspell_config_personal(int dictionary_link, string file)
    pspell_config_repl(int dictionary_link, string file)
    pspell_config_runtogether(int dictionary_link, bool flag)
    pspell_config_save_repl(int dictionary_link, bool flag)
    pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])
    pspell_new_config(int config)
    pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])
    pspell_save_wordlist(int dictionary_link)
    pspell_store_replacement(int dictionary_link, string misspelled, string correct)
    pspell_suggest(int dictionary_link, string word)
    public
    putenv(string setting)
    px_close(resource pxdoc)
    px_create_fp(resource pxdoc, resource file, array fielddesc)
    px_date2string(resource pxdoc, int value, string format)
    px_delete(resource pxdoc)
    px_delete_record(resource pxdoc, int num)
    px_get_field(resource pxdoc, int fieldno)
    px_get_info(resource pxdoc)
    px_get_parameter(resource pxdoc, string name)
    px_get_record(resource pxdoc, int num [, int mode])
    px_get_schema(resource pxdoc [, int mode])
    px_get_value(resource pxdoc, string name)
    px_insert_record(resource pxdoc, array data)
    px_new(void)
    px_numfields(resource pxdoc)
    px_numrecords(resource pxdoc)
    px_open_fp(resource pxdoc, resource file)
    px_put_record(resource pxdoc, array record [, int recpos])
    px_retrieve_record(resource pxdoc, int num [, int mode])
    px_set_blob_file(resource pxdoc, string filename)
    px_set_parameter(resource pxdoc, string name, string value)
    px_set_tablename(resource pxdoc, string name)
    px_set_targetencoding(resource pxdoc, string encoding)
    px_set_value(resource pxdoc, string name, float value)
    px_timestamp2string(resource pxdoc, float value, string format)
    px_update_record(resource pxdoc, array data, int num)
    qdom_error(void)
    qdom_tree(string doc)
    quoted_printable_decode(string str)
    quotemeta(string str)
    rad2deg(float number)
    radius_acct_open(void)
    radius_add_server(resource radius_handle, string hostname, int port, string secret, int timeout, int max_tries)
    radius_auth_open(void)
    radius_close(resource radius_handle)
    radius_config(resource radius_handle, string file)
    radius_create_request(resource radius_handle, int type)
    radius_cvt_addr(string data)
    radius_cvt_int(string data)
    radius_cvt_string(string data)
    radius_demangle(resource radius_handle, string mangled)
    radius_demangle_mppe_key(resource radius_handle, string mangled)
    radius_get_attr(resource radius_handle)
    radius_get_vendor_attr(string data)
    radius_put_addr(resource radius_handle, int type, string addr)
    radius_put_attr(resource radius_handle, int type, string value)
    radius_put_int(resource radius_handle, int type, int value)
    radius_put_string(resource radius_handle, int type, string value)
    radius_put_vendor_addr(resource radius_handle, int vendor, int type, string addr)
    radius_put_vendor_attr(resource radius_handle, int vendor, int type, string value)
    radius_put_vendor_int(resource radius_handle, int vendor, int type, int value)
    radius_put_vendor_string(resource radius_handle, int vendor, int type, string value)
    radius_request_authenticator(resource radius_handle)
    radius_send_request(resource radius_handle)
    radius_server_secret(resource radius_handle)
    radius_strerror(resource radius_handle)
    rand([int min, int max])
    range(mixed low, mixed high [, number step])
    rar_close(resource rar_file)
    rar_entry_get(resource rar_file, string entry_name)
    rar_list(resource rar_file)
    rar_open(string filename [, string password])
    rawurldecode(string str)
    rawurlencode(string str)
    read_exif_data
    readdir(resource dir_handle)
    readfile(string filename [, bool use_include_path [, resource context]])
    readgzfile(string filename [, int use_include_path])
    readline([string prompt])
    readline_add_history(string line)
    readline_callback_handler_install(string prompt, callback callback)
    readline_callback_handler_remove(void)
    readline_callback_read_char(void)
    readline_clear_history(void)
    readline_completion_function(callback function)
    readline_info([string varname [, string newvalue]])
    readline_list_history(void)
    readline_on_new_line(void)
    readline_read_history([string filename])
    readline_redisplay(void)
    readline_write_history([string filename])
    readlink(string path)
    realpath(string path)
    recode
    recode_file(string request, resource input, resource output)
    recode_string(string request, string string)
    register_shutdown_function(callback function [, mixed parameter [, mixed ...]])
    register_tick_function(callback function [, mixed arg [, mixed ...]])
    rename(string oldname, string newname [, resource context])
    rename_function(string original_name, string new_name)
    require
    require_once
    reset
    restore_error_handler(void)
    restore_exception_handler(void)
    restore_include_path(void)
    rewind(resource handle)
    rewinddir(resource dir_handle)
    rmdir(string dirname [, resource context])
    round(float val [, int precision])
    rpm_close(resource rpmr)
    rpm_get_tag(resource rpmr, int tagnum)
    rpm_is_valid(string filename)
    rpm_open(string filename)
    rpm_version(void)
    rsort
    rtrim(string str [, string charlist])
    runkit_class_adopt(string classname, string parentname)
    runkit_class_emancipate(string classname)
    runkit_constant_add(string constname, mixed value)
    runkit_constant_redefine(string constname, mixed newvalue)
    runkit_constant_remove(string constname)
    runkit_function_add(string funcname, string arglist, string code)
    runkit_function_copy(string funcname, string targetname)
    runkit_function_redefine(string funcname, string arglist, string code)
    runkit_function_remove(string funcname)
    runkit_function_rename(string funcname, string newname)
    runkit_import(string filename [, int flags])
    runkit_lint(string code)
    runkit_lint_file(string filename)
    runkit_method_add(string classname, string methodname, string args, string code [, int flags])
    runkit_method_copy(string dClass, string dMethod, string sClass [, string sMethod])
    runkit_method_redefine(string classname, string methodname, string args, string code [, int flags])
    runkit_method_remove(string classname, string methodname)
    runkit_method_rename(string classname, string methodname, string newname)
    runkit_return_value_used(void)
    runkit_sandbox_output_handler(object sandbox [, mixed callback])
    runkit_superglobals(void)
    satellite_caught_exception(void)
    satellite_exception_id(void)
    satellite_exception_value(void)
    satellite_get_repository_id(object obj)
    satellite_load_idl(string file)
    satellite_object_to_string(object obj)
    scandir(string directory [, int sorting_order [, resource context]])
    sem_acquire(resource sem_identifier)
    sem_get(int key [, int max_acquire [, int perm [, int auto_release]]])
    sem_release(resource sem_identifier)
    sem_remove(resource sem_identifier)
    serialize(mixed value)
    sesam_affected_rows(string result_id)
    sesam_commit(void)
    sesam_connect(string catalog, string schema, string user)
    sesam_diagnostic(void)
    sesam_disconnect(void)
    sesam_errormsg(void)
    sesam_execimm(string query)
    sesam_fetch_array(string result_id [, int whence [, int offset]])
    sesam_fetch_result(string result_id [, int max_rows])
    sesam_fetch_row(string result_id [, int whence [, int offset]])
    sesam_field_array(string result_id)
    sesam_field_name(string result_id, int index)
    sesam_free_result(string result_id)
    sesam_num_fields(string result_id)
    sesam_query(string query [, bool scrollable])
    sesam_rollback(void)
    sesam_seek_row(string result_id, int whence [, int offset])
    sesam_settransaction(int isolation_level, int read_only)
    session_cache_expire([int new_cache_expire])
    session_cache_limiter([string cache_limiter])
    session_decode(string data)
    session_destroy(void)
    session_encode(void)
    session_get_cookie_params(void)
    session_id([string id])
    session_is_registered(string name)
    session_module_name([string module])
    session_name([string name])
    session_pgsql_add_error(int error_level [, string error_message])
    session_pgsql_get_error([bool with_error_message])
    session_pgsql_get_field(void)
    session_pgsql_reset(void)
    session_pgsql_set_field(string value)
    session_pgsql_status(void)
    session_readonly
    session_regenerate_id([bool delete_old_session])
    session_register(mixed name [, mixed ...])
    session_save_path([string path])
    session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure [, bool httponly]]]])
    session_set_save_handler(callback open, callback close, callback read, callback write, callback destroy, callback gc)
    session_start(void)
    session_unregister(string name)
    session_unset(void)
    session_write_close(void)
    set_error_handler(callback error_handler [, int error_types])
    set_exception_handler(callback exception_handler)
    set_file_buffer
    set_include_path(string new_include_path)
    set_magic_quotes_runtime(int new_setting)
    set_time_limit(int seconds)
    setcookie(string name [, string value [, int expire [, string path [, string domain [, bool secure [, bool httponly]]]]]])
    setlocale(int category, string locale [, string ...])
    setrawcookie(string name [, string value [, int expire [, string path [, string domain [, bool secure [, bool httponly]]]]]])
    settype
    sha1(string str [, bool raw_output])
    sha1_file(string filename [, bool raw_output])
    shell_exec(string cmd)
    shm_attach(int key [, int memsize [, int perm]])
    shm_detach(int shm_identifier)
    shm_get_var(int shm_identifier, int variable_key)
    shm_put_var(int shm_identifier, int variable_key, mixed variable)
    shm_remove(int shm_identifier)
    shm_remove_var(int shm_identifier, int variable_key)
    shmop_close(int shmid)
    shmop_delete(int shmid)
    shmop_open(int key, string flags, int mode, int size)
    shmop_read(int shmid, int start, int count)
    shmop_size(int shmid)
    shmop_write(int shmid, string data, int offset)
    show_source
    shuffle
    similar_text
    simplexml_import_dom(DOMNode node [, string class_name])
    simplexml_load_file(string filename [, string class_name [, int options [, string ns [, bool is_prefix]]]])
    simplexml_load_string(string data [, string class_name [, int options [, string ns [, bool is_prefix]]]])
    sin(float arg)
    singletonsPredefined ConstantsTable 3. TypeName
    sinh(float arg)
    sizeof
    sleep(int seconds)
    snmp_get_quick_print(void)
    snmp_get_valueretrieval(void)
    snmp_read_mib(string filename)
    snmp_set_enum_print(int enum_print)
    snmp_set_oid_numeric_print(int oid_numeric_print)
    snmp_set_oid_output_format(int oid_format)
    snmp_set_quick_print(bool quick_print)
    snmp_set_valueretrieval(int method)
    snmpget(string hostname, string community, string object_id [, int timeout [, int retries]])
    snmpgetnext(string host, string community, string object_id [, int timeout [, int retries]])
    snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]])
    snmpset(string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]])
    snmpwalk(string hostname, string community, string object_id [, int timeout [, int retries]])
    snmpwalkoid(string hostname, string community, string object_id [, int timeout [, int retries]])
    socket_accept(resource socket)
    socket_bind(resource socket, string address [, int port])
    socket_clear_error([resource socket])
    socket_close(resource socket)
    socket_connect(resource socket, string address [, int port])
    socket_create(int domain, int type, int protocol)
    socket_create_listen(int port [, int backlog])
    socket_create_pair
    socket_fd_alloc
    socket_fd_clear
    socket_fd_free
    socket_fd_isset
    socket_fd_set
    socket_fd_zero
    socket_get_option(resource socket, int level, int optname)
    socket_get_status
    socket_getopt
    socket_getpeername
    socket_getsockname
    socket_iovec_add
    socket_iovec_alloc
    socket_iovec_delete
    socket_iovec_fetch
    socket_iovec_free
    socket_iovec_set
    socket_last_error([resource socket])
    socket_listen(resource socket [, int backlog])
    socket_read(resource socket, int length [, int type])
    socket_readv
    socket_recv
    socket_recvfrom
    socket_recvmsg
    socket_select
    socket_send(resource socket, string buf, int len, int flags)
    socket_sendmsg
    socket_sendto(resource socket, string buf, int len, int flags, string addr [, int port])
    socket_set_block(resource socket)
    socket_set_blocking
    socket_set_nonblock(resource socket)
    socket_set_option(resource socket, int level, int optname, mixed optval)
    socket_set_timeout
    socket_setopt
    socket_shutdown(resource socket [, int how])
    socket_strerror(int errno)
    socket_write(resource socket, string buffer [, int length])
    socket_writev
    sort
    soundex(string str)
    spl_autoload(string class_name [, string file_extensions])
    spl_autoload_call(string class_name)
    spl_autoload_extensions([string file_extensions])
    spl_autoload_functions(void)
    spl_autoload_register([mixed autoload_function])
    spl_autoload_unregister(mixed autoload_function)
    spl_classes(void)
    spl_object_hash(object obj)
    split(string pattern, string string [, int limit])
    spliti(string pattern, string string [, int limit])
    sprintf(string format [, mixed args [, mixed ...]])
    sql_regcase(string string)
    sqlite_array_query(resource dbhandle, string query [, int result_type [, bool decode_binary]])
    sqlite_busy_timeout(resource dbhandle, int milliseconds)
    sqlite_changes(resource dbhandle)
    sqlite_close(resource dbhandle)
    sqlite_column(resource result, mixed index_or_name [, bool decode_binary])
    sqlite_create_aggregate(resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args])
    sqlite_create_function(resource dbhandle, string function_name, callback callback [, int num_args])
    sqlite_current(resource result [, int result_type [, bool decode_binary]])
    sqlite_error_string(int error_code)
    sqlite_escape_string(string item)
    sqlite_fetch_all(resource result [, int result_type [, bool decode_binary]])
    sqlite_fetch_array(resource result [, int result_type [, bool decode_binary]])
    sqlite_fetch_column_types(string table_name, resource dbhandle [, int result_type])
    sqlite_fetch_object(resource result [, string class_name [, array ctor_params [, bool decode_binary]]])
    sqlite_fetch_single(resource result [, bool decode_binary])
    sqlite_field_name(resource result, int field_index)
    sqlite_has_more(resource result)
    sqlite_has_prev(resource result)
    sqlite_key(resource result)
    sqlite_last_error(resource dbhandle)
    sqlite_last_insert_rowid(resource dbhandle)
    sqlite_libencoding(void)
    sqlite_libversion(void)
    sqlite_next(resource result)
    sqlite_num_fields(resource result)
    sqlite_num_rows(resource result)
    sqlite_prev(resource result)
    sqlite_rewind(resource result)
    sqlite_seek(resource result, int rownum)
    sqlite_single_query(resource db, string query [, bool first_row_only [, bool decode_binary]])
    sqlite_udf_decode_binary(string data)
    sqlite_udf_encode_binary(string data)
    sqlite_valid(resource result)
    sqrt(float arg)
    srand([int seed])
    sscanf
    ssh2_auth_hostbased_file(resource session, string username, string hostname, string pubkeyfile, string privkeyfile [, string passphrase [, string local_username]])
    ssh2_auth_none(resource session, string username)
    ssh2_auth_password(resource session, string username, string password)
    ssh2_auth_pubkey_file(resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase])
    ssh2_connect(string host [, int port [, array methods [, array callbacks]]])
    ssh2_exec(resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]])
    ssh2_fetch_stream(resource channel, int streamid)
    ssh2_fingerprint(resource session [, int flags])
    ssh2_methods_negotiated(resource session)
    ssh2_publickey_add(resource pkey, string algoname, string blob [, bool overwrite [, array attributes]])
    ssh2_publickey_init(resource session)
    ssh2_publickey_list(resource pkey)
    ssh2_publickey_remove(resource pkey, string algoname, string blob)
    ssh2_scp_recv(resource session, string remote_file, string local_file)
    ssh2_scp_send(resource session, string local_file, string remote_file [, int create_mode])
    ssh2_sftp(resource session)
    ssh2_sftp_lstat(resource sftp, string path)
    ssh2_sftp_mkdir(resource sftp, string dirname [, int mode [, bool recursive]])
    ssh2_sftp_readlink(resource sftp, string link)
    ssh2_sftp_realpath(resource sftp, string filename)
    ssh2_sftp_rename(resource sftp, string from, string to)
    ssh2_sftp_rmdir(resource sftp, string dirname)
    ssh2_sftp_stat(resource sftp, string path)
    ssh2_sftp_symlink(resource sftp, string target, string link)
    ssh2_sftp_unlink(resource sftp, string filename)
    ssh2_shell(resource session [, string term_type [, array env [, int width [, int height [, int width_height_type]]]]])
    ssh2_tunnel(resource session, string host, int port)
    stat(string filename)
    stats_absolute_deviation(array a)
    stats_cdf_beta(float par1, float par2, float par3, int which)
    stats_cdf_binomial(float par1, float par2, float par3, int which)
    stats_cdf_cauchy(float par1, float par2, float par3, int which)
    stats_cdf_chisquare(float par1, float par2, int which)
    stats_cdf_exponential(float par1, float par2, int which)
    stats_cdf_f(float par1, float par2, float par3, int which)
    stats_cdf_gamma(float par1, float par2, float par3, int which)
    stats_cdf_laplace(float par1, float par2, float par3, int which)
    stats_cdf_logistic(float par1, float par2, float par3, int which)
    stats_cdf_negative_binomial(float par1, float par2, float par3, int which)
    stats_cdf_noncentral_chisquare(float par1, float par2, float par3, int which)
    stats_cdf_noncentral_f(float par1, float par2, float par3, float par4, int which)
    stats_cdf_poisson(float par1, float par2, int which)
    stats_cdf_t(float par1, float par2, int which)
    stats_cdf_uniform(float par1, float par2, float par3, int which)
    stats_cdf_weibull(float par1, float par2, float par3, int which)
    stats_covariance(array a, array b)
    stats_den_uniform(float x, float a, float b)
    stats_dens_beta(float x, float a, float b)
    stats_dens_cauchy(float x, float ave, float stdev)
    stats_dens_chisquare(float x, float dfr)
    stats_dens_exponential(float x, float scale)
    stats_dens_f(float x, float dfr1, float dfr2)
    stats_dens_gamma(float x, float shape, float scale)
    stats_dens_laplace(float x, float ave, float stdev)
    stats_dens_logistic(float x, float ave, float stdev)
    stats_dens_negative_binomial(float x, float n, float pi)
    stats_dens_normal(float x, float ave, float stdev)
    stats_dens_pmf_binomial(float x, float n, float pi)
    stats_dens_pmf_hypergeometric(float n1, float n2, float N1, float N2)
    stats_dens_pmf_poisson(float x, float lb)
    stats_dens_t(float x, float dfr)
    stats_dens_weibull(float x, float a, float b)
    stats_harmonic_mean(array a)
    stats_kurtosis(array a)
    stats_rand_gen_beta(float a, float b)
    stats_rand_gen_chisquare(float df)
    stats_rand_gen_exponential(float av)
    stats_rand_gen_f(float dfn, float dfd)
    stats_rand_gen_funiform(float low, float high)
    stats_rand_gen_gamma(float a, float r)
    stats_rand_gen_ibinomial(int n, float pp)
    stats_rand_gen_ibinomial_negative(int n, float p)
    stats_rand_gen_int(void)
    stats_rand_gen_ipoisson(float mu)
    stats_rand_gen_iuniform(int low, int high)
    stats_rand_gen_noncenral_chisquare(float df, float xnonc)
    stats_rand_gen_noncentral_f(float dfn, float dfd, float xnonc)
    stats_rand_gen_noncentral_t(float df, float xnonc)
    stats_rand_gen_normal(float av, float sd)
    stats_rand_gen_t(float df)
    stats_rand_get_seeds(void)
    stats_rand_phrase_to_seeds(string phrase)
    stats_rand_ranf(void)
    stats_rand_setall(int iseed1, int iseed2)
    stats_skew(array a)
    stats_standard_deviation(array a [, bool sample])
    stats_stat_binomial_coef(int x, int n)
    stats_stat_correlation(array arr1, array arr2)
    stats_stat_gennch(int n)
    stats_stat_independent_t(array arr1, array arr2)
    stats_stat_innerproduct(array arr1, array arr2)
    stats_stat_noncentral_t(float par1, float par2, float par3, int which)
    stats_stat_paired_t(array arr1, array arr2)
    stats_stat_percentile(float df, float xnonc)
    stats_stat_powersum(array arr, float power)
    stats_variance(array a [, bool sample])
    str_getcsv(string input [, string delimiter [, string enclosure [, string escape]]])
    str_pad(string input, int pad_length [, string pad_string [, int pad_type]])
    str_repeat(string input, int multiplier)
    str_replace
    str_rot13(string str)
    str_shuffle(string str)
    str_split(string string [, int split_length])
    str_word_count(string string [, int format [, string charlist]])
    strcasecmp(string str1, string str2)
    strchr
    strcmp(string str1, string str2)
    strcoll(string str1, string str2)
    strcspn(string str1, string str2 [, int start [, int length]])
    stream_bucket_append(resource brigade, resource bucket)
    stream_bucket_make_writeable(resource brigade)
    stream_bucket_new(resource stream, string buffer)
    stream_bucket_prepend(resource brigade, resource bucket)
    stream_context_create([array options [, array params]])
    stream_context_get_default([array options])
    stream_context_get_options(resource stream_or_context)
    stream_context_set_option(resource stream_or_context, string wrapper, string option, mixed value)
    stream_context_set_params(resource stream_or_context, array params)
    stream_copy_to_stream(resource source, resource dest [, int maxlength [, int offset]])
    stream_encoding(resource stream [, string encoding])
    stream_filter_append(resource stream, string filtername [, int read_write [, mixed params]])
    stream_filter_prepend(resource stream, string filtername [, int read_write [, mixed params]])
    stream_filter_register(string filtername, string classname)
    stream_filter_remove(resource stream_filter)
    stream_get_contents(resource handle [, int maxlength [, int offset]])
    stream_get_filters(void)
    stream_get_line(resource handle, int length [, string ending])
    stream_get_meta_data(resource stream)
    stream_get_transports(void)
    stream_get_wrappers(void)
    stream_resolve_include_path(string filename [, resource context])
    stream_set_blocking(resource stream, int mode)
    stream_set_timeout(resource stream, int seconds [, int microseconds])
    stream_set_write_buffer(resource stream, int buffer)
    stream_socket_enable_crypto(resource stream, bool enable [, int crypto_type [, resource session_stream]])
    stream_socket_get_name(resource handle, bool want_peer)
    stream_socket_pair(int domain, int type, int protocol)
    stream_socket_sendto(resource socket, string data [, int flags [, string address]])
    stream_socket_shutdown(resource stream, int how)
    stream_wrapper_register(string protocol, string classname)
    stream_wrapper_restore(string protocol)
    stream_wrapper_unregister(string protocol)
    strftime(string format [, int timestamp])
    strip_tags(string str [, string allowable_tags])
    stripcslashes(string str)
    stripos(string haystack, string needle [, int offset])
    stripslashes(string str)
    stristr(string haystack, string needle)
    strlen(string string)
    strnatcasecmp(string str1, string str2)
    strnatcmp(string str1, string str2)
    strncasecmp(string str1, string str2, int len)
    strncmp(string str1, string str2, int len)
    strpbrk(string haystack, string char_list)
    strpos(string haystack, mixed needle [, int offset])
    strptime(string date, string format)
    strrchr(string haystack, string needle)
    strrev(string string)
    strripos(string haystack, string needle [, int offset])
    strrpos(string haystack, string needle [, int offset])
    strspn(string str1, string str2 [, int start [, int length]])
    strstr(string haystack, string needle)
    strtok(string str, string token)
    strtolower(string str)
    strtotime(string time [, int now])
    strtoupper(string string)
    strtr(string str, string from, string to)
    strval(mixed var)
    stylebool maxdb_real_connect(resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]])
    stylebool maxdb_real_query(resource link, string query)
    stylebool mysqli_real_connect(mysqli link [, string host [, string username [, string passwd [, string dbname [, int port [, string socket [, int flags]]]]]]])
    stylebool mysqli_real_query(mysqli link, string query)
    stylemysqli mysqli_connect([string host [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]])
    styleresource finfo_open([int options [, string arg]])
    styleresource maxdb_connect([string host [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]])
    substr(string string, int start [, int length])
    substr_compare(string main_str, string str, int offset [, int length [, bool case_insensitivity]])
    substr_count(string haystack, string needle [, int offset [, int length]])
    substr_replace(mixed string, string replacement, int start [, int length])
    swf_actiongeturl(string url, string target)
    swf_actiongotoframe(int framenumber)
    swf_actiongotolabel(string label)
    swf_actionnextframe(void)
    swf_actionplay(void)
    swf_actionprevframe(void)
    swf_actionsettarget(string target)
    swf_actionstop(void)
    swf_actiontogglequality(void)
    swf_actionwaitforframe(int framenumber, int skipcount)
    swf_addbuttonrecord(int states, int shapeid, int depth)
    swf_addcolor(float r, float g, float b, float a)
    swf_closefile([int return_file])
    swf_definebitmap(int objid, string image_name)
    swf_definefont(int fontid, string fontname)
    swf_defineline(int objid, float x1, float y1, float x2, float y2, float width)
    swf_definepoly(int objid, array coords, int npoints, float width)
    swf_definerect(int objid, float x1, float y1, float x2, float y2, float width)
    swf_definetext(int objid, string str, int docenter)
    swf_endbutton(void)
    swf_enddoaction(void)
    swf_endshape(void)
    swf_endsymbol(void)
    swf_fontsize(float size)
    swf_fontslant(float slant)
    swf_fonttracking(float tracking)
    swf_getbitmapinfo(int bitmapid)
    swf_getfontinfo(void)
    swf_getframe(void)
    swf_labelframe(string name)
    swf_lookat(float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist)
    swf_modifyobject(int depth, int how)
    swf_mulcolor(float r, float g, float b, float a)
    swf_nextid(void)
    swf_oncondition(int transition)
    swf_openfile(string filename, float width, float height, float framerate, float r, float g, float b)
    swf_ortho(float xmin, float xmax, float ymin, float ymax, float zmin, float zmax)
    swf_ortho2(float xmin, float xmax, float ymin, float ymax)
    swf_perspective(float fovy, float aspect, float near, float far)
    swf_placeobject(int objid, int depth)
    swf_polarview(float dist, float azimuth, float incidence, float twist)
    swf_popmatrix(void)
    swf_posround(int round)
    swf_pushmatrix(void)
    swf_removeobject(int depth)
    swf_rotate(float angle, string axis)
    swf_scale(float x, float y, float z)
    swf_setfont(int fontid)
    swf_setframe(int framenumber)
    swf_shapearc(float x, float y, float r, float ang1, float ang2)
    swf_shapecurveto(float x1, float y1, float x2, float y2)
    swf_shapecurveto3(float x1, float y1, float x2, float y2, float x3, float y3)
    swf_shapefillbitmapclip(int bitmapid)
    swf_shapefillbitmaptile(int bitmapid)
    swf_shapefilloff(void)
    swf_shapefillsolid(float r, float g, float b, float a)
    swf_shapelinesolid(float r, float g, float b, float a, float width)
    swf_shapelineto(float x, float y)
    swf_shapemoveto(float x, float y)
    swf_showframe(void)
    swf_startbutton(int objid, int type)
    swf_startdoaction(void)
    swf_startshape(int objid)
    swf_startsymbol(int objid)
    swf_textwidth(string str)
    swf_translate(float x, float y, float z)
    swf_viewport(float xmin, float xmax, float ymin, float ymax)
    swfaction
    swfbitmap
    swfbitmap->getheight
    swfbitmap->getwidth
    swfbutton
    swfbutton->addaction
    swfbutton->addshape
    swfbutton->setaction
    swfbutton->setdown
    swfbutton->sethit
    swfbutton->setover
    swfbutton->setup
    swfbutton_keypress
    swfdisplayitem
    swfdisplayitem->addcolor
    swfdisplayitem->move
    swfdisplayitem->moveto
    swfdisplayitem->multcolor
    swfdisplayitem->remove
    swfdisplayitem->rotate
    swfdisplayitem->rotateto
    swfdisplayitem->scale
    swfdisplayitem->scaleto
    swfdisplayitem->setdepth
    swfdisplayitem->setname
    swfdisplayitem->setratio
    swfdisplayitem->skewx
    swfdisplayitem->skewxto
    swfdisplayitem->skewy
    swfdisplayitem->skewyto
    swffill
    swffill->moveto
    swffill->rotateto
    swffill->scaleto
    swffill->skewxto
    swffill->skewyto
    swffont
    swffont->getwidth
    swfgradient
    swfgradient->addentry
    swfmorph
    swfmorph->getshape1
    swfmorph->getshape2
    swfmovie
    swfmovie->add
    swfmovie->nextframe
    swfmovie->output
    swfmovie->remove
    swfmovie->save
    swfmovie->setbackground
    swfmovie->setdimension
    swfmovie->setframes
    swfmovie->setrate
    swfmovie->streammp3
    swfshape
    swfshape->addfill
    swfshape->drawcurve
    swfshape->drawcurveto
    swfshape->drawline
    swfshape->drawlineto
    swfshape->movepen
    swfshape->movepento
    swfshape->setleftfill
    swfshape->setline
    swfshape->setrightfill
    swfsprite
    swfsprite->add
    swfsprite->nextframe
    swfsprite->remove
    swfsprite->setframes
    swftext
    swftext->addstring
    swftext->getwidth
    swftext->moveto
    swftext->setcolor
    swftext->setfont
    swftext->setheight
    swftext->setspacing
    swftextfield
    swftextfield->addstring
    swftextfield->align
    swftextfield->setbounds
    swftextfield->setcolor
    swftextfield->setfont
    swftextfield->setheight
    swftextfield->setindentation
    swftextfield->setleftmargin
    swftextfield->setlinespacing
    swftextfield->setmargins
    swftextfield->setname
    swftextfield->setrightmargin
    sybase_affected_rows([resource link_identifier])
    sybase_close([resource link_identifier])
    sybase_connect([string servername [, string username [, string password [, string charset [, string appname]]]]])
    sybase_data_seek(resource result_identifier, int row_number)
    sybase_deadlock_retry_count(int retry_count)
    sybase_fetch_array(resource result)
    sybase_fetch_assoc(resource result)
    sybase_fetch_field(resource result [, int field_offset])
    sybase_fetch_object(resource result [, mixed object])
    sybase_fetch_row(resource result)
    sybase_field_seek(resource result, int field_offset)
    sybase_free_result(resource result)
    sybase_get_last_message(void)
    sybase_min_client_severity(int severity)
    sybase_min_error_severity(int severity)
    sybase_min_message_severity(int severity)
    sybase_min_server_severity(int severity)
    sybase_num_fields(resource result)
    sybase_num_rows(resource result)
    sybase_pconnect([string servername [, string username [, string password [, string charset [, string appname]]]]])
    sybase_query(string query [, resource link_identifier])
    sybase_result(resource result, int row, mixed field)
    sybase_select_db(string database_name [, resource link_identifier])
    sybase_set_message_handler(callback handler [, resource connection])
    sybase_unbuffered_query(string query, resource link_identifier [, bool store_result])
    symlink(string target, string link)
    sys_get_temp_dir(void)
    sys_getloadavg(void)
    syslog(int priority, string message)
    system
    tan(float arg)
    tanh(float arg)
    tcpwrap_check(string daemon, string address [, string user [, bool nodns]])
    tempnam(string dir, string prefix)
    textdomain(string text_domain)
    tidy_access_count(tidy object)
    tidy_config_count(tidy object)
    tidy_error_count(tidy object)
    tidy_get_output(tidy object)
    tidy_load_config(string filename, string encoding)
    tidy_repair_file(string filename [, mixed config [, string encoding [, bool use_include_path]]])
    tidy_repair_string(string data [, mixed config [, string encoding]])
    tidy_reset_config(void)
    tidy_save_config(string filename)
    tidy_set_encoding(string encoding)
    tidy_setopt(string option, mixed value)
    tidy_warning_count(tidy object)
    time(void)
    time_nanosleep(int seconds, int nanoseconds)
    time_sleep_until(float timestamp)
    timezone_abbreviations_list(void)
    timezone_identifiers_list(void)
    timezone_name_from_abbr(string abbr [, int gmtOffset [, int isdst]])
    timezone_name_get(DateTimeZone object)
    timezone_offset_get(DateTimeZone object, DateTime datetime)
    timezone_open(string timezone)
    timezone_transitions_get(DateTimeZone object)
    tmpfile(void)
    token_get_all(string source)
    token_name(int token)
    touch(string filename [, int time [, int atime]])
    trigger_error(string error_msg [, int error_type])
    trim(string str [, string charlist])
    uasort
    ucfirst(string str)
    ucwords(string str)
    udm_add_search_limit(resource agent, int var, string val)
    udm_alloc_agent(string dbaddr [, string dbmode])
    udm_alloc_agent_array(array databases)
    udm_api_version(void)
    udm_cat_list(resource agent, string category)
    udm_cat_path(resource agent, string category)
    udm_check_charset(resource agent, string charset)
    udm_check_stored(resource agent, int link, string doc_id)
    udm_clear_search_limits(resource agent)
    udm_close_stored(resource agent, int link)
    udm_crc32(resource agent, string str)
    udm_errno(resource agent)
    udm_error(resource agent)
    udm_find(resource agent, string query)
    udm_free_agent(resource agent)
    udm_free_ispell_data(int agent)
    udm_free_res(resource res)
    udm_get_doc_count(resource agent)
    udm_get_res_field(resource res, int row, int field)
    udm_get_res_param(resource res, int param)
    udm_hash32(resource agent, string str)
    udm_load_ispell_data(resource agent, int var, string val1, string val2, int flag)
    udm_open_stored(resource agent, string storedaddr)
    udm_set_agent_param(resource agent, int var, string val)
    uksort
    umask([int mask])
    unicode_encode(unicode input, string encoding, int flags)
    unicode_semantics(void)
    uniqid([string prefix [, bool more_entropy]])
    unixtojd([int timestamp])
    unlink(string filename [, resource context])
    unpack(string format, string data)
    unregister_tick_function(string function_name)
    unserialize(string str)
    unset(mixed var [, mixed var [, mixed ...]])
    urldecode(string str)
    urlencode(string str)
    use_soap_error_handler([bool handler])
    user_error
    usleep(int micro_seconds)
    usort
    utf8_decode(string data)
    utf8_encode(string data)
    var_dump(mixed expression [, mixed expression [, ...]])
    var_export(mixed expression [, bool return])
    variant_abs(mixed val)
    variant_add(mixed left, mixed right)
    variant_and(mixed left, mixed right)
    variant_cast(variant variant, int type)
    variant_cat(mixed left, mixed right)
    variant_cmp(mixed left, mixed right [, int lcid [, int flags]])
    variant_date_from_timestamp(int timestamp)
    variant_date_to_timestamp(variant variant)
    variant_div(mixed left, mixed right)
    variant_eqv(mixed left, mixed right)
    variant_fix(mixed variant)
    variant_get_type(variant variant)
    variant_idiv(mixed left, mixed right)
    variant_imp(mixed left, mixed right)
    variant_int(mixed variant)
    variant_mod(mixed left, mixed right)
    variant_mul(mixed left, mixed right)
    variant_neg(mixed variant)
    variant_not(mixed variant)
    variant_or(mixed left, mixed right)
    variant_pow(mixed left, mixed right)
    variant_round(mixed variant, int decimals)
    variant_set(variant variant, mixed value)
    variant_set_type(variant variant, int type)
    variant_sub(mixed left, mixed right)
    variant_xor(mixed left, mixed right)
    version_compare(string version1, string version2 [, string operator])
    vfprintf(resource handle, string format, array args)
    virtual(string filename)
    vpopmail_add_alias_domain(string domain, string aliasdomain)
    vpopmail_add_alias_domain_ex(string olddomain, string newdomain)
    vpopmail_add_domain(string domain, string dir, int uid, int gid)
    vpopmail_add_domain_ex(string domain, string passwd [, string quota [, string bounce [, bool apop]]])
    vpopmail_add_user(string user, string domain, string password [, string gecos [, bool apop]])
    vpopmail_alias_add(string user, string domain, string alias)
    vpopmail_alias_del(string user, string domain)
    vpopmail_alias_del_domain(string domain)
    vpopmail_alias_get(string alias, string domain)
    vpopmail_alias_get_all(string domain)
    vpopmail_auth_user(string user, string domain, string password [, string apop])
    vpopmail_del_domain(string domain)
    vpopmail_del_domain_ex(string domain)
    vpopmail_del_user(string user, string domain)
    vpopmail_error(void)
    vpopmail_passwd(string user, string domain, string password [, bool apop])
    vpopmail_set_user_quota(string user, string domain, string quota)
    vprintf(string format, array args)
    vsprintf(string format, array args)
    w32api_deftype(string typename, string member1_type, string member1_name [, string ... [, string ...]])
    w32api_init_dtype(string typename, mixed value [, mixed ...])
    w32api_invoke_function(string funcname, mixed argument [, mixed ...])
    w32api_register_function(string library, string function_name, string return_type)
    w32api_set_call_method(int method)
    wddx_add_vars(resource packet_id, mixed var_name [, mixed ...])
    wddx_deserialize
    wddx_packet_end(resource packet_id)
    wddx_packet_start([string comment])
    wddx_serialize_value(mixed var [, string comment])
    wddx_serialize_vars(mixed var_name [, mixed ...])
    wddx_unserialize(string packet)
    win32_create_service(array details [, string machine])
    win32_delete_service(string servicename [, string machine])
    win32_get_last_control_message(void)
    win32_ps_list_procs(void)
    win32_ps_stat_mem(void)
    win32_ps_stat_proc([int pid])
    win32_query_service_status(string servicename [, string machine])
    win32_set_service_status(int status)
    win32_start_service(string servicename [, string machine])
    win32_start_service_ctrl_dispatcher(string name)
    win32_stop_service(string servicename [, string machine])
    wordwrap(string str [, int width [, string break [, bool cut]]])
    xattr_get(string filename, string name [, int flags])
    xattr_list(string filename [, int flags])
    xattr_remove(string filename, string name [, int flags])
    xattr_set(string filename, string name, string value [, int flags])
    xattr_supported(string filename [, int flags])
    xdiff_file_diff(string file1, string file2, string dest [, int context [, bool minimal]])
    xdiff_file_diff_binary(string file1, string file2, string dest)
    xdiff_file_merge3(string file1, string file2, string file3, string dest)
    xdiff_file_patch(string file, string patch, string dest [, int flags])
    xdiff_file_patch_binary(string file, string patch, string dest)
    xdiff_string_diff(string str1, string str2 [, int context [, bool minimal]])
    xdiff_string_diff_binary(string str1, string str2)
    xdiff_string_patch_binary(string str, string patch)
    xml_error_string(int code)
    xml_get_current_byte_index(resource parser)
    xml_get_current_column_number(resource parser)
    xml_get_current_line_number(resource parser)
    xml_get_error_code(resource parser)
    xml_parse(resource parser, string data [, bool is_final])
    xml_parse_into_struct
    xml_parser_create([string encoding])
    xml_parser_create_ns([string encoding [, string separator]])
    xml_parser_free(resource parser)
    xml_parser_get_option(resource parser, int option)
    xml_parser_set_option(resource parser, int option, mixed value)
    xml_set_character_data_handler(resource parser, callback handler)
    xml_set_default_handler(resource parser, callback handler)
    xml_set_element_handler(resource parser, callback start_element_handler, callback end_element_handler)
    xml_set_end_namespace_decl_handler(resource parser, callback handler)
    xml_set_external_entity_ref_handler(resource parser, callback handler)
    xml_set_notation_decl_handler(resource parser, callback handler)
    xml_set_object
    xml_set_processing_instruction_handler(resource parser, callback handler)
    xml_set_start_namespace_decl_handler(resource parser, callback handler)
    xml_set_unparsed_entity_decl_handler(resource parser, callback handler)
    xmlrpc_decode(string xml [, string encoding])
    xmlrpc_decode_request
    xmlrpc_encode(mixed value)
    xmlrpc_encode_request(string method, mixed params [, array output_options])
    xmlrpc_get_type(mixed value)
    xmlrpc_is_fault(array arg)
    xmlrpc_parse_method_descriptions(string xml)
    xmlrpc_server_add_introspection_data(resource server, array desc)
    xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options])
    xmlrpc_server_create(void)
    xmlrpc_server_destroy(resource server)
    xmlrpc_server_register_introspection_callback(resource server, string function)
    xmlrpc_server_register_method(resource server, string method_name, string function)
    xmlrpc_set_type
    xpath_eval
    xpath_eval_expression
    xpath_new_context(domdocument dom_document)
    xpath_register_ns(XPathContext xpath_context, string prefix, string uri)
    xpath_register_ns_auto(XPathContext xpath_context [, object context_node])
    xptr_eval
    xptr_new_context(void)
    xslt_backend_info(void)
    xslt_backend_name(void)
    xslt_backend_version(void)
    xslt_create(void)
    xslt_errno(resource xh)
    xslt_error(resource xh)
    xslt_free(resource xh)
    xslt_getopt(resource processor)
    xslt_process(resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]])
    xslt_set_base(resource xh, string uri)
    xslt_set_encoding(resource xh, string encoding)
    xslt_set_error_handler(resource xh, mixed handler)
    xslt_set_log(resource xh [, mixed log])
    xslt_set_sax_handler(resource xh, array handlers)
    xslt_set_sax_handlers(resource processor, array handlers)
    xslt_set_scheme_handler(resource xh, array handlers)
    xslt_set_scheme_handlers(resource processor, array handlers)
    xslt_setopt(resource processor, int newmask)
    yaz_addinfo(resource id)
    yaz_ccl_conf(resource id, array config)
    yaz_ccl_parse
    yaz_close(resource id)
    yaz_connect(string zurl [, mixed options])
    yaz_database(resource id, string databases)
    yaz_element(resource id, string elementset)
    yaz_errno(resource id)
    yaz_error(resource id)
    yaz_es(resource id, string type, array args)
    yaz_es_result(resource id)
    yaz_get_option(resource id, string name)
    yaz_hits
    yaz_itemorder(resource id, array args)
    yaz_present(resource id)
    yaz_range(resource id, int start, int number)
    yaz_record(resource id, int pos, string type)
    yaz_scan(resource id, string type, string startterm [, array flags])
    yaz_scan_result
    yaz_schema(resource id, string schema)
    yaz_search(resource id, string type, string query)
    yaz_set_option(resource id, string name, string value)
    yaz_sort(resource id, string criteria)
    yaz_syntax(resource id, string syntax)
    yaz_wait
    yp_all(string domain, string map, string callback)
    yp_cat(string domain, string map)
    yp_err_string(int errorcode)
    yp_errno(void)
    yp_first(string domain, string map)
    yp_get_default_domain(void)
    yp_master(string domain, string map)
    yp_match(string domain, string map, string key)
    yp_next(string domain, string map, string key)
    yp_order(string domain, string map)
    zend_logo_guid(void)
    zend_register_module(zend_module_entry *module_entry)
    zend_version(void)
    zip_close(resource zip)
    zip_entry_close(resource zip_entry)
    zip_entry_compressedsize(resource zip_entry)
    zip_entry_compressionmethod(resource zip_entry)
    zip_entry_filesize(resource zip_entry)
    zip_entry_name(resource zip_entry)
    zip_entry_open(resource zip, resource zip_entry [, string mode])
    zip_entry_read(resource zip_entry [, int length])
    zip_open(string filename)
    zip_read(resource zip)
    zlib_get_coding_type(void)

     
    • Nobody/Anonymous

      Yes, that's sure worth reading!!!

       
      • Nobody/Anonymous

        This is so great
        Thank You

         
    • steakhacher

      steakhacher - 2007-10-15

      Hi

      I am not a php developer but I think that it could be interesting to add that to the wiki