" Vim syntax file " Language: php PHP 3/4/5 " Author: Lutz Eymers " Email: lutz ___AT___ ipdienste ___DOT___ net " URL: http://www.ipdienste.net/data/php.vim " Last Change: 2008 Dec 4 " ---------------------------------------------------------------------------- " 2008 Nov 3 Function and Methods ripped from php_manual_de.tar.gz Nov 2008 " - add option php_sh_backtick for SH syntax highlighting inside " backtick operator " - add option php_ignore_html " - add ! to runtime! syntax/html.vim " - rename option php_oldStyle to php_color_style (*) " (light|medium|full) " - rename option php_htmlInString to php_html_string (*) " - rename option php_sql_query to php_sql_string (*) " - rename option php_noShortTags to php_no_short_tags (*) " (*) downward compatible " ---------------------------------------------------------------------------- " 2008 Mai 3 Function and Methods ripped from php_manual_de.tar.gz Mai 2008 " ---------------------------------------------------------------------------- " 2006 Aug 6 Function and Methods ripped from php_manual_de.tar.gz Aug 2006 " ---------------------------------------------------------------------------- " Options " " php_sql_string = 1 - SQL syntax highlighting inside strings " php_html_string = 1 - HTML syntax highlighting inside strings " php_sh_backtick = 1 - SH syntax highlighting inside backtick " php_baselib = 1 - highlighting baselib functions " php_asp_tags = 1 - highlighting ASP-style short tags " php_parent_error_close = 1 - highlighting parent error ] or ) " php_parent_error_open = 1 - skipping an php end tag, if there exists an open ( or [ without a closing one " php_color_style = - default medium " php_ignore_html = 1 - don't highlight " php_no_short_tags = 1 - don't sync as php " php_folding = 1 - folding classes and functions " php_folding = 2 - folding all { } regions " php_sync_method = x " x=-1 - sync by search ( default ) " x>0 - sync at least x lines backwards " x=0 - sync from start " Note " Setting php_folding=1 will match a closing } by comparing the indent " before the class or function keyword with the indent of a matching }. " Setting php_folding=2 will match all of pairs of {,} ( see known " bugs ii ) " Known bugs " setting php_parent_error_close on and php_parent_error_open off " has these two leaks: " i) An closing ) or ] inside a string match to the last open ( or [ " before the string, when the the closing ) or ] is on the same line " where the string started. In this case a following ) or ] after " the string would be highlighted as an error, what is incorrect. " ii) Same problem if you are setting php_folding = 2 with a closing " } inside an string on the first line of this string. " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") finish endif if !exists("main_syntax") let main_syntax = 'php' endif " accept old options if !exists("php_sync_method") if exists("php_minlines") let php_sync_method = php_minlines else let php_sync_method = -1 endif endif if exists("php_parentError") && !exists("php_parent_error_open") && !exists("php_parent_error_close") let php_parent_error_close = 1 let php_parent_error_open = 1 endif if exists("php_htmlInString") let php_html_string = 1 endif if exists("php_sql_query") let php_sql_string = 1 endif if exists("php_noShortTags") let php_no_short_tags = 1 endif if exists("php_oldStyle") let php_color_style = 'full' endif if !exists("php_ignore_html'") " include html syntax highlighting runtime! syntax/html.vim unlet b:current_syntax syn cluster htmlPreproc add=phpRegion if exists("php_html_string") syn cluster phpAddStrings add=@htmlTop endif endif " include sql syntax highlighting syn include @sqlTop syntax/sql.vim syn cluster sqlTop remove=sqlString,sqlComment unlet b:current_syntax if exists("php_sql_string") syn cluster phpAddStrings add=@sqlTop endif " include sh syntax highlighting if exists("php_sh_backtick") syn include @shTop syntax/sh.vim unlet b:current_syntax endif syn case match " Super Globals syn keyword phpSuperGlobals GLOBALS _SERVER _GET _POST _COOKIE _FOO2 _FILES _ENV _REQUEST _SESSION contained " Predefined Variables syn keyword phpPredefinedVar GATEWAY_INTERFACE SERVER_ADDR SERVER_NAME SERVER_SOFTWARE SERVER_PROTOCOL REQUEST_METHOD REQUEST_TIME QUERY_STRING DOCUMENT_ROOT HTTP_ACCEPT HTTP_ACCEPT_CHARSET HTTP_ACCEPT_ENCODING HTTP_ACCEPT_LANGUAGE HTTP_CONNECTION HTTP_HOST HTTP_REFERER HTTP_USER_AGENT HTTPS REMOTE_ADDR REMOTE_HOST REMOTE_PORT SCRIPT_FILENAME SERVER_ADMIN SERVER_PORT SERVER_SIGNATURE PATH_TRANSLATED SCRIPT_NAME REQUEST_URI PHP_AUTH_DIGEST PHP_AUTH_USER PHP_AUTH_PW AUTH_TYPE php_errmsg PHP_SELF HTTP_GET_VARS HTTP_POST_VARS HTTP_COOKIE_VARS HTTP_POST_FILES HTTP_ENV_VARS HTTP_SERVER_VARS HTTP_SESSION_VARS HTTP_RAW_POST_DATA HTTP_STATE_VARS contained " Constants syn keyword phpCoreConstant PHP_VERSION PHP_MAJOR_VERSION PHP_MINOR_VERSION PHP_RELEASE_VERSION PHP_VERSION_ID PHP_EXTRA_VERSION PHP_ZTS PHP_DEBUG PHP_OS PHP_SAPI PHP_EOL PHP_INT_MAX PHP_INT_SIZE DEFAULT_INCLUDE_PATH PEAR_INSTALL_DIR PEAR_EXTENSION_DIR PHP_EXTENSION_DIR PHP_PREFIX PHP_BINDIR PHP_LIBDIR PHP_DATADIR PHP_SYSCONFDIR PHP_LOCALSTATEDIR PHP_CONFIG_FILE_PATH PHP_CONFIG_FILE_SCAN_DIR PHP_SHLIB_SUFFIX PHP_OUTPUT_HANDLER_START PHP_OUTPUT_HANDLER_CONT PHP_OUTPUT_HANDLER_END E_ERROR E_WARNING E_PARSE E_NOTICE E_CORE_ERROR E_CORE_WARNING E_COMPILE_ERROR E_COMPILE_WARNING E_USER_ERROR E_USER_WARNING E_USER_NOTICE E_ALL E_STRICT __COMPILER_HALT_OFFSET__ contained syn keyword phpStandardConstant EXTR_OVERWRITE EXTR_SKIP EXTR_PREFIX_SAME EXTR_PREFIX_ALL EXTR_PREFIX_INVALID EXTR_PREFIX_IF_EXISTS EXTR_IF_EXISTS SORT_ASC SORT_DESC SORT_REGULAR SORT_NUMERIC SORT_STRING CASE_LOWER CASE_UPPER COUNT_NORMAL COUNT_RECURSIVE ASSERT_ACTIVE ASSERT_CALLBACK ASSERT_BAIL ASSERT_WARNING ASSERT_QUIET_EVAL CONNECTION_ABORTED CONNECTION_NORMAL CONNECTION_TIMEOUT INI_USER INI_PERDIR INI_SYSTEM INI_ALL M_E M_LOG2E M_LOG10E M_LN2 M_LN10 M_PI M_PI_2 M_PI_4 M_1_PI M_2_PI M_2_SQRTPI M_SQRT2 M_SQRT1_2 CRYPT_SALT_LENGTH CRYPT_STD_DES CRYPT_EXT_DES CRYPT_MD5 CRYPT_BLOWFISH DIRECTORY_SEPARATOR SEEK_SET SEEK_CUR SEEK_END LOCK_SH LOCK_EX LOCK_UN LOCK_NB HTML_SPECIALCHARS HTML_ENTITIES ENT_COMPAT ENT_QUOTES ENT_NOQUOTES INFO_GENERAL INFO_CREDITS INFO_CONFIGURATION INFO_MODULES INFO_ENVIRONMENT INFO_VARIABLES INFO_LICENSE INFO_ALL CREDITS_GROUP CREDITS_GENERAL CREDITS_SAPI CREDITS_MODULES CREDITS_DOCS CREDITS_FULLPAGE CREDITS_QA CREDITS_ALL STR_PAD_LEFT STR_PAD_RIGHT STR_PAD_BOTH PATHINFO_DIRNAME PATHINFO_BASENAME PATHINFO_EXTENSION PATH_SEPARATOR CHAR_MAX LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_ALL LC_MESSAGES ABDAY_1 ABDAY_2 ABDAY_3 ABDAY_4 ABDAY_5 ABDAY_6 ABDAY_7 DAY_1 DAY_2 DAY_3 DAY_4 DAY_5 DAY_6 DAY_7 ABMON_1 ABMON_2 ABMON_3 ABMON_4 ABMON_5 ABMON_6 ABMON_7 ABMON_8 ABMON_9 ABMON_10 ABMON_11 ABMON_12 MON_1 MON_2 MON_3 MON_4 MON_5 MON_6 MON_7 MON_8 MON_9 MON_10 MON_11 MON_12 AM_STR PM_STR D_T_FMT D_FMT T_FMT T_FMT_AMPM ERA ERA_YEAR ERA_D_T_FMT ERA_D_FMT ERA_T_FMT ALT_DIGITS INT_CURR_SYMBOL CURRENCY_SYMBOL CRNCYSTR MON_DECIMAL_POINT MON_THOUSANDS_SEP MON_GROUPING POSITIVE_SIGN NEGATIVE_SIGN INT_FRAC_DIGITS FRAC_DIGITS P_CS_PRECEDES P_SEP_BY_SPACE N_CS_PRECEDES N_SEP_BY_SPACE P_SIGN_POSN N_SIGN_POSN DECIMAL_POINT RADIXCHAR THOUSANDS_SEP THOUSEP GROUPING YESEXPR NOEXPR YESSTR NOSTR CODESET LOG_EMERG LOG_ALERT LOG_CRIT LOG_ERR LOG_WARNING LOG_NOTICE LOG_INFO LOG_DEBUG LOG_KERN LOG_USER LOG_MAIL LOG_DAEMON LOG_AUTH LOG_SYSLOG LOG_LPR LOG_NEWS LOG_UUCP LOG_CRON LOG_AUTHPRIV LOG_LOCAL0 LOG_LOCAL1 LOG_LOCAL2 LOG_LOCAL3 LOG_LOCAL4 LOG_LOCAL5 LOG_LOCAL6 LOG_LOCAL7 LOG_PID LOG_CONS LOG_ODELAY LOG_NDELAY LOG_NOWAIT LOG_PERROR contained syn case ignore syn keyword phpMagicConstant __LINE__ __FILE__ __DIR__ __FUNCTION__ __METHOD__ __CLASS__ __NAMESPACE__ contained syn keyword phpMagicMethods __construct __destruct __call __get __set __isset __unset __sleep __wakeup __toString __set_state __clone __autoload contained " Function and Methods ripped from php_manual_de.tar.gz Nov 2008 syn keyword phpFunctions apache_child_terminate apache_get_modules apache_get_version apache_getenv apache_lookup_uri apache_note apache_request_headers apache_reset_timeout apache_response_headers apache_setenv ascii2ebcdic ebcdic2ascii getallheaders virtual contained syn keyword phpFunctions apc_add apc_cache_info apc_clear_cache apc_compile_file apc_define_constants apc_delete apc_fetch apc_load_constants apc_sma_info apc_store contained syn keyword phpFunctions apd_breakpoint apd_callstack apd_clunk apd_continue apd_croak apd_dump_function_table apd_dump_persistent_resources apd_dump_regular_resources apd_echo apd_get_active_symbols apd_set_pprof_trace apd_set_session_trace apd_set_session apd_set_socket_session_trace override_function rename_function contained syn keyword phpFunctions array_change_key_case array_chunk array_combine array_count_values array_diff_assoc array_diff_key array_diff_uassoc array_diff_ukey array_diff array_fill_keys array_fill array_filter array_flip array_intersect_assoc array_intersect_key array_intersect_uassoc array_intersect_ukey array_intersect array_key_exists array_keys array_map array_merge_recursive array_merge array_multisort array_pad array_pop array_product array_push array_rand array_reduce array_reverse array_search array_shift array_slice array_splice array_sum array_udiff_assoc array_udiff_uassoc array_udiff array_uintersect_assoc array_uintersect_uassoc array_uintersect array_unique array_unshift array_values array_walk_recursive array_walk array arsort asort compact count current each end extract in_array key krsort ksort list natcasesort natsort next pos prev range reset rsort shuffle sizeof sort uasort uksort usort contained syn keyword phpFunctions bbcode_add_element bbcode_add_smiley bbcode_create bbcode_destroy bbcode_parse bbcode_set_arg_parser bbcode_set_flags contained syn keyword phpFunctions bcadd bccomp bcdiv bcmod bcmul bcpow bcpowmod bcscale bcsqrt bcsub contained syn keyword phpFunctions bcompiler_load_exe bcompiler_load bcompiler_parse_class bcompiler_read bcompiler_write_class bcompiler_write_constant bcompiler_write_exe_footer bcompiler_write_file bcompiler_write_footer bcompiler_write_function bcompiler_write_functions_from_file bcompiler_write_header bcompiler_write_included_filename contained syn keyword phpFunctions bzclose bzcompress bzdecompress bzerrno bzerror bzerrstr bzflush bzopen bzread bzwrite contained syn keyword phpFunctions cal_days_in_month cal_from_jd cal_info cal_to_jd easter_date easter_days frenchtojd gregoriantojd jddayofweek jdmonthname jdtofrench jdtogregorian jdtojewish jdtojulian jdtounix jewishtojd juliantojd unixtojd contained syn keyword phpFunctions classkit_import classkit_method_add classkit_method_copy classkit_method_redefine classkit_method_remove classkit_method_rename contained syn keyword phpFunctions call_user_method_array call_user_method class_exists get_class_methods get_class_vars get_class get_declared_classes get_declared_interfaces get_object_vars get_parent_class interface_exists is_a is_subclass_of method_exists property_exists contained syn keyword phpFunctions com_addref com_create_guid com_event_sink com_get_active_object com_get com_invoke com_isenum com_load_typelib com_load com_message_pump com_print_typeinfo com_propget com_propput com_propset com_release com_set variant_abs variant_add variant_and variant_cast variant_cat variant_cmp variant_date_from_timestamp variant_date_to_timestamp variant_div variant_eqv variant_fix variant_get_type variant_idiv variant_imp variant_int variant_mod variant_mul variant_neg variant_not variant_or variant_pow variant_round variant_set_type variant_set variant_sub variant_xor contained syn keyword phpFunctions crack_check crack_closedict crack_getlastmessage crack_opendict contained syn keyword phpFunctions ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_graph ctype_lower ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit contained syn keyword phpFunctions curl_close curl_copy_handle curl_errno curl_error curl_exec curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_setopt_array curl_setopt curl_version contained syn keyword phpFunctions cyrus_authenticate cyrus_bind cyrus_close cyrus_connect cyrus_query cyrus_unbind contained syn keyword phpFunctions checkdate date_add date_create date_date_set date_default_timezone_get date_default_timezone_set date_format date_isodate_set date_modify date_offset_get date_parse date_sub date_sun_info date_sunrise date_sunset date_time_set date_timezone_get date_timezone_set date getdate gettimeofday gmdate gmmktime gmstrftime idate localtime microtime mktime strftime strptime strtotime time timezone_abbreviations_list timezone_identifiers_list timezone_name_from_abbr timezone_name_get timezone_offset_get timezone_open timezone_transitions_get contained syn keyword phpFunctions dba_close dba_delete dba_exists dba_fetch dba_firstkey dba_handlers dba_insert dba_key_split dba_list dba_nextkey dba_open dba_optimize dba_popen dba_replace dba_sync contained syn keyword phpFunctions dbase_add_record dbase_close dbase_create dbase_delete_record dbase_get_header_info dbase_get_record_with_names dbase_get_record dbase_numfields dbase_numrecords dbase_open dbase_pack dbase_replace_record contained syn keyword phpFunctions dbplus_add dbplus_aql dbplus_chdir dbplus_close dbplus_curr dbplus_errcode dbplus_errno dbplus_find dbplus_first dbplus_flush dbplus_freealllocks dbplus_freelock dbplus_freerlocks dbplus_getlock dbplus_getunique dbplus_info dbplus_last dbplus_lockrel dbplus_next dbplus_open dbplus_prev dbplus_rchperm dbplus_rcreate dbplus_rcrtexact dbplus_rcrtlike dbplus_resolve dbplus_restorepos dbplus_rkeys dbplus_ropen dbplus_rquery dbplus_rrename dbplus_rsecindex dbplus_runlink dbplus_rzap dbplus_savepos dbplus_setindex dbplus_setindexbynumber dbplus_sql dbplus_tcl dbplus_tremove dbplus_undo dbplus_undoprepare dbplus_unlockrel dbplus_unselect dbplus_update dbplus_xlockrel dbplus_xunlockrel contained syn keyword phpFunctions dbx_close dbx_compare dbx_connect dbx_error dbx_escape_string dbx_fetch_row dbx_query dbx_sort contained syn keyword phpFunctions dio_close dio_fcntl dio_open dio_read dio_seek dio_stat dio_tcsetattr dio_truncate dio_write contained syn keyword phpFunctions chdir chroot closedir getcwd opendir readdir rewinddir scandir contained syn keyword phpFunctions dom_import_simplexml contained syn keyword phpMethods isId appendData deleteData insertData replaceData substringData createAttribute createAttributeNS createCDATASection createComment createDocumentFragment createElement createElementNS createEntityReference createProcessingInstruction createTextNode getElementById getElementsByTagName getElementsByTagNameNS importNode load loadHTML loadHTMLFile loadXML normalizeDocument registerNodeClass relaxNGValidate relaxNGValidateSource save saveHTML saveHTMLFile saveXML schemaValidate schemaValidateSource validate xinclude appendXML getAttribute getAttributeNode getAttributeNodeNS getAttributeNS getElementsByTagName getElementsByTagNameNS hasAttribute hasAttributeNS removeAttribute removeAttributeNode removeAttributeNS setAttribute setAttributeNode setAttributeNodeNS setAttributeNS setIdAttribute setIdAttributeNode setIdAttributeNS createDocument createDocumentType hasFeature getNamedItem getNamedItemNS item appendChild cloneNode hasAttributes hasChildNodes insertBefore isDefaultNamespace isSameNode isSupported lookupNamespaceURI lookupPrefix normalize removeChild replaceChild item isWhitespaceInElementContent splitText evaluate query registerNamespace contained syn keyword phpFunctions domattribute_name domattribute_set_value domattribute_specified domattribute_value domdocument_add_root domdocument_create_attribute domdocument_create_cdata_section domdocument_create_comment domdocument_create_element_ns 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 domdocument_xinclude domdocumenttype_entities domdocumenttype_internal_subset domdocumenttype_name domdocumenttype_notations domdocumenttype_public_id domdocumenttype_system_id domelement_get_attribute_node domelement_get_attribute domelement_get_elements_by_tagname domelement_has_attribute domelement_remove_attribute domelement_set_attribute_node domelement_set_attribute domelement_tagname domnode_add_namespace domnode_append_child domnode_append_sibling domnode_attributes domnode_child_nodes domnode_clone_node domnode_dump_node domnode_first_child domnode_get_content domnode_has_attributes 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_set_namespace domnode_unlink_node domprocessinginstruction_data domprocessinginstruction_target domxsltstylesheet_process domxsltstylesheet_result_dump_file domxsltstylesheet_result_dump_mem domxml_new_doc domxml_open_file domxml_open_mem domxml_version domxml_xmltree domxml_xslt_stylesheet_doc domxml_xslt_stylesheet_file domxml_xslt_stylesheet domxml_xslt_version xpath_eval_expression xpath_eval xpath_new_context xpath_register_ns_auto xpath_register_ns xptr_eval xptr_new_context contained syn keyword phpMethods name set_value specified value create_attribute create_cdata_section create_comment create_element_ns create_element create_entity_reference create_processing_instruction create_text_node doctype document_element dump_file dump_mem get_element_by_id get_elements_by_tagname contained syn keyword phpFunctions dotnet_load contained syn keyword phpFunctions enchant_broker_describe enchant_broker_dict_exists enchant_broker_free_dict enchant_broker_free enchant_broker_get_error enchant_broker_init enchant_broker_list_dicts enchant_broker_request_dict enchant_broker_request_pwl_dict enchant_broker_set_ordering enchant_dict_add_to_personal enchant_dict_add_to_session enchant_dict_check enchant_dict_describe enchant_dict_get_error enchant_dict_is_in_session enchant_dict_quick_check enchant_dict_store_replacement enchant_dict_suggest contained syn keyword phpFunctions debug_backtrace debug_print_backtrace error_get_last error_log error_reporting restore_error_handler restore_exception_handler set_error_handler set_exception_handler trigger_error user_error contained syn keyword phpFunctions escapeshellarg escapeshellcmd exec passthru proc_close proc_get_status proc_nice proc_open proc_terminate shell_exec system contained syn keyword phpFunctions exif_imagetype exif_read_data exif_tagname exif_thumbnail read_exif_data contained syn keyword phpFunctions expect_expectl expect_popen contained syn keyword phpFunctions fam_cancel_monitor fam_close fam_monitor_collection fam_monitor_directory fam_monitor_file fam_next_event fam_open fam_pending fam_resume_monitor fam_suspend_monitor contained syn keyword phpFunctions fbsql_affected_rows fbsql_autocommit fbsql_blob_size fbsql_change_user fbsql_clob_size fbsql_close fbsql_commit fbsql_connect fbsql_create_blob fbsql_create_clob fbsql_create_db fbsql_data_seek fbsql_database_password fbsql_database fbsql_db_query fbsql_db_status fbsql_drop_db fbsql_errno fbsql_error fbsql_fetch_array fbsql_fetch_assoc fbsql_fetch_field fbsql_fetch_lengths fbsql_fetch_object fbsql_fetch_row fbsql_field_flags fbsql_field_len fbsql_field_name fbsql_field_seek fbsql_field_table fbsql_field_type fbsql_free_result fbsql_get_autostart_info fbsql_hostname fbsql_insert_id fbsql_list_dbs fbsql_list_fields fbsql_list_tables fbsql_next_result fbsql_num_fields fbsql_num_rows fbsql_password fbsql_pconnect fbsql_query fbsql_read_blob fbsql_read_clob fbsql_result fbsql_rollback fbsql_rows_fetched fbsql_select_db fbsql_set_characterset fbsql_set_lob_mode fbsql_set_password fbsql_set_transaction fbsql_start_db fbsql_stop_db fbsql_table_name fbsql_tablename fbsql_username fbsql_warnings contained syn keyword phpFunctions fdf_add_doc_javascript fdf_add_template fdf_close fdf_create fdf_enum_values fdf_errno fdf_error fdf_get_ap fdf_get_attachment fdf_get_encoding fdf_get_file fdf_get_flags fdf_get_opt fdf_get_status fdf_get_value fdf_get_version fdf_header fdf_next_field_name fdf_open_string fdf_open fdf_remove_item fdf_save_string fdf_save fdf_set_ap fdf_set_encoding fdf_set_file fdf_set_flags fdf_set_javascript_action fdf_set_on_import_javascript fdf_set_opt fdf_set_status fdf_set_submit_form_action fdf_set_target_frame fdf_set_value fdf_set_version contained syn keyword phpFunctions finfo_buffer finfo_close finfo_file finfo_open finfo_set_flags contained syn keyword phpFunctions filepro_fieldcount filepro_fieldname filepro_fieldtype filepro_fieldwidth filepro_retrieve filepro_rowcount filepro contained syn keyword phpFunctions basename chgrp chmod chown clearstatcache copy delete dirname disk_free_space disk_total_space diskfreespace fclose feof fflush fgetc fgetcsv fgets fgetss file_exists file_get_contents file_put_contents file fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype flock fnmatch fopen fpassthru fputcsv fputs fread fscanf fseek fstat ftell ftruncate fwrite glob is_dir is_executable is_file is_link is_readable is_uploaded_file is_writable is_writeable lchgrp lchown link linkinfo lstat mkdir move_uploaded_file parse_ini_file pathinfo pclose popen readfile readlink realpath rename rewind rmdir set_file_buffer stat symlink tempnam tmpfile touch umask unlink contained syn keyword phpFunctions filter_has_var filter_id filter_input_array filter_input filter_list filter_var_array filter_var contained syn keyword phpFunctions fribidi_log2vis contained syn keyword phpFunctions ftp_alloc ftp_cdup ftp_chdir ftp_chmod ftp_close ftp_connect ftp_delete ftp_exec ftp_fget ftp_fput ftp_get_option ftp_get ftp_login ftp_mdtm ftp_mkdir ftp_nb_continue ftp_nb_fget ftp_nb_fput ftp_nb_get ftp_nb_put ftp_nlist ftp_pasv ftp_put ftp_pwd ftp_quit ftp_raw ftp_rawlist ftp_rename ftp_rmdir ftp_set_option ftp_site ftp_size ftp_ssl_connect ftp_systype contained syn keyword phpFunctions call_user_func_array call_user_func create_function func_get_arg func_get_args func_num_args function_exists get_defined_functions register_shutdown_function register_tick_function unregister_tick_function contained syn keyword phpFunctions geoip_country_code_by_name geoip_country_code3_by_name geoip_country_name_by_name geoip_database_info geoip_db_avail geoip_db_filename geoip_db_get_all_info geoip_id_by_name geoip_isp_by_name geoip_org_by_name geoip_record_by_name geoip_region_by_name contained syn keyword phpFunctions bind_textdomain_codeset bindtextdomain dcgettext dcngettext dgettext dngettext gettext ngettext textdomain contained syn keyword phpFunctions gmp_abs gmp_add gmp_and gmp_clrbit gmp_cmp gmp_com gmp_div_q gmp_div_qr gmp_div_r gmp_div gmp_divexact gmp_fact gmp_gcd gmp_gcdext gmp_hamdist gmp_init gmp_intval gmp_invert gmp_jacobi gmp_legendre gmp_mod gmp_mul gmp_neg gmp_nextprime gmp_or gmp_perfect_square gmp_popcount gmp_pow gmp_powm gmp_prob_prime gmp_random gmp_scan0 gmp_scan1 gmp_setbit gmp_sign gmp_sqrt gmp_sqrtrem gmp_strval gmp_sub gmp_testbit gmp_xor contained syn keyword phpFunctions gnupg_adddecryptkey gnupg_addencryptkey gnupg_addsignkey gnupg_cleardecryptkeys gnupg_clearencryptkeys gnupg_clearsignkeys gnupg_decrypt gnupg_decryptverify gnupg_encrypt gnupg_encryptsign gnupg_export gnupg_geterror gnupg_getprotocol gnupg_import gnupg_init gnupg_keyinfo gnupg_setarmor gnupg_seterrormode gnupg_setsignmode gnupg_sign gnupg_verify contained syn keyword phpFunctions harudoc_addpage harudoc_addpagelabel harudoc_construct harudoc_createoutline harudoc_getcurrentencoder harudoc_getcurrentpage harudoc_getencoder harudoc_getfont harudoc_getinfoattr harudoc_getpagelayout harudoc_getpagemode harudoc_getstreamsize harudoc_insertpage harudoc_loadjpeg harudoc_loadpng harudoc_loadraw harudoc_loadttc harudoc_loadttf harudoc_loadtype1 harudoc_output harudoc_readfromstream harudoc_reseterror harudoc_resetstream harudoc_save harudoc_savetostream harudoc_setcompressionmode harudoc_setcurrentencoder harudoc_setencryptionmode harudoc_setinfoattr harudoc_setinfodateattr harudoc_setopenaction harudoc_setpagelayout harudoc_setpagemode harudoc_setpagesconfiguration harudoc_setpassword harudoc_setpermission harudoc_usecnsencodings harudoc_usecnsfonts harudoc_usecntencodings harudoc_usecntfonts harudoc_usejpencodings harudoc_usejpfonts harudoc_usekrencodings harudoc_usekrfonts harupage_arc harupage_begintext harupage_circle harupage_closepath harupage_concat harupage_createdestination harupage_createlinkannotation harupage_createtextannotation harupage_createurlannotation harupage_curveto2 harupage_curveto3 harupage_curveto harupage_drawimage harupage_ellipse harupage_endpath harupage_endtext harupage_eofill harupage_eofillstroke harupage_fill harupage_fillstroke harupage_getcharspace harupage_getcmykfill harupage_getcmykstroke harupage_getcurrentfont harupage_getcurrentfontsize harupage_getcurrentpos harupage_getcurrenttextpos harupage_getdash harupage_getfillingcolorspace harupage_getflatness harupage_getgmode harupage_getgrayfill harupage_getgraystroke harupage_getheight harupage_gethorizontalscaling harupage_getlinecap harupage_getlinejoin harupage_getlinewidth harupage_getmiterlimit harupage_getrgbfill harupage_getrgbstroke harupage_getstrokingcolorspace harupage_gettextleading harupage_gettextmatrix harupage_gettextrenderingmode harupage_gettextrise harupage_gettextwidth harupage_gettransmatrix harupage_getwidth harupage_getwordspace harupage_lineto harupage_measuretext harupage_movetextpos harupage_moveto harupage_movetonextline harupage_rectangle harupage_setcharspace harupage_setcmykfill harupage_setcmykstroke harupage_setdash harupage_setflatness harupage_setfontandsize harupage_setgrayfill harupage_setgraystroke harupage_setheight harupage_sethorizontalscaling harupage_setlinecap harupage_setlinejoin harupage_setlinewidth harupage_setmiterlimit harupage_setrgbfill harupage_setrgbstroke harupage_setrotate harupage_setsize harupage_setslideshow harupage_settextleading harupage_settextmatrix harupage_settextrenderingmode harupage_settextrise harupage_setwidth harupage_setwordspace harupage_showtext harupage_showtextnextline harupage_stroke harupage_textout harupage_textrect harufont_getascent harufont_getcapheight harufont_getdescent harufont_getencodingname harufont_getfontname harufont_gettextwidth harufont_getunicodewidth harufont_getxheight harufont_measuretext haruimage_getbitspercomponent haruimage_getcolorspace haruimage_getheight haruimage_getsize haruimage_getwidth haruimage_setcolormask haruimage_setmaskimage haruencoder_getbytetype haruencoder_gettype haruencoder_getunicode haruencoder_getwritingmode haruoutline_setdestination haruoutline_setopened haruannotation_setborderstyle haruannotation_sethighlightmode haruannotation_seticon haruannotation_setopened harudestination_setfit harudestination_setfitb harudestination_setfitbh harudestination_setfitbv harudestination_setfith harudestination_setfitr harudestination_setfitv harudestination_setxyz contained syn keyword phpMethods addPage addPageLabel createOutline getCurrentEncoder getCurrentPage getEncoder getFont getInfoAttr getPageLayout getPageMode getStreamSize insertPage loadJPEG loadPNG loadRaw loadTTC loadTTF loadType1 output readFromStream resetError resetStream save saveToStream setCompressionMode setCurrentEncoder setEncryptionMode setInfoAttr setInfoDateAttr setOpenAction setPageLayout setPageMode setPagesConfiguration setPassword setPermission useCNSEncodings useCNSFonts useCNTEncodings useCNTFonts useJPEncodings useJPFonts useKREncodings useKRFonts arc beginText circle closePath concat createDestination createLinkAnnotation createTextAnnotation createURLAnnotation curveTo2 curveTo3 curveTo drawImage ellipse endPath endText eofill eoFillStroke fill fillStroke getCharSpace getCMYKFill getCMYKStroke getCurrentFont getCurrentFontSize getCurrentPos getCurrentTextPos getDash getFillingColorSpace getFlatness getGMode getGrayFill getGrayStroke getHeight getHorizontalScaling getLineCap getLineJoin getLineWidth getMiterLimit getRGBFill getRGBStroke getStrokingColorSpace getTextLeading getTextMatrix getTextRenderingMode getTextRise getTextWidth getTransMatrix getWidth getWordSpace lineTo measureText moveTextPos moveTo moveToNextLine rectangle setCharSpace setCMYKFill setCMYKStroke setDash setFlatness setFontAndSize setGrayFill setGrayStroke setHeight setHorizontalScaling setLineCap setLineJoin setLineWidth setMiterLimit setRGBFill setRGBStroke setRotate setSize setSlideShow setTextLeading setTextMatrix setTextRenderingMode setTextRise setWidth setWordSpace showText showTextNextLine stroke textOut textRect getAscent getCapHeight getDescent getEncodingName getFontName getTextWidth getUnicodeWidth getXHeight measureText getBitsPerComponent getColorSpace getHeight getSize getWidth setColorMask setMaskImage getByteType getType getUnicode getWritingMode setDestination setOpened setBorderStyle setHighlightMode setIcon setOpened setFit setFitB setFitBH setFitBV setFitH setFitR setFitV setXYZ contained syn keyword phpFunctions hash_algos hash_copy hash_file hash_final hash_hmac_file hash_hmac hash_init hash_update_file hash_update_stream hash_update hash contained syn keyword phpFunctions httpdeflatestream_construct httpdeflatestream_factory httpdeflatestream_finish httpdeflatestream_flush httpdeflatestream_update httpinflatestream_construct httpinflatestream_factory httpinflatestream_finish httpinflatestream_flush httpinflatestream_update httpmessage_addheaders httpmessage_construct httpmessage_detach httpmessage_factory httpmessage_fromenv httpmessage_fromstring httpmessage_getbody httpmessage_getheader httpmessage_getheaders httpmessage_gethttpversion httpmessage_getparentmessage httpmessage_getrequestmethod httpmessage_getrequesturl httpmessage_getresponsecode httpmessage_getresponsestatus httpmessage_gettype httpmessage_guesscontenttype httpmessage_prepend httpmessage_reverse httpmessage_send httpmessage_setbody httpmessage_setheaders httpmessage_sethttpversion httpmessage_setrequestmethod httpmessage_setrequesturl httpmessage_setresponsecode httpmessage_setresponsestatus httpmessage_settype httpmessage_tomessagetypeobject httpmessage_tostring httpquerystring_construct httpquerystring_get httpquerystring_mod httpquerystring_set httpquerystring_singleton httpquerystring_toarray httpquerystring_tostring httpquerystring_xlate httprequest_addcookies httprequest_addheaders httprequest_addpostfields httprequest_addpostfile httprequest_addputdata httprequest_addquerydata httprequest_addrawpostdata httprequest_addssloptions httprequest_clearhistory httprequest_construct httprequest_enablecookies httprequest_getcontenttype httprequest_getcookies httprequest_getheaders httprequest_gethistory httprequest_getmethod httprequest_getoptions httprequest_getpostfields httprequest_getpostfiles httprequest_getputdata httprequest_getputfile httprequest_getquerydata httprequest_getrawpostdata httprequest_getrawrequestmessage httprequest_getrawresponsemessage httprequest_getrequestmessage httprequest_getresponsebody httprequest_getresponsecode httprequest_getresponsecookies httprequest_getresponsedata httprequest_getresponseheader httprequest_getresponseinfo httprequest_getresponsemessage httprequest_getresponsestatus httprequest_getssloptions httprequest_geturl httprequest_resetcookies httprequest_send httprequest_setcontenttype httprequest_setcookies httprequest_setheaders httprequest_setmethod httprequest_setoptions httprequest_setpostfields httprequest_setpostfiles httprequest_setputdata httprequest_setputfile httprequest_setquerydata httprequest_setrawpostdata httprequest_setssloptions httprequest_seturl httprequestpool_attach httprequestpool_construct httprequestpool_destruct httprequestpool_detach httprequestpool_getattachedrequests httprequestpool_getfinishedrequests httprequestpool_reset httprequestpool_send httprequestpool_socketperform httprequestpool_socketselect httpresponse_capture httpresponse_getbuffersize httpresponse_getcache httpresponse_getcachecontrol httpresponse_getcontentdisposition httpresponse_getcontenttype httpresponse_getdata httpresponse_getetag httpresponse_getfile httpresponse_getgzip httpresponse_getheader httpresponse_getlastmodified httpresponse_getrequestbody httpresponse_getrequestbodystream httpresponse_getrequestheaders httpresponse_getstream httpresponse_getthrottledelay httpresponse_guesscontenttype httpresponse_redirect httpresponse_send httpresponse_setbuffersize httpresponse_setcache httpresponse_setcachecontrol httpresponse_setcontentdisposition httpresponse_setcontenttype httpresponse_setdata httpresponse_setetag httpresponse_setfile httpresponse_setgzip httpresponse_setheader httpresponse_setlastmodified httpresponse_setstream httpresponse_setthrottledelay httpresponse_status http_cache_etag http_cache_last_modified http_chunked_decode http_deflate http_inflate http_build_cookie http_date http_get_request_body_stream http_get_request_body http_get_request_headers http_match_etag http_match_modified http_match_request_header http_support http_negotiate_charset http_negotiate_content_type http_negotiate_language ob_deflatehandler ob_etaghandler ob_inflatehandler http_parse_cookie http_parse_headers http_parse_message http_parse_params http_persistent_handles_clean http_persistent_handles_count http_persistent_handles_ident http_get http_head http_post_data http_post_fields http_put_data http_put_file http_put_stream http_request_body_encode http_request_method_exists http_request_method_name http_request_method_register http_request_method_unregister http_request http_redirect http_send_content_disposition http_send_content_type http_send_data http_send_file http_send_last_modified http_send_status http_send_stream http_throttle http_build_str http_build_url contained syn keyword phpMethods factory finish flush update factory finish flush update addHeaders detach factory fromEnv fromString getBody getHeader getHeaders getHttpVersion getParentMessage getRequestMethod getRequestUrl getResponseCode getResponseStatus getType guessContentType prepend reverse send setBody setHeaders setHttpVersion setRequestMethod setRequestUrl setResponseCode setResponseStatus setType toMessageTypeObject toString get mod set singleton toArray toString xlate addCookies addHeaders addPostFields addPostFile addPutData addQueryData addRawPostData addSslOptions clearHistory enableCookies getContentType getCookies getHeaders getHistory getMethod getOptions getPostFields getPostFiles getPutData getPutFile getQueryData getRawPostData getRawRequestMessage getRawResponseMessage getRequestMessage getResponseBody getResponseCode getResponseCookies getResponseData getResponseHeader getResponseInfo getResponseMessage getResponseStatus getSslOptions getUrl resetCookies send setContentType setCookies setHeaders setMethod setOptions setPostFields setPostFiles setPutData setPutFile setQueryData setRawPostData setSslOptions setUrl attach __destruct detach getAttachedRequests getFinishedRequests reset send socketPerform socketSelect capture getBufferSize getCache getCacheControl getContentDisposition getContentType getData getETag getFile getGzip getHeader getLastModified getRequestBody getRequestBodyStream getRequestHeaders getStream getThrottleDelay guessContentType redirect send setBufferSize setCache setCacheControl setContentDisposition setContentType setData setETag setFile setGzip setHeader setLastModified setStream setThrottleDelay status contained syn keyword phpFunctions hw_array2objrec hw_changeobject hw_children hw_childrenobj hw_close hw_connect hw_connection_info hw_cp hw_deleteobject hw_docbyanchor hw_docbyanchorobj hw_document_attributes hw_document_bodytag hw_document_content hw_document_setcontent hw_document_size hw_dummy hw_edittext hw_error hw_errormsg hw_free_document hw_getanchors hw_getanchorsobj hw_getandlock hw_getchildcoll hw_getchildcollobj hw_getchilddoccoll hw_getchilddoccollobj hw_getobject hw_getobjectbyquery hw_getobjectbyquerycoll hw_getobjectbyquerycollobj hw_getobjectbyqueryobj hw_getparents hw_getparentsobj hw_getrellink hw_getremote hw_getremotechildren hw_getsrcbydestobj hw_gettext hw_getusername hw_identify hw_incollections hw_info hw_inscoll hw_insdoc hw_insertanchors hw_insertdocument hw_insertobject hw_mapid hw_modifyobject hw_mv hw_new_document hw_objrec2array hw_output_document hw_pconnect hw_pipedocument hw_root hw_setlinkroot hw_stat hw_unlock hw_who contained syn keyword phpFunctions hwapi_attribute_key hwapi_attribute_langdepvalue hwapi_attribute_value hwapi_attribute_values hwapi_attribute hwapi_checkin hwapi_checkout hwapi_children hwapi_content_mimetype hwapi_content_read hwapi_content hwapi_copy hwapi_dbstat hwapi_dcstat hwapi_dstanchors hwapi_dstofsrcanchor hwapi_error_count hwapi_error_reason hwapi_find hwapi_ftstat hwapi_hgcsp hwapi_hwstat hwapi_identify hwapi_info hwapi_insert hwapi_insertanchor hwapi_insertcollection hwapi_insertdocument hwapi_link hwapi_lock hwapi_move hwapi_new_content hwapi_object_assign hwapi_object_attreditable hwapi_object_count hwapi_object_insert hwapi_object_new hwapi_object_remove hwapi_object_title hwapi_object_value hwapi_object hwapi_objectbyanchor hwapi_parents hwapi_reason_description hwapi_reason_type hwapi_remove hwapi_replace hwapi_setcommittedversion hwapi_srcanchors hwapi_srcsofdst hwapi_unlock hwapi_user hwapi_userlist contained syn keyword phpMethods key langdepvalue value values checkin checkout children mimetype read content copy dbstat dcstat dstanchors dstofsrcanchor count reason find ftstat hwstat identify info insert insertanchor insertcollection insertdocument link lock move assign attreditable count insert remove title value object objectbyanchor parents description type remove replace setcommittedversion srcanchors srcsofdst unlock user userlist contained syn keyword phpFunctions locale_get_default locale_set_default contained syn keyword phpFunctions ibase_add_user ibase_affected_rows ibase_backup ibase_blob_add ibase_blob_cancel ibase_blob_close ibase_blob_create ibase_blob_echo ibase_blob_get ibase_blob_import ibase_blob_info ibase_blob_open ibase_close ibase_commit_ret ibase_commit ibase_connect ibase_db_info ibase_delete_user ibase_drop_db ibase_errcode ibase_errmsg ibase_execute ibase_fetch_assoc ibase_fetch_object ibase_fetch_row ibase_field_info ibase_free_event_handler ibase_free_query ibase_free_result ibase_gen_id ibase_maintain_db ibase_modify_user ibase_name_result ibase_num_fields ibase_num_params ibase_param_info ibase_pconnect ibase_prepare ibase_query ibase_restore ibase_rollback_ret ibase_rollback ibase_server_info ibase_service_attach ibase_service_detach ibase_set_event_handler ibase_timefmt ibase_trans ibase_wait_event contained syn keyword phpFunctions db2_autocommit db2_bind_param db2_client_info db2_close db2_column_privileges db2_columns db2_commit db2_conn_error db2_conn_errormsg db2_connect db2_cursor_type db2_escape_string db2_exec db2_execute db2_fetch_array db2_fetch_assoc db2_fetch_both db2_fetch_object db2_fetch_row db2_field_display_size db2_field_name db2_field_num db2_field_precision db2_field_scale db2_field_type db2_field_width db2_foreign_keys db2_free_result db2_free_stmt db2_get_option db2_lob_read db2_next_result db2_num_fields db2_num_rows db2_pconnect db2_prepare db2_primary_keys db2_procedure_columns db2_procedures db2_result db2_rollback db2_server_info db2_set_option db2_special_columns db2_statistics db2_stmt_error db2_stmt_errormsg db2_table_privileges db2_tables contained syn keyword phpFunctions iconv_get_encoding iconv_mime_decode_headers iconv_mime_decode iconv_mime_encode iconv_set_encoding iconv_strlen iconv_strpos iconv_strrpos iconv_substr iconv ob_iconv_handler contained syn keyword phpFunctions id3_get_frame_long_name id3_get_frame_short_name id3_get_genre_id id3_get_genre_list id3_get_genre_name id3_get_tag id3_get_version id3_remove_tag id3_set_tag contained syn keyword phpFunctions ifx_affected_rows ifx_blobinfile_mode ifx_byteasvarchar ifx_close ifx_connect ifx_copy_blob ifx_create_blob ifx_create_char ifx_do ifx_error ifx_errormsg ifx_fetch_row ifx_fieldproperties ifx_fieldtypes ifx_free_blob ifx_free_char ifx_free_result ifx_get_blob ifx_get_char ifx_getsqlca ifx_htmltbl_result ifx_nullformat ifx_num_fields ifx_num_rows ifx_pconnect ifx_prepare ifx_query ifx_textasvarchar ifx_update_blob ifx_update_char ifxus_close_slob ifxus_create_slob ifxus_free_slob ifxus_open_slob ifxus_read_slob ifxus_seek_slob ifxus_tell_slob ifxus_write_slob contained syn keyword phpFunctions iis_add_server iis_get_dir_security iis_get_script_map iis_get_server_by_comment iis_get_server_by_path iis_get_server_rights iis_get_service_state iis_remove_server iis_set_app_settings iis_set_dir_security iis_set_script_map iis_set_server_rights iis_start_server iis_start_service iis_stop_server iis_stop_service contained syn keyword phpFunctions gd_info getimagesize image_type_to_extension image_type_to_mime_type image2wbmp imagealphablending imageantialias imagearc imagechar imagecharup imagecolorallocate imagecolorallocatealpha imagecolorat imagecolorclosest imagecolorclosestalpha imagecolorclosesthwb imagecolordeallocate imagecolorexact imagecolorexactalpha imagecolormatch imagecolorresolve imagecolorresolvealpha imagecolorset imagecolorsforindex imagecolorstotal imagecolortransparent imageconvolution imagecopy imagecopymerge imagecopymergegray imagecopyresampled imagecopyresized imagecreate imagecreatefromgd2 imagecreatefromgd2part imagecreatefromgd imagecreatefromgif imagecreatefromjpeg imagecreatefrompng imagecreatefromstring imagecreatefromwbmp imagecreatefromxbm imagecreatefromxpm imagecreatetruecolor imagedashedline imagedestroy imageellipse imagefill imagefilledarc imagefilledellipse imagefilledpolygon imagefilledrectangle imagefilltoborder imagefilter imagefontheight imagefontwidth imageftbbox imagefttext imagegammacorrect imagegd2 imagegd imagegif imagegrabscreen imagegrabwindow imageinterlace imageistruecolor imagejpeg imagelayereffect imageline imageloadfont imagepalettecopy imagepng imagepolygon imagepsbbox imagepsencodefont imagepsextendfont imagepsfreefont imagepsloadfont imagepsslantfont imagepstext imagerectangle imagerotate imagesavealpha imagesetbrush imagesetpixel imagesetstyle imagesetthickness imagesettile imagestring imagestringup imagesx imagesy imagetruecolortopalette imagettfbbox imagettftext imagetypes imagewbmp imagexbm iptcembed iptcparse jpeg2wbmp png2wbmp contained syn keyword phpFunctions imagick_adaptiveblurimage imagick_adaptiveresizeimage imagick_adaptivesharpenimage imagick_adaptivethresholdimage imagick_addimage imagick_addnoiseimage imagick_affinetransformimage imagick_annotateimage imagick_appendimages imagick_averageimages imagick_blackthresholdimage imagick_blurimage imagick_borderimage imagick_charcoalimage imagick_chopimage imagick_clear imagick_clipimage imagick_clippathimage imagick_clone imagick_clutimage imagick_coalesceimages imagick_colorfloodfillimage imagick_colorizeimage imagick_combineimages imagick_commentimage imagick_compareimagechannels imagick_compareimagelayers imagick_compareimages imagick_compositeimage imagick_construct imagick_contrastimage imagick_contraststretchimage imagick_convolveimage imagick_cropimage imagick_cropthumbnailimage imagick_current imagick_cyclecolormapimage imagick_deconstructimages imagick_despeckleimage imagick_destroy imagick_displayimage imagick_displayimages imagick_distortimage imagick_drawimage imagick_edgeimage imagick_embossimage imagick_enhanceimage imagick_equalizeimage imagick_evaluateimage imagick_flattenimages imagick_flipimage imagick_flopimage imagick_frameimage imagick_fximage imagick_gammaimage imagick_gaussianblurimage imagick_getcompression imagick_getcompressionquality imagick_getcopyright imagick_getfilename imagick_getformat imagick_gethomeurl imagick_getimage imagick_getimagebackgroundcolor imagick_getimageblob imagick_getimageblueprimary imagick_getimagebordercolor imagick_getimagechanneldepth imagick_getimagechanneldistortion imagick_getimagechannelextrema imagick_getimagechannelmean imagick_getimagechannelstatistics imagick_getimagecolormapcolor imagick_getimagecolors imagick_getimagecolorspace imagick_getimagecompose imagick_getimagedelay imagick_getimagedepth imagick_getimagedispose imagick_getimagedistortion imagick_getimageextrema imagick_getimagefilename imagick_getimageformat imagick_getimagegamma imagick_getimagegeometry imagick_getimagegreenprimary imagick_getimageheight imagick_getimagehistogram imagick_getimageindex imagick_getimageinterlacescheme imagick_getimageinterpolatemethod imagick_getimageiterations imagick_getimagelength imagick_getimagemagicklicense imagick_getimagematte imagick_getimagemattecolor imagick_getimageorientation imagick_getimagepage imagick_getimagepixelcolor imagick_getimageprofile imagick_getimageprofiles imagick_getimageproperties imagick_getimageproperty imagick_getimageredprimary imagick_getimageregion imagick_getimagerenderingintent imagick_getimageresolution imagick_getimagescene imagick_getimagesignature imagick_getimagesize imagick_getimagetickspersecond imagick_getimagetotalinkdensity imagick_getimagetype imagick_getimageunits imagick_getimagevirtualpixelmethod imagick_getimagewhitepoint imagick_getimagewidth imagick_getinterlacescheme imagick_getiteratorindex imagick_getnumberimages imagick_getoption imagick_getpackagename imagick_getpage imagick_getpixeliterator imagick_getpixelregioniterator imagick_getquantumdepth imagick_getquantumrange imagick_getreleasedate imagick_getresource imagick_getresourcelimit imagick_getsamplingfactors imagick_getsize imagick_getsizeoffset imagick_getversion imagick_hasnextimage imagick_haspreviousimage imagick_identifyimage imagick_implodeimage imagick_labelimage imagick_levelimage imagick_linearstretchimage imagick_magnifyimage imagick_mapimage imagick_mattefloodfillimage imagick_medianfilterimage imagick_minifyimage imagick_modulateimage imagick_montageimage imagick_morphimages imagick_mosaicimages imagick_motionblurimage imagick_negateimage imagick_newimage imagick_newpseudoimage imagick_nextimage imagick_normalizeimage imagick_oilpaintimage imagick_optimizeimagelayers imagick_paintfloodfillimage imagick_paintopaqueimage imagick_painttransparentimage imagick_pingimage imagick_pingimageblob imagick_pingimagefile imagick_polaroidimage imagick_posterizeimage imagick_previewimages imagick_previousimage imagick_profileimage imagick_quantizeimage imagick_quantizeimages imagick_queryfontmetrics imagick_queryfonts imagick_queryformats imagick_radialblurimage imagick_raiseimage imagick_randomthresholdimage imagick_readimage imagick_readimageblob imagick_readimagefile imagick_reducenoiseimage imagick_removeimage imagick_removeimageprofile imagick_render imagick_resampleimage imagick_resizeimage imagick_rollimage imagick_rotateimage imagick_roundcorners imagick_sampleimage imagick_scaleimage imagick_separateimagechannel imagick_sepiatoneimage imagick_setbackgroundcolor imagick_setcompression imagick_setcompressionquality imagick_setfilename imagick_setfirstiterator imagick_setfont imagick_setformat imagick_setimage imagick_setimagebackgroundcolor imagick_setimagebias imagick_setimageblueprimary imagick_setimagebordercolor imagick_setimagechanneldepth imagick_setimagecolormapcolor imagick_setimagecolorspace imagick_setimagecompose imagick_setimagecompression imagick_setimagedelay imagick_setimagedepth imagick_setimagedispose imagick_setimageextent imagick_setimagefilename imagick_setimageformat imagick_setimagegamma imagick_setimagegreenprimary imagick_setimageindex imagick_setimageinterlacescheme imagick_setimageinterpolatemethod imagick_setimageiterations imagick_setimagematte imagick_setimagemattecolor imagick_setimageopacity imagick_setimageorientation imagick_setimagepage imagick_setimageprofile imagick_setimageproperty imagick_setimageredprimary imagick_setimagerenderingintent imagick_setimageresolution imagick_setimagescene imagick_setimagetickspersecond imagick_setimagetype imagick_setimageunits imagick_setimagevirtualpixelmethod imagick_setimagewhitepoint imagick_setinterlacescheme imagick_setiteratorindex imagick_setlastiterator imagick_setoption imagick_setpage imagick_setresolution imagick_setresourcelimit imagick_setsamplingfactors imagick_setsize imagick_setsizeoffset imagick_settype imagick_shadeimage imagick_shadowimage imagick_sharpenimage imagick_shaveimage imagick_shearimage imagick_sigmoidalcontrastimage imagick_sketchimage imagick_solarizeimage imagick_spliceimage imagick_spreadimage imagick_steganoimage imagick_stereoimage imagick_stripimage imagick_swirlimage imagick_textureimage imagick_thresholdimage imagick_thumbnailimage imagick_tintimage imagick_transformimage imagick_transverseimage imagick_trimimage imagick_uniqueimagecolors imagick_unsharpmaskimage imagick_valid imagick_vignetteimage imagick_waveimage imagick_whitethresholdimage imagick_writeimage imagick_writeimages imagickdraw_affine imagickdraw_annotation imagickdraw_arc imagickdraw_bezier imagickdraw_circle imagickdraw_clear imagickdraw_clone imagickdraw_color imagickdraw_comment imagickdraw_composite imagickdraw_construct imagickdraw_destroy imagickdraw_ellipse imagickdraw_getclippath imagickdraw_getcliprule imagickdraw_getclipunits imagickdraw_getfillcolor imagickdraw_getfillopacity imagickdraw_getfillrule imagickdraw_getfont imagickdraw_getfontfamily imagickdraw_getfontsize imagickdraw_getfontstyle imagickdraw_getfontweight imagickdraw_getgravity imagickdraw_getstrokeantialias imagickdraw_getstrokecolor imagickdraw_getstrokedasharray imagickdraw_getstrokedashoffset imagickdraw_getstrokelinecap imagickdraw_getstrokelinejoin imagickdraw_getstrokemiterlimit imagickdraw_getstrokeopacity imagickdraw_getstrokewidth imagickdraw_gettextalignment imagickdraw_gettextantialias imagickdraw_gettextdecoration imagickdraw_gettextencoding imagickdraw_gettextundercolor imagickdraw_getvectorgraphics imagickdraw_line imagickdraw_matte imagickdraw_pathclose imagickdraw_pathcurvetoabsolute imagickdraw_pathcurvetoquadraticbezierabsolute imagickdraw_pathcurvetoquadraticbezierrelative imagickdraw_pathcurvetoquadraticbeziersmoothabsolute imagickdraw_pathcurvetoquadraticbeziersmoothrelative imagickdraw_pathcurvetorelative imagickdraw_pathcurvetosmoothabsolute imagickdraw_pathcurvetosmoothrelative imagickdraw_pathellipticarcabsolute imagickdraw_pathellipticarcrelative imagickdraw_pathfinish imagickdraw_pathlinetoabsolute imagickdraw_pathlinetohorizontalabsolute imagickdraw_pathlinetohorizontalrelative imagickdraw_pathlinetorelative imagickdraw_pathlinetoverticalabsolute imagickdraw_pathlinetoverticalrelative imagickdraw_pathmovetoabsolute imagickdraw_pathmovetorelative imagickdraw_pathstart imagickdraw_point imagickdraw_polygon imagickdraw_polyline imagickdraw_pop imagickdraw_popclippath imagickdraw_popdefs imagickdraw_poppattern imagickdraw_push imagickdraw_pushclippath imagickdraw_pushdefs imagickdraw_pushpattern imagickdraw_rectangle imagickdraw_render imagickdraw_rotate imagickdraw_roundrectangle imagickdraw_scale imagickdraw_setclippath imagickdraw_setcliprule imagickdraw_setclipunits imagickdraw_setfillalpha imagickdraw_setfillcolor imagickdraw_setfillopacity imagickdraw_setfillpatternurl imagickdraw_setfillrule imagickdraw_setfont imagickdraw_setfontfamily imagickdraw_setfontsize imagickdraw_setfontstretch imagickdraw_setfontstyle imagickdraw_setfontweight imagickdraw_setgravity imagickdraw_setstrokealpha imagickdraw_setstrokeantialias imagickdraw_setstrokecolor imagickdraw_setstrokedasharray imagickdraw_setstrokedashoffset imagickdraw_setstrokelinecap imagickdraw_setstrokelinejoin imagickdraw_setstrokemiterlimit imagickdraw_setstrokeopacity imagickdraw_setstrokepatternurl imagickdraw_setstrokewidth imagickdraw_settextalignment imagickdraw_settextantialias imagickdraw_settextdecoration imagickdraw_settextencoding imagickdraw_settextundercolor imagickdraw_setvectorgraphics imagickdraw_setviewbox imagickdraw_skewx imagickdraw_skewy imagickdraw_translate imagickpixel_clear imagickpixel_construct imagickpixel_destroy imagickpixel_getcolor imagickpixel_getcolorasstring imagickpixel_getcolorcount imagickpixel_getcolorvalue imagickpixel_gethsl imagickpixel_issimilar imagickpixel_setcolor imagickpixel_setcolorvalue imagickpixel_sethsl imagickpixeliterator_clear imagickpixeliterator_construct imagickpixeliterator_destroy imagickpixeliterator_getcurrentiteratorrow imagickpixeliterator_getiteratorrow imagickpixeliterator_getnextiteratorrow imagickpixeliterator_getpreviousiteratorrow imagickpixeliterator_newpixeliterator imagickpixeliterator_newpixelregioniterator imagickpixeliterator_resetiterator imagickpixeliterator_setiteratorfirstrow imagickpixeliterator_setiteratorlastrow imagickpixeliterator_setiteratorrow imagickpixeliterator_synciterator contained syn keyword phpMethods adaptiveBlurImage adaptiveResizeImage adaptiveSharpenImage adaptiveThresholdImage addImage addNoiseImage affineTransformImage annotateImage appendImages averageImages blackThresholdImage blurImage borderImage charcoalImage chopImage clear clipImage clipPathImage clone clutImage coalesceImages colorFloodfillImage colorizeImage combineImages commentImage compareImageChannels compareImageLayers compareImages compositeImage contrastImage contrastStretchImage convolveImage cropImage cropThumbnailImage current cycleColormapImage deconstructImages despeckleImage destroy displayImage displayImages distortImage drawImage edgeImage embossImage enhanceImage equalizeImage evaluateImage flattenImages flipImage flopImage frameImage fxImage gammaImage gaussianBlurImage getCompression getCompressionQuality getCopyright getFilename getFormat getHomeURL getImage getImageBackgroundColor getImageBlob getImageBluePrimary getImageBorderColor getImageChannelDepth getImageChannelDistortion getImageChannelExtrema getImageChannelMean getImageChannelStatistics getImageColormapColor getImageColors getImageColorspace getImageCompose getImageDelay getImageDepth getImageDispose getImageDistortion getImageExtrema getImageFilename getImageFormat getImageGamma getImageGeometry getImageGreenPrimary getImageHeight getImageHistogram getImageIndex getImageInterlaceScheme getImageInterpolateMethod getImageIterations getImageLength getImageMagickLicense getImageMatte getImageMatteColor getImageOrientation getImagePage getImagePixelColor getImageProfile getImageProfiles getImageProperties getImageProperty getImageRedPrimary getImageRegion getImageRenderingIntent getImageResolution getImageScene getImageSignature getImageSize getImageTicksPerSecond getImageTotalInkDensity getImageType getImageUnits getImageVirtualPixelMethod getImageWhitePoint getImageWidth getInterlaceScheme getIteratorIndex getNumberImages getOption getPackageName getPage getPixelIterator getPixelRegionIterator getQuantumDepth getQuantumRange getReleaseDate getResource getResourceLimit getSamplingFactors getSize getSizeOffset getVersion hasNextImage hasPreviousImage identifyImage implodeImage labelImage levelImage linearStretchImage magnifyImage mapImage matteFloodfillImage medianFilterImage minifyImage modulateImage montageImage morphImages mosaicImages motionBlurImage negateImage newImage newPseudoImage nextImage normalizeImage oilPaintImage optimizeImageLayers colorFloodfillImage paintOpaqueImage paintTransparentImage pingImage pingImageBlob pingImageFile polaroidImage posterizeImage previewImages previousImage profileImage quantizeImage quantizeImages queryFontMetrics queryFonts queryFormats radialBlurImage raiseImage randomThresholdImage readImage readImageBlob readImageFile reduceNoiseImage removeImage removeImageProfile render resampleImage resizeImage rollImage rotateImage roundCorners sampleImage scaleImage separateImageChannel sepiaToneImage setBackgroundColor setCompression setCompressionQuality setFilename setFirstIterator setFont setFormat setImage setImageBackgroundColor setImageBias setImageBluePrimary setImageBorderColor setImageChannelDepth setImageColormapColor setImageColorspace setImageCompose setImageCompression setImageDelay setImageDepth setImageDispose setImageExtent setImageFilename setImageFormat setImageGamma setImageGreenPrimary setImageIndex setImageInterlaceScheme setImageInterpolateMethod setImageIterations setImageMatte setImageMatteColor setImageOpacity setImageOrientation setImagePage setImageProfile setImageProperty setImageRedPrimary setImageRenderingIntent setImageResolution setImageScene setImageTicksPerSecond setImageType setImageUnits setImageVirtualPixelMethod setImageWhitePoint setInterlaceScheme setIteratorIndex setLastIterator setOption setPage setResolution setResourceLimit setSamplingFactors setSize setSizeOffset setType shadeImage shadowImage sharpenImage shaveImage shearImage sigmoidalContrastImage sketchImage solarizeImage spliceImage spreadImage steganoImage stereoImage stripImage swirlImage textureImage thresholdImage thumbnailImage tintImage transformImage transverseImage trimImage uniqueImageColors unsharpMaskImage valid vignetteImage waveImage whiteThresholdImage writeImage writeImages affine annotation arc bezier circle clear clone color comment composite destroy ellipse getClipPath getClipRule getClipUnits getFillColor getFillOpacity getFillRule getFont getFontFamily getFontSize getFontStyle getFontWeight getGravity getStrokeAntialias getStrokeColor getStrokeDashArray getStrokeDashOffset getStrokeLineCap getStrokeLineJoin getStrokeMiterLimit getStrokeOpacity getStrokeWidth getTextAlignment getTextAntialias getTextDecoration getTextEncoding getTextUnderColor getVectorGraphics line matte pathClose pathCurveToAbsolute pathCurveToQuadraticBezierAbsolute pathCurveToQuadraticBezierRelative pathCurveToQuadraticBezierSmoothAbsolute pathCurveToQuadraticBezierSmoothRelative pathCurveToRelative pathCurveToSmoothAbsolute pathCurveToSmoothRelative pathEllipticArcAbsolute pathEllipticArcRelative pathFinish pathLineToAbsolute pathLineToHorizontalAbsolute pathLineToHorizontalRelative pathLineToRelative pathLineToVerticalAbsolute pathLineToVerticalRelative pathMoveToAbsolute pathMoveToRelative pathStart point polygon polyline pop popClipPath popDefs popPattern push pushClipPath pushDefs pushPattern rectangle render rotate roundRectangle scale setClipPath setClipRule setClipUnits setFillAlpha setFillColor setFillOpacity setFillPatternURL setFillRule setFont setFontFamily setFontSize setFontStretch setFontStyle setFontWeight setGravity setStrokeAlpha setStrokeAntialias setStrokeColor setStrokeDashArray setStrokeDashOffset setStrokeLineCap setStrokeLineJoin setStrokeMiterLimit setStrokeOpacity setStrokePatternURL setStrokeWidth setTextAlignment setTextAntialias setTextDecoration setTextEncoding setTextUnderColor setVectorGraphics setViewbox skewX skewY translate clear destroy getColor getColorAsString getColorCount getColorValue getHSL isSimilar setColor setColorValue setHSL clear destroy getCurrentIteratorRow getIteratorRow getNextIteratorRow getPreviousIteratorRow newPixelIterator newPixelRegionIterator resetIterator setIteratorFirstRow setIteratorLastRow setIteratorRow syncIterator contained syn keyword phpFunctions imap_8bit imap_alerts imap_append imap_base64 imap_binary imap_body imap_bodystruct imap_check imap_clearflag_full imap_close imap_createmailbox imap_delete imap_deletemailbox imap_errors imap_expunge imap_fetch_overview imap_fetchbody imap_fetchheader imap_fetchstructure imap_get_quota imap_get_quotaroot imap_getacl imap_getmailboxes imap_getsubscribed imap_header imap_headerinfo imap_headers imap_last_error imap_list imap_listmailbox imap_listscan imap_listsubscribed imap_lsub imap_mail_compose imap_mail_copy imap_mail_move imap_mail imap_mailboxmsginfo imap_mime_header_decode imap_msgno imap_num_msg imap_num_recent imap_open imap_ping imap_qprint imap_renamemailbox imap_reopen imap_rfc822_parse_adrlist imap_rfc822_parse_headers imap_rfc822_write_address imap_savebody imap_scanmailbox imap_search imap_set_quota imap_setacl imap_setflag_full imap_sort imap_status imap_subscribe imap_thread imap_timeout imap_uid imap_undelete imap_unsubscribe imap_utf7_decode imap_utf7_encode imap_utf8 contained syn keyword phpFunctions inclued_get_data contained syn keyword phpFunctions assert_options assert dl extension_loaded get_cfg_var get_current_user get_defined_constants get_extension_funcs get_include_path get_included_files get_loaded_extensions get_magic_quotes_gpc get_magic_quotes_runtime get_required_files getenv getlastmod getmygid getmyinode getmypid getmyuid getopt getrusage ini_alter ini_get_all ini_get ini_restore ini_set main memory_get_peak_usage memory_get_usage php_ini_loaded_file php_ini_scanned_files php_logo_guid php_sapi_name php_uname phpcredits phpinfo phpversion putenv restore_include_path set_include_path set_magic_quotes_runtime set_time_limit sys_get_temp_dir version_compare zend_logo_guid zend_thread_id zend_version contained syn keyword phpFunctions ingres_autocommit ingres_close ingres_commit ingres_connect ingres_cursor ingres_errno ingres_error ingres_errsqlstate ingres_fetch_array ingres_fetch_object ingres_fetch_row ingres_field_length ingres_field_name ingres_field_nullable ingres_field_precision ingres_field_scale ingres_field_type ingres_num_fields ingres_num_rows ingres_pconnect ingres_query ingres_rollback contained syn keyword phpFunctions inotify_add_watch inotify_init inotify_queue_len inotify_read inotify_rm_watch contained syn keyword phpFunctions grapheme_extract grapheme_stripos grapheme_stristr grapheme_strlen grapheme_strpos grapheme_strripos grapheme_strrpos grapheme_strstr grapheme_substr intl_error_name intl_get_error_code intl_get_error_message intl_is_failure contained syn keyword phpMethods asort compare create getAttribute getErrorCode getErrorMessage getLocale getStrength setAttribute setStrength sortWithSortKeys sort create formatCurrency format getAttribute getErrorCode getErrorMessage getLocale getPattern getSymbol getTextAttribute parseCurrency parse setAttribute setPattern setSymbol setTextAttribute acceptFromHttp composeLocale filterMatches getAllVariants getDefault getDisplayLanguage getDisplayName getDisplayRegion getDisplayScript getDisplayVariant getKeywords getPrimaryLanguage getRegion getScript lookup parseLocale setDefault isNormalized normalize create formatMessage format getErrorCode getErrorMessage getLocale getPattern parseMessage parse setPattern create format getCalendar getDateType getErrorCode getErrorMessage getLocale getPattern getTimeType getTimeZoneId isLenient localtime parse setCalendar setLenient setPattern setTimeZoneId contained syn keyword phpFunctions java_last_exception_clear java_last_exception_get contained syn keyword phpFunctions json_decode json_encode contained syn keyword phpFunctions kadm5_chpass_principal kadm5_create_principal kadm5_delete_principal kadm5_destroy kadm5_flush kadm5_get_policies kadm5_get_principal kadm5_get_principals kadm5_init_with_password kadm5_modify_principal contained syn keyword phpFunctions ldap_8859_to_t61 ldap_add ldap_bind ldap_close ldap_compare ldap_connect ldap_count_entries ldap_delete ldap_dn2ufn ldap_err2str ldap_errno ldap_error ldap_explode_dn ldap_first_attribute ldap_first_entry ldap_first_reference ldap_free_result ldap_get_attributes ldap_get_dn ldap_get_entries ldap_get_option ldap_get_values_len ldap_get_values ldap_list ldap_mod_add ldap_mod_del ldap_mod_replace ldap_modify ldap_next_attribute ldap_next_entry ldap_next_reference ldap_parse_reference ldap_parse_result ldap_read ldap_rename ldap_sasl_bind ldap_search ldap_set_option ldap_set_rebind_proc ldap_sort ldap_start_tls ldap_t61_to_8859 ldap_unbind contained syn keyword phpFunctions libxml_clear_errors libxml_get_errors libxml_get_last_error libxml_set_streams_context libxml_use_internal_errors contained syn keyword phpFunctions lzf_compress lzf_decompress lzf_optimized_for contained syn keyword phpFunctions ezmlm_hash mail contained syn keyword phpFunctions mailparse_determine_best_xfer_encoding mailparse_msg_create mailparse_msg_extract_part_file mailparse_msg_extract_part mailparse_msg_extract_whole_part_file mailparse_msg_free mailparse_msg_get_part_data mailparse_msg_get_part mailparse_msg_get_structure mailparse_msg_parse_file mailparse_msg_parse mailparse_rfc822_parse_addresses mailparse_stream_encode mailparse_uudecode_all contained syn keyword phpFunctions abs acos acosh asin asinh atan2 atan atanh base_convert bindec ceil cos cosh decbin dechex decoct deg2rad exp expm1 floor fmod getrandmax hexdec hypot is_finite is_infinite is_nan lcg_value log10 log1p log max min mt_getrandmax mt_rand mt_srand octdec pi pow rad2deg rand round sin sinh sqrt srand tan tanh contained syn keyword phpFunctions maxdb_affected_rows maxdb_autocommit maxdb_bind_param maxdb_bind_result maxdb_change_user maxdb_character_set_name maxdb_client_encoding maxdb_close_long_data maxdb_close maxdb_commit maxdb_connect_errno maxdb_connect_error maxdb_connect maxdb_data_seek maxdb_debug maxdb_disable_reads_from_master maxdb_disable_rpl_parse maxdb_dump_debug_info maxdb_embedded_connect maxdb_enable_reads_from_master maxdb_enable_rpl_parse maxdb_errno maxdb_error maxdb_escape_string maxdb_execute maxdb_fetch_array maxdb_fetch_assoc maxdb_fetch_field_direct maxdb_fetch_field maxdb_fetch_fields maxdb_fetch_lengths maxdb_fetch_object maxdb_fetch_row maxdb_fetch maxdb_field_count maxdb_field_seek maxdb_field_tell maxdb_free_result maxdb_get_client_info maxdb_get_client_version maxdb_get_host_info maxdb_get_metadata maxdb_get_proto_info maxdb_get_server_info maxdb_get_server_version maxdb_info maxdb_init maxdb_insert_id maxdb_kill maxdb_master_query maxdb_more_results maxdb_multi_query maxdb_next_result maxdb_num_fields maxdb_num_rows maxdb_options maxdb_param_count maxdb_ping maxdb_prepare maxdb_query maxdb_real_connect maxdb_real_escape_string maxdb_real_query maxdb_report maxdb_rollback maxdb_rpl_parse_enabled maxdb_rpl_probe maxdb_rpl_query_type maxdb_select_db maxdb_send_long_data maxdb_send_query maxdb_server_end maxdb_server_init maxdb_set_opt maxdb_sqlstate maxdb_ssl_set maxdb_stat maxdb_stmt_affected_rows maxdb_stmt_bind_param maxdb_stmt_bind_result maxdb_stmt_close_long_data maxdb_stmt_close maxdb_stmt_data_seek maxdb_stmt_errno maxdb_stmt_error maxdb_stmt_execute maxdb_stmt_fetch maxdb_stmt_free_result maxdb_stmt_init maxdb_stmt_num_rows maxdb_stmt_param_count maxdb_stmt_prepare maxdb_stmt_reset maxdb_stmt_result_metadata maxdb_stmt_send_long_data maxdb_stmt_sqlstate maxdb_stmt_store_result maxdb_store_result maxdb_thread_id maxdb_thread_safe maxdb_use_result maxdb_warning_count contained syn keyword phpFunctions mb_check_encoding mb_convert_case mb_convert_encoding mb_convert_kana mb_convert_variables mb_decode_mimeheader mb_decode_numericentity mb_detect_encoding mb_detect_order mb_encode_mimeheader mb_encode_numericentity mb_ereg_match mb_ereg_replace mb_ereg_search_getpos mb_ereg_search_getregs mb_ereg_search_init mb_ereg_search_pos mb_ereg_search_regs mb_ereg_search_setpos mb_ereg_search mb_ereg mb_eregi_replace mb_eregi mb_get_info mb_http_input mb_http_output mb_internal_encoding mb_language mb_list_encodings mb_output_handler mb_parse_str mb_preferred_mime_name mb_regex_encoding mb_regex_set_options mb_send_mail mb_split mb_strcut mb_strimwidth mb_stripos mb_stristr mb_strlen mb_strpos mb_strrchr mb_strrichr mb_strripos mb_strrpos mb_strstr mb_strtolower mb_strtoupper mb_strwidth mb_substitute_character mb_substr_count mb_substr contained syn keyword phpFunctions mcrypt_cbc mcrypt_cfb mcrypt_create_iv mcrypt_decrypt mcrypt_ecb mcrypt_enc_get_algorithms_name mcrypt_enc_get_block_size mcrypt_enc_get_iv_size mcrypt_enc_get_key_size mcrypt_enc_get_modes_name mcrypt_enc_get_supported_key_sizes mcrypt_enc_is_block_algorithm_mode mcrypt_enc_is_block_algorithm mcrypt_enc_is_block_mode mcrypt_enc_self_test mcrypt_encrypt mcrypt_generic_deinit mcrypt_generic_end mcrypt_generic_init mcrypt_generic mcrypt_get_block_size mcrypt_get_cipher_name mcrypt_get_iv_size mcrypt_get_key_size mcrypt_list_algorithms mcrypt_list_modes mcrypt_module_close mcrypt_module_get_algo_block_size mcrypt_module_get_algo_key_size mcrypt_module_get_supported_key_sizes mcrypt_module_is_block_algorithm_mode mcrypt_module_is_block_algorithm mcrypt_module_is_block_mode mcrypt_module_open mcrypt_module_self_test mcrypt_ofb mdecrypt_generic contained syn keyword phpFunctions m_checkstatus m_completeauthorizations m_connect m_connectionerror m_deletetrans m_destroyconn m_destroyengine m_getcell m_getcellbynum m_getcommadelimited m_getheader m_initconn m_initengine m_iscommadelimited m_maxconntimeout m_monitor m_numcolumns m_numrows m_parsecommadelimited m_responsekeys m_responseparam m_returnstatus m_setblocking m_setdropfile m_setip m_setssl_cafile m_setssl_files m_setssl m_settimeout m_sslcert_gen_hash m_transactionssent m_transinqueue m_transkeyval m_transnew m_transsend m_uwait m_validateidentifier m_verifyconnection m_verifysslcert contained syn keyword phpFunctions memcache_add memcache_addserver memcache_close memcache_connect memcache_debug memcache_decrement memcache_delete memcache_flush memcache_get memcache_getextendedstats memcache_getserverstatus memcache_getstats memcache_getversion memcache_increment memcache_pconnect memcache_replace memcache_set memcache_setcompressthreshold memcache_setserverparams contained syn keyword phpMethods add addServer close connect decrement delete flush get getExtendedStats getServerStatus getStats getVersion increment pconnect replace set setCompressThreshold setServerParams contained syn keyword phpFunctions mhash_count mhash_get_block_size mhash_get_hash_name mhash_keygen_s2k mhash contained syn keyword phpFunctions mime_content_type contained syn keyword phpFunctions ming_keypress ming_setcubicthreshold ming_setscale ming_setswfcompression ming_useconstants ming_useswfversion contained syn keyword phpMethods getHeight getWidth addAction addASound addShape setAction setDown setHit setMenu setOver setUp addAction addColor endMask getRot getX getXScale getXSkew getY getYScale getYSkew move moveTo multColor remove rotate rotateTo scale scaleTo setDepth setMaskLevel setMatrix setName setRatio skewX skewXTo skewY skewYTo moveTo rotateTo scaleTo skewXTo skewYTo getAscent getDescent getLeading getShape getUTF8Width getWidth addChars addUTF8Chars addEntry getShape1 getShape2 add addExport addFont importChar importFont labelFrame nextFrame output remove save saveToFile setbackground setDimension setFrames setRate startSound stopSound streamMP3 writeExports addFill drawArc drawCircle drawCubic drawCubicTo drawCurve drawCurveTo drawGlyph drawLine drawLineTo movePen movePenTo setLeftFill setLine setRightFill loopCount loopInPoint loopOutPoint noMultiple add labelFrame nextFrame remove setFrames startSound stopSound addString addUTF8String getAscent getDescent getLeading getUTF8Width getWidth moveTo setColor setFont setHeight setSpacing addChars addString align setBounds setColor setFont setHeight setIndentation setLeftMargin setLineSpacing setMargins setName setPadding setRightMargin getNumFrames setDimension contained syn keyword phpFunctions connection_aborted connection_status connection_timeout constant define defined die eval exit get_browser halt_compiler highlight_file highlight_string ignore_user_abort pack php_check_syntax php_strip_whitespace show_source sleep sys_getloadavg time_nanosleep time_sleep_until uniqid unpack usleep contained syn keyword phpFunctions udm_add_search_limit udm_alloc_agent_array udm_alloc_agent udm_api_version udm_cat_list udm_cat_path udm_check_charset udm_check_stored udm_clear_search_limits udm_close_stored udm_crc32 udm_errno udm_error udm_find udm_free_agent udm_free_ispell_data udm_free_res udm_get_doc_count udm_get_res_field udm_get_res_param udm_hash32 udm_load_ispell_data udm_open_stored udm_set_agent_param contained syn keyword phpFunctions mqseries_back mqseries_begin mqseries_close mqseries_cmit mqseries_conn mqseries_connx mqseries_disc mqseries_get mqseries_inq mqseries_open mqseries_put1 mqseries_put mqseries_set mqseries_strerror contained syn keyword phpFunctions msession_connect msession_count msession_create msession_destroy msession_disconnect msession_find msession_get_array msession_get_data msession_get msession_inc msession_list msession_listvar msession_lock msession_plugin msession_randstr msession_set_array msession_set_data msession_set msession_timeout msession_uniq msession_unlock contained syn keyword phpFunctions msql_affected_rows msql_close msql_connect msql_create_db msql_createdb msql_data_seek msql_db_query msql_dbname msql_drop_db msql_error msql_fetch_array msql_fetch_field msql_fetch_object msql_fetch_row msql_field_flags msql_field_len msql_field_name msql_field_seek msql_field_table msql_field_type msql_fieldflags msql_fieldlen msql_fieldname msql_fieldtable msql_fieldtype msql_free_result msql_list_dbs msql_list_fields msql_list_tables msql_num_fields msql_num_rows msql_numfields msql_numrows msql_pconnect msql_query msql_regcase msql_result msql_select_db msql_tablename msql contained syn keyword phpFunctions mssql_bind mssql_close mssql_connect mssql_data_seek mssql_execute mssql_fetch_array mssql_fetch_assoc mssql_fetch_batch mssql_fetch_field mssql_fetch_object mssql_fetch_row mssql_field_length mssql_field_name mssql_field_seek mssql_field_type mssql_free_result mssql_free_statement mssql_get_last_message mssql_guid_string mssql_init mssql_min_error_severity mssql_min_message_severity mssql_next_result mssql_num_fields mssql_num_rows mssql_pconnect mssql_query mssql_result mssql_rows_affected mssql_select_db contained syn keyword phpFunctions mysql_affected_rows mysql_change_user mysql_client_encoding mysql_close mysql_connect mysql_create_db mysql_data_seek mysql_db_name mysql_db_query mysql_drop_db mysql_errno mysql_error mysql_escape_string mysql_fetch_array mysql_fetch_assoc mysql_fetch_field mysql_fetch_lengths mysql_fetch_object mysql_fetch_row mysql_field_flags mysql_field_len mysql_field_name mysql_field_seek mysql_field_table mysql_field_type mysql_free_result mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql_insert_id mysql_list_dbs mysql_list_fields mysql_list_processes mysql_list_tables mysql_num_fields mysql_num_rows mysql_pconnect mysql_ping mysql_query mysql_real_escape_string mysql_result mysql_select_db mysql_set_charset mysql_stat mysql_tablename mysql_thread_id mysql_unbuffered_query contained syn keyword phpFunctions mysqli_bind_param mysqli_bind_result mysqli_client_encoding mysqli_disable_reads_from_master mysqli_disable_rpl_parse mysqli_enable_reads_from_master mysqli_enable_rpl_parse mysqli_escape_string mysqli_execute mysqli_fetch mysqli_get_metadata mysqli_master_query mysqli_param_count mysqli_report mysqli_rpl_parse_enabled mysqli_rpl_probe mysqli_rpl_query_type mysqli_send_long_data mysqli_send_query mysqli_set_opt mysqli_slave_query contained syn keyword phpMethods affected_rows autocommit change_user character_set_name close commit connect_errno connect_error debug dump_debug_info errno error field_count get_charset get_client_info get_client_version host_info protocol_version server_info server_version get_warnings info init insert_id kill more_results multi_query next_result options ping prepare query real_connect real_escape_string real_query rollback select_db set_charset set_local_infile_default set_local_infile_handler sqlstate ssl_set stat stmt_init store_result thread_id thread_safe use_result warning_count affected_rows attr_get attr_set bind_param bind_result close data_seek errno error execute fetch field_count free_result get_warnings insert_id num_rows param_count prepare reset result_metadata send_long_data sqlstate store_result current_field data_seek fetch_all fetch_array fetch_assoc fetch_field_direct fetch_field fetch_fields fetch_object fetch_row field_count field_seek free lengths num_rows embedded_server_end embedded_server_start contained syn keyword phpFunctions ncurses_addch ncurses_addchnstr ncurses_addchstr ncurses_addnstr ncurses_addstr ncurses_assume_default_colors ncurses_attroff ncurses_attron ncurses_attrset ncurses_baudrate ncurses_beep ncurses_bkgd ncurses_bkgdset ncurses_border ncurses_bottom_panel ncurses_can_change_color ncurses_cbreak ncurses_clear ncurses_clrtobot ncurses_clrtoeol ncurses_color_content ncurses_color_set ncurses_curs_set ncurses_def_prog_mode ncurses_def_shell_mode ncurses_define_key ncurses_del_panel ncurses_delay_output ncurses_delch ncurses_deleteln ncurses_delwin ncurses_doupdate ncurses_echo ncurses_echochar ncurses_end ncurses_erase ncurses_erasechar ncurses_filter ncurses_flash ncurses_flushinp ncurses_getch ncurses_getmaxyx ncurses_getmouse ncurses_getyx ncurses_halfdelay ncurses_has_colors ncurses_has_ic ncurses_has_il ncurses_has_key ncurses_hide_panel ncurses_hline ncurses_inch ncurses_init_color ncurses_init_pair ncurses_init ncurses_insch ncurses_insdelln ncurses_insertln ncurses_insstr ncurses_instr ncurses_isendwin ncurses_keyok ncurses_keypad ncurses_killchar ncurses_longname ncurses_meta ncurses_mouse_trafo ncurses_mouseinterval ncurses_mousemask ncurses_move_panel ncurses_move ncurses_mvaddch ncurses_mvaddchnstr ncurses_mvaddchstr ncurses_mvaddnstr ncurses_mvaddstr ncurses_mvcur ncurses_mvdelch ncurses_mvgetch ncurses_mvhline ncurses_mvinch ncurses_mvvline ncurses_mvwaddstr ncurses_napms ncurses_new_panel ncurses_newpad ncurses_newwin ncurses_nl ncurses_nocbreak ncurses_noecho ncurses_nonl ncurses_noqiflush ncurses_noraw ncurses_pair_content ncurses_panel_above ncurses_panel_below ncurses_panel_window ncurses_pnoutrefresh ncurses_prefresh ncurses_putp ncurses_qiflush ncurses_raw ncurses_refresh ncurses_replace_panel ncurses_reset_prog_mode ncurses_reset_shell_mode ncurses_resetty ncurses_savetty ncurses_scr_dump ncurses_scr_init ncurses_scr_restore ncurses_scr_set ncurses_scrl ncurses_show_panel ncurses_slk_attr ncurses_slk_attroff ncurses_slk_attron ncurses_slk_attrset ncurses_slk_clear ncurses_slk_color ncurses_slk_init ncurses_slk_noutrefresh ncurses_slk_refresh ncurses_slk_restore ncurses_slk_set ncurses_slk_touch ncurses_standend ncurses_standout ncurses_start_color ncurses_termattrs ncurses_termname ncurses_timeout ncurses_top_panel ncurses_typeahead ncurses_ungetch ncurses_ungetmouse ncurses_update_panels ncurses_use_default_colors ncurses_use_env ncurses_use_extended_names ncurses_vidattr ncurses_vline ncurses_waddch ncurses_waddstr ncurses_wattroff ncurses_wattron ncurses_wattrset ncurses_wborder ncurses_wclear ncurses_wcolor_set ncurses_werase ncurses_wgetch ncurses_whline ncurses_wmouse_trafo ncurses_wmove ncurses_wnoutrefresh ncurses_wrefresh ncurses_wstandend ncurses_wstandout ncurses_wvline contained syn keyword phpFunctions gopher_parsedir contained syn keyword phpFunctions checkdnsrr closelog define_syslog_variables dns_check_record dns_get_mx dns_get_record fsockopen gethostbyaddr gethostbyname gethostbynamel getmxrr getprotobyname getprotobynumber getservbyname getservbyport header headers_list headers_sent inet_ntop inet_pton ip2long long2ip openlog pfsockopen setcookie setrawcookie socket_get_status socket_set_blocking socket_set_timeout syslog contained syn keyword phpFunctions newt_bell newt_button_bar newt_button newt_centered_window newt_checkbox_get_value newt_checkbox_set_flags newt_checkbox_set_value newt_checkbox_tree_add_item newt_checkbox_tree_find_item newt_checkbox_tree_get_current newt_checkbox_tree_get_entry_value newt_checkbox_tree_get_multi_selection newt_checkbox_tree_get_selection newt_checkbox_tree_multi newt_checkbox_tree_set_current newt_checkbox_tree_set_entry_value newt_checkbox_tree_set_entry newt_checkbox_tree_set_width newt_checkbox_tree newt_checkbox newt_clear_key_buffer newt_cls newt_compact_button newt_component_add_callback newt_component_takes_focus newt_create_grid newt_cursor_off newt_cursor_on newt_delay newt_draw_form newt_draw_root_text newt_entry_get_value newt_entry_set_filter newt_entry_set_flags newt_entry_set newt_entry newt_finished newt_form_add_component newt_form_add_components newt_form_add_hot_key newt_form_destroy newt_form_get_current newt_form_run newt_form_set_background newt_form_set_height newt_form_set_size newt_form_set_timer newt_form_set_width newt_form_watch_fd newt_form newt_get_screen_size newt_grid_add_components_to_form newt_grid_basic_window newt_grid_free newt_grid_get_size newt_grid_h_close_stacked newt_grid_h_stacked newt_grid_place newt_grid_set_field newt_grid_simple_window newt_grid_v_close_stacked newt_grid_v_stacked newt_grid_wrapped_window_at newt_grid_wrapped_window newt_init newt_label_set_text newt_label newt_listbox_append_entry newt_listbox_clear_selection newt_listbox_clear newt_listbox_delete_entry newt_listbox_get_current newt_listbox_get_selection newt_listbox_insert_entry newt_listbox_item_count newt_listbox_select_item newt_listbox_set_current_by_key newt_listbox_set_current newt_listbox_set_data newt_listbox_set_entry newt_listbox_set_width newt_listbox newt_listitem_get_data newt_listitem_set newt_listitem newt_open_window newt_pop_help_line newt_pop_window newt_push_help_line newt_radio_get_current newt_radiobutton newt_redraw_help_line newt_reflow_text newt_refresh newt_resize_screen newt_resume newt_run_form newt_scale_set newt_scale newt_scrollbar_set newt_set_help_callback newt_set_suspend_callback newt_suspend newt_textbox_get_num_lines newt_textbox_reflowed newt_textbox_set_height newt_textbox_set_text newt_textbox newt_vertical_scrollbar newt_wait_for_key newt_win_choice newt_win_entries newt_win_menu newt_win_message newt_win_messagev newt_win_ternary contained syn keyword phpFunctions yp_all yp_cat yp_err_string yp_errno yp_first yp_get_default_domain yp_master yp_match yp_next yp_order contained syn keyword phpFunctions notes_body notes_copy_db notes_create_db notes_create_note notes_drop_db notes_find_note notes_header_info notes_list_msgs notes_mark_read notes_mark_unread notes_nav_create notes_search notes_unread notes_version contained syn keyword phpFunctions nsapi_request_headers nsapi_response_headers nsapi_virtual contained syn keyword phpFunctions aggregate_info aggregate_methods_by_list aggregate_methods_by_regexp aggregate_methods aggregate_properties_by_list aggregate_properties_by_regexp aggregate_properties aggregate aggregation_info deaggregate contained syn keyword phpFunctions oci_bind_array_by_name oci_bind_by_name oci_cancel oci_close oci_collection_append oci_collection_assign oci_collection_element_assign oci_collection_free oci_collection_element_get oci_collection_max oci_collection_size oci_collection_trim oci_commit oci_connect oci_define_by_name oci_error oci_execute oci_fetch_all oci_fetch_array oci_fetch_assoc oci_fetch_object oci_fetch_row oci_fetch oci_field_is_null oci_field_name oci_field_precision oci_field_scale oci_field_size oci_field_type_raw oci_field_type oci_free_statement oci_internal_debug oci_lob_append oci_lob_close oci_lob_copy oci_lob_eof oci_lob_erase oci_lob_export oci_lob_flush oci_lob_free oci_lob_getbuffering oci_lob_import oci_lob_is_equal oci_lob_load oci_lob_read oci_lob_rewind oci_lob_save oci_lob_savefile oci_lob_seek oci_lob_setbuffering oci_lob_size oci_lob_tell oci_lob_truncate oci_lob_write oci_lob_writetemporary oci_lob_writetofile oci_new_collection oci_new_connect oci_new_cursor oci_new_descriptor oci_num_fields oci_num_rows oci_parse oci_password_change oci_pconnect oci_result oci_rollback oci_server_version oci_set_prefetch oci_statement_type ocibindbyname ocicancel ocicloselob 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 ociwritetemporarylob contained syn keyword phpMethods append assign assignElem free getElem max size trim contained syn keyword phpFunctions openal_buffer_create openal_buffer_data openal_buffer_destroy openal_buffer_get openal_buffer_loadwav openal_context_create openal_context_current openal_context_destroy openal_context_process openal_context_suspend openal_device_close openal_device_open openal_listener_get openal_listener_set openal_source_create openal_source_destroy openal_source_get openal_source_pause openal_source_play openal_source_rewind openal_source_set openal_source_stop openal_stream contained syn keyword phpFunctions openssl_csr_export_to_file openssl_csr_export openssl_csr_get_public_key openssl_csr_get_subject openssl_csr_new openssl_csr_sign openssl_error_string openssl_free_key openssl_get_privatekey openssl_get_publickey openssl_open openssl_pkcs12_export_to_file openssl_pkcs12_export openssl_pkcs12_read openssl_pkcs7_decrypt openssl_pkcs7_encrypt openssl_pkcs7_sign openssl_pkcs7_verify openssl_pkey_export_to_file openssl_pkey_export openssl_pkey_free openssl_pkey_get_details openssl_pkey_get_private openssl_pkey_get_public openssl_pkey_new openssl_private_decrypt openssl_private_encrypt openssl_public_decrypt openssl_public_encrypt openssl_seal openssl_sign openssl_verify openssl_x509_check_private_key openssl_x509_checkpurpose openssl_x509_export_to_file openssl_x509_export openssl_x509_free openssl_x509_parse openssl_x509_read contained syn keyword phpFunctions flush ob_clean ob_end_clean ob_end_flush ob_flush ob_get_clean ob_get_contents ob_get_flush ob_get_length ob_get_level ob_get_status ob_gzhandler ob_implicit_flush ob_list_handlers ob_start output_add_rewrite_var output_reset_rewrite_vars contained syn keyword phpFunctions overload contained syn keyword phpFunctions ovrimos_close ovrimos_commit ovrimos_connect ovrimos_cursor ovrimos_exec ovrimos_execute ovrimos_fetch_into ovrimos_fetch_row ovrimos_field_len ovrimos_field_name ovrimos_field_num ovrimos_field_type ovrimos_free_result ovrimos_longreadlen ovrimos_num_fields ovrimos_num_rows ovrimos_prepare ovrimos_result_all ovrimos_result ovrimos_rollback contained syn keyword phpFunctions px_close px_create_fp px_date2string px_delete_record px_delete px_get_field px_get_info px_get_parameter px_get_record px_get_schema px_get_value px_insert_record px_new px_numfields px_numrecords px_open_fp px_put_record px_retrieve_record px_set_blob_file px_set_parameter px_set_tablename px_set_targetencoding px_set_value px_timestamp2string px_update_record contained syn keyword phpFunctions parsekit_compile_file parsekit_compile_string parsekit_func_arginfo contained syn keyword phpFunctions pcntl_alarm pcntl_exec pcntl_fork pcntl_getpriority pcntl_setpriority pcntl_signal_dispatch pcntl_signal pcntl_sigprocmask pcntl_sigtimedwait pcntl_sigwaitinfo pcntl_wait pcntl_waitpid pcntl_wexitstatus pcntl_wifexited pcntl_wifsignaled pcntl_wifstopped pcntl_wstopsig pcntl_wtermsig contained syn keyword phpFunctions preg_grep preg_last_error preg_match_all preg_match preg_quote preg_replace_callback preg_replace preg_split contained syn keyword phpFunctions pdf_activate_item pdf_add_annotation pdf_add_bookmark pdf_add_launchlink pdf_add_locallink pdf_add_nameddest pdf_add_note pdf_add_outline pdf_add_pdflink pdf_add_table_cell pdf_add_textflow pdf_add_thumbnail pdf_add_weblink pdf_arc pdf_arcn pdf_attach_file pdf_begin_document pdf_begin_font pdf_begin_glyph pdf_begin_item pdf_begin_layer pdf_begin_page_ext pdf_begin_page pdf_begin_pattern pdf_begin_template_ext pdf_begin_template pdf_circle pdf_clip pdf_close_image pdf_close_pdi_page pdf_close_pdi pdf_close pdf_closepath_fill_stroke pdf_closepath_stroke pdf_closepath pdf_concat pdf_continue_text pdf_create_3dview pdf_create_action pdf_create_annotation pdf_create_bookmark pdf_create_field pdf_create_fieldgroup pdf_create_gstate pdf_create_pvf pdf_create_textflow pdf_curveto pdf_define_layer pdf_delete_pvf pdf_delete_table pdf_delete_textflow pdf_delete pdf_encoding_set_char pdf_end_document pdf_end_font pdf_end_glyph pdf_end_item pdf_end_layer pdf_end_page_ext pdf_end_page pdf_end_pattern pdf_end_template pdf_endpath pdf_fill_imageblock pdf_fill_pdfblock pdf_fill_stroke pdf_fill_textblock pdf_fill pdf_findfont pdf_fit_image pdf_fit_pdi_page pdf_fit_table pdf_fit_textflow pdf_fit_textline pdf_get_apiname pdf_get_buffer pdf_get_errmsg pdf_get_errnum 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_info_font pdf_info_matchbox pdf_info_table pdf_info_textflow pdf_info_textline pdf_initgraphics pdf_lineto pdf_3ddata pdf_load_font pdf_load_iccprofile pdf_load_image pdf_makespotcolor pdf_moveto pdf_new pdf_open_ccitt pdf_open_file pdf_open_gif pdf_open_image_file pdf_open_image pdf_open_jpeg pdf_open_memory_image pdf_open_pdi_page pdf_open_pdi pdf_open_tiff pdf_pcos_get_number pdf_pcos_get_stream pdf_pcos_get_string pdf_place_image pdf_place_pdi_page pdf_process_pdi pdf_rect pdf_restore pdf_resume_page 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_gstate pdf_set_horiz_scaling pdf_set_info_author pdf_set_info_creator pdf_set_info_keywords pdf_set_info_subject pdf_set_info_title pdf_set_info pdf_set_layer_dependency pdf_set_leading pdf_set_parameter pdf_set_text_matrix pdf_set_text_pos pdf_set_text_rendering pdf_set_text_rise pdf_set_value pdf_set_word_spacing pdf_setcolor pdf_setdash pdf_setdashpattern pdf_setflat pdf_setfont pdf_setgray_fill pdf_setgray_stroke pdf_setgray pdf_setlinecap pdf_setlinejoin pdf_setlinewidth pdf_setmatrix pdf_setmiterlimit pdf_setpolydash pdf_setrgbcolor_fill pdf_setrgbcolor_stroke pdf_setrgbcolor pdf_shading_pattern pdf_shading pdf_shfill pdf_show_boxed pdf_show_xy pdf_show pdf_skew pdf_stringwidth pdf_stroke pdf_suspend_page pdf_translate pdf_utf16_to_utf8 pdf_utf32_to_utf16 pdf_utf8_to_utf16 contained syn keyword phpMethods beginTransaction commit errorCode errorInfo exec getAttribute getAvailableDrivers lastInsertId prepare query quote rollBack setAttribute bindColumn bindParam bindValue closeCursor columnCount errorCode errorInfo execute fetch fetchAll fetchColumn fetchObject getAttribute getColumnMeta nextRowset rowCount setAttribute setFetchMode contained syn keyword phpFunctions pg_affected_rows pg_cancel_query pg_client_encoding pg_close pg_connect pg_connection_busy pg_connection_reset pg_connection_status pg_convert pg_copy_from pg_copy_to pg_dbname pg_delete pg_end_copy pg_escape_bytea pg_escape_string pg_execute pg_fetch_all_columns pg_fetch_all pg_fetch_array pg_fetch_assoc pg_fetch_object pg_fetch_result pg_fetch_row pg_field_is_null pg_field_name pg_field_num pg_field_prtlen pg_field_size pg_field_table pg_field_type_oid pg_field_type pg_free_result pg_get_notify pg_get_pid pg_get_result pg_host pg_insert pg_last_error pg_last_notice pg_last_oid pg_lo_close pg_lo_create pg_lo_export pg_lo_import pg_lo_open pg_lo_read_all pg_lo_read pg_lo_seek pg_lo_tell pg_lo_unlink pg_lo_write pg_meta_data pg_num_fields pg_num_rows pg_options pg_parameter_status pg_pconnect pg_ping pg_port pg_prepare pg_put_line pg_query_params pg_query pg_result_error_field pg_result_error pg_result_seek pg_result_status pg_select pg_send_execute pg_send_prepare pg_send_query_params pg_send_query pg_set_client_encoding pg_set_error_verbosity pg_trace pg_transaction_status pg_tty pg_unescape_bytea pg_untrace pg_update pg_version contained syn keyword phpMethods addEmptyDir addFile addFromString apiVersion buildFromDirectory buildFromIterator canCompress canWrite compress compressAllFilesBZIP2 compressAllFilesGZ compressFiles convertToData convertToExecutable copy count createDefaultStub decompress decompressFiles delMetadata delete extractTo getMetaData getModified getSignature getStub getSupportedCompression getSupportedSignatures getVersion hasMetaData interceptFileFuncs isBuffering isCompressed isFileFormat isValidPharFilename isWritable loadPhar mapPhar mount mungServer offsetExists offsetGet offsetSet offsetUnset running setAlias setDefaultStub setMetadata setSignatureAlgorithm setStub startBuffering stopBuffering uncompressAllFiles unlinkArchive webPhar addEmptyDir addFile addFromString buildFromDirectory buildFromIterator compress compressFiles convertToData convertToExecutable copy decompress decompressFiles delMetadata delete extractTo isWritable offsetSet offsetUnset setAlias setDefaultStub setMetadata setSignatureAlgorithm setStub chmod compress decompress delMetadata getCRC32 getCompressedSize getMetaData getPharFlags hasMetadata isCRCChecked isCompressed isCompressedBZIP2 isCompressedGZ setCompressedBZIP2 setCompressedGZ setMetaData setUncompressed contained syn keyword phpFunctions posix_access posix_ctermid posix_get_last_error posix_getcwd posix_getegid posix_geteuid posix_getgid posix_getgrgid posix_getgrnam posix_getgroups posix_getlogin posix_getpgid posix_getpgrp posix_getpid posix_getppid posix_getpwnam posix_getpwuid posix_getrlimit posix_getsid posix_getuid posix_initgroups posix_isatty posix_kill posix_mkfifo posix_mknod posix_setegid posix_seteuid posix_setgid posix_setpgid posix_setsid posix_setuid posix_strerror posix_times posix_ttyname posix_uname contained syn keyword phpFunctions printer_abort printer_close printer_create_brush printer_create_dc printer_create_font printer_create_pen printer_delete_brush printer_delete_dc printer_delete_font printer_delete_pen printer_draw_bmp printer_draw_chord printer_draw_elipse printer_draw_line printer_draw_pie printer_draw_rectangle printer_draw_roundrect printer_draw_text printer_end_doc printer_end_page printer_get_option printer_list printer_logical_fontheight printer_open printer_select_brush printer_select_font printer_select_pen printer_set_option printer_start_doc printer_start_page printer_write contained syn keyword phpFunctions ps_add_bookmark ps_add_launchlink ps_add_locallink ps_add_note ps_add_pdflink ps_add_weblink ps_arc ps_arcn ps_begin_page ps_begin_pattern ps_begin_template ps_circle ps_clip ps_close_image ps_close ps_closepath_stroke ps_closepath ps_continue_text ps_curveto ps_delete ps_end_page ps_end_pattern ps_end_template ps_fill_stroke ps_fill ps_findfont ps_get_buffer ps_get_parameter ps_get_value ps_hyphenate ps_include_file ps_lineto ps_makespotcolor ps_moveto ps_new ps_open_file ps_open_image_file ps_open_image ps_open_memory_image ps_place_image ps_rect ps_restore ps_rotate ps_save ps_scale ps_set_border_color ps_set_border_dash ps_set_border_style ps_set_info ps_set_parameter ps_set_text_pos ps_set_value ps_setcolor ps_setdash ps_setflat ps_setfont ps_setgray ps_setlinecap ps_setlinejoin ps_setlinewidth ps_setmiterlimit ps_setoverprintmode ps_setpolydash ps_shading_pattern ps_shading ps_shfill ps_show_boxed ps_show_xy2 ps_show_xy ps_show2 ps_show ps_string_geometry ps_stringwidth ps_stroke ps_symbol_name ps_symbol_width ps_symbol ps_translate contained syn keyword phpFunctions pspell_add_to_personal pspell_add_to_session pspell_check pspell_clear_session pspell_config_create pspell_config_data_dir pspell_config_dict_dir pspell_config_ignore pspell_config_mode pspell_config_personal pspell_config_repl pspell_config_runtogether pspell_config_save_repl pspell_new_config pspell_new_personal pspell_new pspell_save_wordlist pspell_store_replacement pspell_suggest contained syn keyword phpFunctions qdom_error qdom_tree contained syn keyword phpFunctions radius_acct_open radius_add_server radius_auth_open radius_close radius_config radius_create_request radius_cvt_addr radius_cvt_int radius_cvt_string radius_demangle_mppe_key radius_demangle radius_get_attr radius_get_vendor_attr radius_put_addr radius_put_attr radius_put_int radius_put_string radius_put_vendor_addr radius_put_vendor_attr radius_put_vendor_int radius_put_vendor_string radius_request_authenticator radius_send_request radius_server_secret radius_strerror contained syn keyword phpFunctions rar_close rar_entry_get rar_extract rar_getattr rar_getcrc rar_getfiletime rar_gethostos rar_getmethod rar_getname rar_getpackedsize rar_getunpackedsize rar_getversion rar_list rar_open contained syn keyword phpMethods extract getAttr getCrc getFileTime getHostOs getMethod getName getPackedSize getUnpackedSize getVersion contained syn keyword phpFunctions readline_add_history readline_callback_handler_install readline_callback_handler_remove readline_callback_read_char readline_clear_history readline_completion_function readline_info readline_list_history readline_on_new_line readline_read_history readline_redisplay readline_write_history readline contained syn keyword phpFunctions recode_file recode_string recode contained syn keyword phpFunctions ereg_replace ereg eregi_replace eregi split spliti sql_regcase contained syn keyword phpFunctions rpm_close rpm_get_tag rpm_is_valid rpm_open rpm_version contained syn keyword phpFunctions runkit_class_adopt runkit_class_emancipate runkit_constant_add runkit_constant_redefine runkit_constant_remove runkit_function_add runkit_function_copy runkit_function_redefine runkit_function_remove runkit_function_rename runkit_import runkit_lint_file runkit_lint runkit_method_add runkit_method_copy runkit_method_redefine runkit_method_remove runkit_method_rename runkit_return_value_used runkit_sandbox_output_handler runkit_superglobals contained syn keyword phpFunctions samconnection_commit samconnection_connect samconnection_constructor samconnection_disconnect samconnection_errno samconnection_error samconnection_isconnected samconnection_peek samconnection_peekall samconnection_receive samconnection_remove samconnection_rollback samconnection_send samconnection_setDebug samconnection_subscribe samconnection_unsubscribe sammessage_body sammessage_constructor sammessage_header contained syn keyword phpMethods commit connect disconnect errno error isConnected peek peekAll receive remove rollback send setDebug subscribe unsubscribe body header contained syn keyword phpFunctions sca_localproxy_createdataobject sca_soapproxy_createdataobject sca_createdataobject sca_getservice contained syn keyword phpMethods createDataObject createDataObject createDataObject getService contained syn keyword phpFunctions sdo_das_xml_document_getrootdataobject sdo_das_xml_document_getrootelementname sdo_das_xml_document_getrootelementuri sdo_das_xml_document_setencoding sdo_das_xml_document_setxmldeclaration sdo_das_xml_document_setxmlversion sdo_das_xml_addtypes sdo_das_xml_create sdo_das_xml_createdataobject sdo_das_xml_createdocument sdo_das_xml_loadfile sdo_das_xml_loadstring sdo_das_xml_savefile sdo_das_xml_savestring contained syn keyword phpMethods getRootDataObject getRootElementName getRootElementURI setEncoding setXMLDeclaration setXMLVersion addTypes create createDataObject createDocument loadFile loadString saveFile saveString contained syn keyword phpFunctions sdo_das_changesummary_beginlogging sdo_das_changesummary_endlogging sdo_das_changesummary_getchangetype sdo_das_changesummary_getchangeddataobjects sdo_das_changesummary_getoldcontainer sdo_das_changesummary_getoldvalues sdo_das_changesummary_islogging sdo_das_datafactory_addpropertytotype sdo_das_datafactory_addtype sdo_das_datafactory_getdatafactory sdo_das_dataobject_getchangesummary sdo_das_setting_getlistindex sdo_das_setting_getpropertyindex sdo_das_setting_getpropertyname sdo_das_setting_getvalue sdo_das_setting_isset sdo_datafactory_create sdo_dataobject_clear sdo_dataobject_createdataobject sdo_dataobject_getcontainer sdo_dataobject_getsequence sdo_dataobject_gettypename sdo_dataobject_gettypenamespaceuri sdo_exception_getcause sdo_list_insert sdo_model_property_getcontainingtype sdo_model_property_getdefault sdo_model_property_getname sdo_model_property_gettype sdo_model_property_iscontainment sdo_model_property_ismany sdo_model_reflectiondataobject_construct sdo_model_reflectiondataobject_export sdo_model_reflectiondataobject_getcontainmentproperty sdo_model_reflectiondataobject_getinstanceproperties sdo_model_reflectiondataobject_gettype sdo_model_type_getbasetype sdo_model_type_getname sdo_model_type_getnamespaceuri sdo_model_type_getproperties sdo_model_type_getproperty sdo_model_type_isabstracttype sdo_model_type_isdatatype sdo_model_type_isinstance sdo_model_type_isopentype sdo_model_type_issequencedtype sdo_sequence_getproperty sdo_sequence_insert sdo_sequence_move contained syn keyword phpMethods beginLogging endLogging getChangeType getChangedDataObjects getOldContainer getOldValues isLogging addPropertyToType addType getDataFactory getChangeSummary getListIndex getPropertyIndex getPropertyName getValue isSet create clear createDataObject getContainer getSequence getTypeName getTypeNamespaceURI getCause insert getContainingType getDefault getName getType isContainment isMany export getContainmentProperty getInstanceProperties getType getBaseType getName getNamespaceURI getProperties getProperty isAbstractType isDataType isInstance isOpenType isSequencedType getProperty insert move contained syn keyword phpFunctions sdo_das_relational_applychanges sdo_das_relational_construct sdo_das_relational_createrootdataobject sdo_das_relational_executepreparedquery sdo_das_relational_executequery contained syn keyword phpMethods applyChanges createRootDataObject contained syn keyword phpFunctions ftok msg_get_queue msg_queue_exists msg_receive msg_remove_queue msg_send msg_set_queue msg_stat_queue sem_acquire sem_get sem_release sem_remove shm_attach shm_detach shm_get_var shm_put_var shm_remove_var shm_remove contained syn keyword phpFunctions session_pgsql_add_error session_pgsql_get_error session_pgsql_get_field session_pgsql_reset session_pgsql_set_field session_pgsql_status contained syn keyword phpFunctions session_cache_expire session_cache_limiter session_commit session_decode session_destroy session_encode session_get_cookie_params session_id session_is_registered session_module_name session_name session_regenerate_id session_register session_save_path session_set_cookie_params session_set_save_handler session_start session_unregister session_unset session_write_close contained syn keyword phpFunctions shmop_close shmop_delete shmop_open shmop_read shmop_size shmop_write contained syn keyword phpFunctions simplexml_element_addAttribute simplexml_element_addChild simplexml_element_asXML simplexml_element_attributes simplexml_element_children simplexml_element_construct simplexml_element_getDocNamespaces simplexml_element_getName simplexml_element_getNamespaces simplexml_element_registerXPathNamespace simplexml_element_xpath simplexml_import_dom simplexml_load_file simplexml_load_string contained syn keyword phpMethods addAttribute addChild asXML attributes children getDocNamespaces getName getNamespaces registerXPathNamespace xpath contained syn keyword phpFunctions snmp_get_quick_print snmp_get_valueretrieval snmp_read_mib snmp_set_enum_print snmp_set_oid_numeric_print snmp_set_oid_output_format snmp_set_quick_print snmp_set_valueretrieval snmpget snmpgetnext snmprealwalk snmpset snmpwalk snmpwalkoid contained syn keyword phpFunctions is_soap_fault soap_soapclient_call soap_soapclient_construct soap_soapclient_dorequest soap_soapclient_getfunctions soap_soapclient_getlastrequest soap_soapclient_getlastrequestheaders soap_soapclient_getlastresponse soap_soapclient_getlastresponseheaders soap_soapclient_gettypes soap_soapclient_setcookie soap_soapclient_soapcall soap_soapfault_construct soap_soapheader_construct soap_soapparam_construct soap_soapserver_addfunction soap_soapserver_construct soap_soapserver_fault soap_soapserver_getfunctions soap_soapserver_handle soap_soapserver_setclass soap_soapserver_setpersistence soap_soapvar_construct use_soap_error_handler contained syn keyword phpFunctions socket_accept socket_bind socket_clear_error socket_close socket_connect socket_create_listen socket_create_pair socket_create socket_get_option socket_getpeername socket_getsockname socket_last_error socket_listen socket_read socket_recv socket_recvfrom socket_select socket_send socket_sendto socket_set_block socket_set_nonblock socket_set_option socket_shutdown socket_strerror socket_write contained syn keyword phpMethods addQuery buildExcerpts buildKeywords escapeString getLastError getLastWarning query resetFilters resetGroupBy runQueries setArrayResult setConnectTimeout setFieldWeights setFilter setFilterFloatRange setFilterRange setGeoAnchor setGroupBy setGroupDistinct setIDRange setIndexWeights setLimits setMatchMode setMaxQueryTime setRankingMode setRetries setServer setSortMode updateAttributes contained syn keyword phpFunctions class_implements class_parents iterator_count iterator_to_array spl_autoload_call spl_autoload_extensions spl_autoload_functions spl_autoload_register spl_autoload_unregister spl_autoload spl_classes spl_object_hash contained syn keyword phpMethods current key next rewind seek valid append count getIterator offsetExists offsetGet offsetSet offsetUnset hasNext next rewind __toString valid getChildren hasChildren current getATime getCTime getFilename getGroup getInode getMTime getOwner getPath getPathname getPerms getSize getType isDir isDot isExecutable isFile isLink isReadable isWritable key next rewind valid current getInnerIterator key next rewind valid getPosition next rewind seek valid getChildren hasChildren next rewind getChildren hasChildren key next rewind current getDepth getSubIterator key next rewind valid current getChildren hasChildren key next rewind valid bottom count current getIteratorMode isEmpty key next offsetExists offsetGet offsetSet offsetUnset pop push rewind setIteratorMode shift top unshift valid setIteratorMode dequeue enqueue setIteratorMode compare count current extract insert isEmpty key next recoverFromCorruption rewind top valid compare compare compare count current extract insert isEmpty key next recoverFromCorruption rewind setExtractFlags top valid contained syn keyword phpFunctions calcul_hmac calculhmac nthmac signeurlpaiement contained syn keyword phpFunctions sqlite_array_query sqlite_busy_timeout sqlite_changes sqlite_close sqlite_column sqlite_create_aggregate sqlite_create_function sqlite_current sqlite_error_string sqlite_escape_string sqlite_exec sqlite_factory sqlite_fetch_all sqlite_fetch_array sqlite_fetch_column_types sqlite_fetch_object sqlite_fetch_single sqlite_fetch_string sqlite_field_name sqlite_has_more sqlite_has_prev sqlite_key sqlite_last_error sqlite_last_insert_rowid sqlite_libencoding sqlite_libversion sqlite_next sqlite_num_fields sqlite_num_rows sqlite_open sqlite_popen sqlite_prev sqlite_query sqlite_rewind sqlite_seek sqlite_single_query sqlite_udf_decode_binary sqlite_udf_encode_binary sqlite_unbuffered_query sqlite_valid contained syn keyword phpMethods changes close createAggregate createFunction escapeString exec lastErrorCode lastErrorMsg lastInsertRowID loadExtension open prepare query querySingle version bindParam bindValue clear close execute paramCount reset columnName columnType fetchArray finalize numColumns reset contained syn keyword phpFunctions ssh2_auth_hostbased_file ssh2_auth_none ssh2_auth_password ssh2_auth_pubkey_file ssh2_connect ssh2_exec ssh2_fetch_stream ssh2_fingerprint ssh2_methods_negotiated ssh2_publickey_add ssh2_publickey_init ssh2_publickey_list ssh2_publickey_remove ssh2_scp_recv ssh2_scp_send ssh2_sftp_lstat ssh2_sftp_mkdir ssh2_sftp_readlink ssh2_sftp_realpath ssh2_sftp_rename ssh2_sftp_rmdir ssh2_sftp_stat ssh2_sftp_symlink ssh2_sftp_unlink ssh2_sftp ssh2_shell ssh2_tunnel contained syn keyword phpFunctions stats_absolute_deviation stats_cdf_beta stats_cdf_binomial stats_cdf_cauchy stats_cdf_chisquare stats_cdf_exponential stats_cdf_f stats_cdf_gamma stats_cdf_laplace stats_cdf_logistic stats_cdf_negative_binomial stats_cdf_noncentral_chisquare stats_cdf_noncentral_f stats_cdf_poisson stats_cdf_t stats_cdf_uniform stats_cdf_weibull stats_covariance stats_den_uniform stats_dens_beta stats_dens_cauchy stats_dens_chisquare stats_dens_exponential stats_dens_f stats_dens_gamma stats_dens_laplace stats_dens_logistic stats_dens_negative_binomial stats_dens_normal stats_dens_pmf_binomial stats_dens_pmf_hypergeometric stats_dens_pmf_poisson stats_dens_t stats_dens_weibull stats_harmonic_mean stats_kurtosis stats_rand_gen_beta stats_rand_gen_chisquare stats_rand_gen_exponential stats_rand_gen_f stats_rand_gen_funiform stats_rand_gen_gamma stats_rand_gen_ibinomial_negative stats_rand_gen_ibinomial stats_rand_gen_int stats_rand_gen_ipoisson stats_rand_gen_iuniform stats_rand_gen_noncenral_chisquare stats_rand_gen_noncentral_f stats_rand_gen_noncentral_t stats_rand_gen_normal stats_rand_gen_t stats_rand_get_seeds stats_rand_phrase_to_seeds stats_rand_ranf stats_rand_setall stats_skew stats_standard_deviation stats_stat_binomial_coef stats_stat_correlation stats_stat_gennch stats_stat_independent_t stats_stat_innerproduct stats_stat_noncentral_t stats_stat_paired_t stats_stat_percentile stats_stat_powersum stats_variance contained syn keyword phpFunctions stream_bucket_append stream_bucket_make_writeable stream_bucket_new stream_bucket_prepend stream_context_create stream_context_get_default stream_context_get_options stream_context_set_default stream_context_set_option stream_context_set_params stream_copy_to_stream stream_encoding stream_filter_append stream_filter_prepend stream_filter_register stream_filter_remove stream_get_contents stream_get_filters stream_get_line stream_get_meta_data stream_get_transports stream_get_wrappers stream_notification_callback stream_register_wrapper stream_resolve_include_path stream_select stream_set_blocking stream_set_timeout stream_set_write_buffer stream_socket_accept stream_socket_client stream_socket_enable_crypto stream_socket_get_name stream_socket_pair stream_socket_recvfrom stream_socket_sendto stream_socket_server stream_socket_shutdown stream_wrapper_register stream_wrapper_restore stream_wrapper_unregister contained syn keyword phpFunctions addcslashes addslashes bin2hex chop chr chunk_split convert_cyr_string convert_uudecode convert_uuencode count_chars crc32 crypt echo explode fprintf get_html_translation_table hebrev hebrevc html_entity_decode htmlentities htmlspecialchars_decode htmlspecialchars implode join lcfirst levenshtein localeconv ltrim md5_file md5 metaphone money_format nl_langinfo nl2br number_format ord parse_str print printf quoted_printable_decode quoted_printable_encode quotemeta rtrim setlocale sha1_file sha1 similar_text soundex sprintf sscanf str_getcsv str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split str_word_count strcasecmp strchr strcmp strcoll strcspn strip_tags stripcslashes stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk strpos strrchr strrev strripos strrpos strspn strstr strtok strtolower strtoupper strtr substr_compare substr_count substr_replace substr trim ucfirst ucwords vfprintf vprintf vsprintf wordwrap contained syn keyword phpFunctions svn_add svn_auth_get_parameter svn_auth_set_parameter svn_cat svn_checkout svn_cleanup svn_client_version svn_commit svn_diff svn_fs_abort_txn svn_fs_apply_text svn_fs_begin_txn2 svn_fs_change_node_prop svn_fs_check_path svn_fs_contents_changed svn_fs_copy svn_fs_delete svn_fs_dir_entries svn_fs_file_contents svn_fs_file_length svn_fs_is_dir svn_fs_is_file svn_fs_make_dir svn_fs_make_file svn_fs_node_created_rev svn_fs_node_prop svn_fs_props_changed svn_fs_revision_prop svn_fs_revision_root svn_fs_txn_root svn_fs_youngest_rev svn_import svn_log svn_ls svn_repos_create svn_repos_fs_begin_txn_for_commit svn_repos_fs_commit_txn svn_repos_fs svn_repos_hotcopy svn_repos_open svn_repos_recover svn_status svn_update contained syn keyword phpFunctions swf_actiongeturl swf_actiongotoframe swf_actiongotolabel swf_actionnextframe swf_actionplay swf_actionprevframe swf_actionsettarget swf_actionstop swf_actiontogglequality swf_actionwaitforframe swf_addbuttonrecord swf_addcolor swf_closefile swf_definebitmap swf_definefont swf_defineline swf_definepoly swf_definerect swf_definetext swf_endbutton swf_enddoaction swf_endshape swf_endsymbol swf_fontsize swf_fontslant swf_fonttracking swf_getbitmapinfo swf_getfontinfo swf_getframe swf_labelframe swf_lookat swf_modifyobject swf_mulcolor swf_nextid swf_oncondition swf_openfile swf_ortho2 swf_ortho swf_perspective swf_placeobject swf_polarview swf_popmatrix swf_posround swf_pushmatrix swf_removeobject swf_rotate swf_scale swf_setfont swf_setframe swf_shapearc swf_shapecurveto3 swf_shapecurveto swf_shapefillbitmapclip swf_shapefillbitmaptile swf_shapefilloff swf_shapefillsolid swf_shapesolid swf_shapelineto swf_shapemoveto swf_showframe swf_startbutton swf_startdoaction swf_startshape swf_startsymbol swf_textwidth swf_translate swf_viewport contained syn keyword phpFunctions swish_construct swish_getmetalist swish_getpropertylist swish_prepare swish_query swishresult_getmetalist swishresult_stem swishresults_getparsedwords swishresults_getremovedstopwords swishresults_nextresult swishresults_seekresult swishsearch_execute swishsearch_resetlimit swishsearch_setlimit swishsearch_setphrasedelimiter swishsearch_setsort swishsearch_setstructure contained syn keyword phpMethods getMetaList getPropertyList prepare query getMetaList stem getParsedWords getRemovedStopwords nextResult seekResult execute resetLimit setLimit setPhraseDelimiter setSort setStructure contained syn keyword phpFunctions sybase_affected_rows sybase_close sybase_connect sybase_data_seek sybase_deadlock_retry_count sybase_fetch_array sybase_fetch_assoc sybase_fetch_field sybase_fetch_object sybase_fetch_row sybase_field_seek sybase_free_result sybase_get_last_message sybase_min_client_severity sybase_min_error_severity sybase_min_message_severity sybase_min_server_severity sybase_num_fields sybase_num_rows sybase_pconnect sybase_query sybase_result sybase_select_db sybase_set_message_handler sybase_unbuffered_query contained syn keyword phpFunctions tcpwrap_check contained syn keyword phpFunctions ob_tidyhandler tidy_access_count tidy_clean_repair tidy_config_count tidy_construct tidy_diagnose tidy_error_count tidy_get_body tidy_get_config tidy_get_error_buffer tidy_get_head tidy_get_html_ver tidy_get_html tidy_get_opt_doc tidy_get_output tidy_get_release tidy_get_root tidy_get_status tidy_getopt tidy_is_xhtml tidy_is_xml tidy_load_config tidy_node_get_attr tidy_node_get_nodes tidy_node_next tidy_node_prev tidy_parse_file tidy_parse_string tidy_repair_file tidy_repair_string tidy_reset_config tidy_save_config tidy_set_encoding tidy_setopt tidy_warning_count tidynode_haschildren tidynode_hassiblings tidynode_isasp tidynode_iscomment tidynode_ishtml tidynode_isjste tidynode_isphp tidynode_istext tidynode_getparent contained syn keyword phpMethods get_attr get_nodes next prev hasChildren hasSiblings isAsp isComment isHtml isJste isPhp isText getParent contained syn keyword phpFunctions token_get_all token_name contained syn keyword phpFunctions unicode_decode unicode_encode unicode_get_error_mode unicode_get_subst_char unicode_set_error_mode unicode_set_subst_char contained syn keyword phpFunctions odbc_autocommit odbc_binmode odbc_close_all odbc_close odbc_columnprivileges odbc_columns odbc_commit odbc_connect odbc_cursor odbc_data_source odbc_do odbc_error odbc_errormsg odbc_exec odbc_execute odbc_fetch_array odbc_fetch_into odbc_fetch_object odbc_fetch_row odbc_field_len odbc_field_name odbc_field_num odbc_field_precision odbc_field_scale odbc_field_type odbc_foreignkeys odbc_free_result odbc_gettypeinfo odbc_longreadlen odbc_next_result odbc_num_fields odbc_num_rows odbc_pconnect odbc_prepare odbc_primarykeys odbc_procedurecolumns odbc_procedures odbc_result_all odbc_result odbc_rollback odbc_setoption odbc_specialcolumns odbc_statistics odbc_tableprivileges odbc_tables contained syn keyword phpFunctions base64_decode base64_encode get_headers get_meta_tags http_build_query parse_url rawurldecode rawurlencode urldecode urlencode contained syn keyword phpFunctions debug_zval_dump doubleval empty floatval get_defined_vars get_resource_type gettype import_request_variables intval is_array is_binary is_bool is_buffer is_callable is_double is_float is_int is_integer is_long is_null is_numeric is_object is_real is_resource is_scalar is_string is_unicode isset print_r serialize settype strval unserialize unset var_dump var_export contained syn keyword phpFunctions vpopmail_add_alias_domain_ex vpopmail_add_alias_domain vpopmail_add_domain_ex vpopmail_add_domain vpopmail_add_user vpopmail_alias_add vpopmail_alias_del_domain vpopmail_alias_del vpopmail_alias_get_all vpopmail_alias_get vpopmail_auth_user vpopmail_del_domain_ex vpopmail_del_domain vpopmail_del_user vpopmail_error vpopmail_passwd vpopmail_set_user_quota contained syn keyword phpFunctions w32api_deftype w32api_init_dtype w32api_invoke_function w32api_register_function w32api_set_call_method contained syn keyword phpFunctions wddx_add_vars wddx_deserialize wddx_packet_end wddx_packet_start wddx_serialize_value wddx_serialize_vars wddx_unserialize contained syn keyword phpFunctions win32_ps_list_procs win32_ps_stat_mem win32_ps_stat_proc contained syn keyword phpFunctions win32_create_service win32_delete_service win32_get_last_control_message win32_query_service_status win32_set_service_status win32_start_service_ctrl_dispatcher win32_start_service win32_stop_service contained syn keyword phpFunctions xattr_get xattr_list xattr_remove xattr_set xattr_supported contained syn keyword phpFunctions xdiff_file_bdiff_size xdiff_file_bdiff xdiff_file_bpatch xdiff_file_diff_binary xdiff_file_diff xdiff_file_merge3 xdiff_file_patch_binary xdiff_file_patch xdiff_file_rabdiff xdiff_string_bdiff_size xdiff_string_bdiff xdiff_string_bpatch xdiff_string_diff_binary xdiff_string_diff xdiff_string_merge3 xdiff_string_patch_binary xdiff_string_patch xdiff_string_rabdiff contained syn keyword phpFunctions utf8_decode utf8_encode xml_error_string xml_get_current_byte_index xml_get_current_column_number xml_get_current_line_number xml_get_error_code xml_parse_into_struct xml_parse xml_parser_create_ns xml_parser_create xml_parser_free xml_parser_get_option xml_parser_set_option xml_set_character_data_handler xml_set_default_handler xml_set_element_handler xml_set_end_namespace_decl_handler xml_set_external_entity_ref_handler xml_set_notation_decl_handler xml_set_object xml_set_processing_instruction_handler xml_set_start_namespace_decl_handler xml_set_unparsed_entity_decl_handler contained syn keyword phpFunctions xmlreader_close xmlreader_expand xmlreader_getattribute xmlreader_getattributeno xmlreader_getattributens xmlreader_getparserproperty xmlreader_isvalid xmlreader_lookupnamespace xmlreader_movetoattribute xmlreader_movetoattributeno xmlreader_movetoattributens xmlreader_movetoelement xmlreader_movetofirstattribute xmlreader_movetonextattribute xmlreader_next xmlreader_open xmlreader_read xmlreader_setparserproperty xmlreader_setrelaxngschema xmlreader_setrelaxngschemasource xmlreader_xml contained syn keyword phpMethods close expand getAttribute getAttributeNo getAttributeNs getParserProperty isValid lookupNamespace moveToAttribute moveToAttributeNo moveToAttributeNs moveToElement moveToFirstAttribute moveToNextAttribute next open read readInnerXML readOuterXML readString setParserProperty setRelaxNGSchema setRelaxNGSchemaSource setSchema XML contained syn keyword phpFunctions xmlrpc_decode_request xmlrpc_decode xmlrpc_encode_request xmlrpc_encode xmlrpc_get_type xmlrpc_is_fault xmlrpc_parse_method_descriptions xmlrpc_server_add_introspection_data xmlrpc_server_call_method xmlrpc_server_create xmlrpc_server_destroy xmlrpc_server_register_introspection_callback xmlrpc_server_register_method xmlrpc_set_type contained syn keyword phpFunctions xmlwriter_end_attribute xmlwriter_end_cdata xmlwriter_end_comment xmlwriter_end_document xmlwriter_end_dtd_attlist xmlwriter_end_dtd_element xmlwriter_end_dtd_entity xmlwriter_end_dtd xmlwriter_end_element xmlwriter_end_pi xmlwriter_flush xmlwriter_full_end_element xmlwriter_open_memory xmlwriter_open_uri xmlwriter_output_memory xmlwriter_set_indent_string xmlwriter_set_indent xmlwriter_start_attribute_ns xmlwriter_start_attribute xmlwriter_start_cdata xmlwriter_start_comment xmlwriter_start_document xmlwriter_start_dtd_attlist xmlwriter_start_dtd_element xmlwriter_start_dtd_entity xmlwriter_start_dtd xmlwriter_start_element_ns xmlwriter_start_element xmlwriter_start_pi xmlwriter_text xmlwriter_write_attribute_ns xmlwriter_write_attribute xmlwriter_write_cdata xmlwriter_write_comment xmlwriter_write_dtd_attlist xmlwriter_write_dtd_element xmlwriter_write_dtd_entity xmlwriter_write_dtd xmlwriter_write_element_ns xmlwriter_write_element xmlwriter_write_pi xmlwriter_write_raw contained syn keyword phpMethods endAttribute endCData endComment endDocument endDTDAttlist endDTDElement endDTDEntity endDTD endElement endPI flush fullEndElement openMemory openURI outputMemory setIndentString setIndent startAttributeNS startAttribute startCData startComment startDocument startDTDAttlist startDTDElement startDTDEntity startDTD startElementNS startElement startPI text writeAttributeNS writeAttribute writeCData writeComment writeDTDAttlist writeDTDElement writeDTDEntity writeDTD writeElementNS writeElement writePI writeRaw contained syn keyword phpMethods getParameter hasExsltSupport importStylesheet registerPHPFunctions removeParameter setParameter transformToDoc transformToURI transformToXML contained syn keyword phpFunctions xslt_backend_info xslt_backend_name xslt_backend_version xslt_create xslt_errno xslt_error xslt_free xslt_getopt xslt_process xslt_set_base xslt_set_encoding xslt_set_error_handler xslt_set_log xslt_set_object xslt_set_sax_handler xslt_set_sax_handlers xslt_set_scheme_handler xslt_set_scheme_handlers xslt_setopt contained syn keyword phpFunctions yaz_addinfo yaz_ccl_conf yaz_ccl_parse yaz_close yaz_connect yaz_database yaz_element yaz_errno yaz_error yaz_es_result yaz_es yaz_get_option yaz_hits yaz_itemorder yaz_present yaz_range yaz_record yaz_scan_result yaz_scan yaz_schema yaz_search yaz_set_option yaz_sort yaz_syntax yaz_wait contained syn keyword phpFunctions zip_close zip_entry_close zip_entry_compressedsize zip_entry_compressionmethod zip_entry_filesize zip_entry_name zip_entry_open zip_entry_read zip_open zip_read ziparchive_addemptydir ziparchive_addfile ziparchive_addfromstring ziparchive_close ziparchive_deleteindex ziparchive_deletename ziparchive_extractto ziparchive_getarchivecomment ziparchive_getcommentindex ziparchive_getcommentname ziparchive_getfromindex ziparchive_getfromname ziparchive_getnameindex ziparchive_getstream ziparchive_locatename ziparchive_open ziparchive_renameindex ziparchive_renamename ziparchive_setarchivecomment ziparchive_setcommentindex ziparchive_setCommentName ziparchive_statindex ziparchive_statname ziparchive_unchangeall ziparchive_unchangearchive ziparchive_unchangeindex ziparchive_unchangename contained syn keyword phpMethods addEmptyDir addFile addFromString close deleteIndex deleteName extractTo getArchiveComment getCommentIndex contained syn keyword phpFunctions gzclose gzcompress gzdecode gzdeflate gzencode gzeof gzfile gzgetc gzgets gzgetss gzinflate gzopen gzpassthru gzputs gzread gzrewind gzseek gztell gzuncompress gzwrite readgzfile zlib_get_coding_type contained if exists( "php_baselib" ) syn keyword phpMethods query next_record num_rows affected_rows nf f p np num_fields haltmsg seek link_id query_id metadata table_names nextid connect halt free register unregister is_registered delete url purl self_url pself_url hidden_session add_query padd_query reimport_get_vars reimport_post_vars reimport_cookie_vars set_container set_tokenname release_token put_headers get_id get_id put_id freeze thaw gc reimport_any_vars start url purl login_if is_authenticated auth_preauth auth_loginform auth_validatelogin auth_refreshlogin auth_registerform auth_doregister start check have_perm permsum perm_invalid contained syn keyword phpFunctions page_open page_close sess_load sess_save contained endif " Conditional syn keyword phpConditional declare else enddeclare endswitch elseif endif if switch contained " Repeat syn keyword phpRepeat as do endfor endforeach endwhile for foreach while contained " Repeat syn keyword phpLabel case default contained " Statement syn keyword phpStatement return break continue exit contained " Keyword syn keyword phpKeyword var const contained " Type syn keyword phpType bool[ean] int[eger] real double float binary string array object NULL contained " Structure syn keyword phpStructure extends implements instanceof parent self contained " Operator syn match phpOperator "[-=+%^&|*!.~?:]" contained display syn match phpOperator "[-+*/%^&|.]=" contained display syn match phpOperator "/[^*/]"me=e-1 contained display syn match phpOperator "&&\|\" contained display syn match phpOperator "||\|\" contained display syn match phpRelation "[!=<>]=" contained display syn match phpRelation "[<>]" contained display syn match phpMemberSelector "->" contained display syn match phpVarSelector "\$\+" contained display " Identifier syn match phpIdentifier "\$\+\h\w*" contained contains=phpSuperGlobals,phpPredefinedVar,phpVarSelector display syn match phpIdentifierSimple "${.*}" contains=@phpClInside,phpVarSelector contained display transparent syn region phpIdentifierComplex matchgroup=phpDelimiter start="{\$"rs=e-1 end="}" contains=@phpClInside contained extend " Methoden syn match phpMethodsVar "->\$*\h\w*" contained contains=phpMemberSelector,phpIdentifier,phpMethods display " Include syn keyword phpInclude include require include_once require_once contained " Define syn keyword phpNew new contained " Boolean syn keyword phpBoolean true false contained " Number syn match phpNumber "-\=\<\d\+\>" contained display syn match phpNumber "\<0x\x\+\>" contained display " Float syn match phpFloat "\(-\=\<\d+\|-\=\)\.\d\+\>" contained display " SpecialChar syn match phpSpecialChar "\\[abcfnrtyv\\]" contained display syn match phpSpecialChar "\\[0-7]\{3}" contained display syn match phpSpecialChar "\\x\x\{2}" contained display " Todo syn keyword phpTodo todo fixme xxx contained " Comment if exists("php_parent_error_open") syn region phpComment start="/\*" end="\*/" contained contains=phpTodo else syn region phpComment start="/\*" end="\*/" contained contains=phpTodo extend endif if version >= 600 syn match phpComment "#.\{-}\(?>\|$\)\@=" contained contains=phpTodo syn match phpComment "//.\{-}\(?>\|$\)\@=" contained contains=phpTodo else syn match phpComment "#.\{-}$" contained contains=phpTodo syn match phpComment "#.\{-}?>"me=e-2 contained contains=phpTodo syn match phpComment "//.\{-}$" contained contains=phpTodo syn match phpComment "//.\{-}?>"me=e-2 contained contains=phpTodo endif " String if exists("php_parent_error_open") syn region phpStringDouble matchgroup=None start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=@phpAddStrings,phpIdentifier,phpSpecialChar,phpIdentifierSimple,phpIdentifierComplex contained keepend syn region phpBacktick matchgroup=None start=+`+ skip=+\\\\\|\\`+ end=+`+ contains=@shTop contained keepend syn region phpStringSingle matchgroup=None start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=@phpAddStrings contained keepend else syn region phpStringDouble matchgroup=None start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=@phpAddStrings,phpIdentifier,phpSpecialChar,phpIdentifierSimple,phpIdentifierComplex contained extend keepend syn region phpBacktick matchgroup=None start=+`+ skip=+\\\\\|\\`+ end=+`+ contains=@shTop contained keepend extend syn region phpStringSingle matchgroup=None start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=@phpAddStrings contained keepend extend endif " Heredoc if version >= 600 syn case match syn region phpHeredoc matchgroup=phpDelimiter start="\(<<<\)\@<=\z(\I\i*\)$" end="^\z1\(;\=$\)\@=" contained contains=phpIdentifier,phpIdentifierSimple,phpIdentifierComplex,phpSpecialChar,phpMethodsVar keepend extend " including HTML,JavaScript,SQL even if not enabled via options syn region phpHeredoc matchgroup=phpDelimiter start="\(<<<\)\@<=\z(\(\I\i*\)\=\(html\)\c\(\i*\)\)$" end="^\z1\(;\=$\)\@=" contained contains=@htmlTop,phpIdentifier,phpIdentifierSimple,phpIdentifierComplex,phpSpecialChar,phpMethodsVar keepend extend syn region phpHeredoc matchgroup=phpDelimiter start="\(<<<\)\@<=\z(\(\I\i*\)\=\(sql\)\c\(\i*\)\)$" end="^\z1\(;\=$\)\@=" contained contains=@sqlTop,phpIdentifier,phpIdentifierSimple,phpIdentifierComplex,phpSpecialChar,phpMethodsVar keepend extend syn region phpHeredoc matchgroup=phpDelimiter start="\(<<<\)\@<=\z(\(\I\i*\)\=\(javascript\)\c\(\i*\)\)$" end="^\z1\(;\=$\)\@=" contained contains=@htmlJavascript,phpIdentifierSimple,phpIdentifier,phpIdentifierComplex,phpSpecialChar,phpMethodsVar keepend extend syn case ignore endif " Nowdoc if version >= 600 syn case match syn region phpNowdoc matchgroup=phpDelimiter start="\(<<<\)\@<='\z(\I\i*\)'$" end="^\z1\(;\=$\)\@=" contained " including HTML,JavaScript,SQL even if not enabled via options syn region phpNowdoc matchgroup=phpDelimiter start="\(<<<\)\@<='\z(\(\I\i*\)\=\(html\)\c\(\i*\)\)'$" end="^\z1\(;\=$\)\@=" contained syn region phpNowdoc matchgroup=phpDelimiter start="\(<<<\)\@<='\z(\(\I\i*\)\=\(sql\)\c\(\i*\)\)'$" end="^\z1\(;\=$\)\@=" contained syn region phpNowdoc matchgroup=phpDelimiter start="\(<<<\)\@<='\z(\(\I\i*\)\=\(javascript\)\c\(\i*\)\)'$" end="^\z1\(;\=$\)\@=" contained syn case ignore endif " Parent if exists("php_parent_error_close") || exists("php_parent_error_open") syn match phpParent "[{}]" contained syn region phpParent matchgroup=phpDelimiter start="(" end=")" contained contains=@phpClInside transparent syn region phpParent matchgroup=phpDelimiter start="\[" end="\]" contained contains=@phpClInside transparent if !exists("php_parent_error_close") syn match phpParent "[\])}]" contained else syn match phpParent "}" contained syn match phpParentError "[)\]]" contained display endif else syn match phpParent "[({[\]})]" contained endif syn cluster phpClInside contains=phpFunctions,phpIdentifier,phpIdentifierSimple,phpConditional,phpRepeat,phpStatement,phpOperator,phpRelation,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpFloat,phpKeyword,phpType,phpBoolean,phpStructure,phpMethodsVar,phpMagicConstant,phpMagicMethods,phpCoreConstant,phpStandardConstant,phpException,phpComment,phpLabel,phpParent,phpParentError,phpInclude,phpHeredoc,phpNowdoc,phpNew syn cluster phpClFunction contains=@phpClInside,phpDefine,phpParentError,phpStorageClass syn cluster phpClTop contains=@phpClFunction,phpFoldFunction,phpFoldClass,phpFoldInterface,phpFoldTry,phpFoldCatch " Php Region if exists("php_parent_error_open") if exists("php_noShortTags") syn region phpRegion matchgroup=phpDelimiter start="" contains=@phpClTop else syn region phpRegion matchgroup=phpDelimiter start="" contains=@phpClTop endif syn region phpRegion matchgroup=phpDelimiter start=++ contains=@phpClTop if exists("php_asp_tags") syn region phpRegion matchgroup=phpDelimiter start="<%\(=\)\=" end="%>" contains=@phpClTop endif else if exists("php_noShortTags") syn region phpRegion matchgroup=phpDelimiter start="" contains=@phpClTop keepend else syn region phpRegion matchgroup=phpDelimiter start="" contains=@phpClTop keepend endif syn region phpRegion matchgroup=phpDelimiter start=++ contains=@phpClTop keepend if exists("php_asp_tags") syn region phpRegion matchgroup=phpDelimiter start="<%\(=\)\=" end="%>" contains=@phpClTop keepend endif endif " Fold if exists("php_folding") && php_folding == 1 " match one line constructs here and skip them at folding syn keyword phpSCKeyword abstract final private protected public static contained syn keyword phpFCKeyword function contained syn keyword phpStorageClass global contained syn match phpDefine "\(\s\|^\)\(abstract\s\+\|final\s\+\|private\s\+\|protected\s\+\|public\s\+\|static\s\+\)*function\(\s\+.*[;}]\)\@=" contained contains=phpSCKeyword syn match phpStructure "\(\s\|^\)\(abstract\s\+\|final\s\+\)*class\(\s\+.*}\)\@=" contained syn match phpStructure "\(\s\|^\)interface\(\s\+.*}\)\@=" contained syn match phpException "\(\s\|^\)try\(\s\+.*}\)\@=" contained syn match phpException "\(\s\|^\)catch\(\s\+.*}\)\@=" contained set foldmethod=syntax syn region phpFoldHtmlInside matchgroup=phpDelimiter start="?>" end="" end="\s*$+ if exists("php_asp_tags") syn sync match phpRegionSync grouphere phpRegion "^\s*<%\(=\)\=\s*$" endif syn sync match phpRegionSync grouphere NONE "^\s*?>\s*$" syn sync match phpRegionSync grouphere NONE "^\s*%>\s*$" syn sync match phpRegionSync grouphere phpRegion "function\s.*(.*\$" "syn sync match phpRegionSync grouphere NONE "/\i*>\s*$" elseif php_sync_method > 0 exec "syn sync minlines=" . php_sync_method else exec "syn sync fromstart" endif " Define thi default highlighting. hi def link phpMagicConstant Constant hi def link phpCoreConstant Constant hi def link phpStandardConstant Constant hi def link phpComment Comment hi def link phpException Exception hi def link phpBoolean Boolean hi def link phpStorageClass StorageClass hi def link phpSCKeyword StorageClass hi def link phpFCKeyword Define hi def link phpStructure Structure hi def link phpStringSingle String hi def link phpStringDouble String hi def link phpBacktick String hi def link phpNumber Number hi def link phpFloat Float hi def link phpRepeat Repeat hi def link phpConditional Conditional hi def link phpLabel Label hi def link phpStatement Statement hi def link phpKeyword Statement hi def link phpType Type hi def link phpInclude Include hi def link phpDefine Define hi def link phpSpecialChar SpecialChar hi def link phpParentError Error hi def link phpOctalError Error hi def link phpTodo Todo hi def link phpMemberSelector Structure hi def link phpNew Statement if !(exists('php_color_style') && php_color_style == 'light') hi def link phpDelimiter Delimiter hi def link phpParent Delimiter hi def link phpIdentifierConst Delimiter hi def link phpMethods Function hi def link phpMagicMethods Function hi def link phpFunctions Function hi def link phpBaselib Function endif if exists('php_color_style') && php_color_style == 'full' hi phpSuperGlobals guifg=Red ctermfg=DarkRed hi phpPredefinedVar guifg=Red ctermfg=DarkRed hi phpOperator guifg=SeaGreen ctermfg=DarkGreen hi phpVarSelector guifg=SeaGreen ctermfg=DarkGreen hi phpIdentifiersimple guifg=SeaGreen ctermfg=DarkGreen hi phpRelation guifg=SeaGreen ctermfg=DarkGreen hi phpIdentifier guifg=DarkGray ctermfg=Brown else hi def link phpSuperGlobals Identifier hi def link phpPredefinedVar Identifier hi def link phpOperator Operator hi def link phpVarSelector Operator hi def link phpIdentifierSimple Operator hi def link phpRelation Operator hi def link phpIdentifier Identifier endif let b:current_syntax = "php" if main_syntax == 'php' unlet main_syntax endif " vim: ts=8