DonatShell
Server IP : 180.180.241.3  /  Your IP : 216.73.216.252
Web Server : Microsoft-IIS/7.5
System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586
User : IUSR ( 0)
PHP Version : 5.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Program Files (x86)/Sublime Text 2/Pristine Packages/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/Program Files (x86)/Sublime Text 2/Pristine Packages/PHP.sublime-package
PKiZ=T$GLOBALS[''].sublime-snippet<snippet>
    <content><![CDATA[\$GLOBALS['${1:variable}']${2: = }${3:something}${4:;}$0]]></content>
    <tabTrigger>globals</tabTrigger>
    <scope>source.php</scope>
    <description>$GLOBALS['…']</description>
</snippet>
PKiZ=U$_COOKIE[''].sublime-snippet<snippet>
    <content><![CDATA[\$_COOKIE['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>COOKIE['…']</description>
</snippet>
PKiZ=v4$_ENV[''].sublime-snippet<snippet>
    <content><![CDATA[\$_ENV['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>ENV['…']</description>
</snippet>
PKiZ=)A$_FILES[''].sublime-snippet<snippet>
    <content><![CDATA[\$_FILES['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>FILES['…']</description>
</snippet>
PKiZ= J$_GET[''].sublime-snippet<snippet>
    <content><![CDATA[\$_GET['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>GET['…']</description>
</snippet>
PKiZ=Ǣ
$_POST[''].sublime-snippet<snippet>
    <content><![CDATA[\$_POST['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>POST['…']</description>
</snippet>
PKiZ=n$_REQUEST[''].sublime-snippet<snippet>
    <content><![CDATA[\$_REQUEST['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>REQUEST['…']</description>
</snippet>
PKiZ=+ɾ$_SERVER[''].sublime-snippet<snippet>
    <content><![CDATA[\$_SERVER['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>SERVER['…']</description>
</snippet>
PKiZ=3$_SESSION[''].sublime-snippet<snippet>
    <content><![CDATA[\$_SESSION['${1:variable}']]]></content>
    <tabTrigger>$_</tabTrigger>
    <scope>source.php</scope>
    <description>SESSION['…']</description>
</snippet>
PKiZ=k,,class-{-}.sublime-snippet<snippet>
    <content><![CDATA[/**
* $1
*/
class ${2:ClassName}${3: extends ${4:AnotherClass}}
{
	$5
	function ${6:__construct}(${7:argument})
	{
		${0:# code...}
	}
}
]]></content>
    <tabTrigger>class</tabTrigger>
    <scope>source.php</scope>
    <description>class …</description>
</snippet>
PKiZ=klComments.tmPreferences<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>name</key>
	<string>Comments</string>
	<key>scope</key>
	<string>source.php</string>
	<key>settings</key>
	<dict>
		<key>shellVariables</key>
		<array>
			<dict>
				<key>name</key>
				<string>TM_COMMENT_START</string>
				<key>value</key>
				<string>// </string>
			</dict>
			<dict>
				<key>name</key>
				<string>TM_COMMENT_START_2</string>
				<key>value</key>
				<string># </string>
			</dict>
			<dict>
				<key>name</key>
				<string>TM_COMMENT_START_3</string>
				<key>value</key>
				<string>/*</string>
			</dict>
			<dict>
				<key>name</key>
				<string>TM_COMMENT_END_3</string>
				<key>value</key>
				<string>*/</string>
			</dict>
		</array>
	</dict>
	<key>uuid</key>
	<string>06276449-AA4E-424F-A2B6-9F4138416E50</string>
</dict>
</plist>
PKH@p.Completion Rules.tmPreferences<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>scope</key>
    <string>source.php</string>
    <key>settings</key>
    <dict>
        <key>cancelCompletion</key>
        <string>^\s*(\}?\s*(else|do|try)|(class|function)\s*[a-zA-Z_0-9]+*)$</string>
    </dict>
</dict>
</plist>
PKiZ=Constructor.sublime-snippet<snippet>
    <content><![CDATA[function __construct(${1:\$${2:foo}${3: = ${4:null}}}) {
	${2/.+/$this->$0 = \$$0;/}$0
}]]></content>
    <tabTrigger>con</tabTrigger>
    <scope>source.php</scope>
    <description>function __construct</description>
</snippet>
PKiZ=A{define(-).sublime-snippet<snippet>
    <content><![CDATA[define('$1', ${2:'$3'});
$0]]></content>
    <tabTrigger>def</tabTrigger>
    <scope>source.php</scope>
    <description>define(…, …)</description>
</snippet>
PKiZ=.defined(-).sublime-snippet<snippet>
    <content><![CDATA[$1defined('$2')$0]]></content>
    <tabTrigger>def?</tabTrigger>
    <scope>source.php</scope>
    <description>defined(…)</description>
</snippet>
PKiZ=+Kdo-while(-).sublime-snippet<snippet>
    <content><![CDATA[do {
	${0:# code...}
} while (${1:$a <= 10});]]></content>
    <tabTrigger>do</tabTrigger>
    <scope>source.php</scope>
    <description>do … while …</description>
</snippet>
PKiZ=!mecho-___.sublime-snippet<snippet>
    <content><![CDATA[echo "${1:string}"${0};]]></content>
    <tabTrigger>echo</tabTrigger>
    <scope>source.php</scope>
    <description>echo "…"</description>
</snippet>
PKiZ=ZSelseif(-).sublime-snippet<snippet>
    <content><![CDATA[elseif (${1:condition}) {
	${0:# code...}
}]]></content>
    <tabTrigger>elseif</tabTrigger>
    <scope>source.php</scope>
    <description>elseif …</description>
</snippet>
PKiZ=Z,2for(-).sublime-snippet<snippet>
    <content><![CDATA[for (\$${1:i}=${2:0}; \$${1:i} < $3; \$${1:i}++) { 
	${0:# code...}
}]]></content>
    <tabTrigger>for</tabTrigger>
    <scope>source.php</scope>
    <description>for …</description>
</snippet>
PKiZ=5;]foreach(-).sublime-snippet<snippet>
    <content><![CDATA[foreach (\$${1:variable} as \$${2:key}${3: => \$${4:value}}) {
	${0:# code...}
}]]></content>
    <tabTrigger>foreach</tabTrigger>
    <scope>source.php</scope>
    <description>foreach …</description>
</snippet>
PKiZ=Zאfunction-xx(-).sublime-snippet<snippet>
    <content><![CDATA[${1:public }function ${2:FunctionName}(${3:\$${4:value}${5:=''}})
{
	${0:# code...}
}]]></content>
    <tabTrigger>fun</tabTrigger>
    <scope>source.php</scope>
    <description>function …</description>
</snippet>
PKiZ=.5aif(-)-else(-).sublime-snippet<snippet>
    <content><![CDATA[if (${1:condition}) {
	${2:# code...}
} else {
	${3:# code...}
}
$0]]></content>
    <tabTrigger>ifelse</tabTrigger>
    <scope>source.php</scope>
    <description>if … else …</description>
</snippet>
PKiZ=F(if(-).sublime-snippet<snippet>
    <content><![CDATA[if (${1:condition}) {
	${0:# code...}
}]]></content>
    <tabTrigger>if</tabTrigger>
    <scope>source.php</scope>
    <description>if …</description>
</snippet>
PKiZ=ztif-a-b;.sublime-snippet<snippet>
    <content><![CDATA[\$${1:retVal} = (${2:condition}) ? ${3:a} : ${4:b} ;]]></content>
    <tabTrigger>if?</tabTrigger>
    <scope>source.php</scope>
    <description>$… = ( … ) ? … : …</description>
</snippet>
PKiZ=S
include(-).sublime-snippet<snippet>
    <content><![CDATA[include '${1:file}';$0]]></content>
    <tabTrigger>incl</tabTrigger>
    <scope>source.php</scope>
    <description>include …</description>
</snippet>
PKiZ=r	include_once(-).sublime-snippet<snippet>
    <content><![CDATA[include_once '${1:file}';$0]]></content>
    <tabTrigger>incl1</tabTrigger>
    <scope>source.php</scope>
    <description>include_once …</description>
</snippet>
PK.?@:_%Indentation Rules Annex.tmPreferences<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>name</key>
    <string>Indentation Rules Annex</string>
    <key>scope</key>
    <string>source.php</string>
    <key>settings</key>
    <dict>
        <key>unIndentedLinePattern</key>
        <string>^\s*((\*/|#|//| \*).*)?$</string>
    </dict>
</dict>
</plist>
PKJ@p
yyIndentation Rules.tmPreferences<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>name</key>
	<string>Indentation Rules</string>
	<key>scope</key>
	<string>source.php - comment</string>
	<key>settings</key>
	<dict>
		<key>decreaseIndentPattern</key>
		<string>(?x) ^ (.*\*/)? \s* \} .* $|&lt;\?(php)?\s+(else(if)?|end(if|for(each)?|while))</string>
		<key>indentNextLinePattern</key>
		<string>^(?!.*(#|//|\*/|&lt;\?))(?!.*[};:]\s*(//|/\*.*\*/\s*$)).*[^\s;:{}]\s*$|&lt;\?php.+?\b(if|else(?:if)?|for(?:each)?|while)\b.*:(?!.*end\1)</string>

		<key>bracketIndentNextLinePattern</key>
		<string>(?x)
		^ \s* \b(if|while|else|elseif|foreach)\b [^;]* $
		| ^ \s* \b(for)\b .* $
		</string>

	</dict>
	<key>uuid</key>
	<string>CA15DF69-E80D-46DA-BD45-E88C68E92117</string>
</dict>
</plist>
PKTY>+x<new-array(-).sublime-snippet<snippet>
    <content><![CDATA[\$${1:arrayName} = array('$2' => $3${4:,} $0);]]></content>
    <tabTrigger>array</tabTrigger>
    <scope>source.php - variable.other.php</scope>
    <description>$… = array (…)</description>
</snippet>
PKiZ=$+ophp-$this.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG:php} \$this->$0 ?>]]></content>
    <tabTrigger>this</tabTrigger>
    <scope>text.html - source</scope>
    <description>&lt;?php $this-&gt;… ?&gt;</description>
</snippet>
PKiZ=Pphp-echo-$this.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG_WITH_ECHO:php echo} \$this->$0 ?>]]></content>
    <tabTrigger>ethis</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>&lt;?php echo $this-&gt;… ?&gt;</description>
</snippet>
PKiZ= :g2%%*php-echo-htmlentities(___).sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG_WITH_ECHO:php echo} htmlentities(${1:\$var}, ENT_QUOTES, 'utf-8') ?>$0]]></content>
    <tabTrigger>echoh</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>&lt;?php echo htmlentities(…) ?&gt;</description>
</snippet>
PKiZ=E|php-echo-___.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG_WITH_ECHO:php echo} ${1:\$var} ?>$0]]></content>
    <tabTrigger>echo</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>&lt;?php echo … ?&gt;</description>
</snippet>
PKiZ=Xphp-else.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG:php} else: ?>]]></content>
    <tabTrigger>else</tabTrigger>
    <scope>text.html - source</scope>
    <description>&lt;?php else: ?&gt;</description>
</snippet>
PKiZ=T^^4php-foreach-(___)-___-php-endforeach.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG:php} foreach (\$${1:variable} as \$${2:key}${3: => \$${4:value}}): ?>
	${0}
<?${TM_PHP_OPEN_TAG:php} endforeach ?>]]></content>
    <tabTrigger>foreach</tabTrigger>
    <scope>text.html - source</scope>
    <description>&lt;?php foreach (…) … &lt;?php endforeach ?&gt;</description>
</snippet>
PKiZ=SD`gg7php-if-(___)-___-php-else-___-php-endif.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG:php} if (${1:condition}): ?>
	$2
<?${TM_PHP_OPEN_TAG:php} else: ?>
	$0
<?${TM_PHP_OPEN_TAG:php} endif ?>]]></content>
    <tabTrigger>ifelse</tabTrigger>
    <scope>text.html - source</scope>
    <description>&lt;?php if (…) ?&gt; … &lt;?php else ?&gt; … &lt;?php endif ?&gt;</description>
</snippet>
PKiZ=?	%%*php-if-(___)-___-php-endif.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG:php} if (${1:condition}): ?>
	$0
<?${TM_PHP_OPEN_TAG:php} endif ?>]]></content>
    <tabTrigger>if</tabTrigger>
    <scope>text.html - source</scope>
    <description>&lt;?php if (…) ?&gt; … &lt;?php endif ?&gt;</description>
</snippet>
PK?AAPHP.sublime-completions{
	"scope": "source.php - variable.other.php",

	"completions":
	[
		"php",

		{ "trigger": "abs", "contents": "abs(${1:number})" },
		{ "trigger": "acos", "contents": "acos(${1:arg})" },
		{ "trigger": "acosh", "contents": "acosh(${1:arg})" },
		{ "trigger": "addcslashes", "contents": "addcslashes(${1:str}, ${2:charlist})" },
		{ "trigger": "addslashes", "contents": "addslashes(${1:str})" },
		{ "trigger": "aggregate", "contents": "aggregate(${1:object}, ${2:class_name})" },
		{ "trigger": "aggregate_info", "contents": "aggregate_info(${1:object})" },
		{ "trigger": "aggregate_methods", "contents": "aggregate_methods(${1:object}, ${2:class_name})" },
		{ "trigger": "aggregate_methods_by_list", "contents": "aggregate_methods_by_list(${1:object}, ${2:class_name}, ${3:methods_list})" },
		{ "trigger": "aggregate_methods_by_regexp", "contents": "aggregate_methods_by_regexp(${1:object}, ${2:class_name}, ${3:regexp})" },
		{ "trigger": "aggregate_properties", "contents": "aggregate_properties(${1:object}, ${2:class_name})" },
		{ "trigger": "aggregate_properties_by_list", "contents": "aggregate_properties_by_list(${1:object}, ${2:class_name}, ${3:properties_list})" },
		{ "trigger": "aggregate_properties_by_regexp", "contents": "aggregate_properties_by_regexp(${1:object}, ${2:class_name}, ${3:regexp})" },
		{ "trigger": "aggregation_info", "contents": "aggregation_info()" },
		{ "trigger": "apache_child_terminate", "contents": "apache_child_terminate(${1:oid})" },
		{ "trigger": "apache_get_modules", "contents": "apache_get_modules(${1:oid})" },
		{ "trigger": "apache_get_version", "contents": "apache_get_version(${1:oid})" },
		{ "trigger": "apache_getenv", "contents": "apache_getenv(${1:variable})" },
		{ "trigger": "apache_lookup_uri", "contents": "apache_lookup_uri(${1:filename})" },
		{ "trigger": "apache_note", "contents": "apache_note(${1:note_name})" },
		{ "trigger": "apache_request_headers", "contents": "apache_request_headers(${1:oid})" },
		{ "trigger": "apache_reset_timeout", "contents": "apache_reset_timeout(${1:oid})" },
		{ "trigger": "apache_response_headers", "contents": "apache_response_headers(${1:oid})" },
		{ "trigger": "apache_setenv", "contents": "apache_setenv(${1:variable}, ${2:value})" },
		{ "trigger": "apc_add", "contents": "apc_add(${1:key})" },
		{ "trigger": "apc_bin_dump", "contents": "apc_bin_dump()" },
		{ "trigger": "apc_bin_dumpfile", "contents": "apc_bin_dumpfile(${1:files}, ${2:user_vars}, ${3:filename})" },
		{ "trigger": "apc_bin_load", "contents": "apc_bin_load(${1:data})" },
		{ "trigger": "apc_bin_loadfile", "contents": "apc_bin_loadfile(${1:filename})" },
		{ "trigger": "apc_cache_info", "contents": "apc_cache_info()" },
		{ "trigger": "apc_cas", "contents": "apc_cas(${1:key}, ${2:old}, ${3:new})" },
		{ "trigger": "apc_clear_cache", "contents": "apc_clear_cache()" },
		{ "trigger": "apc_compile_file", "contents": "apc_compile_file(${1:filename})" },
		{ "trigger": "apc_dec", "contents": "apc_dec(${1:key})" },
		{ "trigger": "apc_define_constants", "contents": "apc_define_constants(${1:key}, ${2:constants})" },
		{ "trigger": "apc_delete", "contents": "apc_delete(${1:key})" },
		{ "trigger": "apc_delete_file", "contents": "apc_delete_file(${1:keys})" },
		{ "trigger": "apc_exists", "contents": "apc_exists(${1:keys})" },
		{ "trigger": "apc_fetch", "contents": "apc_fetch(${1:key})" },
		{ "trigger": "apc_inc", "contents": "apc_inc(${1:key})" },
		{ "trigger": "apc_load_constants", "contents": "apc_load_constants(${1:key})" },
		{ "trigger": "apc_sma_info", "contents": "apc_sma_info()" },
		{ "trigger": "apc_store", "contents": "apc_store(${1:key}, ${2:var})" },
		{ "trigger": "apd_breakpoint", "contents": "apd_breakpoint(${1:debug_level})" },
		{ "trigger": "apd_callstack", "contents": "apd_callstack(${1:oid})" },
		{ "trigger": "apd_clunk", "contents": "apd_clunk(${1:warning})" },
		{ "trigger": "apd_continue", "contents": "apd_continue(${1:debug_level})" },
		{ "trigger": "apd_croak", "contents": "apd_croak(${1:warning})" },
		{ "trigger": "apd_dump_function_table", "contents": "apd_dump_function_table(${1:oid})" },
		{ "trigger": "apd_dump_persistent_resources", "contents": "apd_dump_persistent_resources(${1:oid})" },
		{ "trigger": "apd_dump_regular_resources", "contents": "apd_dump_regular_resources(${1:oid})" },
		{ "trigger": "apd_echo", "contents": "apd_echo(${1:output})" },
		{ "trigger": "apd_get_active_symbols", "contents": "apd_get_active_symbols(${1:oid})" },
		{ "trigger": "apd_set_pprof_trace", "contents": "apd_set_pprof_trace()" },
		{ "trigger": "apd_set_session", "contents": "apd_set_session(${1:debug_level})" },
		{ "trigger": "apd_set_session_trace", "contents": "apd_set_session_trace(${1:debug_level})" },
		{ "trigger": "apd_set_session_trace_socket", "contents": "apd_set_session_trace_socket(${1:tcp_server}, ${2:socket_type}, ${3:port}, ${4:debug_level})" },
		{ "trigger": "array", "contents": "array()" },
		{ "trigger": "array_change_key_case", "contents": "array_change_key_case(${1:input})" },
		{ "trigger": "array_chunk", "contents": "array_chunk(${1:input}, ${2:size})" },
		{ "trigger": "array_combine", "contents": "array_combine(${1:keys}, ${2:values})" },
		{ "trigger": "array_count_values", "contents": "array_count_values(${1:input})" },
		{ "trigger": "array_diff", "contents": "array_diff(${1:array1}, ${2:array2})" },
		{ "trigger": "array_diff_assoc", "contents": "array_diff_assoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_diff_key", "contents": "array_diff_key(${1:array1}, ${2:array2})" },
		{ "trigger": "array_diff_uassoc", "contents": "array_diff_uassoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_diff_ukey", "contents": "array_diff_ukey(${1:array1}, ${2:array2})" },
		{ "trigger": "array_fill", "contents": "array_fill(${1:start_index}, ${2:num}, ${3:value})" },
		{ "trigger": "array_fill_keys", "contents": "array_fill_keys(${1:keys}, ${2:value})" },
		{ "trigger": "array_filter", "contents": "array_filter(${1:input})" },
		{ "trigger": "array_flip", "contents": "array_flip(${1:trans})" },
		{ "trigger": "array_intersect", "contents": "array_intersect(${1:array1}, ${2:array2})" },
		{ "trigger": "array_intersect_assoc", "contents": "array_intersect_assoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_intersect_key", "contents": "array_intersect_key(${1:array1}, ${2:array2})" },
		{ "trigger": "array_intersect_uassoc", "contents": "array_intersect_uassoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_intersect_ukey", "contents": "array_intersect_ukey(${1:array1}, ${2:array2})" },
		{ "trigger": "array_key_exists", "contents": "array_key_exists(${1:key}, ${2:search})" },
		{ "trigger": "array_keys", "contents": "array_keys(${1:input})" },
		{ "trigger": "array_map", "contents": "array_map(${1:callback}, ${2:arr1})" },
		{ "trigger": "array_merge", "contents": "array_merge(${1:array1})" },
		{ "trigger": "array_merge_recursive", "contents": "array_merge_recursive(${1:array1})" },
		{ "trigger": "array_multisort", "contents": "array_multisort(${1:arr})" },
		{ "trigger": "array_pad", "contents": "array_pad(${1:input}, ${2:pad_size}, ${3:pad_value})" },
		{ "trigger": "array_pop", "contents": "array_pop(${1:array})" },
		{ "trigger": "array_product", "contents": "array_product(${1:array})" },
		{ "trigger": "array_push", "contents": "array_push(${1:array}, ${2:var})" },
		{ "trigger": "array_rand", "contents": "array_rand(${1:input})" },
		{ "trigger": "array_reduce", "contents": "array_reduce(${1:input}, ${2:function})" },
		{ "trigger": "array_replace", "contents": "array_replace(${1:array}, ${2:array1})" },
		{ "trigger": "array_replace_recursive", "contents": "array_replace_recursive(${1:array}, ${2:array1})" },
		{ "trigger": "array_reverse", "contents": "array_reverse(${1:array})" },
		{ "trigger": "array_search", "contents": "array_search(${1:needle}, ${2:haystack})" },
		{ "trigger": "array_shift", "contents": "array_shift(${1:array})" },
		{ "trigger": "array_slice", "contents": "array_slice(${1:array}, ${2:offset})" },
		{ "trigger": "array_splice", "contents": "array_splice(${1:input}, ${2:offset})" },
		{ "trigger": "array_sum", "contents": "array_sum(${1:array})" },
		{ "trigger": "array_udiff", "contents": "array_udiff(${1:array1}, ${2:array2})" },
		{ "trigger": "array_udiff_assoc", "contents": "array_udiff_assoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_udiff_uassoc", "contents": "array_udiff_uassoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_uintersect", "contents": "array_uintersect(${1:array1}, ${2:array2})" },
		{ "trigger": "array_uintersect_assoc", "contents": "array_uintersect_assoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_uintersect_uassoc", "contents": "array_uintersect_uassoc(${1:array1}, ${2:array2})" },
		{ "trigger": "array_unique", "contents": "array_unique(${1:array})" },
		{ "trigger": "array_unshift", "contents": "array_unshift(${1:array}, ${2:var})" },
		{ "trigger": "array_values", "contents": "array_values(${1:input})" },
		{ "trigger": "array_walk", "contents": "array_walk(${1:array}, ${2:funcname})" },
		{ "trigger": "array_walk_recursive", "contents": "array_walk_recursive(${1:input}, ${2:funcname})" },
		{ "trigger": "arsort", "contents": "arsort(${1:array})" },
		{ "trigger": "asin", "contents": "asin(${1:arg})" },
		{ "trigger": "asinh", "contents": "asinh(${1:arg})" },
		{ "trigger": "asort", "contents": "asort(${1:array})" },
		{ "trigger": "assert", "contents": "assert(${1:assertion})" },
		{ "trigger": "assert_options", "contents": "assert_options(${1:what})" },
		{ "trigger": "atan", "contents": "atan(${1:arg})" },
		{ "trigger": "atan2", "contents": "atan2(${1:y}, ${2:x})" },
		{ "trigger": "atanh", "contents": "atanh(${1:arg})" },
		{ "trigger": "base64_decode", "contents": "base64_decode(${1:data})" },
		{ "trigger": "base64_encode", "contents": "base64_encode(${1:data})" },
		{ "trigger": "base_convert", "contents": "base_convert(${1:number}, ${2:frombase}, ${3:tobase})" },
		{ "trigger": "basename", "contents": "basename(${1:path})" },
		{ "trigger": "bbcode_add_element", "contents": "bbcode_add_element(${1:bbcode_container}, ${2:tag_name}, ${3:tag_rules})" },
		{ "trigger": "bbcode_add_smiley", "contents": "bbcode_add_smiley(${1:bbcode_container}, ${2:smiley}, ${3:replace_by})" },
		{ "trigger": "bbcode_create", "contents": "bbcode_create()" },
		{ "trigger": "bbcode_destroy", "contents": "bbcode_destroy(${1:bbcode_container})" },
		{ "trigger": "bbcode_parse", "contents": "bbcode_parse(${1:bbcode_container}, ${2:to_parse})" },
		{ "trigger": "bbcode_set_arg_parser", "contents": "bbcode_set_arg_parser(${1:bbcode_container}, ${2:bbcode_arg_parser})" },
		{ "trigger": "bbcode_set_flags", "contents": "bbcode_set_flags(${1:bbcode_container}, ${2:flags})" },
		{ "trigger": "bcadd", "contents": "bcadd(${1:left_operand}, ${2:right_operand})" },
		{ "trigger": "bccomp", "contents": "bccomp(${1:left_operand}, ${2:right_operand})" },
		{ "trigger": "bcdiv", "contents": "bcdiv(${1:left_operand}, ${2:right_operand})" },
		{ "trigger": "bcmod", "contents": "bcmod(${1:left_operand}, ${2:modulus})" },
		{ "trigger": "bcmul", "contents": "bcmul(${1:left_operand}, ${2:right_operand})" },
		{ "trigger": "bcompiler_load", "contents": "bcompiler_load(${1:filename})" },
		{ "trigger": "bcompiler_load_exe", "contents": "bcompiler_load_exe(${1:filename})" },
		{ "trigger": "bcompiler_parse_class", "contents": "bcompiler_parse_class(${1:class}, ${2:callback})" },
		{ "trigger": "bcompiler_read", "contents": "bcompiler_read(${1:filehandle})" },
		{ "trigger": "bcompiler_write_class", "contents": "bcompiler_write_class(${1:filehandle}, ${2:className})" },
		{ "trigger": "bcompiler_write_constant", "contents": "bcompiler_write_constant(${1:filehandle}, ${2:constantName})" },
		{ "trigger": "bcompiler_write_exe_footer", "contents": "bcompiler_write_exe_footer(${1:filehandle}, ${2:startpos})" },
		{ "trigger": "bcompiler_write_file", "contents": "bcompiler_write_file(${1:filehandle}, ${2:filename})" },
		{ "trigger": "bcompiler_write_footer", "contents": "bcompiler_write_footer(${1:filehandle})" },
		{ "trigger": "bcompiler_write_function", "contents": "bcompiler_write_function(${1:filehandle}, ${2:functionName})" },
		{ "trigger": "bcompiler_write_functions_from_file", "contents": "bcompiler_write_functions_from_file(${1:filehandle}, ${2:fileName})" },
		{ "trigger": "bcompiler_write_header", "contents": "bcompiler_write_header(${1:filehandle})" },
		{ "trigger": "bcompiler_write_included_filename", "contents": "bcompiler_write_included_filename(${1:filehandle}, ${2:filename})" },
		{ "trigger": "bcpow", "contents": "bcpow(${1:left_operand}, ${2:right_operand})" },
		{ "trigger": "bcpowmod", "contents": "bcpowmod(${1:left_operand}, ${2:right_operand}, ${3:modulus})" },
		{ "trigger": "bcscale", "contents": "bcscale(${1:scale})" },
		{ "trigger": "bcsqrt", "contents": "bcsqrt(${1:operand})" },
		{ "trigger": "bcsub", "contents": "bcsub(${1:left_operand}, ${2:right_operand})" },
		{ "trigger": "bin2hex", "contents": "bin2hex(${1:str})" },
		{ "trigger": "bind_textdomain_codeset", "contents": "bind_textdomain_codeset(${1:domain}, ${2:codeset})" },
		{ "trigger": "bindec", "contents": "bindec(${1:binary_string})" },
		{ "trigger": "bindtextdomain", "contents": "bindtextdomain(${1:domain}, ${2:directory})" },
		{ "trigger": "bson_decode", "contents": "bson_decode(${1:bson})" },
		{ "trigger": "bson_encode", "contents": "bson_encode(${1:anything})" },
		{ "trigger": "bzclose", "contents": "bzclose(${1:bz})" },
		{ "trigger": "bzcompress", "contents": "bzcompress(${1:source})" },
		{ "trigger": "bzdecompress", "contents": "bzdecompress(${1:source})" },
		{ "trigger": "bzerrno", "contents": "bzerrno(${1:bz})" },
		{ "trigger": "bzerror", "contents": "bzerror(${1:bz})" },
		{ "trigger": "bzerrstr", "contents": "bzerrstr(${1:bz})" },
		{ "trigger": "bzflush", "contents": "bzflush(${1:bz})" },
		{ "trigger": "bzopen", "contents": "bzopen(${1:filename}, ${2:mode})" },
		{ "trigger": "bzread", "contents": "bzread(${1:bz})" },
		{ "trigger": "bzwrite", "contents": "bzwrite(${1:bz}, ${2:data})" },
		{ "trigger": "cairo_create", "contents": "cairo_create(${1:surface})" },
		{ "trigger": "cairo_font_face_get_type", "contents": "cairo_font_face_get_type(${1:fontface})" },
		{ "trigger": "cairo_font_face_status", "contents": "cairo_font_face_status(${1:fontface})" },
		{ "trigger": "cairo_font_options_create", "contents": "cairo_font_options_create(${1:oid})" },
		{ "trigger": "cairo_font_options_equal", "contents": "cairo_font_options_equal(${1:options}, ${2:other})" },
		{ "trigger": "cairo_font_options_get_antialias", "contents": "cairo_font_options_get_antialias(${1:options})" },
		{ "trigger": "cairo_font_options_get_hint_metrics", "contents": "cairo_font_options_get_hint_metrics(${1:options})" },
		{ "trigger": "cairo_font_options_get_hint_style", "contents": "cairo_font_options_get_hint_style(${1:options})" },
		{ "trigger": "cairo_font_options_get_subpixel_order", "contents": "cairo_font_options_get_subpixel_order(${1:options})" },
		{ "trigger": "cairo_font_options_hash", "contents": "cairo_font_options_hash(${1:options})" },
		{ "trigger": "cairo_font_options_merge", "contents": "cairo_font_options_merge(${1:options}, ${2:other})" },
		{ "trigger": "cairo_font_options_set_antialias", "contents": "cairo_font_options_set_antialias(${1:options}, ${2:antialias})" },
		{ "trigger": "cairo_font_options_set_hint_metrics", "contents": "cairo_font_options_set_hint_metrics(${1:options}, ${2:hint_metrics})" },
		{ "trigger": "cairo_font_options_set_hint_style", "contents": "cairo_font_options_set_hint_style(${1:options}, ${2:hint_style})" },
		{ "trigger": "cairo_font_options_set_subpixel_order", "contents": "cairo_font_options_set_subpixel_order(${1:options}, ${2:subpixel_order})" },
		{ "trigger": "cairo_font_options_status", "contents": "cairo_font_options_status(${1:options})" },
		{ "trigger": "cairo_format_stride_for_width", "contents": "cairo_format_stride_for_width(${1:format}, ${2:width})" },
		{ "trigger": "cairo_image_surface_create", "contents": "cairo_image_surface_create(${1:format}, ${2:width}, ${3:height})" },
		{ "trigger": "cairo_image_surface_create_for_data", "contents": "cairo_image_surface_create_for_data(${1:data}, ${2:format}, ${3:width}, ${4:height})" },
		{ "trigger": "cairo_image_surface_create_from_png", "contents": "cairo_image_surface_create_from_png(${1:file})" },
		{ "trigger": "cairo_image_surface_get_data", "contents": "cairo_image_surface_get_data(${1:surface})" },
		{ "trigger": "cairo_image_surface_get_format", "contents": "cairo_image_surface_get_format(${1:surface})" },
		{ "trigger": "cairo_image_surface_get_height", "contents": "cairo_image_surface_get_height(${1:surface})" },
		{ "trigger": "cairo_image_surface_get_stride", "contents": "cairo_image_surface_get_stride(${1:surface})" },
		{ "trigger": "cairo_image_surface_get_width", "contents": "cairo_image_surface_get_width(${1:surface})" },
		{ "trigger": "cairo_matrix_create_scale", "contents": "cairo_matrix_create_scale()" },
		{ "trigger": "cairo_matrix_create_translate", "contents": "cairo_matrix_create_translate()" },
		{ "trigger": "cairo_matrix_invert", "contents": "cairo_matrix_invert(${1:matrix})" },
		{ "trigger": "cairo_matrix_multiply", "contents": "cairo_matrix_multiply(${1:matrix1}, ${2:matrix2})" },
		{ "trigger": "cairo_matrix_rotate", "contents": "cairo_matrix_rotate(${1:matrix}, ${2:radians})" },
		{ "trigger": "cairo_matrix_transform_distance", "contents": "cairo_matrix_transform_distance(${1:matrix}, ${2:dx}, ${3:dy})" },
		{ "trigger": "cairo_matrix_transform_point", "contents": "cairo_matrix_transform_point(${1:matrix}, ${2:dx}, ${3:dy})" },
		{ "trigger": "cairo_matrix_translate", "contents": "cairo_matrix_translate(${1:matrix}, ${2:tx}, ${3:ty})" },
		{ "trigger": "cairo_pattern_add_color_stop_rgb", "contents": "cairo_pattern_add_color_stop_rgb(${1:pattern}, ${2:offset}, ${3:red}, ${4:green}, ${5:blue})" },
		{ "trigger": "cairo_pattern_add_color_stop_rgba", "contents": "cairo_pattern_add_color_stop_rgba(${1:pattern}, ${2:offset}, ${3:red}, ${4:green}, ${5:blue}, ${6:alpha})" },
		{ "trigger": "cairo_pattern_create_for_surface", "contents": "cairo_pattern_create_for_surface(${1:surface})" },
		{ "trigger": "cairo_pattern_create_linear", "contents": "cairo_pattern_create_linear(${1:x0}, ${2:y0}, ${3:x1}, ${4:y1})" },
		{ "trigger": "cairo_pattern_create_radial", "contents": "cairo_pattern_create_radial(${1:x0}, ${2:y0}, ${3:r0}, ${4:x1}, ${5:y1}, ${6:r1})" },
		{ "trigger": "cairo_pattern_create_rgb", "contents": "cairo_pattern_create_rgb(${1:red}, ${2:green}, ${3:blue})" },
		{ "trigger": "cairo_pattern_create_rgba", "contents": "cairo_pattern_create_rgba(${1:red}, ${2:green}, ${3:blue}, ${4:alpha})" },
		{ "trigger": "cairo_pattern_get_color_stop_count", "contents": "cairo_pattern_get_color_stop_count(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_color_stop_rgba", "contents": "cairo_pattern_get_color_stop_rgba(${1:pattern}, ${2:index})" },
		{ "trigger": "cairo_pattern_get_extend", "contents": "cairo_pattern_get_extend(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_filter", "contents": "cairo_pattern_get_filter(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_linear_points", "contents": "cairo_pattern_get_linear_points(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_matrix", "contents": "cairo_pattern_get_matrix(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_radial_circles", "contents": "cairo_pattern_get_radial_circles(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_rgba", "contents": "cairo_pattern_get_rgba(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_surface", "contents": "cairo_pattern_get_surface(${1:pattern})" },
		{ "trigger": "cairo_pattern_get_type", "contents": "cairo_pattern_get_type(${1:pattern})" },
		{ "trigger": "cairo_pattern_set_extend", "contents": "cairo_pattern_set_extend(${1:pattern}, ${2:extend})" },
		{ "trigger": "cairo_pattern_set_filter", "contents": "cairo_pattern_set_filter(${1:pattern}, ${2:filter})" },
		{ "trigger": "cairo_pattern_set_matrix", "contents": "cairo_pattern_set_matrix(${1:pattern}, ${2:matrix})" },
		{ "trigger": "cairo_pattern_status", "contents": "cairo_pattern_status(${1:pattern})" },
		{ "trigger": "cairo_pdf_surface_create", "contents": "cairo_pdf_surface_create(${1:file}, ${2:width}, ${3:height})" },
		{ "trigger": "cairo_pdf_surface_set_size", "contents": "cairo_pdf_surface_set_size(${1:surface}, ${2:width}, ${3:height})" },
		{ "trigger": "cairo_ps_get_levels", "contents": "cairo_ps_get_levels(${1:oid})" },
		{ "trigger": "cairo_ps_level_to_string", "contents": "cairo_ps_level_to_string(${1:level})" },
		{ "trigger": "cairo_ps_surface_create", "contents": "cairo_ps_surface_create(${1:file}, ${2:width}, ${3:height})" },
		{ "trigger": "cairo_ps_surface_dsc_begin_page_setup", "contents": "cairo_ps_surface_dsc_begin_page_setup(${1:surface})" },
		{ "trigger": "cairo_ps_surface_dsc_begin_setup", "contents": "cairo_ps_surface_dsc_begin_setup(${1:surface})" },
		{ "trigger": "cairo_ps_surface_dsc_comment", "contents": "cairo_ps_surface_dsc_comment(${1:surface}, ${2:comment})" },
		{ "trigger": "cairo_ps_surface_get_eps", "contents": "cairo_ps_surface_get_eps(${1:surface})" },
		{ "trigger": "cairo_ps_surface_restrict_to_level", "contents": "cairo_ps_surface_restrict_to_level(${1:surface}, ${2:level})" },
		{ "trigger": "cairo_ps_surface_set_eps", "contents": "cairo_ps_surface_set_eps(${1:surface}, ${2:level})" },
		{ "trigger": "cairo_ps_surface_set_size", "contents": "cairo_ps_surface_set_size(${1:surface}, ${2:width}, ${3:height})" },
		{ "trigger": "cairo_scaled_font_create", "contents": "cairo_scaled_font_create(${1:fontface}, ${2:matrix}, ${3:ctm}, ${4:fontoptions})" },
		{ "trigger": "cairo_scaled_font_extents", "contents": "cairo_scaled_font_extents(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_get_ctm", "contents": "cairo_scaled_font_get_ctm(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_get_font_face", "contents": "cairo_scaled_font_get_font_face(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_get_font_matrix", "contents": "cairo_scaled_font_get_font_matrix(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_get_font_options", "contents": "cairo_scaled_font_get_font_options(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_get_scale_matrix", "contents": "cairo_scaled_font_get_scale_matrix(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_get_type", "contents": "cairo_scaled_font_get_type(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_glyph_extents", "contents": "cairo_scaled_font_glyph_extents(${1:scaledfont}, ${2:glyphs})" },
		{ "trigger": "cairo_scaled_font_status", "contents": "cairo_scaled_font_status(${1:scaledfont})" },
		{ "trigger": "cairo_scaled_font_text_extents", "contents": "cairo_scaled_font_text_extents(${1:scaledfont}, ${2:text})" },
		{ "trigger": "cairo_surface_copy_page", "contents": "cairo_surface_copy_page(${1:surface})" },
		{ "trigger": "cairo_surface_create_similar", "contents": "cairo_surface_create_similar(${1:surface}, ${2:content}, ${3:width}, ${4:height})" },
		{ "trigger": "cairo_surface_finish", "contents": "cairo_surface_finish(${1:surface})" },
		{ "trigger": "cairo_surface_flush", "contents": "cairo_surface_flush(${1:surface})" },
		{ "trigger": "cairo_surface_get_content", "contents": "cairo_surface_get_content(${1:surface})" },
		{ "trigger": "cairo_surface_get_device_offset", "contents": "cairo_surface_get_device_offset(${1:surface})" },
		{ "trigger": "cairo_surface_get_font_options", "contents": "cairo_surface_get_font_options(${1:surface})" },
		{ "trigger": "cairo_surface_get_type", "contents": "cairo_surface_get_type(${1:surface})" },
		{ "trigger": "cairo_surface_mark_dirty", "contents": "cairo_surface_mark_dirty(${1:surface})" },
		{ "trigger": "cairo_surface_mark_dirty_rectangle", "contents": "cairo_surface_mark_dirty_rectangle(${1:surface}, ${2:x}, ${3:y}, ${4:width}, ${5:height})" },
		{ "trigger": "cairo_surface_set_device_offset", "contents": "cairo_surface_set_device_offset(${1:surface}, ${2:x}, ${3:y})" },
		{ "trigger": "cairo_surface_set_fallback_resolution", "contents": "cairo_surface_set_fallback_resolution(${1:surface}, ${2:x}, ${3:y})" },
		{ "trigger": "cairo_surface_show_page", "contents": "cairo_surface_show_page(${1:surface})" },
		{ "trigger": "cairo_surface_status", "contents": "cairo_surface_status(${1:surface})" },
		{ "trigger": "cairo_surface_write_to_png", "contents": "cairo_surface_write_to_png(${1:surface}, ${2:stream})" },
		{ "trigger": "cairo_svg_surface_create", "contents": "cairo_svg_surface_create(${1:file}, ${2:width}, ${3:height})" },
		{ "trigger": "cairo_svg_surface_restrict_to_version", "contents": "cairo_svg_surface_restrict_to_version(${1:surface}, ${2:version})" },
		{ "trigger": "cairo_svg_version_to_string", "contents": "cairo_svg_version_to_string(${1:version})" },
		{ "trigger": "cal_days_in_month", "contents": "cal_days_in_month(${1:calendar}, ${2:month}, ${3:year})" },
		{ "trigger": "cal_from_jd", "contents": "cal_from_jd(${1:jd}, ${2:calendar})" },
		{ "trigger": "cal_info", "contents": "cal_info()" },
		{ "trigger": "cal_to_jd", "contents": "cal_to_jd(${1:calendar}, ${2:month}, ${3:day}, ${4:year})" },
		{ "trigger": "calcul_hmac", "contents": "calcul_hmac(${1:clent}, ${2:siretcode}, ${3:price}, ${4:reference}, ${5:validity}, ${6:taxation}, ${7:devise}, ${8:language})" },
		{ "trigger": "calculhmac", "contents": "calculhmac(${1:clent}, ${2:data})" },
		{ "trigger": "call_user_func", "contents": "call_user_func(${1:function})" },
		{ "trigger": "call_user_func_array", "contents": "call_user_func_array(${1:function}, ${2:param_arr})" },
		{ "trigger": "call_user_method", "contents": "call_user_method(${1:method_name}, ${2:obj})" },
		{ "trigger": "call_user_method_array", "contents": "call_user_method_array(${1:method_name}, ${2:obj}, ${3:params})" },
		{ "trigger": "ceil", "contents": "ceil(${1:value})" },
		{ "trigger": "chdb_create", "contents": "chdb_create(${1:pathname}, ${2:data})" },
		{ "trigger": "chdir", "contents": "chdir(${1:directory})" },
		{ "trigger": "checkdate", "contents": "checkdate(${1:month}, ${2:day}, ${3:year})" },
		{ "trigger": "checkdnsrr", "contents": "checkdnsrr(${1:host})" },
		{ "trigger": "chgrp", "contents": "chgrp(${1:filename}, ${2:group})" },
		{ "trigger": "chmod", "contents": "chmod(${1:filename}, ${2:mode})" },
		{ "trigger": "chop", "contents": "chop()" },
		{ "trigger": "chown", "contents": "chown(${1:filename}, ${2:user})" },
		{ "trigger": "chr", "contents": "chr(${1:ascii})" },
		{ "trigger": "chroot", "contents": "chroot(${1:directory})" },
		{ "trigger": "chunk_split", "contents": "chunk_split(${1:body})" },
		{ "trigger": "class_alias", "contents": "class_alias()" },
		{ "trigger": "class_exists", "contents": "class_exists(${1:class_name})" },
		{ "trigger": "class_implements", "contents": "class_implements(${1:class})" },
		{ "trigger": "class_parents", "contents": "class_parents(${1:class})" },
		{ "trigger": "classkit_import", "contents": "classkit_import(${1:filename})" },
		{ "trigger": "classkit_method_add", "contents": "classkit_method_add(${1:classname}, ${2:methodname}, ${3:args}, ${4:code})" },
		{ "trigger": "classkit_method_copy", "contents": "classkit_method_copy(${1:dClass}, ${2:dMethod}, ${3:sClass})" },
		{ "trigger": "classkit_method_redefine", "contents": "classkit_method_redefine(${1:classname}, ${2:methodname}, ${3:args}, ${4:code})" },
		{ "trigger": "classkit_method_remove", "contents": "classkit_method_remove(${1:classname}, ${2:methodname})" },
		{ "trigger": "classkit_method_rename", "contents": "classkit_method_rename(${1:classname}, ${2:methodname}, ${3:newname})" },
		{ "trigger": "clearstatcache", "contents": "clearstatcache()" },
		{ "trigger": "closedir", "contents": "closedir()" },
		{ "trigger": "closelog", "contents": "closelog(${1:oid})" },
		{ "trigger": "com_addref", "contents": "com_addref(${1:oid})" },
		{ "trigger": "com_create_guid", "contents": "com_create_guid(${1:oid})" },
		{ "trigger": "com_event_sink", "contents": "com_event_sink(${1:comobject}, ${2:sinkobject})" },
		{ "trigger": "com_get", "contents": "com_get()" },
		{ "trigger": "com_get_active_object", "contents": "com_get_active_object(${1:progid})" },
		{ "trigger": "com_invoke", "contents": "com_invoke(${1:com_object}, ${2:function_name})" },
		{ "trigger": "com_isenum", "contents": "com_isenum(${1:com_module})" },
		{ "trigger": "com_load", "contents": "com_load()" },
		{ "trigger": "com_load_typelib", "contents": "com_load_typelib(${1:typelib_name})" },
		{ "trigger": "com_message_pump", "contents": "com_message_pump()" },
		{ "trigger": "com_print_typeinfo", "contents": "com_print_typeinfo(${1:comobject})" },
		{ "trigger": "com_propget", "contents": "com_propget()" },
		{ "trigger": "com_propput", "contents": "com_propput()" },
		{ "trigger": "com_propset", "contents": "com_propset()" },
		{ "trigger": "com_release", "contents": "com_release(${1:oid})" },
		{ "trigger": "com_set", "contents": "com_set()" },
		{ "trigger": "compact", "contents": "compact(${1:varname})" },
		{ "trigger": "connection_aborted", "contents": "connection_aborted(${1:oid})" },
		{ "trigger": "connection_status", "contents": "connection_status(${1:oid})" },
		{ "trigger": "connection_timeout", "contents": "connection_timeout(${1:oid})" },
		{ "trigger": "constant", "contents": "constant(${1:name})" },
		{ "trigger": "convert_cyr_string", "contents": "convert_cyr_string(${1:str}, ${2:from}, ${3:to})" },
		{ "trigger": "convert_uudecode", "contents": "convert_uudecode(${1:data})" },
		{ "trigger": "convert_uuencode", "contents": "convert_uuencode(${1:data})" },
		{ "trigger": "copy", "contents": "copy(${1:source}, ${2:dest})" },
		{ "trigger": "cos", "contents": "cos(${1:arg})" },
		{ "trigger": "cosh", "contents": "cosh(${1:arg})" },
		{ "trigger": "count", "contents": "count(${1:var})" },
		{ "trigger": "count_chars", "contents": "count_chars(${1:string})" },
		{ "trigger": "counter_bump", "contents": "counter_bump(${1:offset})" },
		{ "trigger": "counter_bump_value", "contents": "counter_bump_value(${1:counter}, ${2:offset})" },
		{ "trigger": "counter_create", "contents": "counter_create(${1:name})" },
		{ "trigger": "counter_get", "contents": "counter_get(${1:oid})" },
		{ "trigger": "counter_get_meta", "contents": "counter_get_meta(${1:counter}, ${2:attribute})" },
		{ "trigger": "counter_get_named", "contents": "counter_get_named(${1:name})" },
		{ "trigger": "counter_get_value", "contents": "counter_get_value(${1:counter})" },
		{ "trigger": "counter_reset", "contents": "counter_reset(${1:oid})" },
		{ "trigger": "counter_reset_value", "contents": "counter_reset_value(${1:counter})" },
		{ "trigger": "crack_check", "contents": "crack_check(${1:dictionary}, ${2:password})" },
		{ "trigger": "crack_closedict", "contents": "crack_closedict()" },
		{ "trigger": "crack_getlastmessage", "contents": "crack_getlastmessage(${1:oid})" },
		{ "trigger": "crack_opendict", "contents": "crack_opendict(${1:dictionary})" },
		{ "trigger": "crc32", "contents": "crc32(${1:str})" },
		{ "trigger": "create_function", "contents": "create_function(${1:args}, ${2:code})" },
		{ "trigger": "crypt", "contents": "crypt(${1:str})" },
		{ "trigger": "ctype_alnum", "contents": "ctype_alnum(${1:text})" },
		{ "trigger": "ctype_alpha", "contents": "ctype_alpha(${1:text})" },
		{ "trigger": "ctype_cntrl", "contents": "ctype_cntrl(${1:text})" },
		{ "trigger": "ctype_digit", "contents": "ctype_digit(${1:text})" },
		{ "trigger": "ctype_graph", "contents": "ctype_graph(${1:text})" },
		{ "trigger": "ctype_lower", "contents": "ctype_lower(${1:text})" },
		{ "trigger": "ctype_print", "contents": "ctype_print(${1:text})" },
		{ "trigger": "ctype_punct", "contents": "ctype_punct(${1:text})" },
		{ "trigger": "ctype_space", "contents": "ctype_space(${1:text})" },
		{ "trigger": "ctype_upper", "contents": "ctype_upper(${1:text})" },
		{ "trigger": "ctype_xdigit", "contents": "ctype_xdigit(${1:text})" },
		{ "trigger": "cubrid_affected_rows", "contents": "cubrid_affected_rows()" },
		{ "trigger": "cubrid_bind", "contents": "cubrid_bind(${1:req_identifier}, ${2:bind_index}, ${3:bind_value})" },
		{ "trigger": "cubrid_client_encoding", "contents": "cubrid_client_encoding()" },
		{ "trigger": "cubrid_close", "contents": "cubrid_close()" },
		{ "trigger": "cubrid_close_prepare", "contents": "cubrid_close_prepare(${1:req_identifier})" },
		{ "trigger": "cubrid_close_request", "contents": "cubrid_close_request(${1:req_identifier})" },
		{ "trigger": "cubrid_col_get", "contents": "cubrid_col_get(${1:conn_identifier}, ${2:oid}, ${3:attr_name})" },
		{ "trigger": "cubrid_col_size", "contents": "cubrid_col_size(${1:conn_identifier}, ${2:oid}, ${3:attr_name})" },
		{ "trigger": "cubrid_column_names", "contents": "cubrid_column_names(${1:req_identifier})" },
		{ "trigger": "cubrid_column_types", "contents": "cubrid_column_types(${1:req_identifier})" },
		{ "trigger": "cubrid_commit", "contents": "cubrid_commit(${1:conn_identifier})" },
		{ "trigger": "cubrid_connect", "contents": "cubrid_connect(${1:host}, ${2:port}, ${3:dbname})" },
		{ "trigger": "cubrid_connect_with_url", "contents": "cubrid_connect_with_url(${1:conn_url})" },
		{ "trigger": "cubrid_current_oid", "contents": "cubrid_current_oid(${1:req_identifier})" },
		{ "trigger": "cubrid_data_seek", "contents": "cubrid_data_seek(${1:req_identifier}, ${2:row_number})" },
		{ "trigger": "cubrid_db_name", "contents": "cubrid_db_name(${1:result}, ${2:index})" },
		{ "trigger": "cubrid_disconnect", "contents": "cubrid_disconnect(${1:conn_identifier})" },
		{ "trigger": "cubrid_drop", "contents": "cubrid_drop(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_errno", "contents": "cubrid_errno()" },
		{ "trigger": "cubrid_error", "contents": "cubrid_error()" },
		{ "trigger": "cubrid_error_code", "contents": "cubrid_error_code(${1:oid})" },
		{ "trigger": "cubrid_error_code_facility", "contents": "cubrid_error_code_facility(${1:oid})" },
		{ "trigger": "cubrid_error_msg", "contents": "cubrid_error_msg(${1:oid})" },
		{ "trigger": "cubrid_execute", "contents": "cubrid_execute(${1:conn_identifier}, ${2:SQL})" },
		{ "trigger": "cubrid_fetch", "contents": "cubrid_fetch(${1:result})" },
		{ "trigger": "cubrid_fetch_array", "contents": "cubrid_fetch_array(${1:result})" },
		{ "trigger": "cubrid_fetch_assoc", "contents": "cubrid_fetch_assoc(${1:result})" },
		{ "trigger": "cubrid_fetch_field", "contents": "cubrid_fetch_field(${1:result})" },
		{ "trigger": "cubrid_fetch_lengths", "contents": "cubrid_fetch_lengths(${1:result})" },
		{ "trigger": "cubrid_fetch_object", "contents": "cubrid_fetch_object(${1:result})" },
		{ "trigger": "cubrid_fetch_row", "contents": "cubrid_fetch_row(${1:result})" },
		{ "trigger": "cubrid_field_flags", "contents": "cubrid_field_flags(${1:result}, ${2:field_offset})" },
		{ "trigger": "cubrid_field_len", "contents": "cubrid_field_len(${1:result}, ${2:field_offset})" },
		{ "trigger": "cubrid_field_name", "contents": "cubrid_field_name(${1:result}, ${2:field_offset})" },
		{ "trigger": "cubrid_field_seek", "contents": "cubrid_field_seek(${1:result})" },
		{ "trigger": "cubrid_field_table", "contents": "cubrid_field_table(${1:result}, ${2:field_offset})" },
		{ "trigger": "cubrid_field_type", "contents": "cubrid_field_type(${1:result}, ${2:field_offset})" },
		{ "trigger": "cubrid_free_result", "contents": "cubrid_free_result(${1:req_identifier})" },
		{ "trigger": "cubrid_get", "contents": "cubrid_get(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_get_charset", "contents": "cubrid_get_charset(${1:conn_identifier})" },
		{ "trigger": "cubrid_get_class_name", "contents": "cubrid_get_class_name(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_get_client_info", "contents": "cubrid_get_client_info(${1:oid})" },
		{ "trigger": "cubrid_get_db_parameter", "contents": "cubrid_get_db_parameter(${1:conn_identifier})" },
		{ "trigger": "cubrid_get_server_info", "contents": "cubrid_get_server_info(${1:conn_identifier})" },
		{ "trigger": "cubrid_insert_id", "contents": "cubrid_insert_id(${1:class_name})" },
		{ "trigger": "cubrid_is_instance", "contents": "cubrid_is_instance(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_list_dbs", "contents": "cubrid_list_dbs(${1:conn_identifier})" },
		{ "trigger": "cubrid_load_from_glo", "contents": "cubrid_load_from_glo(${1:conn_identifier}, ${2:oid}, ${3:file_name})" },
		{ "trigger": "cubrid_lob_close", "contents": "cubrid_lob_close(${1:lob_identifier_array})" },
		{ "trigger": "cubrid_lob_export", "contents": "cubrid_lob_export(${1:conn_identifier}, ${2:lob_identifier}, ${3:path_name})" },
		{ "trigger": "cubrid_lob_get", "contents": "cubrid_lob_get(${1:conn_identifier}, ${2:SQL})" },
		{ "trigger": "cubrid_lob_send", "contents": "cubrid_lob_send(${1:conn_identifier}, ${2:lob_identifier})" },
		{ "trigger": "cubrid_lob_size", "contents": "cubrid_lob_size(${1:lob_identifier})" },
		{ "trigger": "cubrid_lock_read", "contents": "cubrid_lock_read(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_lock_write", "contents": "cubrid_lock_write(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_move_cursor", "contents": "cubrid_move_cursor(${1:req_identifier}, ${2:offset})" },
		{ "trigger": "cubrid_new_glo", "contents": "cubrid_new_glo(${1:conn_identifier}, ${2:class_name}, ${3:file_name})" },
		{ "trigger": "cubrid_num_cols", "contents": "cubrid_num_cols(${1:req_identifier})" },
		{ "trigger": "cubrid_num_fields", "contents": "cubrid_num_fields(${1:result})" },
		{ "trigger": "cubrid_num_rows", "contents": "cubrid_num_rows(${1:req_identifier})" },
		{ "trigger": "cubrid_ping", "contents": "cubrid_ping()" },
		{ "trigger": "cubrid_prepare", "contents": "cubrid_prepare(${1:conn_identifier}, ${2:prepare_stmt})" },
		{ "trigger": "cubrid_put", "contents": "cubrid_put(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_query", "contents": "cubrid_query(${1:query})" },
		{ "trigger": "cubrid_real_escape_string", "contents": "cubrid_real_escape_string(${1:unescaped_string})" },
		{ "trigger": "cubrid_result", "contents": "cubrid_result(${1:result}, ${2:row})" },
		{ "trigger": "cubrid_rollback", "contents": "cubrid_rollback(${1:conn_identifier})" },
		{ "trigger": "cubrid_save_to_glo", "contents": "cubrid_save_to_glo(${1:conn_identifier}, ${2:oid}, ${3:file_name})" },
		{ "trigger": "cubrid_schema", "contents": "cubrid_schema(${1:conn_identifier}, ${2:schema_type})" },
		{ "trigger": "cubrid_send_glo", "contents": "cubrid_send_glo(${1:conn_identifier}, ${2:oid})" },
		{ "trigger": "cubrid_seq_drop", "contents": "cubrid_seq_drop(${1:conn_identifier}, ${2:oid}, ${3:attr_name}, ${4:index})" },
		{ "trigger": "cubrid_seq_insert", "contents": "cubrid_seq_insert(${1:conn_identifier}, ${2:oid}, ${3:attr_name}, ${4:index}, ${5:seq_element})" },
		{ "trigger": "cubrid_seq_put", "contents": "cubrid_seq_put(${1:conn_identifier}, ${2:oid}, ${3:attr_name}, ${4:index}, ${5:seq_element})" },
		{ "trigger": "cubrid_set_add", "contents": "cubrid_set_add(${1:conn_identifier}, ${2:oid}, ${3:attr_name}, ${4:set_element})" },
		{ "trigger": "cubrid_set_drop", "contents": "cubrid_set_drop(${1:conn_identifier}, ${2:oid}, ${3:attr_name}, ${4:set_element})" },
		{ "trigger": "cubrid_unbuffered_query", "contents": "cubrid_unbuffered_query(${1:query})" },
		{ "trigger": "cubrid_version", "contents": "cubrid_version(${1:oid})" },
		{ "trigger": "curl_close", "contents": "curl_close(${1:ch})" },
		{ "trigger": "curl_copy_handle", "contents": "curl_copy_handle(${1:ch})" },
		{ "trigger": "curl_errno", "contents": "curl_errno(${1:ch})" },
		{ "trigger": "curl_error", "contents": "curl_error(${1:ch})" },
		{ "trigger": "curl_exec", "contents": "curl_exec(${1:ch})" },
		{ "trigger": "curl_getinfo", "contents": "curl_getinfo(${1:ch})" },
		{ "trigger": "curl_init", "contents": "curl_init()" },
		{ "trigger": "curl_multi_add_handle", "contents": "curl_multi_add_handle(${1:mh}, ${2:ch})" },
		{ "trigger": "curl_multi_close", "contents": "curl_multi_close(${1:mh})" },
		{ "trigger": "curl_multi_exec", "contents": "curl_multi_exec(${1:mh}, ${2:still_running})" },
		{ "trigger": "curl_multi_getcontent", "contents": "curl_multi_getcontent(${1:ch})" },
		{ "trigger": "curl_multi_info_read", "contents": "curl_multi_info_read(${1:mh})" },
		{ "trigger": "curl_multi_init", "contents": "curl_multi_init(${1:oid})" },
		{ "trigger": "curl_multi_remove_handle", "contents": "curl_multi_remove_handle(${1:mh}, ${2:ch})" },
		{ "trigger": "curl_multi_select", "contents": "curl_multi_select(${1:mh})" },
		{ "trigger": "curl_setopt", "contents": "curl_setopt(${1:ch}, ${2:option}, ${3:value})" },
		{ "trigger": "curl_setopt_array", "contents": "curl_setopt_array(${1:ch}, ${2:options})" },
		{ "trigger": "curl_version", "contents": "curl_version()" },
		{ "trigger": "current", "contents": "current(${1:array})" },
		{ "trigger": "cyrus_authenticate", "contents": "cyrus_authenticate(${1:connection})" },
		{ "trigger": "cyrus_bind", "contents": "cyrus_bind(${1:connection}, ${2:callbacks})" },
		{ "trigger": "cyrus_close", "contents": "cyrus_close(${1:connection})" },
		{ "trigger": "cyrus_connect", "contents": "cyrus_connect()" },
		{ "trigger": "cyrus_query", "contents": "cyrus_query(${1:connection}, ${2:query})" },
		{ "trigger": "cyrus_unbind", "contents": "cyrus_unbind(${1:connection}, ${2:trigger_name})" },
		{ "trigger": "date", "contents": "date(${1:format})" },
		{ "trigger": "date_add", "contents": "date_add()" },
		{ "trigger": "date_create", "contents": "date_create()" },
		{ "trigger": "date_create_from_format", "contents": "date_create_from_format()" },
		{ "trigger": "date_date_set", "contents": "date_date_set()" },
		{ "trigger": "date_default_timezone_get", "contents": "date_default_timezone_get(${1:oid})" },
		{ "trigger": "date_default_timezone_set", "contents": "date_default_timezone_set(${1:timezone_identifier})" },
		{ "trigger": "date_diff", "contents": "date_diff()" },
		{ "trigger": "date_format", "contents": "date_format()" },
		{ "trigger": "date_get_last_errors", "contents": "date_get_last_errors()" },
		{ "trigger": "date_interval_create_from_date_string", "contents": "date_interval_create_from_date_string()" },
		{ "trigger": "date_interval_format", "contents": "date_interval_format()" },
		{ "trigger": "date_isodate_set", "contents": "date_isodate_set()" },
		{ "trigger": "date_modify", "contents": "date_modify()" },
		{ "trigger": "date_offset_get", "contents": "date_offset_get()" },
		{ "trigger": "date_parse", "contents": "date_parse(${1:date})" },
		{ "trigger": "date_parse_from_format", "contents": "date_parse_from_format(${1:format}, ${2:date})" },
		{ "trigger": "date_sub", "contents": "date_sub()" },
		{ "trigger": "date_sun_info", "contents": "date_sun_info(${1:time}, ${2:latitude}, ${3:longitude})" },
		{ "trigger": "date_sunrise", "contents": "date_sunrise(${1:timestamp})" },
		{ "trigger": "date_sunset", "contents": "date_sunset(${1:timestamp})" },
		{ "trigger": "date_time_set", "contents": "date_time_set()" },
		{ "trigger": "date_timestamp_get", "contents": "date_timestamp_get()" },
		{ "trigger": "date_timestamp_set", "contents": "date_timestamp_set()" },
		{ "trigger": "date_timezone_get", "contents": "date_timezone_get()" },
		{ "trigger": "date_timezone_set", "contents": "date_timezone_set()" },
		{ "trigger": "db2_autocommit", "contents": "db2_autocommit(${1:connection})" },
		{ "trigger": "db2_bind_param", "contents": "db2_bind_param(${1:stmt}, ${2:parameter-number}, ${3:variable-name})" },
		{ "trigger": "db2_client_info", "contents": "db2_client_info(${1:connection})" },
		{ "trigger": "db2_close", "contents": "db2_close(${1:connection})" },
		{ "trigger": "db2_column_privileges", "contents": "db2_column_privileges(${1:connection})" },
		{ "trigger": "db2_columns", "contents": "db2_columns(${1:connection})" },
		{ "trigger": "db2_commit", "contents": "db2_commit(${1:connection})" },
		{ "trigger": "db2_conn_error", "contents": "db2_conn_error()" },
		{ "trigger": "db2_conn_errormsg", "contents": "db2_conn_errormsg()" },
		{ "trigger": "db2_connect", "contents": "db2_connect(${1:database}, ${2:username}, ${3:password})" },
		{ "trigger": "db2_cursor_type", "contents": "db2_cursor_type(${1:stmt})" },
		{ "trigger": "db2_escape_string", "contents": "db2_escape_string(${1:string_literal})" },
		{ "trigger": "db2_exec", "contents": "db2_exec(${1:connection}, ${2:statement})" },
		{ "trigger": "db2_execute", "contents": "db2_execute(${1:stmt})" },
		{ "trigger": "db2_fetch_array", "contents": "db2_fetch_array(${1:stmt})" },
		{ "trigger": "db2_fetch_assoc", "contents": "db2_fetch_assoc(${1:stmt})" },
		{ "trigger": "db2_fetch_both", "contents": "db2_fetch_both(${1:stmt})" },
		{ "trigger": "db2_fetch_object", "contents": "db2_fetch_object(${1:stmt})" },
		{ "trigger": "db2_fetch_row", "contents": "db2_fetch_row(${1:stmt})" },
		{ "trigger": "db2_field_display_size", "contents": "db2_field_display_size(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_field_name", "contents": "db2_field_name(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_field_num", "contents": "db2_field_num(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_field_precision", "contents": "db2_field_precision(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_field_scale", "contents": "db2_field_scale(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_field_type", "contents": "db2_field_type(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_field_width", "contents": "db2_field_width(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_foreign_keys", "contents": "db2_foreign_keys(${1:connection}, ${2:qualifier}, ${3:schema}, ${4:table-name})" },
		{ "trigger": "db2_free_result", "contents": "db2_free_result(${1:stmt})" },
		{ "trigger": "db2_free_stmt", "contents": "db2_free_stmt(${1:stmt})" },
		{ "trigger": "db2_get_option", "contents": "db2_get_option(${1:resource}, ${2:option})" },
		{ "trigger": "db2_last_insert_id", "contents": "db2_last_insert_id(${1:resource})" },
		{ "trigger": "db2_lob_read", "contents": "db2_lob_read(${1:stmt}, ${2:colnum}, ${3:length})" },
		{ "trigger": "db2_next_result", "contents": "db2_next_result(${1:stmt})" },
		{ "trigger": "db2_num_fields", "contents": "db2_num_fields(${1:stmt})" },
		{ "trigger": "db2_num_rows", "contents": "db2_num_rows(${1:stmt})" },
		{ "trigger": "db2_pclose", "contents": "db2_pclose(${1:resource})" },
		{ "trigger": "db2_pconnect", "contents": "db2_pconnect(${1:database}, ${2:username}, ${3:password})" },
		{ "trigger": "db2_prepare", "contents": "db2_prepare(${1:connection}, ${2:statement})" },
		{ "trigger": "db2_primary_keys", "contents": "db2_primary_keys(${1:connection}, ${2:qualifier}, ${3:schema}, ${4:table-name})" },
		{ "trigger": "db2_procedure_columns", "contents": "db2_procedure_columns(${1:connection}, ${2:qualifier}, ${3:schema}, ${4:procedure}, ${5:parameter})" },
		{ "trigger": "db2_procedures", "contents": "db2_procedures(${1:connection}, ${2:qualifier}, ${3:schema}, ${4:procedure})" },
		{ "trigger": "db2_result", "contents": "db2_result(${1:stmt}, ${2:column})" },
		{ "trigger": "db2_rollback", "contents": "db2_rollback(${1:connection})" },
		{ "trigger": "db2_server_info", "contents": "db2_server_info(${1:connection})" },
		{ "trigger": "db2_set_option", "contents": "db2_set_option(${1:resource}, ${2:options}, ${3:type})" },
		{ "trigger": "db2_special_columns", "contents": "db2_special_columns(${1:connection}, ${2:qualifier}, ${3:schema}, ${4:table_name}, ${5:scope})" },
		{ "trigger": "db2_statistics", "contents": "db2_statistics(${1:connection}, ${2:qualifier}, ${3:schema}, ${4:table-name}, ${5:unique})" },
		{ "trigger": "db2_stmt_error", "contents": "db2_stmt_error()" },
		{ "trigger": "db2_stmt_errormsg", "contents": "db2_stmt_errormsg()" },
		{ "trigger": "db2_table_privileges", "contents": "db2_table_privileges(${1:connection})" },
		{ "trigger": "db2_tables", "contents": "db2_tables(${1:connection})" },
		{ "trigger": "dba_close", "contents": "dba_close(${1:handle})" },
		{ "trigger": "dba_delete", "contents": "dba_delete(${1:key}, ${2:handle})" },
		{ "trigger": "dba_exists", "contents": "dba_exists(${1:key}, ${2:handle})" },
		{ "trigger": "dba_fetch", "contents": "dba_fetch(${1:key}, ${2:handle})" },
		{ "trigger": "dba_firstkey", "contents": "dba_firstkey(${1:handle})" },
		{ "trigger": "dba_handlers", "contents": "dba_handlers()" },
		{ "trigger": "dba_insert", "contents": "dba_insert(${1:key}, ${2:value}, ${3:handle})" },
		{ "trigger": "dba_key_split", "contents": "dba_key_split(${1:key})" },
		{ "trigger": "dba_list", "contents": "dba_list(${1:oid})" },
		{ "trigger": "dba_nextkey", "contents": "dba_nextkey(${1:handle})" },
		{ "trigger": "dba_open", "contents": "dba_open(${1:path}, ${2:mode})" },
		{ "trigger": "dba_optimize", "contents": "dba_optimize(${1:handle})" },
		{ "trigger": "dba_popen", "contents": "dba_popen(${1:path}, ${2:mode})" },
		{ "trigger": "dba_replace", "contents": "dba_replace(${1:key}, ${2:value}, ${3:handle})" },
		{ "trigger": "dba_sync", "contents": "dba_sync(${1:handle})" },
		{ "trigger": "dbase_add_record", "contents": "dbase_add_record(${1:dbase_identifier}, ${2:record})" },
		{ "trigger": "dbase_close", "contents": "dbase_close(${1:dbase_identifier})" },
		{ "trigger": "dbase_create", "contents": "dbase_create(${1:filename}, ${2:fields})" },
		{ "trigger": "dbase_delete_record", "contents": "dbase_delete_record(${1:dbase_identifier}, ${2:record_number})" },
		{ "trigger": "dbase_get_header_info", "contents": "dbase_get_header_info(${1:dbase_identifier})" },
		{ "trigger": "dbase_get_record", "contents": "dbase_get_record(${1:dbase_identifier}, ${2:record_number})" },
		{ "trigger": "dbase_get_record_with_names", "contents": "dbase_get_record_with_names(${1:dbase_identifier}, ${2:record_number})" },
		{ "trigger": "dbase_numfields", "contents": "dbase_numfields(${1:dbase_identifier})" },
		{ "trigger": "dbase_numrecords", "contents": "dbase_numrecords(${1:dbase_identifier})" },
		{ "trigger": "dbase_open", "contents": "dbase_open(${1:filename}, ${2:mode})" },
		{ "trigger": "dbase_pack", "contents": "dbase_pack(${1:dbase_identifier})" },
		{ "trigger": "dbase_replace_record", "contents": "dbase_replace_record(${1:dbase_identifier}, ${2:record}, ${3:record_number})" },
		{ "trigger": "dbplus_add", "contents": "dbplus_add(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_aql", "contents": "dbplus_aql(${1:query})" },
		{ "trigger": "dbplus_chdir", "contents": "dbplus_chdir()" },
		{ "trigger": "dbplus_close", "contents": "dbplus_close(${1:relation})" },
		{ "trigger": "dbplus_curr", "contents": "dbplus_curr(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_errcode", "contents": "dbplus_errcode()" },
		{ "trigger": "dbplus_errno", "contents": "dbplus_errno(${1:oid})" },
		{ "trigger": "dbplus_find", "contents": "dbplus_find(${1:relation}, ${2:constraints}, ${3:tuple})" },
		{ "trigger": "dbplus_first", "contents": "dbplus_first(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_flush", "contents": "dbplus_flush(${1:relation})" },
		{ "trigger": "dbplus_freealllocks", "contents": "dbplus_freealllocks(${1:oid})" },
		{ "trigger": "dbplus_freelock", "contents": "dbplus_freelock(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_freerlocks", "contents": "dbplus_freerlocks(${1:relation})" },
		{ "trigger": "dbplus_getlock", "contents": "dbplus_getlock(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_getunique", "contents": "dbplus_getunique(${1:relation}, ${2:uniqueid})" },
		{ "trigger": "dbplus_info", "contents": "dbplus_info(${1:relation}, ${2:key}, ${3:result})" },
		{ "trigger": "dbplus_last", "contents": "dbplus_last(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_lockrel", "contents": "dbplus_lockrel(${1:relation})" },
		{ "trigger": "dbplus_next", "contents": "dbplus_next(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_open", "contents": "dbplus_open(${1:name})" },
		{ "trigger": "dbplus_prev", "contents": "dbplus_prev(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_rchperm", "contents": "dbplus_rchperm(${1:relation}, ${2:mask}, ${3:user}, ${4:group})" },
		{ "trigger": "dbplus_rcreate", "contents": "dbplus_rcreate(${1:name}, ${2:domlist})" },
		{ "trigger": "dbplus_rcrtexact", "contents": "dbplus_rcrtexact(${1:name}, ${2:relation})" },
		{ "trigger": "dbplus_rcrtlike", "contents": "dbplus_rcrtlike(${1:name}, ${2:relation})" },
		{ "trigger": "dbplus_resolve", "contents": "dbplus_resolve(${1:relation_name})" },
		{ "trigger": "dbplus_restorepos", "contents": "dbplus_restorepos(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_rkeys", "contents": "dbplus_rkeys(${1:relation}, ${2:domlist})" },
		{ "trigger": "dbplus_ropen", "contents": "dbplus_ropen(${1:name})" },
		{ "trigger": "dbplus_rquery", "contents": "dbplus_rquery(${1:query})" },
		{ "trigger": "dbplus_rrename", "contents": "dbplus_rrename(${1:relation}, ${2:name})" },
		{ "trigger": "dbplus_rsecindex", "contents": "dbplus_rsecindex(${1:relation}, ${2:domlist}, ${3:type})" },
		{ "trigger": "dbplus_runlink", "contents": "dbplus_runlink(${1:relation})" },
		{ "trigger": "dbplus_rzap", "contents": "dbplus_rzap(${1:relation})" },
		{ "trigger": "dbplus_savepos", "contents": "dbplus_savepos(${1:relation})" },
		{ "trigger": "dbplus_setindex", "contents": "dbplus_setindex(${1:relation}, ${2:idx_name})" },
		{ "trigger": "dbplus_setindexbynumber", "contents": "dbplus_setindexbynumber(${1:relation}, ${2:idx_number})" },
		{ "trigger": "dbplus_sql", "contents": "dbplus_sql(${1:query})" },
		{ "trigger": "dbplus_tcl", "contents": "dbplus_tcl(${1:sid}, ${2:script})" },
		{ "trigger": "dbplus_tremove", "contents": "dbplus_tremove(${1:relation}, ${2:tuple})" },
		{ "trigger": "dbplus_undo", "contents": "dbplus_undo(${1:relation})" },
		{ "trigger": "dbplus_undoprepare", "contents": "dbplus_undoprepare(${1:relation})" },
		{ "trigger": "dbplus_unlockrel", "contents": "dbplus_unlockrel(${1:relation})" },
		{ "trigger": "dbplus_unselect", "contents": "dbplus_unselect(${1:relation})" },
		{ "trigger": "dbplus_update", "contents": "dbplus_update(${1:relation}, ${2:old}, ${3:new})" },
		{ "trigger": "dbplus_xlockrel", "contents": "dbplus_xlockrel(${1:relation})" },
		{ "trigger": "dbplus_xunlockrel", "contents": "dbplus_xunlockrel(${1:relation})" },
		{ "trigger": "dbx_close", "contents": "dbx_close(${1:link_identifier})" },
		{ "trigger": "dbx_compare", "contents": "dbx_compare(${1:row_a}, ${2:row_b}, ${3:column_key})" },
		{ "trigger": "dbx_connect", "contents": "dbx_connect(${1:module}, ${2:host}, ${3:database}, ${4:username}, ${5:password})" },
		{ "trigger": "dbx_error", "contents": "dbx_error(${1:link_identifier})" },
		{ "trigger": "dbx_escape_string", "contents": "dbx_escape_string(${1:link_identifier}, ${2:text})" },
		{ "trigger": "dbx_fetch_row", "contents": "dbx_fetch_row(${1:result_identifier})" },
		{ "trigger": "dbx_query", "contents": "dbx_query(${1:link_identifier}, ${2:sql_statement})" },
		{ "trigger": "dbx_sort", "contents": "dbx_sort(${1:result}, ${2:user_compare_function})" },
		{ "trigger": "dcgettext", "contents": "dcgettext(${1:domain}, ${2:message}, ${3:category})" },
		{ "trigger": "dcngettext", "contents": "dcngettext(${1:domain}, ${2:msgid1}, ${3:msgid2}, ${4:n}, ${5:category})" },
		{ "trigger": "deaggregate", "contents": "deaggregate(${1:object})" },
		{ "trigger": "debug_backtrace", "contents": "debug_backtrace()" },
		{ "trigger": "debug_print_backtrace", "contents": "debug_print_backtrace(${1:oid})" },
		{ "trigger": "debug_zval_dump", "contents": "debug_zval_dump(${1:variable})" },
		{ "trigger": "decbin", "contents": "decbin(${1:number})" },
		{ "trigger": "dechex", "contents": "dechex(${1:number})" },
		{ "trigger": "decoct", "contents": "decoct(${1:number})" },
		{ "trigger": "define", "contents": "define(${1:name}, ${2:value})" },
		{ "trigger": "define_syslog_variables", "contents": "define_syslog_variables(${1:oid})" },
		{ "trigger": "defined", "contents": "defined(${1:name})" },
		{ "trigger": "deg2rad", "contents": "deg2rad(${1:number})" },
		{ "trigger": "delete", "contents": "delete(${1:oid})" },
		{ "trigger": "dgettext", "contents": "dgettext(${1:domain}, ${2:message})" },
		{ "trigger": "die", "contents": "die()" },
		{ "trigger": "dio_close", "contents": "dio_close(${1:fd})" },
		{ "trigger": "dio_fcntl", "contents": "dio_fcntl(${1:fd}, ${2:cmd})" },
		{ "trigger": "dio_open", "contents": "dio_open(${1:filename}, ${2:flags})" },
		{ "trigger": "dio_read", "contents": "dio_read(${1:fd})" },
		{ "trigger": "dio_seek", "contents": "dio_seek(${1:fd}, ${2:pos})" },
		{ "trigger": "dio_stat", "contents": "dio_stat(${1:fd})" },
		{ "trigger": "dio_tcsetattr", "contents": "dio_tcsetattr(${1:fd}, ${2:options})" },
		{ "trigger": "dio_truncate", "contents": "dio_truncate(${1:fd}, ${2:offset})" },
		{ "trigger": "dio_write", "contents": "dio_write(${1:fd}, ${2:data})" },
		{ "trigger": "dirname", "contents": "dirname(${1:path})" },
		{ "trigger": "disk_free_space", "contents": "disk_free_space(${1:directory})" },
		{ "trigger": "disk_total_space", "contents": "disk_total_space(${1:directory})" },
		{ "trigger": "diskfreespace", "contents": "diskfreespace()" },
		{ "trigger": "dl", "contents": "dl(${1:library})" },
		{ "trigger": "dngettext", "contents": "dngettext(${1:domain}, ${2:msgid1}, ${3:msgid2}, ${4:n})" },
		{ "trigger": "dns_check_record", "contents": "dns_check_record()" },
		{ "trigger": "dns_get_mx", "contents": "dns_get_mx()" },
		{ "trigger": "dns_get_record", "contents": "dns_get_record(${1:hostname})" },
		{ "trigger": "dom_import_simplexml", "contents": "dom_import_simplexml(${1:node})" },
		{ "trigger": "domxml_new_doc", "contents": "domxml_new_doc(${1:version})" },
		{ "trigger": "domxml_open_file", "contents": "domxml_open_file(${1:filename})" },
		{ "trigger": "domxml_open_mem", "contents": "domxml_open_mem(${1:str})" },
		{ "trigger": "domxml_version", "contents": "domxml_version(${1:oid})" },
		{ "trigger": "domxml_xmltree", "contents": "domxml_xmltree(${1:str})" },
		{ "trigger": "domxml_xslt_stylesheet", "contents": "domxml_xslt_stylesheet(${1:xsl_buf})" },
		{ "trigger": "domxml_xslt_stylesheet_doc", "contents": "domxml_xslt_stylesheet_doc(${1:xsl_doc})" },
		{ "trigger": "domxml_xslt_stylesheet_file", "contents": "domxml_xslt_stylesheet_file(${1:xsl_file})" },
		{ "trigger": "domxml_xslt_version", "contents": "domxml_xslt_version(${1:oid})" },
		{ "trigger": "dotnet_load", "contents": "dotnet_load(${1:assembly_name})" },
		{ "trigger": "doubleval", "contents": "doubleval()" },
		{ "trigger": "each", "contents": "each(${1:array})" },
		{ "trigger": "easter_date", "contents": "easter_date()" },
		{ "trigger": "easter_days", "contents": "easter_days()" },
		{ "trigger": "echo", "contents": "echo(${1:arg1})" },
		{ "trigger": "empty", "contents": "empty(${1:var})" },
		{ "trigger": "enchant_broker_describe", "contents": "enchant_broker_describe(${1:broker})" },
		{ "trigger": "enchant_broker_dict_exists", "contents": "enchant_broker_dict_exists(${1:broker}, ${2:tag})" },
		{ "trigger": "enchant_broker_free", "contents": "enchant_broker_free(${1:broker})" },
		{ "trigger": "enchant_broker_free_dict", "contents": "enchant_broker_free_dict(${1:dict})" },
		{ "trigger": "enchant_broker_get_error", "contents": "enchant_broker_get_error(${1:broker})" },
		{ "trigger": "enchant_broker_init", "contents": "enchant_broker_init(${1:oid})" },
		{ "trigger": "enchant_broker_list_dicts", "contents": "enchant_broker_list_dicts(${1:broker})" },
		{ "trigger": "enchant_broker_request_dict", "contents": "enchant_broker_request_dict(${1:broker}, ${2:tag})" },
		{ "trigger": "enchant_broker_request_pwl_dict", "contents": "enchant_broker_request_pwl_dict(${1:broker}, ${2:filename})" },
		{ "trigger": "enchant_broker_set_ordering", "contents": "enchant_broker_set_ordering(${1:broker}, ${2:tag}, ${3:ordering})" },
		{ "trigger": "enchant_dict_add_to_personal", "contents": "enchant_dict_add_to_personal(${1:dict}, ${2:word})" },
		{ "trigger": "enchant_dict_add_to_session", "contents": "enchant_dict_add_to_session(${1:dict}, ${2:word})" },
		{ "trigger": "enchant_dict_check", "contents": "enchant_dict_check(${1:dict}, ${2:word})" },
		{ "trigger": "enchant_dict_describe", "contents": "enchant_dict_describe(${1:dict})" },
		{ "trigger": "enchant_dict_get_error", "contents": "enchant_dict_get_error(${1:dict})" },
		{ "trigger": "enchant_dict_is_in_session", "contents": "enchant_dict_is_in_session(${1:dict}, ${2:word})" },
		{ "trigger": "enchant_dict_quick_check", "contents": "enchant_dict_quick_check(${1:dict}, ${2:word})" },
		{ "trigger": "enchant_dict_store_replacement", "contents": "enchant_dict_store_replacement(${1:dict}, ${2:mis}, ${3:cor})" },
		{ "trigger": "enchant_dict_suggest", "contents": "enchant_dict_suggest(${1:dict}, ${2:word})" },
		{ "trigger": "end", "contents": "end(${1:array})" },
		{ "trigger": "ereg", "contents": "ereg(${1:pattern}, ${2:string})" },
		{ "trigger": "ereg_replace", "contents": "ereg_replace(${1:pattern}, ${2:replacement}, ${3:string})" },
		{ "trigger": "eregi", "contents": "eregi(${1:pattern}, ${2:string})" },
		{ "trigger": "eregi_replace", "contents": "eregi_replace(${1:pattern}, ${2:replacement}, ${3:string})" },
		{ "trigger": "error_get_last", "contents": "error_get_last(${1:oid})" },
		{ "trigger": "error_log", "contents": "error_log(${1:message})" },
		{ "trigger": "error_reporting", "contents": "error_reporting()" },
		{ "trigger": "escapeshellarg", "contents": "escapeshellarg(${1:arg})" },
		{ "trigger": "escapeshellcmd", "contents": "escapeshellcmd(${1:command})" },
		{ "trigger": "eval", "contents": "eval(${1:code_str})" },
		{ "trigger": "event_add", "contents": "event_add(${1:event})" },
		{ "trigger": "event_base_free", "contents": "event_base_free(${1:event_base})" },
		{ "trigger": "event_base_loop", "contents": "event_base_loop(${1:event_base})" },
		{ "trigger": "event_base_loopbreak", "contents": "event_base_loopbreak(${1:event_base})" },
		{ "trigger": "event_base_loopexit", "contents": "event_base_loopexit(${1:event_base})" },
		{ "trigger": "event_base_new", "contents": "event_base_new(${1:oid})" },
		{ "trigger": "event_base_priority_init", "contents": "event_base_priority_init(${1:event_base}, ${2:npriorities})" },
		{ "trigger": "event_base_set", "contents": "event_base_set(${1:event}, ${2:event_base})" },
		{ "trigger": "event_buffer_base_set", "contents": "event_buffer_base_set(${1:bevent}, ${2:event_base})" },
		{ "trigger": "event_buffer_disable", "contents": "event_buffer_disable(${1:bevent}, ${2:events})" },
		{ "trigger": "event_buffer_enable", "contents": "event_buffer_enable(${1:bevent}, ${2:events})" },
		{ "trigger": "event_buffer_fd_set", "contents": "event_buffer_fd_set(${1:bevent}, ${2:fd})" },
		{ "trigger": "event_buffer_free", "contents": "event_buffer_free(${1:bevent})" },
		{ "trigger": "event_buffer_new", "contents": "event_buffer_new(${1:stream}, ${2:readcb}, ${3:writecb}, ${4:errorcb})" },
		{ "trigger": "event_buffer_priority_set", "contents": "event_buffer_priority_set(${1:bevent}, ${2:priority})" },
		{ "trigger": "event_buffer_read", "contents": "event_buffer_read(${1:bevent}, ${2:data_size})" },
		{ "trigger": "event_buffer_set_callback", "contents": "event_buffer_set_callback(${1:event}, ${2:readcb}, ${3:writecb}, ${4:errorcb})" },
		{ "trigger": "event_buffer_timeout_set", "contents": "event_buffer_timeout_set(${1:bevent}, ${2:read_timeout}, ${3:write_timeout})" },
		{ "trigger": "event_buffer_watermark_set", "contents": "event_buffer_watermark_set(${1:bevent}, ${2:events}, ${3:lowmark}, ${4:highmark})" },
		{ "trigger": "event_buffer_write", "contents": "event_buffer_write(${1:bevent}, ${2:data})" },
		{ "trigger": "event_del", "contents": "event_del(${1:event})" },
		{ "trigger": "event_free", "contents": "event_free(${1:event})" },
		{ "trigger": "event_new", "contents": "event_new(${1:oid})" },
		{ "trigger": "event_set", "contents": "event_set(${1:event}, ${2:fd}, ${3:events}, ${4:callback})" },
		{ "trigger": "exec", "contents": "exec(${1:command})" },
		{ "trigger": "exif_imagetype", "contents": "exif_imagetype(${1:filename})" },
		{ "trigger": "exif_read_data", "contents": "exif_read_data(${1:filename})" },
		{ "trigger": "exif_tagname", "contents": "exif_tagname(${1:index})" },
		{ "trigger": "exif_thumbnail", "contents": "exif_thumbnail(${1:filename})" },
		{ "trigger": "exit", "contents": "exit()" },
		{ "trigger": "exp", "contents": "exp(${1:arg})" },
		{ "trigger": "expect_expectl", "contents": "expect_expectl(${1:expect}, ${2:cases})" },
		{ "trigger": "expect_popen", "contents": "expect_popen(${1:command})" },
		{ "trigger": "explode", "contents": "explode(${1:delimiter}, ${2:string})" },
		{ "trigger": "expm1", "contents": "expm1(${1:arg})" },
		{ "trigger": "extension_loaded", "contents": "extension_loaded(${1:name})" },
		{ "trigger": "extract", "contents": "extract(${1:var_array})" },
		{ "trigger": "ezmlm_hash", "contents": "ezmlm_hash(${1:addr})" },
		{ "trigger": "fam_cancel_monitor", "contents": "fam_cancel_monitor(${1:fam}, ${2:fam_monitor})" },
		{ "trigger": "fam_close", "contents": "fam_close(${1:fam})" },
		{ "trigger": "fam_monitor_collection", "contents": "fam_monitor_collection(${1:fam}, ${2:dirname}, ${3:depth}, ${4:mask})" },
		{ "trigger": "fam_monitor_directory", "contents": "fam_monitor_directory(${1:fam}, ${2:dirname})" },
		{ "trigger": "fam_monitor_file", "contents": "fam_monitor_file(${1:fam}, ${2:filename})" },
		{ "trigger": "fam_next_event", "contents": "fam_next_event(${1:fam})" },
		{ "trigger": "fam_open", "contents": "fam_open()" },
		{ "trigger": "fam_pending", "contents": "fam_pending(${1:fam})" },
		{ "trigger": "fam_resume_monitor", "contents": "fam_resume_monitor(${1:fam}, ${2:fam_monitor})" },
		{ "trigger": "fam_suspend_monitor", "contents": "fam_suspend_monitor(${1:fam}, ${2:fam_monitor})" },
		{ "trigger": "fbsql_affected_rows", "contents": "fbsql_affected_rows()" },
		{ "trigger": "fbsql_autocommit", "contents": "fbsql_autocommit(${1:link_identifier})" },
		{ "trigger": "fbsql_blob_size", "contents": "fbsql_blob_size(${1:blob_handle})" },
		{ "trigger": "fbsql_change_user", "contents": "fbsql_change_user(${1:user}, ${2:password})" },
		{ "trigger": "fbsql_clob_size", "contents": "fbsql_clob_size(${1:clob_handle})" },
		{ "trigger": "fbsql_close", "contents": "fbsql_close()" },
		{ "trigger": "fbsql_commit", "contents": "fbsql_commit()" },
		{ "trigger": "fbsql_connect", "contents": "fbsql_connect()" },
		{ "trigger": "fbsql_create_blob", "contents": "fbsql_create_blob(${1:blob_data})" },
		{ "trigger": "fbsql_create_clob", "contents": "fbsql_create_clob(${1:clob_data})" },
		{ "trigger": "fbsql_create_db", "contents": "fbsql_create_db(${1:database_name})" },
		{ "trigger": "fbsql_data_seek", "contents": "fbsql_data_seek(${1:result}, ${2:row_number})" },
		{ "trigger": "fbsql_database", "contents": "fbsql_database(${1:link_identifier})" },
		{ "trigger": "fbsql_database_password", "contents": "fbsql_database_password(${1:link_identifier})" },
		{ "trigger": "fbsql_db_query", "contents": "fbsql_db_query(${1:database}, ${2:query})" },
		{ "trigger": "fbsql_db_status", "contents": "fbsql_db_status(${1:database_name})" },
		{ "trigger": "fbsql_drop_db", "contents": "fbsql_drop_db(${1:database_name})" },
		{ "trigger": "fbsql_errno", "contents": "fbsql_errno()" },
		{ "trigger": "fbsql_error", "contents": "fbsql_error()" },
		{ "trigger": "fbsql_fetch_array", "contents": "fbsql_fetch_array(${1:result})" },
		{ "trigger": "fbsql_fetch_assoc", "contents": "fbsql_fetch_assoc(${1:result})" },
		{ "trigger": "fbsql_fetch_field", "contents": "fbsql_fetch_field(${1:result})" },
		{ "trigger": "fbsql_fetch_lengths", "contents": "fbsql_fetch_lengths(${1:result})" },
		{ "trigger": "fbsql_fetch_object", "contents": "fbsql_fetch_object(${1:result})" },
		{ "trigger": "fbsql_fetch_row", "contents": "fbsql_fetch_row(${1:result})" },
		{ "trigger": "fbsql_field_flags", "contents": "fbsql_field_flags(${1:result})" },
		{ "trigger": "fbsql_field_len", "contents": "fbsql_field_len(${1:result})" },
		{ "trigger": "fbsql_field_name", "contents": "fbsql_field_name(${1:result})" },
		{ "trigger": "fbsql_field_seek", "contents": "fbsql_field_seek(${1:result})" },
		{ "trigger": "fbsql_field_table", "contents": "fbsql_field_table(${1:result})" },
		{ "trigger": "fbsql_field_type", "contents": "fbsql_field_type(${1:result})" },
		{ "trigger": "fbsql_free_result", "contents": "fbsql_free_result(${1:result})" },
		{ "trigger": "fbsql_get_autostart_info", "contents": "fbsql_get_autostart_info()" },
		{ "trigger": "fbsql_hostname", "contents": "fbsql_hostname(${1:link_identifier})" },
		{ "trigger": "fbsql_insert_id", "contents": "fbsql_insert_id()" },
		{ "trigger": "fbsql_list_dbs", "contents": "fbsql_list_dbs()" },
		{ "trigger": "fbsql_list_fields", "contents": "fbsql_list_fields(${1:database_name}, ${2:table_name})" },
		{ "trigger": "fbsql_list_tables", "contents": "fbsql_list_tables(${1:database})" },
		{ "trigger": "fbsql_next_result", "contents": "fbsql_next_result(${1:result})" },
		{ "trigger": "fbsql_num_fields", "contents": "fbsql_num_fields(${1:result})" },
		{ "trigger": "fbsql_num_rows", "contents": "fbsql_num_rows(${1:result})" },
		{ "trigger": "fbsql_password", "contents": "fbsql_password(${1:link_identifier})" },
		{ "trigger": "fbsql_pconnect", "contents": "fbsql_pconnect()" },
		{ "trigger": "fbsql_query", "contents": "fbsql_query(${1:query})" },
		{ "trigger": "fbsql_read_blob", "contents": "fbsql_read_blob(${1:blob_handle})" },
		{ "trigger": "fbsql_read_clob", "contents": "fbsql_read_clob(${1:clob_handle})" },
		{ "trigger": "fbsql_result", "contents": "fbsql_result(${1:result})" },
		{ "trigger": "fbsql_rollback", "contents": "fbsql_rollback()" },
		{ "trigger": "fbsql_rows_fetched", "contents": "fbsql_rows_fetched(${1:result})" },
		{ "trigger": "fbsql_select_db", "contents": "fbsql_select_db()" },
		{ "trigger": "fbsql_set_characterset", "contents": "fbsql_set_characterset(${1:link_identifier}, ${2:characterset})" },
		{ "trigger": "fbsql_set_lob_mode", "contents": "fbsql_set_lob_mode(${1:result}, ${2:lob_mode})" },
		{ "trigger": "fbsql_set_password", "contents": "fbsql_set_password(${1:link_identifier}, ${2:user}, ${3:password}, ${4:old_password})" },
		{ "trigger": "fbsql_set_transaction", "contents": "fbsql_set_transaction(${1:link_identifier}, ${2:locking}, ${3:isolation})" },
		{ "trigger": "fbsql_start_db", "contents": "fbsql_start_db(${1:database_name})" },
		{ "trigger": "fbsql_stop_db", "contents": "fbsql_stop_db(${1:database_name})" },
		{ "trigger": "fbsql_table_name", "contents": "fbsql_table_name(${1:result}, ${2:index})" },
		{ "trigger": "fbsql_tablename", "contents": "fbsql_tablename()" },
		{ "trigger": "fbsql_username", "contents": "fbsql_username(${1:link_identifier})" },
		{ "trigger": "fbsql_warnings", "contents": "fbsql_warnings()" },
		{ "trigger": "fclose", "contents": "fclose(${1:handle})" },
		{ "trigger": "fdf_add_doc_javascript", "contents": "fdf_add_doc_javascript(${1:fdf_document}, ${2:script_name}, ${3:script_code})" },
		{ "trigger": "fdf_add_template", "contents": "fdf_add_template(${1:fdf_document}, ${2:newpage}, ${3:filename}, ${4:template}, ${5:rename})" },
		{ "trigger": "fdf_close", "contents": "fdf_close(${1:fdf_document})" },
		{ "trigger": "fdf_create", "contents": "fdf_create(${1:oid})" },
		{ "trigger": "fdf_enum_values", "contents": "fdf_enum_values(${1:fdf_document}, ${2:function})" },
		{ "trigger": "fdf_errno", "contents": "fdf_errno(${1:oid})" },
		{ "trigger": "fdf_error", "contents": "fdf_error()" },
		{ "trigger": "fdf_get_ap", "contents": "fdf_get_ap(${1:fdf_document}, ${2:field}, ${3:face}, ${4:filename})" },
		{ "trigger": "fdf_get_attachment", "contents": "fdf_get_attachment(${1:fdf_document}, ${2:fieldname}, ${3:savepath})" },
		{ "trigger": "fdf_get_encoding", "contents": "fdf_get_encoding(${1:fdf_document})" },
		{ "trigger": "fdf_get_file", "contents": "fdf_get_file(${1:fdf_document})" },
		{ "trigger": "fdf_get_flags", "contents": "fdf_get_flags(${1:fdf_document}, ${2:fieldname}, ${3:whichflags})" },
		{ "trigger": "fdf_get_opt", "contents": "fdf_get_opt(${1:fdf_document}, ${2:fieldname})" },
		{ "trigger": "fdf_get_status", "contents": "fdf_get_status(${1:fdf_document})" },
		{ "trigger": "fdf_get_value", "contents": "fdf_get_value(${1:fdf_document}, ${2:fieldname})" },
		{ "trigger": "fdf_get_version", "contents": "fdf_get_version()" },
		{ "trigger": "fdf_header", "contents": "fdf_header(${1:oid})" },
		{ "trigger": "fdf_next_field_name", "contents": "fdf_next_field_name(${1:fdf_document})" },
		{ "trigger": "fdf_open", "contents": "fdf_open(${1:filename})" },
		{ "trigger": "fdf_open_string", "contents": "fdf_open_string(${1:fdf_data})" },
		{ "trigger": "fdf_remove_item", "contents": "fdf_remove_item(${1:fdf_document}, ${2:fieldname}, ${3:item})" },
		{ "trigger": "fdf_save", "contents": "fdf_save(${1:fdf_document})" },
		{ "trigger": "fdf_save_string", "contents": "fdf_save_string(${1:fdf_document})" },
		{ "trigger": "fdf_set_ap", "contents": "fdf_set_ap(${1:fdf_document}, ${2:field_name}, ${3:face}, ${4:filename}, ${5:page_number})" },
		{ "trigger": "fdf_set_encoding", "contents": "fdf_set_encoding(${1:fdf_document}, ${2:encoding})" },
		{ "trigger": "fdf_set_file", "contents": "fdf_set_file(${1:fdf_document}, ${2:url})" },
		{ "trigger": "fdf_set_flags", "contents": "fdf_set_flags(${1:fdf_document}, ${2:fieldname}, ${3:whichFlags}, ${4:newFlags})" },
		{ "trigger": "fdf_set_javascript_action", "contents": "fdf_set_javascript_action(${1:fdf_document}, ${2:fieldname}, ${3:trigger}, ${4:script})" },
		{ "trigger": "fdf_set_on_import_javascript", "contents": "fdf_set_on_import_javascript(${1:fdf_document}, ${2:script}, ${3:before_data_import})" },
		{ "trigger": "fdf_set_opt", "contents": "fdf_set_opt(${1:fdf_document}, ${2:fieldname}, ${3:element}, ${4:str1}, ${5:str2})" },
		{ "trigger": "fdf_set_status", "contents": "fdf_set_status(${1:fdf_document}, ${2:status})" },
		{ "trigger": "fdf_set_submit_form_action", "contents": "fdf_set_submit_form_action(${1:fdf_document}, ${2:fieldname}, ${3:trigger}, ${4:script}, ${5:flags})" },
		{ "trigger": "fdf_set_target_frame", "contents": "fdf_set_target_frame(${1:fdf_document}, ${2:frame_name})" },
		{ "trigger": "fdf_set_value", "contents": "fdf_set_value(${1:fdf_document}, ${2:fieldname}, ${3:value})" },
		{ "trigger": "fdf_set_version", "contents": "fdf_set_version(${1:fdf_document}, ${2:version})" },
		{ "trigger": "feof", "contents": "feof(${1:handle})" },
		{ "trigger": "fflush", "contents": "fflush(${1:handle})" },
		{ "trigger": "fgetc", "contents": "fgetc(${1:handle})" },
		{ "trigger": "fgetcsv", "contents": "fgetcsv(${1:handle})" },
		{ "trigger": "fgets", "contents": "fgets(${1:handle})" },
		{ "trigger": "fgetss", "contents": "fgetss(${1:handle})" },
		{ "trigger": "file", "contents": "file(${1:filename})" },
		{ "trigger": "file_exists", "contents": "file_exists(${1:filename})" },
		{ "trigger": "file_get_contents", "contents": "file_get_contents(${1:filename})" },
		{ "trigger": "file_put_contents", "contents": "file_put_contents(${1:filename}, ${2:data})" },
		{ "trigger": "fileatime", "contents": "fileatime(${1:filename})" },
		{ "trigger": "filectime", "contents": "filectime(${1:filename})" },
		{ "trigger": "filegroup", "contents": "filegroup(${1:filename})" },
		{ "trigger": "fileinode", "contents": "fileinode(${1:filename})" },
		{ "trigger": "filemtime", "contents": "filemtime(${1:filename})" },
		{ "trigger": "fileowner", "contents": "fileowner(${1:filename})" },
		{ "trigger": "fileperms", "contents": "fileperms(${1:filename})" },
		{ "trigger": "filepro", "contents": "filepro(${1:directory})" },
		{ "trigger": "filepro_fieldcount", "contents": "filepro_fieldcount(${1:oid})" },
		{ "trigger": "filepro_fieldname", "contents": "filepro_fieldname(${1:field_number})" },
		{ "trigger": "filepro_fieldtype", "contents": "filepro_fieldtype(${1:field_number})" },
		{ "trigger": "filepro_fieldwidth", "contents": "filepro_fieldwidth(${1:field_number})" },
		{ "trigger": "filepro_retrieve", "contents": "filepro_retrieve(${1:row_number}, ${2:field_number})" },
		{ "trigger": "filepro_rowcount", "contents": "filepro_rowcount(${1:oid})" },
		{ "trigger": "filesize", "contents": "filesize(${1:filename})" },
		{ "trigger": "filetype", "contents": "filetype(${1:filename})" },
		{ "trigger": "filter_has_var", "contents": "filter_has_var(${1:type}, ${2:variable_name})" },
		{ "trigger": "filter_id", "contents": "filter_id(${1:filtername})" },
		{ "trigger": "filter_input", "contents": "filter_input(${1:type}, ${2:variable_name})" },
		{ "trigger": "filter_input_array", "contents": "filter_input_array(${1:type})" },
		{ "trigger": "filter_list", "contents": "filter_list(${1:oid})" },
		{ "trigger": "filter_var", "contents": "filter_var(${1:variable})" },
		{ "trigger": "filter_var_array", "contents": "filter_var_array(${1:data})" },
		{ "trigger": "finfo_buffer", "contents": "finfo_buffer(${1:finfo}, ${2:string = NULL})" },
		{ "trigger": "finfo_close", "contents": "finfo_close(${1:finfo})" },
		{ "trigger": "finfo_file", "contents": "finfo_file(${1:finfo}, ${2:file_name = NULL})" },
		{ "trigger": "finfo_set_flags", "contents": "finfo_set_flags(${1:finfo}, ${2:options})" },
		{ "trigger": "floatval", "contents": "floatval(${1:var})" },
		{ "trigger": "flock", "contents": "flock(${1:handle}, ${2:operation})" },
		{ "trigger": "floor", "contents": "floor(${1:value})" },
		{ "trigger": "flush", "contents": "flush(${1:oid})" },
		{ "trigger": "fmod", "contents": "fmod(${1:x}, ${2:y})" },
		{ "trigger": "fnmatch", "contents": "fnmatch(${1:pattern}, ${2:string})" },
		{ "trigger": "fopen", "contents": "fopen(${1:filename}, ${2:mode})" },
		{ "trigger": "forward_static_call", "contents": "forward_static_call(${1:function})" },
		{ "trigger": "forward_static_call_array", "contents": "forward_static_call_array(${1:function}, ${2:parameters})" },
		{ "trigger": "fpassthru", "contents": "fpassthru(${1:handle})" },
		{ "trigger": "fprintf", "contents": "fprintf(${1:handle}, ${2:format})" },
		{ "trigger": "fputcsv", "contents": "fputcsv(${1:handle}, ${2:fields})" },
		{ "trigger": "fputs", "contents": "fputs()" },
		{ "trigger": "fread", "contents": "fread(${1:handle}, ${2:length})" },
		{ "trigger": "FrenchToJD", "contents": "FrenchToJD(${1:month}, ${2:day}, ${3:year})" },
		{ "trigger": "fribidi_log2vis", "contents": "fribidi_log2vis(${1:str}, ${2:direction}, ${3:charset})" },
		{ "trigger": "fscanf", "contents": "fscanf(${1:handle}, ${2:format})" },
		{ "trigger": "fseek", "contents": "fseek(${1:handle}, ${2:offset})" },
		{ "trigger": "fsockopen", "contents": "fsockopen(${1:hostname})" },
		{ "trigger": "fstat", "contents": "fstat(${1:handle})" },
		{ "trigger": "ftell", "contents": "ftell(${1:handle})" },
		{ "trigger": "ftok", "contents": "ftok(${1:pathname}, ${2:proj})" },
		{ "trigger": "ftp_alloc", "contents": "ftp_alloc(${1:ftp_stream}, ${2:filesize})" },
		{ "trigger": "ftp_cdup", "contents": "ftp_cdup(${1:ftp_stream})" },
		{ "trigger": "ftp_chdir", "contents": "ftp_chdir(${1:ftp_stream}, ${2:directory})" },
		{ "trigger": "ftp_chmod", "contents": "ftp_chmod(${1:ftp_stream}, ${2:mode}, ${3:filename})" },
		{ "trigger": "ftp_close", "contents": "ftp_close(${1:ftp_stream})" },
		{ "trigger": "ftp_connect", "contents": "ftp_connect(${1:host})" },
		{ "trigger": "ftp_delete", "contents": "ftp_delete(${1:ftp_stream}, ${2:path})" },
		{ "trigger": "ftp_exec", "contents": "ftp_exec(${1:ftp_stream}, ${2:command})" },
		{ "trigger": "ftp_fget", "contents": "ftp_fget(${1:ftp_stream}, ${2:handle}, ${3:remote_file}, ${4:mode})" },
		{ "trigger": "ftp_fput", "contents": "ftp_fput(${1:ftp_stream}, ${2:remote_file}, ${3:handle}, ${4:mode})" },
		{ "trigger": "ftp_get", "contents": "ftp_get(${1:ftp_stream}, ${2:local_file}, ${3:remote_file}, ${4:mode})" },
		{ "trigger": "ftp_get_option", "contents": "ftp_get_option(${1:ftp_stream}, ${2:option})" },
		{ "trigger": "ftp_login", "contents": "ftp_login(${1:ftp_stream}, ${2:username}, ${3:password})" },
		{ "trigger": "ftp_mdtm", "contents": "ftp_mdtm(${1:ftp_stream}, ${2:remote_file})" },
		{ "trigger": "ftp_mkdir", "contents": "ftp_mkdir(${1:ftp_stream}, ${2:directory})" },
		{ "trigger": "ftp_nb_continue", "contents": "ftp_nb_continue(${1:ftp_stream})" },
		{ "trigger": "ftp_nb_fget", "contents": "ftp_nb_fget(${1:ftp_stream}, ${2:handle}, ${3:remote_file}, ${4:mode})" },
		{ "trigger": "ftp_nb_fput", "contents": "ftp_nb_fput(${1:ftp_stream}, ${2:remote_file}, ${3:handle}, ${4:mode})" },
		{ "trigger": "ftp_nb_get", "contents": "ftp_nb_get(${1:ftp_stream}, ${2:local_file}, ${3:remote_file}, ${4:mode})" },
		{ "trigger": "ftp_nb_put", "contents": "ftp_nb_put(${1:ftp_stream}, ${2:remote_file}, ${3:local_file}, ${4:mode})" },
		{ "trigger": "ftp_nlist", "contents": "ftp_nlist(${1:ftp_stream}, ${2:directory})" },
		{ "trigger": "ftp_pasv", "contents": "ftp_pasv(${1:ftp_stream}, ${2:pasv})" },
		{ "trigger": "ftp_put", "contents": "ftp_put(${1:ftp_stream}, ${2:remote_file}, ${3:local_file}, ${4:mode})" },
		{ "trigger": "ftp_pwd", "contents": "ftp_pwd(${1:ftp_stream})" },
		{ "trigger": "ftp_quit", "contents": "ftp_quit()" },
		{ "trigger": "ftp_raw", "contents": "ftp_raw(${1:ftp_stream}, ${2:command})" },
		{ "trigger": "ftp_rawlist", "contents": "ftp_rawlist(${1:ftp_stream}, ${2:directory})" },
		{ "trigger": "ftp_rename", "contents": "ftp_rename(${1:ftp_stream}, ${2:oldname}, ${3:newname})" },
		{ "trigger": "ftp_rmdir", "contents": "ftp_rmdir(${1:ftp_stream}, ${2:directory})" },
		{ "trigger": "ftp_set_option", "contents": "ftp_set_option(${1:ftp_stream}, ${2:option}, ${3:value})" },
		{ "trigger": "ftp_site", "contents": "ftp_site(${1:ftp_stream}, ${2:command})" },
		{ "trigger": "ftp_size", "contents": "ftp_size(${1:ftp_stream}, ${2:remote_file})" },
		{ "trigger": "ftp_ssl_connect", "contents": "ftp_ssl_connect(${1:host})" },
		{ "trigger": "ftp_systype", "contents": "ftp_systype(${1:ftp_stream})" },
		{ "trigger": "ftruncate", "contents": "ftruncate(${1:handle}, ${2:size})" },
		{ "trigger": "func_get_arg", "contents": "func_get_arg(${1:arg_num})" },
		{ "trigger": "func_get_args", "contents": "func_get_args(${1:oid})" },
		{ "trigger": "func_num_args", "contents": "func_num_args(${1:oid})" },
		{ "trigger": "function_exists", "contents": "function_exists(${1:function_name})" },
		{ "trigger": "fwrite", "contents": "fwrite(${1:handle}, ${2:string})" },
		{ "trigger": "gc_collect_cycles", "contents": "gc_collect_cycles(${1:oid})" },
		{ "trigger": "gc_disable", "contents": "gc_disable(${1:oid})" },
		{ "trigger": "gc_enable", "contents": "gc_enable(${1:oid})" },
		{ "trigger": "gc_enabled", "contents": "gc_enabled(${1:oid})" },
		{ "trigger": "gd_info", "contents": "gd_info(${1:oid})" },
		{ "trigger": "geoip_continent_code_by_name", "contents": "geoip_continent_code_by_name(${1:hostname})" },
		{ "trigger": "geoip_country_code3_by_name", "contents": "geoip_country_code3_by_name(${1:hostname})" },
		{ "trigger": "geoip_country_code_by_name", "contents": "geoip_country_code_by_name(${1:hostname})" },
		{ "trigger": "geoip_country_name_by_name", "contents": "geoip_country_name_by_name(${1:hostname})" },
		{ "trigger": "geoip_database_info", "contents": "geoip_database_info()" },
		{ "trigger": "geoip_db_avail", "contents": "geoip_db_avail(${1:database})" },
		{ "trigger": "geoip_db_filename", "contents": "geoip_db_filename(${1:database})" },
		{ "trigger": "geoip_db_get_all_info", "contents": "geoip_db_get_all_info(${1:oid})" },
		{ "trigger": "geoip_id_by_name", "contents": "geoip_id_by_name(${1:hostname})" },
		{ "trigger": "geoip_isp_by_name", "contents": "geoip_isp_by_name(${1:hostname})" },
		{ "trigger": "geoip_org_by_name", "contents": "geoip_org_by_name(${1:hostname})" },
		{ "trigger": "geoip_record_by_name", "contents": "geoip_record_by_name(${1:hostname})" },
		{ "trigger": "geoip_region_by_name", "contents": "geoip_region_by_name(${1:hostname})" },
		{ "trigger": "geoip_region_name_by_code", "contents": "geoip_region_name_by_code(${1:country_code}, ${2:region_code})" },
		{ "trigger": "geoip_time_zone_by_country_and_region", "contents": "geoip_time_zone_by_country_and_region(${1:country_code})" },
		{ "trigger": "get_browser", "contents": "get_browser()" },
		{ "trigger": "get_called_class", "contents": "get_called_class(${1:oid})" },
		{ "trigger": "get_cfg_var", "contents": "get_cfg_var(${1:option})" },
		{ "trigger": "get_class", "contents": "get_class()" },
		{ "trigger": "get_class_methods", "contents": "get_class_methods(${1:class_name})" },
		{ "trigger": "get_class_vars", "contents": "get_class_vars(${1:class_name})" },
		{ "trigger": "get_current_user", "contents": "get_current_user(${1:oid})" },
		{ "trigger": "get_declared_classes", "contents": "get_declared_classes(${1:oid})" },
		{ "trigger": "get_declared_interfaces", "contents": "get_declared_interfaces(${1:oid})" },
		{ "trigger": "get_defined_constants", "contents": "get_defined_constants()" },
		{ "trigger": "get_defined_functions", "contents": "get_defined_functions(${1:oid})" },
		{ "trigger": "get_defined_vars", "contents": "get_defined_vars(${1:oid})" },
		{ "trigger": "get_extension_funcs", "contents": "get_extension_funcs(${1:module_name})" },
		{ "trigger": "get_headers", "contents": "get_headers(${1:url})" },
		{ "trigger": "get_html_translation_table", "contents": "get_html_translation_table()" },
		{ "trigger": "get_include_path", "contents": "get_include_path(${1:oid})" },
		{ "trigger": "get_included_files", "contents": "get_included_files(${1:oid})" },
		{ "trigger": "get_loaded_extensions", "contents": "get_loaded_extensions()" },
		{ "trigger": "get_magic_quotes_gpc", "contents": "get_magic_quotes_gpc(${1:oid})" },
		{ "trigger": "get_magic_quotes_runtime", "contents": "get_magic_quotes_runtime(${1:oid})" },
		{ "trigger": "get_meta_tags", "contents": "get_meta_tags(${1:filename})" },
		{ "trigger": "get_object_vars", "contents": "get_object_vars(${1:object})" },
		{ "trigger": "get_parent_class", "contents": "get_parent_class()" },
		{ "trigger": "get_required_files", "contents": "get_required_files()" },
		{ "trigger": "get_resource_type", "contents": "get_resource_type(${1:handle})" },
		{ "trigger": "getallheaders", "contents": "getallheaders(${1:oid})" },
		{ "trigger": "getcwd", "contents": "getcwd(${1:oid})" },
		{ "trigger": "getdate", "contents": "getdate()" },
		{ "trigger": "getenv", "contents": "getenv(${1:varname})" },
		{ "trigger": "gethostbyaddr", "contents": "gethostbyaddr(${1:ip_address})" },
		{ "trigger": "gethostbyname", "contents": "gethostbyname(${1:hostname})" },
		{ "trigger": "gethostbynamel", "contents": "gethostbynamel(${1:hostname})" },
		{ "trigger": "gethostname", "contents": "gethostname(${1:oid})" },
		{ "trigger": "getimagesize", "contents": "getimagesize(${1:filename})" },
		{ "trigger": "getlastmod", "contents": "getlastmod(${1:oid})" },
		{ "trigger": "getmxrr", "contents": "getmxrr(${1:hostname}, ${2:mxhosts})" },
		{ "trigger": "getmygid", "contents": "getmygid(${1:oid})" },
		{ "trigger": "getmyinode", "contents": "getmyinode(${1:oid})" },
		{ "trigger": "getmypid", "contents": "getmypid(${1:oid})" },
		{ "trigger": "getmyuid", "contents": "getmyuid(${1:oid})" },
		{ "trigger": "getopt", "contents": "getopt(${1:options})" },
		{ "trigger": "getprotobyname", "contents": "getprotobyname(${1:name})" },
		{ "trigger": "getprotobynumber", "contents": "getprotobynumber(${1:number})" },
		{ "trigger": "getrandmax", "contents": "getrandmax(${1:oid})" },
		{ "trigger": "getrusage", "contents": "getrusage()" },
		{ "trigger": "getservbyname", "contents": "getservbyname(${1:service}, ${2:protocol})" },
		{ "trigger": "getservbyport", "contents": "getservbyport(${1:port}, ${2:protocol})" },
		{ "trigger": "gettext", "contents": "gettext(${1:message})" },
		{ "trigger": "gettimeofday", "contents": "gettimeofday()" },
		{ "trigger": "gettype", "contents": "gettype(${1:var})" },
		{ "trigger": "glob", "contents": "glob(${1:pattern})" },
		{ "trigger": "gmdate", "contents": "gmdate(${1:format})" },
		{ "trigger": "gmmktime", "contents": "gmmktime()" },
		{ "trigger": "gmp_abs", "contents": "gmp_abs(${1:a})" },
		{ "trigger": "gmp_add", "contents": "gmp_add(${1:a}, ${2:b})" },
		{ "trigger": "gmp_and", "contents": "gmp_and(${1:a}, ${2:b})" },
		{ "trigger": "gmp_clrbit", "contents": "gmp_clrbit(${1:a}, ${2:index})" },
		{ "trigger": "gmp_cmp", "contents": "gmp_cmp(${1:a}, ${2:b})" },
		{ "trigger": "gmp_com", "contents": "gmp_com(${1:a})" },
		{ "trigger": "gmp_div", "contents": "gmp_div()" },
		{ "trigger": "gmp_div_q", "contents": "gmp_div_q(${1:a}, ${2:b})" },
		{ "trigger": "gmp_div_qr", "contents": "gmp_div_qr(${1:n}, ${2:d})" },
		{ "trigger": "gmp_div_r", "contents": "gmp_div_r(${1:n}, ${2:d})" },
		{ "trigger": "gmp_divexact", "contents": "gmp_divexact(${1:n}, ${2:d})" },
		{ "trigger": "gmp_fact", "contents": "gmp_fact(${1:a})" },
		{ "trigger": "gmp_gcd", "contents": "gmp_gcd(${1:a}, ${2:b})" },
		{ "trigger": "gmp_gcdext", "contents": "gmp_gcdext(${1:a}, ${2:b})" },
		{ "trigger": "gmp_hamdist", "contents": "gmp_hamdist(${1:a}, ${2:b})" },
		{ "trigger": "gmp_init", "contents": "gmp_init(${1:number})" },
		{ "trigger": "gmp_intval", "contents": "gmp_intval(${1:gmpnumber})" },
		{ "trigger": "gmp_invert", "contents": "gmp_invert(${1:a}, ${2:b})" },
		{ "trigger": "gmp_jacobi", "contents": "gmp_jacobi(${1:a}, ${2:p})" },
		{ "trigger": "gmp_legendre", "contents": "gmp_legendre(${1:a}, ${2:p})" },
		{ "trigger": "gmp_mod", "contents": "gmp_mod(${1:n}, ${2:d})" },
		{ "trigger": "gmp_mul", "contents": "gmp_mul(${1:a}, ${2:b})" },
		{ "trigger": "gmp_neg", "contents": "gmp_neg(${1:a})" },
		{ "trigger": "gmp_nextprime", "contents": "gmp_nextprime(${1:a})" },
		{ "trigger": "gmp_or", "contents": "gmp_or(${1:a}, ${2:b})" },
		{ "trigger": "gmp_perfect_square", "contents": "gmp_perfect_square(${1:a})" },
		{ "trigger": "gmp_popcount", "contents": "gmp_popcount(${1:a})" },
		{ "trigger": "gmp_pow", "contents": "gmp_pow(${1:base}, ${2:exp})" },
		{ "trigger": "gmp_powm", "contents": "gmp_powm(${1:base}, ${2:exp}, ${3:mod})" },
		{ "trigger": "gmp_prob_prime", "contents": "gmp_prob_prime(${1:a})" },
		{ "trigger": "gmp_random", "contents": "gmp_random()" },
		{ "trigger": "gmp_scan0", "contents": "gmp_scan0(${1:a}, ${2:start})" },
		{ "trigger": "gmp_scan1", "contents": "gmp_scan1(${1:a}, ${2:start})" },
		{ "trigger": "gmp_setbit", "contents": "gmp_setbit(${1:a}, ${2:index})" },
		{ "trigger": "gmp_sign", "contents": "gmp_sign(${1:a})" },
		{ "trigger": "gmp_sqrt", "contents": "gmp_sqrt(${1:a})" },
		{ "trigger": "gmp_sqrtrem", "contents": "gmp_sqrtrem(${1:a})" },
		{ "trigger": "gmp_strval", "contents": "gmp_strval(${1:gmpnumber})" },
		{ "trigger": "gmp_sub", "contents": "gmp_sub(${1:a}, ${2:b})" },
		{ "trigger": "gmp_testbit", "contents": "gmp_testbit(${1:a}, ${2:index})" },
		{ "trigger": "gmp_xor", "contents": "gmp_xor(${1:a}, ${2:b})" },
		{ "trigger": "gmstrftime", "contents": "gmstrftime(${1:format})" },
		{ "trigger": "gnupg_adddecryptkey", "contents": "gnupg_adddecryptkey(${1:identifier}, ${2:fingerprint}, ${3:passphrase})" },
		{ "trigger": "gnupg_addencryptkey", "contents": "gnupg_addencryptkey(${1:identifier}, ${2:fingerprint})" },
		{ "trigger": "gnupg_addsignkey", "contents": "gnupg_addsignkey(${1:identifier}, ${2:fingerprint})" },
		{ "trigger": "gnupg_cleardecryptkeys", "contents": "gnupg_cleardecryptkeys(${1:identifier})" },
		{ "trigger": "gnupg_clearencryptkeys", "contents": "gnupg_clearencryptkeys(${1:identifier})" },
		{ "trigger": "gnupg_clearsignkeys", "contents": "gnupg_clearsignkeys(${1:identifier})" },
		{ "trigger": "gnupg_decrypt", "contents": "gnupg_decrypt(${1:identifier}, ${2:text})" },
		{ "trigger": "gnupg_decryptverify", "contents": "gnupg_decryptverify(${1:identifier}, ${2:text}, ${3:plaintext})" },
		{ "trigger": "gnupg_encrypt", "contents": "gnupg_encrypt(${1:identifier}, ${2:plaintext})" },
		{ "trigger": "gnupg_encryptsign", "contents": "gnupg_encryptsign(${1:identifier}, ${2:plaintext})" },
		{ "trigger": "gnupg_export", "contents": "gnupg_export(${1:identifier}, ${2:fingerprint})" },
		{ "trigger": "gnupg_geterror", "contents": "gnupg_geterror(${1:identifier})" },
		{ "trigger": "gnupg_getprotocol", "contents": "gnupg_getprotocol(${1:identifier})" },
		{ "trigger": "gnupg_import", "contents": "gnupg_import(${1:identifier}, ${2:keydata})" },
		{ "trigger": "gnupg_init", "contents": "gnupg_init(${1:oid})" },
		{ "trigger": "gnupg_keyinfo", "contents": "gnupg_keyinfo(${1:identifier}, ${2:pattern})" },
		{ "trigger": "gnupg_setarmor", "contents": "gnupg_setarmor(${1:identifier}, ${2:armor})" },
		{ "trigger": "gnupg_seterrormode", "contents": "gnupg_seterrormode(${1:identifier}, ${2:errormode})" },
		{ "trigger": "gnupg_setsignmode", "contents": "gnupg_setsignmode(${1:identifier}, ${2:signmode})" },
		{ "trigger": "gnupg_sign", "contents": "gnupg_sign(${1:identifier}, ${2:plaintext})" },
		{ "trigger": "gnupg_verify", "contents": "gnupg_verify(${1:identifier}, ${2:signed_text}, ${3:signature})" },
		{ "trigger": "gopher_parsedir", "contents": "gopher_parsedir(${1:dirent})" },
		{ "trigger": "grapheme_extract", "contents": "grapheme_extract(${1:haystack}, ${2:size})" },
		{ "trigger": "grapheme_stripos", "contents": "grapheme_stripos(${1:haystack}, ${2:needle})" },
		{ "trigger": "grapheme_stristr", "contents": "grapheme_stristr(${1:haystack}, ${2:needle})" },
		{ "trigger": "grapheme_strlen", "contents": "grapheme_strlen(${1:input})" },
		{ "trigger": "grapheme_strpos", "contents": "grapheme_strpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "grapheme_strripos", "contents": "grapheme_strripos(${1:haystack}, ${2:needle})" },
		{ "trigger": "grapheme_strrpos", "contents": "grapheme_strrpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "grapheme_strstr", "contents": "grapheme_strstr(${1:haystack}, ${2:needle})" },
		{ "trigger": "grapheme_substr", "contents": "grapheme_substr(${1:string}, ${2:start})" },
		{ "trigger": "GregorianToJD", "contents": "GregorianToJD(${1:month}, ${2:day}, ${3:year})" },
		{ "trigger": "gupnp_context_get_host_ip", "contents": "gupnp_context_get_host_ip(${1:context})" },
		{ "trigger": "gupnp_context_get_port", "contents": "gupnp_context_get_port(${1:context})" },
		{ "trigger": "gupnp_context_get_subscription_timeout", "contents": "gupnp_context_get_subscription_timeout(${1:context})" },
		{ "trigger": "gupnp_context_host_path", "contents": "gupnp_context_host_path(${1:context}, ${2:local_path}, ${3:server_path})" },
		{ "trigger": "gupnp_context_new", "contents": "gupnp_context_new()" },
		{ "trigger": "gupnp_context_set_subscription_timeout", "contents": "gupnp_context_set_subscription_timeout(${1:context}, ${2:timeout})" },
		{ "trigger": "gupnp_context_timeout_add", "contents": "gupnp_context_timeout_add(${1:context}, ${2:timeout}, ${3:callback})" },
		{ "trigger": "gupnp_context_unhost_path", "contents": "gupnp_context_unhost_path(${1:context}, ${2:server_path})" },
		{ "trigger": "gupnp_control_point_browse_start", "contents": "gupnp_control_point_browse_start(${1:cpoint})" },
		{ "trigger": "gupnp_control_point_browse_stop", "contents": "gupnp_control_point_browse_stop(${1:cpoint})" },
		{ "trigger": "gupnp_control_point_callback_set", "contents": "gupnp_control_point_callback_set(${1:cpoint}, ${2:signal}, ${3:callback})" },
		{ "trigger": "gupnp_control_point_new", "contents": "gupnp_control_point_new(${1:context}, ${2:target})" },
		{ "trigger": "gupnp_device_action_callback_set", "contents": "gupnp_device_action_callback_set(${1:root_device}, ${2:signal}, ${3:action_name}, ${4:callback})" },
		{ "trigger": "gupnp_device_info_get", "contents": "gupnp_device_info_get(${1:root_device})" },
		{ "trigger": "gupnp_device_info_get_service", "contents": "gupnp_device_info_get_service(${1:root_device}, ${2:type})" },
		{ "trigger": "gupnp_root_device_get_available", "contents": "gupnp_root_device_get_available(${1:root_device})" },
		{ "trigger": "gupnp_root_device_get_relative_location", "contents": "gupnp_root_device_get_relative_location(${1:root_device})" },
		{ "trigger": "gupnp_root_device_new", "contents": "gupnp_root_device_new(${1:context}, ${2:location}, ${3:description_dir})" },
		{ "trigger": "gupnp_root_device_set_available", "contents": "gupnp_root_device_set_available(${1:root_device}, ${2:available})" },
		{ "trigger": "gupnp_root_device_start", "contents": "gupnp_root_device_start(${1:root_device})" },
		{ "trigger": "gupnp_root_device_stop", "contents": "gupnp_root_device_stop(${1:root_device})" },
		{ "trigger": "gupnp_service_action_get", "contents": "gupnp_service_action_get(${1:action}, ${2:name}, ${3:type})" },
		{ "trigger": "gupnp_service_action_return", "contents": "gupnp_service_action_return(${1:action})" },
		{ "trigger": "gupnp_service_action_return_error", "contents": "gupnp_service_action_return_error(${1:action}, ${2:error_code})" },
		{ "trigger": "gupnp_service_action_set", "contents": "gupnp_service_action_set(${1:action}, ${2:name}, ${3:type}, ${4:value})" },
		{ "trigger": "gupnp_service_freeze_notify", "contents": "gupnp_service_freeze_notify(${1:service})" },
		{ "trigger": "gupnp_service_info_get", "contents": "gupnp_service_info_get(${1:proxy})" },
		{ "trigger": "gupnp_service_info_get_introspection", "contents": "gupnp_service_info_get_introspection(${1:proxy})" },
		{ "trigger": "gupnp_service_introspection_get_state_variable", "contents": "gupnp_service_introspection_get_state_variable(${1:introspection}, ${2:variable_name})" },
		{ "trigger": "gupnp_service_notify", "contents": "gupnp_service_notify(${1:service}, ${2:name}, ${3:type}, ${4:value})" },
		{ "trigger": "gupnp_service_proxy_action_get", "contents": "gupnp_service_proxy_action_get(${1:proxy}, ${2:action}, ${3:name}, ${4:type})" },
		{ "trigger": "gupnp_service_proxy_action_set", "contents": "gupnp_service_proxy_action_set(${1:proxy}, ${2:action}, ${3:name}, ${4:value}, ${5:type})" },
		{ "trigger": "gupnp_service_proxy_add_notify", "contents": "gupnp_service_proxy_add_notify(${1:proxy}, ${2:value}, ${3:type}, ${4:callback})" },
		{ "trigger": "gupnp_service_proxy_callback_set", "contents": "gupnp_service_proxy_callback_set(${1:proxy}, ${2:signal}, ${3:callback})" },
		{ "trigger": "gupnp_service_proxy_get_subscribed", "contents": "gupnp_service_proxy_get_subscribed(${1:proxy})" },
		{ "trigger": "gupnp_service_proxy_remove_notify", "contents": "gupnp_service_proxy_remove_notify(${1:proxy}, ${2:value})" },
		{ "trigger": "gupnp_service_proxy_set_subscribed", "contents": "gupnp_service_proxy_set_subscribed(${1:proxy}, ${2:subscribed})" },
		{ "trigger": "gupnp_service_thaw_notify", "contents": "gupnp_service_thaw_notify(${1:service})" },
		{ "trigger": "gzclose", "contents": "gzclose(${1:zp})" },
		{ "trigger": "gzcompress", "contents": "gzcompress(${1:data})" },
		{ "trigger": "gzdecode", "contents": "gzdecode(${1:data})" },
		{ "trigger": "gzdeflate", "contents": "gzdeflate(${1:data})" },
		{ "trigger": "gzencode", "contents": "gzencode(${1:data})" },
		{ "trigger": "gzeof", "contents": "gzeof(${1:zp})" },
		{ "trigger": "gzfile", "contents": "gzfile(${1:filename})" },
		{ "trigger": "gzgetc", "contents": "gzgetc(${1:zp})" },
		{ "trigger": "gzgets", "contents": "gzgets(${1:zp}, ${2:length})" },
		{ "trigger": "gzgetss", "contents": "gzgetss(${1:zp}, ${2:length})" },
		{ "trigger": "gzinflate", "contents": "gzinflate(${1:data})" },
		{ "trigger": "gzopen", "contents": "gzopen(${1:filename}, ${2:mode})" },
		{ "trigger": "gzpassthru", "contents": "gzpassthru(${1:zp})" },
		{ "trigger": "gzputs", "contents": "gzputs()" },
		{ "trigger": "gzread", "contents": "gzread(${1:zp}, ${2:length})" },
		{ "trigger": "gzrewind", "contents": "gzrewind(${1:zp})" },
		{ "trigger": "gzseek", "contents": "gzseek(${1:zp}, ${2:offset})" },
		{ "trigger": "gztell", "contents": "gztell(${1:zp})" },
		{ "trigger": "gzuncompress", "contents": "gzuncompress(${1:data})" },
		{ "trigger": "gzwrite", "contents": "gzwrite(${1:zp}, ${2:string})" },
		{ "trigger": "__halt_compiler", "contents": "__halt_compiler(${1:oid})" },
		{ "trigger": "hash", "contents": "hash(${1:algo}, ${2:data})" },
		{ "trigger": "hash_algos", "contents": "hash_algos(${1:oid})" },
		{ "trigger": "hash_copy", "contents": "hash_copy(${1:context})" },
		{ "trigger": "hash_file", "contents": "hash_file(${1:algo}, ${2:filename})" },
		{ "trigger": "hash_final", "contents": "hash_final(${1:context})" },
		{ "trigger": "hash_hmac", "contents": "hash_hmac(${1:algo}, ${2:data}, ${3:key})" },
		{ "trigger": "hash_hmac_file", "contents": "hash_hmac_file(${1:algo}, ${2:filename}, ${3:key})" },
		{ "trigger": "hash_init", "contents": "hash_init(${1:algo})" },
		{ "trigger": "hash_update", "contents": "hash_update(${1:context}, ${2:data})" },
		{ "trigger": "hash_update_file", "contents": "hash_update_file(${1:context}, ${2:filename})" },
		{ "trigger": "hash_update_stream", "contents": "hash_update_stream(${1:context}, ${2:handle})" },
		{ "trigger": "header", "contents": "header(${1:string})" },
		{ "trigger": "header_remove", "contents": "header_remove()" },
		{ "trigger": "headers_list", "contents": "headers_list(${1:oid})" },
		{ "trigger": "headers_sent", "contents": "headers_sent()" },
		{ "trigger": "hebrev", "contents": "hebrev(${1:hebrew_text})" },
		{ "trigger": "hebrevc", "contents": "hebrevc(${1:hebrew_text})" },
		{ "trigger": "hexdec", "contents": "hexdec(${1:hex_string})" },
		{ "trigger": "highlight_file", "contents": "highlight_file(${1:filename})" },
		{ "trigger": "highlight_string", "contents": "highlight_string(${1:str})" },
		{ "trigger": "html_entity_decode", "contents": "html_entity_decode(${1:string})" },
		{ "trigger": "htmlentities", "contents": "htmlentities(${1:string})" },
		{ "trigger": "htmlspecialchars", "contents": "htmlspecialchars(${1:string})" },
		{ "trigger": "htmlspecialchars_decode", "contents": "htmlspecialchars_decode(${1:string})" },
		{ "trigger": "http_build_cookie", "contents": "http_build_cookie(${1:cookie})" },
		{ "trigger": "http_build_query", "contents": "http_build_query(${1:query_data})" },
		{ "trigger": "http_build_str", "contents": "http_build_str(${1:query})" },
		{ "trigger": "http_build_url", "contents": "http_build_url()" },
		{ "trigger": "http_cache_etag", "contents": "http_cache_etag()" },
		{ "trigger": "http_cache_last_modified", "contents": "http_cache_last_modified()" },
		{ "trigger": "http_chunked_decode", "contents": "http_chunked_decode(${1:encoded})" },
		{ "trigger": "http_date", "contents": "http_date()" },
		{ "trigger": "http_deflate", "contents": "http_deflate(${1:data})" },
		{ "trigger": "http_get", "contents": "http_get(${1:url})" },
		{ "trigger": "http_get_request_body", "contents": "http_get_request_body(${1:oid})" },
		{ "trigger": "http_get_request_body_stream", "contents": "http_get_request_body_stream(${1:oid})" },
		{ "trigger": "http_get_request_headers", "contents": "http_get_request_headers(${1:oid})" },
		{ "trigger": "http_head", "contents": "http_head(${1:url})" },
		{ "trigger": "http_inflate", "contents": "http_inflate(${1:data})" },
		{ "trigger": "http_match_etag", "contents": "http_match_etag(${1:etag})" },
		{ "trigger": "http_match_modified", "contents": "http_match_modified()" },
		{ "trigger": "http_match_request_header", "contents": "http_match_request_header(${1:header}, ${2:value})" },
		{ "trigger": "http_negotiate_charset", "contents": "http_negotiate_charset(${1:supported})" },
		{ "trigger": "http_negotiate_content_type", "contents": "http_negotiate_content_type(${1:supported})" },
		{ "trigger": "http_negotiate_language", "contents": "http_negotiate_language(${1:supported})" },
		{ "trigger": "http_parse_cookie", "contents": "http_parse_cookie(${1:cookie})" },
		{ "trigger": "http_parse_headers", "contents": "http_parse_headers(${1:header})" },
		{ "trigger": "http_parse_message", "contents": "http_parse_message(${1:message})" },
		{ "trigger": "http_parse_params", "contents": "http_parse_params(${1:param})" },
		{ "trigger": "http_persistent_handles_clean", "contents": "http_persistent_handles_clean()" },
		{ "trigger": "http_persistent_handles_count", "contents": "http_persistent_handles_count(${1:oid})" },
		{ "trigger": "http_persistent_handles_ident", "contents": "http_persistent_handles_ident()" },
		{ "trigger": "http_post_data", "contents": "http_post_data(${1:url}, ${2:data})" },
		{ "trigger": "http_post_fields", "contents": "http_post_fields(${1:url}, ${2:data})" },
		{ "trigger": "http_put_data", "contents": "http_put_data(${1:url}, ${2:data})" },
		{ "trigger": "http_put_file", "contents": "http_put_file(${1:url}, ${2:file})" },
		{ "trigger": "http_put_stream", "contents": "http_put_stream(${1:url}, ${2:stream})" },
		{ "trigger": "http_redirect", "contents": "http_redirect()" },
		{ "trigger": "http_request", "contents": "http_request(${1:method}, ${2:url})" },
		{ "trigger": "http_request_body_encode", "contents": "http_request_body_encode(${1:fields}, ${2:files})" },
		{ "trigger": "http_request_method_exists", "contents": "http_request_method_exists(${1:method})" },
		{ "trigger": "http_request_method_name", "contents": "http_request_method_name(${1:method})" },
		{ "trigger": "http_request_method_register", "contents": "http_request_method_register(${1:method})" },
		{ "trigger": "http_request_method_unregister", "contents": "http_request_method_unregister(${1:method})" },
		{ "trigger": "http_send_content_disposition", "contents": "http_send_content_disposition(${1:filename})" },
		{ "trigger": "http_send_content_type", "contents": "http_send_content_type()" },
		{ "trigger": "http_send_data", "contents": "http_send_data(${1:data})" },
		{ "trigger": "http_send_file", "contents": "http_send_file(${1:file})" },
		{ "trigger": "http_send_last_modified", "contents": "http_send_last_modified()" },
		{ "trigger": "http_send_status", "contents": "http_send_status(${1:status})" },
		{ "trigger": "http_send_stream", "contents": "http_send_stream(${1:stream})" },
		{ "trigger": "http_support", "contents": "http_support()" },
		{ "trigger": "http_throttle", "contents": "http_throttle(${1:sec})" },
		{ "trigger": "hw_Array2Objrec", "contents": "hw_Array2Objrec(${1:object_array})" },
		{ "trigger": "hw_changeobject", "contents": "hw_changeobject(${1:link}, ${2:objid}, ${3:attributes})" },
		{ "trigger": "hw_Children", "contents": "hw_Children(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_ChildrenObj", "contents": "hw_ChildrenObj(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_Close", "contents": "hw_Close(${1:connection})" },
		{ "trigger": "hw_Connect", "contents": "hw_Connect(${1:host}, ${2:port})" },
		{ "trigger": "hw_connection_info", "contents": "hw_connection_info(${1:link})" },
		{ "trigger": "hw_cp", "contents": "hw_cp(${1:connection}, ${2:object_id_array}, ${3:destination_id})" },
		{ "trigger": "hw_Deleteobject", "contents": "hw_Deleteobject(${1:connection}, ${2:object_to_delete})" },
		{ "trigger": "hw_DocByAnchor", "contents": "hw_DocByAnchor(${1:connection}, ${2:anchorID})" },
		{ "trigger": "hw_DocByAnchorObj", "contents": "hw_DocByAnchorObj(${1:connection}, ${2:anchorID})" },
		{ "trigger": "hw_Document_Attributes", "contents": "hw_Document_Attributes(${1:hw_document})" },
		{ "trigger": "hw_Document_BodyTag", "contents": "hw_Document_BodyTag(${1:hw_document})" },
		{ "trigger": "hw_Document_Content", "contents": "hw_Document_Content(${1:hw_document})" },
		{ "trigger": "hw_Document_SetContent", "contents": "hw_Document_SetContent(${1:hw_document}, ${2:content})" },
		{ "trigger": "hw_Document_Size", "contents": "hw_Document_Size(${1:hw_document})" },
		{ "trigger": "hw_dummy", "contents": "hw_dummy(${1:link}, ${2:id}, ${3:msgid})" },
		{ "trigger": "hw_EditText", "contents": "hw_EditText(${1:connection}, ${2:hw_document})" },
		{ "trigger": "hw_Error", "contents": "hw_Error(${1:connection})" },
		{ "trigger": "hw_ErrorMsg", "contents": "hw_ErrorMsg(${1:connection})" },
		{ "trigger": "hw_Free_Document", "contents": "hw_Free_Document(${1:hw_document})" },
		{ "trigger": "hw_GetAnchors", "contents": "hw_GetAnchors(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetAnchorsObj", "contents": "hw_GetAnchorsObj(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetAndLock", "contents": "hw_GetAndLock(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetChildColl", "contents": "hw_GetChildColl(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetChildCollObj", "contents": "hw_GetChildCollObj(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetChildDocColl", "contents": "hw_GetChildDocColl(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetChildDocCollObj", "contents": "hw_GetChildDocCollObj(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetObject", "contents": "hw_GetObject(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetObjectByQuery", "contents": "hw_GetObjectByQuery(${1:connection}, ${2:query}, ${3:max_hits})" },
		{ "trigger": "hw_GetObjectByQueryColl", "contents": "hw_GetObjectByQueryColl(${1:connection}, ${2:objectID}, ${3:query}, ${4:max_hits})" },
		{ "trigger": "hw_GetObjectByQueryCollObj", "contents": "hw_GetObjectByQueryCollObj(${1:connection}, ${2:objectID}, ${3:query}, ${4:max_hits})" },
		{ "trigger": "hw_GetObjectByQueryObj", "contents": "hw_GetObjectByQueryObj(${1:connection}, ${2:query}, ${3:max_hits})" },
		{ "trigger": "hw_GetParents", "contents": "hw_GetParents(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetParentsObj", "contents": "hw_GetParentsObj(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_getrellink", "contents": "hw_getrellink(${1:link}, ${2:rootid}, ${3:sourceid}, ${4:destid})" },
		{ "trigger": "hw_GetRemote", "contents": "hw_GetRemote(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_getremotechildren", "contents": "hw_getremotechildren(${1:connection}, ${2:object_record})" },
		{ "trigger": "hw_GetSrcByDestObj", "contents": "hw_GetSrcByDestObj(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_GetText", "contents": "hw_GetText(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_getusername", "contents": "hw_getusername(${1:connection})" },
		{ "trigger": "hw_Identify", "contents": "hw_Identify(${1:link}, ${2:username}, ${3:password})" },
		{ "trigger": "hw_InCollections", "contents": "hw_InCollections(${1:connection}, ${2:object_id_array}, ${3:collection_id_array}, ${4:return_collections})" },
		{ "trigger": "hw_Info", "contents": "hw_Info(${1:connection})" },
		{ "trigger": "hw_InsColl", "contents": "hw_InsColl(${1:connection}, ${2:objectID}, ${3:object_array})" },
		{ "trigger": "hw_InsDoc", "contents": "hw_InsDoc(${1:connection}, ${2:parentID}, ${3:object_record})" },
		{ "trigger": "hw_insertanchors", "contents": "hw_insertanchors(${1:hwdoc}, ${2:anchorecs}, ${3:dest})" },
		{ "trigger": "hw_InsertDocument", "contents": "hw_InsertDocument(${1:connection}, ${2:parent_id}, ${3:hw_document})" },
		{ "trigger": "hw_InsertObject", "contents": "hw_InsertObject(${1:connection}, ${2:object_rec}, ${3:parameter})" },
		{ "trigger": "hw_mapid", "contents": "hw_mapid(${1:connection}, ${2:server_id}, ${3:object_id})" },
		{ "trigger": "hw_Modifyobject", "contents": "hw_Modifyobject(${1:connection}, ${2:object_to_change}, ${3:remove}, ${4:add})" },
		{ "trigger": "hw_mv", "contents": "hw_mv(${1:connection}, ${2:object_id_array}, ${3:source_id}, ${4:destination_id})" },
		{ "trigger": "hw_New_Document", "contents": "hw_New_Document(${1:object_record}, ${2:document_data}, ${3:document_size})" },
		{ "trigger": "hw_objrec2array", "contents": "hw_objrec2array(${1:object_record})" },
		{ "trigger": "hw_Output_Document", "contents": "hw_Output_Document(${1:hw_document})" },
		{ "trigger": "hw_pConnect", "contents": "hw_pConnect(${1:host}, ${2:port})" },
		{ "trigger": "hw_PipeDocument", "contents": "hw_PipeDocument(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_Root", "contents": "hw_Root(${1:oid})" },
		{ "trigger": "hw_setlinkroot", "contents": "hw_setlinkroot(${1:link}, ${2:rootid})" },
		{ "trigger": "hw_stat", "contents": "hw_stat(${1:link})" },
		{ "trigger": "hw_Unlock", "contents": "hw_Unlock(${1:connection}, ${2:objectID})" },
		{ "trigger": "hw_Who", "contents": "hw_Who(${1:connection})" },
		{ "trigger": "hw_api_attribute", "contents": "hw_api_attribute()" },
		{ "trigger": "hwapi_hgcsp", "contents": "hwapi_hgcsp(${1:hostname})" },
		{ "trigger": "hw_api_content", "contents": "hw_api_content(${1:content}, ${2:mimetype})" },
		{ "trigger": "hw_api_object", "contents": "hw_api_object(${1:parameter})" },
		{ "trigger": "hypot", "contents": "hypot(${1:x}, ${2:y})" },
		{ "trigger": "ibase_add_user", "contents": "ibase_add_user(${1:service_handle}, ${2:user_name}, ${3:password})" },
		{ "trigger": "ibase_affected_rows", "contents": "ibase_affected_rows()" },
		{ "trigger": "ibase_backup", "contents": "ibase_backup(${1:service_handle}, ${2:source_db}, ${3:dest_file})" },
		{ "trigger": "ibase_blob_add", "contents": "ibase_blob_add(${1:blob_handle}, ${2:data})" },
		{ "trigger": "ibase_blob_cancel", "contents": "ibase_blob_cancel(${1:blob_handle})" },
		{ "trigger": "ibase_blob_close", "contents": "ibase_blob_close(${1:blob_handle})" },
		{ "trigger": "ibase_blob_create", "contents": "ibase_blob_create()" },
		{ "trigger": "ibase_blob_echo", "contents": "ibase_blob_echo(${1:blob_id})" },
		{ "trigger": "ibase_blob_get", "contents": "ibase_blob_get(${1:blob_handle}, ${2:len})" },
		{ "trigger": "ibase_blob_import", "contents": "ibase_blob_import(${1:link_identifier}, ${2:file_handle})" },
		{ "trigger": "ibase_blob_info", "contents": "ibase_blob_info(${1:link_identifier}, ${2:blob_id})" },
		{ "trigger": "ibase_blob_open", "contents": "ibase_blob_open(${1:link_identifier}, ${2:blob_id})" },
		{ "trigger": "ibase_close", "contents": "ibase_close()" },
		{ "trigger": "ibase_commit", "contents": "ibase_commit()" },
		{ "trigger": "ibase_commit_ret", "contents": "ibase_commit_ret()" },
		{ "trigger": "ibase_connect", "contents": "ibase_connect()" },
		{ "trigger": "ibase_db_info", "contents": "ibase_db_info(${1:service_handle}, ${2:db}, ${3:action})" },
		{ "trigger": "ibase_delete_user", "contents": "ibase_delete_user(${1:service_handle}, ${2:user_name})" },
		{ "trigger": "ibase_drop_db", "contents": "ibase_drop_db()" },
		{ "trigger": "ibase_errcode", "contents": "ibase_errcode(${1:oid})" },
		{ "trigger": "ibase_errmsg", "contents": "ibase_errmsg(${1:oid})" },
		{ "trigger": "ibase_execute", "contents": "ibase_execute(${1:query})" },
		{ "trigger": "ibase_fetch_assoc", "contents": "ibase_fetch_assoc(${1:result})" },
		{ "trigger": "ibase_fetch_object", "contents": "ibase_fetch_object(${1:result_id})" },
		{ "trigger": "ibase_fetch_row", "contents": "ibase_fetch_row(${1:result_identifier})" },
		{ "trigger": "ibase_field_info", "contents": "ibase_field_info(${1:result}, ${2:field_number})" },
		{ "trigger": "ibase_free_event_handler", "contents": "ibase_free_event_handler(${1:event})" },
		{ "trigger": "ibase_free_query", "contents": "ibase_free_query(${1:query})" },
		{ "trigger": "ibase_free_result", "contents": "ibase_free_result(${1:result_identifier})" },
		{ "trigger": "ibase_gen_id", "contents": "ibase_gen_id(${1:generator})" },
		{ "trigger": "ibase_maintain_db", "contents": "ibase_maintain_db(${1:service_handle}, ${2:db}, ${3:action})" },
		{ "trigger": "ibase_modify_user", "contents": "ibase_modify_user(${1:service_handle}, ${2:user_name}, ${3:password})" },
		{ "trigger": "ibase_name_result", "contents": "ibase_name_result(${1:result}, ${2:name})" },
		{ "trigger": "ibase_num_fields", "contents": "ibase_num_fields(${1:result_id})" },
		{ "trigger": "ibase_num_params", "contents": "ibase_num_params(${1:query})" },
		{ "trigger": "ibase_param_info", "contents": "ibase_param_info(${1:query}, ${2:param_number})" },
		{ "trigger": "ibase_pconnect", "contents": "ibase_pconnect()" },
		{ "trigger": "ibase_prepare", "contents": "ibase_prepare(${1:query})" },
		{ "trigger": "ibase_query", "contents": "ibase_query()" },
		{ "trigger": "ibase_restore", "contents": "ibase_restore(${1:service_handle}, ${2:source_file}, ${3:dest_db})" },
		{ "trigger": "ibase_rollback", "contents": "ibase_rollback()" },
		{ "trigger": "ibase_rollback_ret", "contents": "ibase_rollback_ret()" },
		{ "trigger": "ibase_server_info", "contents": "ibase_server_info(${1:service_handle}, ${2:action})" },
		{ "trigger": "ibase_service_attach", "contents": "ibase_service_attach(${1:host}, ${2:dba_username}, ${3:dba_password})" },
		{ "trigger": "ibase_service_detach", "contents": "ibase_service_detach(${1:service_handle})" },
		{ "trigger": "ibase_set_event_handler", "contents": "ibase_set_event_handler(${1:event_handler}, ${2:event_name1})" },
		{ "trigger": "ibase_timefmt", "contents": "ibase_timefmt(${1:format})" },
		{ "trigger": "ibase_trans", "contents": "ibase_trans()" },
		{ "trigger": "ibase_wait_event", "contents": "ibase_wait_event(${1:event_name1})" },
		{ "trigger": "iconv", "contents": "iconv(${1:in_charset}, ${2:out_charset}, ${3:str})" },
		{ "trigger": "iconv_get_encoding", "contents": "iconv_get_encoding()" },
		{ "trigger": "iconv_mime_decode", "contents": "iconv_mime_decode(${1:encoded_header})" },
		{ "trigger": "iconv_mime_decode_headers", "contents": "iconv_mime_decode_headers(${1:encoded_headers})" },
		{ "trigger": "iconv_mime_encode", "contents": "iconv_mime_encode(${1:field_name}, ${2:field_value})" },
		{ "trigger": "iconv_set_encoding", "contents": "iconv_set_encoding(${1:type}, ${2:charset})" },
		{ "trigger": "iconv_strlen", "contents": "iconv_strlen(${1:str})" },
		{ "trigger": "iconv_strpos", "contents": "iconv_strpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "iconv_strrpos", "contents": "iconv_strrpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "iconv_substr", "contents": "iconv_substr(${1:str}, ${2:offset})" },
		{ "trigger": "id3_get_frame_long_name", "contents": "id3_get_frame_long_name(${1:frameId})" },
		{ "trigger": "id3_get_frame_short_name", "contents": "id3_get_frame_short_name(${1:frameId})" },
		{ "trigger": "id3_get_genre_id", "contents": "id3_get_genre_id(${1:genre})" },
		{ "trigger": "id3_get_genre_list", "contents": "id3_get_genre_list(${1:oid})" },
		{ "trigger": "id3_get_genre_name", "contents": "id3_get_genre_name(${1:genre_id})" },
		{ "trigger": "id3_get_tag", "contents": "id3_get_tag(${1:filename})" },
		{ "trigger": "id3_get_version", "contents": "id3_get_version(${1:filename})" },
		{ "trigger": "id3_remove_tag", "contents": "id3_remove_tag(${1:filename})" },
		{ "trigger": "id3_set_tag", "contents": "id3_set_tag(${1:filename}, ${2:tag})" },
		{ "trigger": "idate", "contents": "idate(${1:format})" },
		{ "trigger": "idn_to_ascii", "contents": "idn_to_ascii(${1:domain})" },
		{ "trigger": "idn_to_unicode", "contents": "idn_to_unicode()" },
		{ "trigger": "idn_to_utf8", "contents": "idn_to_utf8(${1:domain})" },
		{ "trigger": "ifx_affected_rows", "contents": "ifx_affected_rows(${1:result_id})" },
		{ "trigger": "ifx_blobinfile_mode", "contents": "ifx_blobinfile_mode(${1:mode})" },
		{ "trigger": "ifx_byteasvarchar", "contents": "ifx_byteasvarchar(${1:mode})" },
		{ "trigger": "ifx_close", "contents": "ifx_close()" },
		{ "trigger": "ifx_connect", "contents": "ifx_connect()" },
		{ "trigger": "ifx_copy_blob", "contents": "ifx_copy_blob(${1:bid})" },
		{ "trigger": "ifx_create_blob", "contents": "ifx_create_blob(${1:type}, ${2:mode}, ${3:param})" },
		{ "trigger": "ifx_create_char", "contents": "ifx_create_char(${1:param})" },
		{ "trigger": "ifx_do", "contents": "ifx_do(${1:result_id})" },
		{ "trigger": "ifx_error", "contents": "ifx_error()" },
		{ "trigger": "ifx_errormsg", "contents": "ifx_errormsg()" },
		{ "trigger": "ifx_fetch_row", "contents": "ifx_fetch_row(${1:result_id})" },
		{ "trigger": "ifx_fieldproperties", "contents": "ifx_fieldproperties(${1:result_id})" },
		{ "trigger": "ifx_fieldtypes", "contents": "ifx_fieldtypes(${1:result_id})" },
		{ "trigger": "ifx_free_blob", "contents": "ifx_free_blob(${1:bid})" },
		{ "trigger": "ifx_free_char", "contents": "ifx_free_char(${1:bid})" },
		{ "trigger": "ifx_free_result", "contents": "ifx_free_result(${1:result_id})" },
		{ "trigger": "ifx_get_blob", "contents": "ifx_get_blob(${1:bid})" },
		{ "trigger": "ifx_get_char", "contents": "ifx_get_char(${1:bid})" },
		{ "trigger": "ifx_getsqlca", "contents": "ifx_getsqlca(${1:result_id})" },
		{ "trigger": "ifx_htmltbl_result", "contents": "ifx_htmltbl_result(${1:result_id})" },
		{ "trigger": "ifx_nullformat", "contents": "ifx_nullformat(${1:mode})" },
		{ "trigger": "ifx_num_fields", "contents": "ifx_num_fields(${1:result_id})" },
		{ "trigger": "ifx_num_rows", "contents": "ifx_num_rows(${1:result_id})" },
		{ "trigger": "ifx_pconnect", "contents": "ifx_pconnect()" },
		{ "trigger": "ifx_prepare", "contents": "ifx_prepare(${1:query}, ${2:link_identifier})" },
		{ "trigger": "ifx_query", "contents": "ifx_query(${1:query}, ${2:link_identifier})" },
		{ "trigger": "ifx_textasvarchar", "contents": "ifx_textasvarchar(${1:mode})" },
		{ "trigger": "ifx_update_blob", "contents": "ifx_update_blob(${1:bid}, ${2:content})" },
		{ "trigger": "ifx_update_char", "contents": "ifx_update_char(${1:bid}, ${2:content})" },
		{ "trigger": "ifxus_close_slob", "contents": "ifxus_close_slob(${1:bid})" },
		{ "trigger": "ifxus_create_slob", "contents": "ifxus_create_slob(${1:mode})" },
		{ "trigger": "ifxus_free_slob", "contents": "ifxus_free_slob(${1:bid})" },
		{ "trigger": "ifxus_open_slob", "contents": "ifxus_open_slob(${1:bid}, ${2:mode})" },
		{ "trigger": "ifxus_read_slob", "contents": "ifxus_read_slob(${1:bid}, ${2:nbytes})" },
		{ "trigger": "ifxus_seek_slob", "contents": "ifxus_seek_slob(${1:bid}, ${2:mode}, ${3:offset})" },
		{ "trigger": "ifxus_tell_slob", "contents": "ifxus_tell_slob(${1:bid})" },
		{ "trigger": "ifxus_write_slob", "contents": "ifxus_write_slob(${1:bid}, ${2:content})" },
		{ "trigger": "ignore_user_abort", "contents": "ignore_user_abort()" },
		{ "trigger": "iis_add_server", "contents": "iis_add_server(${1:path}, ${2:comment}, ${3:server_ip}, ${4:port}, ${5:host_name}, ${6:rights}, ${7:start_server})" },
		{ "trigger": "iis_get_dir_security", "contents": "iis_get_dir_security(${1:server_instance}, ${2:virtual_path})" },
		{ "trigger": "iis_get_script_map", "contents": "iis_get_script_map(${1:server_instance}, ${2:virtual_path}, ${3:script_extension})" },
		{ "trigger": "iis_get_server_by_comment", "contents": "iis_get_server_by_comment(${1:comment})" },
		{ "trigger": "iis_get_server_by_path", "contents": "iis_get_server_by_path(${1:path})" },
		{ "trigger": "iis_get_server_rights", "contents": "iis_get_server_rights(${1:server_instance}, ${2:virtual_path})" },
		{ "trigger": "iis_get_service_state", "contents": "iis_get_service_state(${1:service_id})" },
		{ "trigger": "iis_remove_server", "contents": "iis_remove_server(${1:server_instance})" },
		{ "trigger": "iis_set_app_settings", "contents": "iis_set_app_settings(${1:server_instance}, ${2:virtual_path}, ${3:application_scope})" },
		{ "trigger": "iis_set_dir_security", "contents": "iis_set_dir_security(${1:server_instance}, ${2:virtual_path}, ${3:directory_flags})" },
		{ "trigger": "iis_set_script_map", "contents": "iis_set_script_map(${1:server_instance}, ${2:virtual_path}, ${3:script_extension}, ${4:engine_path}, ${5:allow_scripting})" },
		{ "trigger": "iis_set_server_rights", "contents": "iis_set_server_rights(${1:server_instance}, ${2:virtual_path}, ${3:directory_flags})" },
		{ "trigger": "iis_start_server", "contents": "iis_start_server(${1:server_instance})" },
		{ "trigger": "iis_start_service", "contents": "iis_start_service(${1:service_id})" },
		{ "trigger": "iis_stop_server", "contents": "iis_stop_server(${1:server_instance})" },
		{ "trigger": "iis_stop_service", "contents": "iis_stop_service(${1:service_id})" },
		{ "trigger": "image2wbmp", "contents": "image2wbmp(${1:image})" },
		{ "trigger": "image_type_to_extension", "contents": "image_type_to_extension(${1:imagetype})" },
		{ "trigger": "image_type_to_mime_type", "contents": "image_type_to_mime_type(${1:imagetype})" },
		{ "trigger": "imagealphablending", "contents": "imagealphablending(${1:image}, ${2:blendmode})" },
		{ "trigger": "imageantialias", "contents": "imageantialias(${1:image}, ${2:enabled})" },
		{ "trigger": "imagearc", "contents": "imagearc(${1:image}, ${2:cx}, ${3:cy}, ${4:width}, ${5:height}, ${6:start}, ${7:end}, ${8:color})" },
		{ "trigger": "imagechar", "contents": "imagechar(${1:image}, ${2:font}, ${3:x}, ${4:y}, ${5:c}, ${6:color})" },
		{ "trigger": "imagecharup", "contents": "imagecharup(${1:image}, ${2:font}, ${3:x}, ${4:y}, ${5:c}, ${6:color})" },
		{ "trigger": "imagecolorallocate", "contents": "imagecolorallocate(${1:image}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "imagecolorallocatealpha", "contents": "imagecolorallocatealpha(${1:image}, ${2:red}, ${3:green}, ${4:blue}, ${5:alpha})" },
		{ "trigger": "imagecolorat", "contents": "imagecolorat(${1:image}, ${2:x}, ${3:y})" },
		{ "trigger": "imagecolorclosest", "contents": "imagecolorclosest(${1:image}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "imagecolorclosestalpha", "contents": "imagecolorclosestalpha(${1:image}, ${2:red}, ${3:green}, ${4:blue}, ${5:alpha})" },
		{ "trigger": "imagecolorclosesthwb", "contents": "imagecolorclosesthwb(${1:image}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "imagecolordeallocate", "contents": "imagecolordeallocate(${1:image}, ${2:color})" },
		{ "trigger": "imagecolorexact", "contents": "imagecolorexact(${1:image}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "imagecolorexactalpha", "contents": "imagecolorexactalpha(${1:image}, ${2:red}, ${3:green}, ${4:blue}, ${5:alpha})" },
		{ "trigger": "imagecolormatch", "contents": "imagecolormatch(${1:image1}, ${2:image2})" },
		{ "trigger": "imagecolorresolve", "contents": "imagecolorresolve(${1:image}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "imagecolorresolvealpha", "contents": "imagecolorresolvealpha(${1:image}, ${2:red}, ${3:green}, ${4:blue}, ${5:alpha})" },
		{ "trigger": "imagecolorset", "contents": "imagecolorset(${1:image}, ${2:index}, ${3:red}, ${4:green}, ${5:blue})" },
		{ "trigger": "imagecolorsforindex", "contents": "imagecolorsforindex(${1:image}, ${2:index})" },
		{ "trigger": "imagecolorstotal", "contents": "imagecolorstotal(${1:image})" },
		{ "trigger": "imagecolortransparent", "contents": "imagecolortransparent(${1:image})" },
		{ "trigger": "imageconvolution", "contents": "imageconvolution(${1:image}, ${2:matrix}, ${3:div}, ${4:offset})" },
		{ "trigger": "imagecopy", "contents": "imagecopy(${1:dst_im}, ${2:src_im}, ${3:dst_x}, ${4:dst_y}, ${5:src_x}, ${6:src_y}, ${7:src_w}, ${8:src_h})" },
		{ "trigger": "imagecopymerge", "contents": "imagecopymerge(${1:dst_im}, ${2:src_im}, ${3:dst_x}, ${4:dst_y}, ${5:src_x}, ${6:src_y}, ${7:src_w}, ${8:src_h}, ${9:pct})" },
		{ "trigger": "imagecopymergegray", "contents": "imagecopymergegray(${1:dst_im}, ${2:src_im}, ${3:dst_x}, ${4:dst_y}, ${5:src_x}, ${6:src_y}, ${7:src_w}, ${8:src_h}, ${9:pct})" },
		{ "trigger": "imagecopyresampled", "contents": "imagecopyresampled(${1:dst_image}, ${2:src_image}, ${3:dst_x}, ${4:dst_y}, ${5:src_x}, ${6:src_y}, ${7:dst_w}, ${8:dst_h}, ${9:src_w}, ${10:src_h})" },
		{ "trigger": "imagecopyresized", "contents": "imagecopyresized(${1:dst_image}, ${2:src_image}, ${3:dst_x}, ${4:dst_y}, ${5:src_x}, ${6:src_y}, ${7:dst_w}, ${8:dst_h}, ${9:src_w}, ${10:src_h})" },
		{ "trigger": "imagecreate", "contents": "imagecreate(${1:width}, ${2:height})" },
		{ "trigger": "imagecreatefromgd", "contents": "imagecreatefromgd(${1:filename})" },
		{ "trigger": "imagecreatefromgd2", "contents": "imagecreatefromgd2(${1:filename})" },
		{ "trigger": "imagecreatefromgd2part", "contents": "imagecreatefromgd2part(${1:filename}, ${2:srcX}, ${3:srcY}, ${4:width}, ${5:height})" },
		{ "trigger": "imagecreatefromgif", "contents": "imagecreatefromgif(${1:filename})" },
		{ "trigger": "imagecreatefromjpeg", "contents": "imagecreatefromjpeg(${1:filename})" },
		{ "trigger": "imagecreatefrompng", "contents": "imagecreatefrompng(${1:filename})" },
		{ "trigger": "imagecreatefromstring", "contents": "imagecreatefromstring(${1:data})" },
		{ "trigger": "imagecreatefromwbmp", "contents": "imagecreatefromwbmp(${1:filename})" },
		{ "trigger": "imagecreatefromxbm", "contents": "imagecreatefromxbm(${1:filename})" },
		{ "trigger": "imagecreatefromxpm", "contents": "imagecreatefromxpm(${1:filename})" },
		{ "trigger": "imagecreatetruecolor", "contents": "imagecreatetruecolor(${1:width}, ${2:height})" },
		{ "trigger": "imagedashedline", "contents": "imagedashedline(${1:image}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:color})" },
		{ "trigger": "imagedestroy", "contents": "imagedestroy(${1:image})" },
		{ "trigger": "imageellipse", "contents": "imageellipse(${1:image}, ${2:cx}, ${3:cy}, ${4:width}, ${5:height}, ${6:color})" },
		{ "trigger": "imagefill", "contents": "imagefill(${1:image}, ${2:x}, ${3:y}, ${4:color})" },
		{ "trigger": "imagefilledarc", "contents": "imagefilledarc(${1:image}, ${2:cx}, ${3:cy}, ${4:width}, ${5:height}, ${6:start}, ${7:end}, ${8:color}, ${9:style})" },
		{ "trigger": "imagefilledellipse", "contents": "imagefilledellipse(${1:image}, ${2:cx}, ${3:cy}, ${4:width}, ${5:height}, ${6:color})" },
		{ "trigger": "imagefilledpolygon", "contents": "imagefilledpolygon(${1:image}, ${2:points}, ${3:num_points}, ${4:color})" },
		{ "trigger": "imagefilledrectangle", "contents": "imagefilledrectangle(${1:image}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:color})" },
		{ "trigger": "imagefilltoborder", "contents": "imagefilltoborder(${1:image}, ${2:x}, ${3:y}, ${4:border}, ${5:color})" },
		{ "trigger": "imagefilter", "contents": "imagefilter(${1:image}, ${2:filtertype})" },
		{ "trigger": "imagefontheight", "contents": "imagefontheight(${1:font})" },
		{ "trigger": "imagefontwidth", "contents": "imagefontwidth(${1:font})" },
		{ "trigger": "imageftbbox", "contents": "imageftbbox(${1:size}, ${2:angle}, ${3:fontfile}, ${4:text})" },
		{ "trigger": "imagefttext", "contents": "imagefttext(${1:image}, ${2:size}, ${3:angle}, ${4:x}, ${5:y}, ${6:color}, ${7:fontfile}, ${8:text})" },
		{ "trigger": "imagegammacorrect", "contents": "imagegammacorrect(${1:image}, ${2:inputgamma}, ${3:outputgamma})" },
		{ "trigger": "imagegd", "contents": "imagegd(${1:image})" },
		{ "trigger": "imagegd2", "contents": "imagegd2(${1:image})" },
		{ "trigger": "imagegif", "contents": "imagegif(${1:image})" },
		{ "trigger": "imagegrabscreen", "contents": "imagegrabscreen(${1:oid})" },
		{ "trigger": "imagegrabwindow", "contents": "imagegrabwindow(${1:window_handle})" },
		{ "trigger": "imageinterlace", "contents": "imageinterlace(${1:image})" },
		{ "trigger": "imageistruecolor", "contents": "imageistruecolor(${1:image})" },
		{ "trigger": "imagejpeg", "contents": "imagejpeg(${1:image})" },
		{ "trigger": "imagelayereffect", "contents": "imagelayereffect(${1:image}, ${2:effect})" },
		{ "trigger": "imageline", "contents": "imageline(${1:image}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:color})" },
		{ "trigger": "imageloadfont", "contents": "imageloadfont(${1:file})" },
		{ "trigger": "imagepalettecopy", "contents": "imagepalettecopy(${1:destination}, ${2:source})" },
		{ "trigger": "imagepng", "contents": "imagepng(${1:image})" },
		{ "trigger": "imagepolygon", "contents": "imagepolygon(${1:image}, ${2:points}, ${3:num_points}, ${4:color})" },
		{ "trigger": "imagepsbbox", "contents": "imagepsbbox(${1:text}, ${2:font}, ${3:size})" },
		{ "trigger": "imagepsencodefont", "contents": "imagepsencodefont(${1:font_index}, ${2:encodingfile})" },
		{ "trigger": "imagepsextendfont", "contents": "imagepsextendfont(${1:font_index}, ${2:extend})" },
		{ "trigger": "imagepsfreefont", "contents": "imagepsfreefont(${1:font_index})" },
		{ "trigger": "imagepsloadfont", "contents": "imagepsloadfont(${1:filename})" },
		{ "trigger": "imagepsslantfont", "contents": "imagepsslantfont(${1:font_index}, ${2:slant})" },
		{ "trigger": "imagepstext", "contents": "imagepstext(${1:image}, ${2:text}, ${3:font_index}, ${4:size}, ${5:foreground}, ${6:background}, ${7:x}, ${8:y})" },
		{ "trigger": "imagerectangle", "contents": "imagerectangle(${1:image}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:color})" },
		{ "trigger": "imagerotate", "contents": "imagerotate(${1:image}, ${2:angle}, ${3:bgd_color})" },
		{ "trigger": "imagesavealpha", "contents": "imagesavealpha(${1:image}, ${2:saveflag})" },
		{ "trigger": "imagesetbrush", "contents": "imagesetbrush(${1:image}, ${2:brush})" },
		{ "trigger": "imagesetpixel", "contents": "imagesetpixel(${1:image}, ${2:x}, ${3:y}, ${4:color})" },
		{ "trigger": "imagesetstyle", "contents": "imagesetstyle(${1:image}, ${2:style})" },
		{ "trigger": "imagesetthickness", "contents": "imagesetthickness(${1:image}, ${2:thickness})" },
		{ "trigger": "imagesettile", "contents": "imagesettile(${1:image}, ${2:tile})" },
		{ "trigger": "imagestring", "contents": "imagestring(${1:image}, ${2:font}, ${3:x}, ${4:y}, ${5:string}, ${6:color})" },
		{ "trigger": "imagestringup", "contents": "imagestringup(${1:image}, ${2:font}, ${3:x}, ${4:y}, ${5:string}, ${6:color})" },
		{ "trigger": "imagesx", "contents": "imagesx(${1:image})" },
		{ "trigger": "imagesy", "contents": "imagesy(${1:image})" },
		{ "trigger": "imagetruecolortopalette", "contents": "imagetruecolortopalette(${1:image}, ${2:dither}, ${3:ncolors})" },
		{ "trigger": "imagettfbbox", "contents": "imagettfbbox(${1:size}, ${2:angle}, ${3:fontfile}, ${4:text})" },
		{ "trigger": "imagettftext", "contents": "imagettftext(${1:image}, ${2:size}, ${3:angle}, ${4:x}, ${5:y}, ${6:color}, ${7:fontfile}, ${8:text})" },
		{ "trigger": "imagetypes", "contents": "imagetypes(${1:oid})" },
		{ "trigger": "imagewbmp", "contents": "imagewbmp(${1:image})" },
		{ "trigger": "imagexbm", "contents": "imagexbm(${1:image}, ${2:filename})" },
		{ "trigger": "imap_8bit", "contents": "imap_8bit(${1:string})" },
		{ "trigger": "imap_alerts", "contents": "imap_alerts(${1:oid})" },
		{ "trigger": "imap_append", "contents": "imap_append(${1:imap_stream}, ${2:mailbox}, ${3:message})" },
		{ "trigger": "imap_base64", "contents": "imap_base64(${1:text})" },
		{ "trigger": "imap_binary", "contents": "imap_binary(${1:string})" },
		{ "trigger": "imap_body", "contents": "imap_body(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_bodystruct", "contents": "imap_bodystruct(${1:imap_stream}, ${2:msg_number}, ${3:section})" },
		{ "trigger": "imap_check", "contents": "imap_check(${1:imap_stream})" },
		{ "trigger": "imap_clearflag_full", "contents": "imap_clearflag_full(${1:imap_stream}, ${2:sequence}, ${3:flag})" },
		{ "trigger": "imap_close", "contents": "imap_close(${1:imap_stream})" },
		{ "trigger": "imap_createmailbox", "contents": "imap_createmailbox(${1:imap_stream}, ${2:mailbox})" },
		{ "trigger": "imap_delete", "contents": "imap_delete(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_deletemailbox", "contents": "imap_deletemailbox(${1:imap_stream}, ${2:mailbox})" },
		{ "trigger": "imap_errors", "contents": "imap_errors(${1:oid})" },
		{ "trigger": "imap_expunge", "contents": "imap_expunge(${1:imap_stream})" },
		{ "trigger": "imap_fetch_overview", "contents": "imap_fetch_overview(${1:imap_stream}, ${2:sequence})" },
		{ "trigger": "imap_fetchbody", "contents": "imap_fetchbody(${1:imap_stream}, ${2:msg_number}, ${3:section})" },
		{ "trigger": "imap_fetchheader", "contents": "imap_fetchheader(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_fetchstructure", "contents": "imap_fetchstructure(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_gc", "contents": "imap_gc(${1:imap_stream}, ${2:caches})" },
		{ "trigger": "imap_get_quota", "contents": "imap_get_quota(${1:imap_stream}, ${2:quota_root})" },
		{ "trigger": "imap_get_quotaroot", "contents": "imap_get_quotaroot(${1:imap_stream}, ${2:quota_root})" },
		{ "trigger": "imap_getacl", "contents": "imap_getacl(${1:imap_stream}, ${2:mailbox})" },
		{ "trigger": "imap_getmailboxes", "contents": "imap_getmailboxes(${1:imap_stream}, ${2:ref}, ${3:pattern})" },
		{ "trigger": "imap_getsubscribed", "contents": "imap_getsubscribed(${1:imap_stream}, ${2:ref}, ${3:pattern})" },
		{ "trigger": "imap_header", "contents": "imap_header()" },
		{ "trigger": "imap_headerinfo", "contents": "imap_headerinfo(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_headers", "contents": "imap_headers(${1:imap_stream})" },
		{ "trigger": "imap_last_error", "contents": "imap_last_error(${1:oid})" },
		{ "trigger": "imap_list", "contents": "imap_list(${1:imap_stream}, ${2:ref}, ${3:pattern})" },
		{ "trigger": "imap_listmailbox", "contents": "imap_listmailbox()" },
		{ "trigger": "imap_listscan", "contents": "imap_listscan(${1:imap_stream}, ${2:ref}, ${3:pattern}, ${4:content})" },
		{ "trigger": "imap_listsubscribed", "contents": "imap_listsubscribed()" },
		{ "trigger": "imap_lsub", "contents": "imap_lsub(${1:imap_stream}, ${2:ref}, ${3:pattern})" },
		{ "trigger": "imap_mail", "contents": "imap_mail(${1:to}, ${2:subject}, ${3:message})" },
		{ "trigger": "imap_mail_compose", "contents": "imap_mail_compose(${1:envelope}, ${2:body})" },
		{ "trigger": "imap_mail_copy", "contents": "imap_mail_copy(${1:imap_stream}, ${2:msglist}, ${3:mailbox})" },
		{ "trigger": "imap_mail_move", "contents": "imap_mail_move(${1:imap_stream}, ${2:msglist}, ${3:mailbox})" },
		{ "trigger": "imap_mailboxmsginfo", "contents": "imap_mailboxmsginfo(${1:imap_stream})" },
		{ "trigger": "imap_mime_header_decode", "contents": "imap_mime_header_decode(${1:text})" },
		{ "trigger": "imap_msgno", "contents": "imap_msgno(${1:imap_stream}, ${2:uid})" },
		{ "trigger": "imap_num_msg", "contents": "imap_num_msg(${1:imap_stream})" },
		{ "trigger": "imap_num_recent", "contents": "imap_num_recent(${1:imap_stream})" },
		{ "trigger": "imap_open", "contents": "imap_open(${1:mailbox}, ${2:username}, ${3:password})" },
		{ "trigger": "imap_ping", "contents": "imap_ping(${1:imap_stream})" },
		{ "trigger": "imap_qprint", "contents": "imap_qprint(${1:string})" },
		{ "trigger": "imap_renamemailbox", "contents": "imap_renamemailbox(${1:imap_stream}, ${2:old_mbox}, ${3:new_mbox})" },
		{ "trigger": "imap_reopen", "contents": "imap_reopen(${1:imap_stream}, ${2:mailbox})" },
		{ "trigger": "imap_rfc822_parse_adrlist", "contents": "imap_rfc822_parse_adrlist(${1:address}, ${2:default_host})" },
		{ "trigger": "imap_rfc822_parse_headers", "contents": "imap_rfc822_parse_headers(${1:headers})" },
		{ "trigger": "imap_rfc822_write_address", "contents": "imap_rfc822_write_address(${1:mailbox}, ${2:host}, ${3:personal})" },
		{ "trigger": "imap_savebody", "contents": "imap_savebody(${1:imap_stream}, ${2:file}, ${3:msg_number})" },
		{ "trigger": "imap_scanmailbox", "contents": "imap_scanmailbox()" },
		{ "trigger": "imap_search", "contents": "imap_search(${1:imap_stream}, ${2:criteria})" },
		{ "trigger": "imap_set_quota", "contents": "imap_set_quota(${1:imap_stream}, ${2:quota_root}, ${3:quota_limit})" },
		{ "trigger": "imap_setacl", "contents": "imap_setacl(${1:imap_stream}, ${2:mailbox}, ${3:id}, ${4:rights})" },
		{ "trigger": "imap_setflag_full", "contents": "imap_setflag_full(${1:imap_stream}, ${2:sequence}, ${3:flag})" },
		{ "trigger": "imap_sort", "contents": "imap_sort(${1:imap_stream}, ${2:criteria}, ${3:reverse})" },
		{ "trigger": "imap_status", "contents": "imap_status(${1:imap_stream}, ${2:mailbox}, ${3:options})" },
		{ "trigger": "imap_subscribe", "contents": "imap_subscribe(${1:imap_stream}, ${2:mailbox})" },
		{ "trigger": "imap_thread", "contents": "imap_thread(${1:imap_stream})" },
		{ "trigger": "imap_timeout", "contents": "imap_timeout(${1:timeout_type})" },
		{ "trigger": "imap_uid", "contents": "imap_uid(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_undelete", "contents": "imap_undelete(${1:imap_stream}, ${2:msg_number})" },
		{ "trigger": "imap_unsubscribe", "contents": "imap_unsubscribe(${1:imap_stream}, ${2:mailbox})" },
		{ "trigger": "imap_utf7_decode", "contents": "imap_utf7_decode(${1:text})" },
		{ "trigger": "imap_utf7_encode", "contents": "imap_utf7_encode(${1:data})" },
		{ "trigger": "imap_utf8", "contents": "imap_utf8(${1:mime_encoded_text})" },
		{ "trigger": "implode", "contents": "implode(${1:glue}, ${2:pieces})" },
		{ "trigger": "import_request_variables", "contents": "import_request_variables(${1:types})" },
		{ "trigger": "in_array", "contents": "in_array(${1:needle}, ${2:haystack})" },
		{ "trigger": "", "contents": "()" },
		{ "trigger": "", "contents": "()" },
		{ "trigger": "inclued_get_data", "contents": "inclued_get_data(${1:oid})" },
		{ "trigger": "inet_ntop", "contents": "inet_ntop(${1:in_addr})" },
		{ "trigger": "inet_pton", "contents": "inet_pton(${1:address})" },
		{ "trigger": "ingres_autocommit", "contents": "ingres_autocommit(${1:link})" },
		{ "trigger": "ingres_autocommit_state", "contents": "ingres_autocommit_state(${1:link})" },
		{ "trigger": "ingres_charset", "contents": "ingres_charset(${1:link})" },
		{ "trigger": "ingres_close", "contents": "ingres_close(${1:link})" },
		{ "trigger": "ingres_commit", "contents": "ingres_commit(${1:link})" },
		{ "trigger": "ingres_connect", "contents": "ingres_connect()" },
		{ "trigger": "ingres_cursor", "contents": "ingres_cursor(${1:result})" },
		{ "trigger": "ingres_errno", "contents": "ingres_errno()" },
		{ "trigger": "ingres_error", "contents": "ingres_error()" },
		{ "trigger": "ingres_errsqlstate", "contents": "ingres_errsqlstate()" },
		{ "trigger": "ingres_escape_string", "contents": "ingres_escape_string(${1:link}, ${2:source_string})" },
		{ "trigger": "ingres_execute", "contents": "ingres_execute(${1:result})" },
		{ "trigger": "ingres_fetch_array", "contents": "ingres_fetch_array(${1:result})" },
		{ "trigger": "ingres_fetch_assoc", "contents": "ingres_fetch_assoc(${1:result})" },
		{ "trigger": "ingres_fetch_object", "contents": "ingres_fetch_object(${1:result})" },
		{ "trigger": "ingres_fetch_proc_return", "contents": "ingres_fetch_proc_return(${1:result})" },
		{ "trigger": "ingres_fetch_row", "contents": "ingres_fetch_row(${1:result})" },
		{ "trigger": "ingres_field_length", "contents": "ingres_field_length(${1:result}, ${2:index})" },
		{ "trigger": "ingres_field_name", "contents": "ingres_field_name(${1:result}, ${2:index})" },
		{ "trigger": "ingres_field_nullable", "contents": "ingres_field_nullable(${1:result}, ${2:index})" },
		{ "trigger": "ingres_field_precision", "contents": "ingres_field_precision(${1:result}, ${2:index})" },
		{ "trigger": "ingres_field_scale", "contents": "ingres_field_scale(${1:result}, ${2:index})" },
		{ "trigger": "ingres_field_type", "contents": "ingres_field_type(${1:result}, ${2:index})" },
		{ "trigger": "ingres_free_result", "contents": "ingres_free_result(${1:result})" },
		{ "trigger": "ingres_next_error", "contents": "ingres_next_error()" },
		{ "trigger": "ingres_num_fields", "contents": "ingres_num_fields(${1:result})" },
		{ "trigger": "ingres_num_rows", "contents": "ingres_num_rows(${1:result})" },
		{ "trigger": "ingres_pconnect", "contents": "ingres_pconnect()" },
		{ "trigger": "ingres_prepare", "contents": "ingres_prepare(${1:link}, ${2:query})" },
		{ "trigger": "ingres_query", "contents": "ingres_query(${1:link}, ${2:query})" },
		{ "trigger": "ingres_result_seek", "contents": "ingres_result_seek(${1:result}, ${2:position})" },
		{ "trigger": "ingres_rollback", "contents": "ingres_rollback(${1:link})" },
		{ "trigger": "ingres_set_environment", "contents": "ingres_set_environment(${1:link}, ${2:options})" },
		{ "trigger": "ingres_unbuffered_query", "contents": "ingres_unbuffered_query(${1:link}, ${2:query})" },
		{ "trigger": "ini_alter", "contents": "ini_alter()" },
		{ "trigger": "ini_get", "contents": "ini_get(${1:varname})" },
		{ "trigger": "ini_get_all", "contents": "ini_get_all()" },
		{ "trigger": "ini_restore", "contents": "ini_restore(${1:varname})" },
		{ "trigger": "ini_set", "contents": "ini_set(${1:varname}, ${2:newvalue})" },
		{ "trigger": "inotify_add_watch", "contents": "inotify_add_watch(${1:inotify_instance}, ${2:pathname}, ${3:mask})" },
		{ "trigger": "inotify_init", "contents": "inotify_init(${1:oid})" },
		{ "trigger": "inotify_queue_len", "contents": "inotify_queue_len(${1:inotify_instance})" },
		{ "trigger": "inotify_read", "contents": "inotify_read(${1:inotify_instance})" },
		{ "trigger": "inotify_rm_watch", "contents": "inotify_rm_watch(${1:inotify_instance}, ${2:watch_descriptor})" },
		{ "trigger": "interface_exists", "contents": "interface_exists(${1:interface_name})" },
		{ "trigger": "intl_error_name", "contents": "intl_error_name(${1:error_code})" },
		{ "trigger": "intl_get_error_code", "contents": "intl_get_error_code(${1:oid})" },
		{ "trigger": "intl_get_error_message", "contents": "intl_get_error_message(${1:oid})" },
		{ "trigger": "intl_is_failure", "contents": "intl_is_failure(${1:error_code})" },
		{ "trigger": "intval", "contents": "intval(${1:var})" },
		{ "trigger": "ip2long", "contents": "ip2long(${1:ip_address})" },
		{ "trigger": "iptcembed", "contents": "iptcembed(${1:iptcdata}, ${2:jpeg_file_name})" },
		{ "trigger": "iptcparse", "contents": "iptcparse(${1:iptcblock})" },
		{ "trigger": "is_a", "contents": "is_a(${1:object}, ${2:class_name})" },
		{ "trigger": "is_array", "contents": "is_array(${1:var})" },
		{ "trigger": "is_bool", "contents": "is_bool(${1:var})" },
		{ "trigger": "is_callable", "contents": "is_callable(${1:name})" },
		{ "trigger": "is_dir", "contents": "is_dir(${1:filename})" },
		{ "trigger": "is_double", "contents": "is_double()" },
		{ "trigger": "is_executable", "contents": "is_executable(${1:filename})" },
		{ "trigger": "is_file", "contents": "is_file(${1:filename})" },
		{ "trigger": "is_finite", "contents": "is_finite(${1:val})" },
		{ "trigger": "is_float", "contents": "is_float(${1:var})" },
		{ "trigger": "is_infinite", "contents": "is_infinite(${1:val})" },
		{ "trigger": "is_int", "contents": "is_int(${1:var})" },
		{ "trigger": "is_integer", "contents": "is_integer()" },
		{ "trigger": "is_link", "contents": "is_link(${1:filename})" },
		{ "trigger": "is_long", "contents": "is_long()" },
		{ "trigger": "is_nan", "contents": "is_nan(${1:val})" },
		{ "trigger": "is_null", "contents": "is_null(${1:var})" },
		{ "trigger": "is_numeric", "contents": "is_numeric(${1:var})" },
		{ "trigger": "is_object", "contents": "is_object(${1:var})" },
		{ "trigger": "is_readable", "contents": "is_readable(${1:filename})" },
		{ "trigger": "is_real", "contents": "is_real()" },
		{ "trigger": "is_resource", "contents": "is_resource(${1:var})" },
		{ "trigger": "is_scalar", "contents": "is_scalar(${1:var})" },
		{ "trigger": "is_soap_fault", "contents": "is_soap_fault(${1:object})" },
		{ "trigger": "is_string", "contents": "is_string(${1:var})" },
		{ "trigger": "is_subclass_of", "contents": "is_subclass_of(${1:object}, ${2:class_name})" },
		{ "trigger": "is_uploaded_file", "contents": "is_uploaded_file(${1:filename})" },
		{ "trigger": "is_writable", "contents": "is_writable(${1:filename})" },
		{ "trigger": "is_writeable", "contents": "is_writeable()" },
		{ "trigger": "isset", "contents": "isset(${1:var})" },
		{ "trigger": "iterator_apply", "contents": "iterator_apply(${1:iterator}, ${2:function})" },
		{ "trigger": "iterator_count", "contents": "iterator_count(${1:iterator})" },
		{ "trigger": "iterator_to_array", "contents": "iterator_to_array(${1:iterator})" },
		{ "trigger": "java_last_exception_clear", "contents": "java_last_exception_clear(${1:oid})" },
		{ "trigger": "java_last_exception_get", "contents": "java_last_exception_get(${1:oid})" },
		{ "trigger": "JDDayOfWeek", "contents": "JDDayOfWeek(${1:julianday})" },
		{ "trigger": "JDMonthName", "contents": "JDMonthName(${1:julianday}, ${2:mode})" },
		{ "trigger": "JDToFrench", "contents": "JDToFrench(${1:juliandaycount})" },
		{ "trigger": "JDToGregorian", "contents": "JDToGregorian(${1:julianday})" },
		{ "trigger": "jdtojewish", "contents": "jdtojewish(${1:juliandaycount})" },
		{ "trigger": "JDToJulian", "contents": "JDToJulian(${1:julianday})" },
		{ "trigger": "jdtounix", "contents": "jdtounix(${1:jday})" },
		{ "trigger": "JewishToJD", "contents": "JewishToJD(${1:month}, ${2:day}, ${3:year})" },
		{ "trigger": "join", "contents": "join()" },
		{ "trigger": "jpeg2wbmp", "contents": "jpeg2wbmp(${1:jpegname}, ${2:wbmpname}, ${3:dest_height}, ${4:dest_width}, ${5:threshold})" },
		{ "trigger": "json_decode", "contents": "json_decode(${1:json})" },
		{ "trigger": "json_encode", "contents": "json_encode(${1:value})" },
		{ "trigger": "json_last_error", "contents": "json_last_error(${1:oid})" },
		{ "trigger": "judy_type", "contents": "judy_type(${1:array})" },
		{ "trigger": "judy_version", "contents": "judy_version(${1:oid})" },
		{ "trigger": "JulianToJD", "contents": "JulianToJD(${1:month}, ${2:day}, ${3:year})" },
		{ "trigger": "kadm5_chpass_principal", "contents": "kadm5_chpass_principal(${1:handle}, ${2:principal}, ${3:password})" },
		{ "trigger": "kadm5_create_principal", "contents": "kadm5_create_principal(${1:handle}, ${2:principal})" },
		{ "trigger": "kadm5_delete_principal", "contents": "kadm5_delete_principal(${1:handle}, ${2:principal})" },
		{ "trigger": "kadm5_destroy", "contents": "kadm5_destroy(${1:handle})" },
		{ "trigger": "kadm5_flush", "contents": "kadm5_flush(${1:handle})" },
		{ "trigger": "kadm5_get_policies", "contents": "kadm5_get_policies(${1:handle})" },
		{ "trigger": "kadm5_get_principal", "contents": "kadm5_get_principal(${1:handle}, ${2:principal})" },
		{ "trigger": "kadm5_get_principals", "contents": "kadm5_get_principals(${1:handle})" },
		{ "trigger": "kadm5_init_with_password", "contents": "kadm5_init_with_password(${1:admin_server}, ${2:realm}, ${3:principal}, ${4:password})" },
		{ "trigger": "kadm5_modify_principal", "contents": "kadm5_modify_principal(${1:handle}, ${2:principal}, ${3:options})" },
		{ "trigger": "key", "contents": "key(${1:array})" },
		{ "trigger": "krsort", "contents": "krsort(${1:array})" },
		{ "trigger": "ksort", "contents": "ksort(${1:array})" },
		{ "trigger": "lcfirst", "contents": "lcfirst(${1:str})" },
		{ "trigger": "lcg_value", "contents": "lcg_value(${1:oid})" },
		{ "trigger": "lchgrp", "contents": "lchgrp(${1:filename}, ${2:group})" },
		{ "trigger": "lchown", "contents": "lchown(${1:filename}, ${2:user})" },
		{ "trigger": "ldap_8859_to_t61", "contents": "ldap_8859_to_t61(${1:value})" },
		{ "trigger": "ldap_add", "contents": "ldap_add(${1:link_identifier}, ${2:dn}, ${3:entry})" },
		{ "trigger": "ldap_bind", "contents": "ldap_bind(${1:link_identifier})" },
		{ "trigger": "ldap_close", "contents": "ldap_close()" },
		{ "trigger": "ldap_compare", "contents": "ldap_compare(${1:link_identifier}, ${2:dn}, ${3:attribute}, ${4:value})" },
		{ "trigger": "ldap_connect", "contents": "ldap_connect()" },
		{ "trigger": "ldap_count_entries", "contents": "ldap_count_entries(${1:link_identifier}, ${2:result_identifier})" },
		{ "trigger": "ldap_delete", "contents": "ldap_delete(${1:link_identifier}, ${2:dn})" },
		{ "trigger": "ldap_dn2ufn", "contents": "ldap_dn2ufn(${1:dn})" },
		{ "trigger": "ldap_err2str", "contents": "ldap_err2str(${1:errno})" },
		{ "trigger": "ldap_errno", "contents": "ldap_errno(${1:link_identifier})" },
		{ "trigger": "ldap_error", "contents": "ldap_error(${1:link_identifier})" },
		{ "trigger": "ldap_explode_dn", "contents": "ldap_explode_dn(${1:dn}, ${2:with_attrib})" },
		{ "trigger": "ldap_first_attribute", "contents": "ldap_first_attribute(${1:link_identifier}, ${2:result_entry_identifier})" },
		{ "trigger": "ldap_first_entry", "contents": "ldap_first_entry(${1:link_identifier}, ${2:result_identifier})" },
		{ "trigger": "ldap_first_reference", "contents": "ldap_first_reference(${1:link}, ${2:result})" },
		{ "trigger": "ldap_free_result", "contents": "ldap_free_result(${1:result_identifier})" },
		{ "trigger": "ldap_get_attributes", "contents": "ldap_get_attributes(${1:link_identifier}, ${2:result_entry_identifier})" },
		{ "trigger": "ldap_get_dn", "contents": "ldap_get_dn(${1:link_identifier}, ${2:result_entry_identifier})" },
		{ "trigger": "ldap_get_entries", "contents": "ldap_get_entries(${1:link_identifier}, ${2:result_identifier})" },
		{ "trigger": "ldap_get_option", "contents": "ldap_get_option(${1:link_identifier}, ${2:option}, ${3:retval})" },
		{ "trigger": "ldap_get_values", "contents": "ldap_get_values(${1:link_identifier}, ${2:result_entry_identifier}, ${3:attribute})" },
		{ "trigger": "ldap_get_values_len", "contents": "ldap_get_values_len(${1:link_identifier}, ${2:result_entry_identifier}, ${3:attribute})" },
		{ "trigger": "ldap_list", "contents": "ldap_list(${1:link_identifier}, ${2:base_dn}, ${3:filter})" },
		{ "trigger": "ldap_mod_add", "contents": "ldap_mod_add(${1:link_identifier}, ${2:dn}, ${3:entry})" },
		{ "trigger": "ldap_mod_del", "contents": "ldap_mod_del(${1:link_identifier}, ${2:dn}, ${3:entry})" },
		{ "trigger": "ldap_mod_replace", "contents": "ldap_mod_replace(${1:link_identifier}, ${2:dn}, ${3:entry})" },
		{ "trigger": "ldap_modify", "contents": "ldap_modify(${1:link_identifier}, ${2:dn}, ${3:entry})" },
		{ "trigger": "ldap_next_attribute", "contents": "ldap_next_attribute(${1:link_identifier}, ${2:result_entry_identifier})" },
		{ "trigger": "ldap_next_entry", "contents": "ldap_next_entry(${1:link_identifier}, ${2:result_entry_identifier})" },
		{ "trigger": "ldap_next_reference", "contents": "ldap_next_reference(${1:link}, ${2:entry})" },
		{ "trigger": "ldap_parse_reference", "contents": "ldap_parse_reference(${1:link}, ${2:entry}, ${3:referrals})" },
		{ "trigger": "ldap_parse_result", "contents": "ldap_parse_result(${1:link}, ${2:result}, ${3:errcode})" },
		{ "trigger": "ldap_read", "contents": "ldap_read(${1:link_identifier}, ${2:base_dn}, ${3:filter})" },
		{ "trigger": "ldap_rename", "contents": "ldap_rename(${1:link_identifier}, ${2:dn}, ${3:newrdn}, ${4:newparent}, ${5:deleteoldrdn})" },
		{ "trigger": "ldap_sasl_bind", "contents": "ldap_sasl_bind(${1:link})" },
		{ "trigger": "ldap_search", "contents": "ldap_search(${1:link_identifier}, ${2:base_dn}, ${3:filter})" },
		{ "trigger": "ldap_set_option", "contents": "ldap_set_option(${1:link_identifier}, ${2:option}, ${3:newval})" },
		{ "trigger": "ldap_set_rebind_proc", "contents": "ldap_set_rebind_proc(${1:link}, ${2:callback})" },
		{ "trigger": "ldap_sort", "contents": "ldap_sort(${1:link}, ${2:result}, ${3:sortfilter})" },
		{ "trigger": "ldap_start_tls", "contents": "ldap_start_tls(${1:link})" },
		{ "trigger": "ldap_t61_to_8859", "contents": "ldap_t61_to_8859(${1:value})" },
		{ "trigger": "ldap_unbind", "contents": "ldap_unbind(${1:link_identifier})" },
		{ "trigger": "levenshtein", "contents": "levenshtein(${1:str1}, ${2:str2})" },
		{ "trigger": "libxml_clear_errors", "contents": "libxml_clear_errors(${1:oid})" },
		{ "trigger": "libxml_disable_entity_loader", "contents": "libxml_disable_entity_loader()" },
		{ "trigger": "libxml_get_errors", "contents": "libxml_get_errors(${1:oid})" },
		{ "trigger": "libxml_get_last_error", "contents": "libxml_get_last_error(${1:oid})" },
		{ "trigger": "libxml_set_streams_context", "contents": "libxml_set_streams_context(${1:streams_context})" },
		{ "trigger": "libxml_use_internal_errors", "contents": "libxml_use_internal_errors()" },
		{ "trigger": "link", "contents": "link(${1:target}, ${2:link})" },
		{ "trigger": "linkinfo", "contents": "linkinfo(${1:path})" },
		{ "trigger": "list", "contents": "list(${1:varname})" },
		{ "trigger": "localeconv", "contents": "localeconv(${1:oid})" },
		{ "trigger": "localtime", "contents": "localtime()" },
		{ "trigger": "log", "contents": "log(${1:arg})" },
		{ "trigger": "log10", "contents": "log10(${1:arg})" },
		{ "trigger": "log1p", "contents": "log1p(${1:number})" },
		{ "trigger": "long2ip", "contents": "long2ip(${1:proper_address})" },
		{ "trigger": "lstat", "contents": "lstat(${1:filename})" },
		{ "trigger": "ltrim", "contents": "ltrim(${1:str})" },
		{ "trigger": "lzf_compress", "contents": "lzf_compress(${1:data})" },
		{ "trigger": "lzf_decompress", "contents": "lzf_decompress(${1:data})" },
		{ "trigger": "lzf_optimized_for", "contents": "lzf_optimized_for(${1:oid})" },
		{ "trigger": "m_checkstatus", "contents": "m_checkstatus(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_completeauthorizations", "contents": "m_completeauthorizations(${1:conn}, ${2:array})" },
		{ "trigger": "m_connect", "contents": "m_connect(${1:conn})" },
		{ "trigger": "m_connectionerror", "contents": "m_connectionerror(${1:conn})" },
		{ "trigger": "m_deletetrans", "contents": "m_deletetrans(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_destroyconn", "contents": "m_destroyconn(${1:conn})" },
		{ "trigger": "m_destroyengine", "contents": "m_destroyengine(${1:oid})" },
		{ "trigger": "m_getcell", "contents": "m_getcell(${1:conn}, ${2:identifier}, ${3:column}, ${4:row})" },
		{ "trigger": "m_getcellbynum", "contents": "m_getcellbynum(${1:conn}, ${2:identifier}, ${3:column}, ${4:row})" },
		{ "trigger": "m_getcommadelimited", "contents": "m_getcommadelimited(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_getheader", "contents": "m_getheader(${1:conn}, ${2:identifier}, ${3:column_num})" },
		{ "trigger": "m_initconn", "contents": "m_initconn(${1:oid})" },
		{ "trigger": "m_initengine", "contents": "m_initengine(${1:location})" },
		{ "trigger": "m_iscommadelimited", "contents": "m_iscommadelimited(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_maxconntimeout", "contents": "m_maxconntimeout(${1:conn}, ${2:secs})" },
		{ "trigger": "m_monitor", "contents": "m_monitor(${1:conn})" },
		{ "trigger": "m_numcolumns", "contents": "m_numcolumns(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_numrows", "contents": "m_numrows(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_parsecommadelimited", "contents": "m_parsecommadelimited(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_responsekeys", "contents": "m_responsekeys(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_responseparam", "contents": "m_responseparam(${1:conn}, ${2:identifier}, ${3:key})" },
		{ "trigger": "m_returnstatus", "contents": "m_returnstatus(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_setblocking", "contents": "m_setblocking(${1:conn}, ${2:tf})" },
		{ "trigger": "m_setdropfile", "contents": "m_setdropfile(${1:conn}, ${2:directory})" },
		{ "trigger": "m_setip", "contents": "m_setip(${1:conn}, ${2:host}, ${3:port})" },
		{ "trigger": "m_setssl", "contents": "m_setssl(${1:conn}, ${2:host}, ${3:port})" },
		{ "trigger": "m_setssl_cafile", "contents": "m_setssl_cafile(${1:conn}, ${2:cafile})" },
		{ "trigger": "m_setssl_files", "contents": "m_setssl_files(${1:conn}, ${2:sslkeyfile}, ${3:sslcertfile})" },
		{ "trigger": "m_settimeout", "contents": "m_settimeout(${1:conn}, ${2:seconds})" },
		{ "trigger": "m_sslcert_gen_hash", "contents": "m_sslcert_gen_hash(${1:filename})" },
		{ "trigger": "m_transactionssent", "contents": "m_transactionssent(${1:conn})" },
		{ "trigger": "m_transinqueue", "contents": "m_transinqueue(${1:conn})" },
		{ "trigger": "m_transkeyval", "contents": "m_transkeyval(${1:conn}, ${2:identifier}, ${3:key}, ${4:value})" },
		{ "trigger": "m_transnew", "contents": "m_transnew(${1:conn})" },
		{ "trigger": "m_transsend", "contents": "m_transsend(${1:conn}, ${2:identifier})" },
		{ "trigger": "m_uwait", "contents": "m_uwait(${1:microsecs})" },
		{ "trigger": "m_validateidentifier", "contents": "m_validateidentifier(${1:conn}, ${2:tf})" },
		{ "trigger": "m_verifyconnection", "contents": "m_verifyconnection(${1:conn}, ${2:tf})" },
		{ "trigger": "m_verifysslcert", "contents": "m_verifysslcert(${1:conn}, ${2:tf})" },
		{ "trigger": "magic_quotes_runtime", "contents": "magic_quotes_runtime()" },
		{ "trigger": "mail", "contents": "mail(${1:to}, ${2:subject}, ${3:message})" },
		{ "trigger": "mailparse_determine_best_xfer_encoding", "contents": "mailparse_determine_best_xfer_encoding(${1:fp})" },
		{ "trigger": "mailparse_msg_create", "contents": "mailparse_msg_create(${1:oid})" },
		{ "trigger": "mailparse_msg_extract_part", "contents": "mailparse_msg_extract_part(${1:mimemail}, ${2:msgbody})" },
		{ "trigger": "mailparse_msg_extract_part_file", "contents": "mailparse_msg_extract_part_file(${1:mimemail}, ${2:filename})" },
		{ "trigger": "mailparse_msg_extract_whole_part_file", "contents": "mailparse_msg_extract_whole_part_file(${1:mimemail}, ${2:filename})" },
		{ "trigger": "mailparse_msg_free", "contents": "mailparse_msg_free(${1:mimemail})" },
		{ "trigger": "mailparse_msg_get_part", "contents": "mailparse_msg_get_part(${1:mimemail}, ${2:mimesection})" },
		{ "trigger": "mailparse_msg_get_part_data", "contents": "mailparse_msg_get_part_data(${1:mimemail})" },
		{ "trigger": "mailparse_msg_get_structure", "contents": "mailparse_msg_get_structure(${1:mimemail})" },
		{ "trigger": "mailparse_msg_parse", "contents": "mailparse_msg_parse(${1:mimemail}, ${2:data})" },
		{ "trigger": "mailparse_msg_parse_file", "contents": "mailparse_msg_parse_file(${1:filename})" },
		{ "trigger": "mailparse_rfc822_parse_addresses", "contents": "mailparse_rfc822_parse_addresses(${1:addresses})" },
		{ "trigger": "mailparse_stream_encode", "contents": "mailparse_stream_encode(${1:sourcefp}, ${2:destfp}, ${3:encoding})" },
		{ "trigger": "mailparse_uudecode_all", "contents": "mailparse_uudecode_all(${1:fp})" },
		{ "trigger": "main", "contents": "main()" },
		{ "trigger": "max", "contents": "max(${1:values})" },
		{ "trigger": "maxdb_bind_param", "contents": "maxdb_bind_param()" },
		{ "trigger": "maxdb_bind_result", "contents": "maxdb_bind_result()" },
		{ "trigger": "maxdb_client_encoding", "contents": "maxdb_client_encoding()" },
		{ "trigger": "maxdb_connect_errno", "contents": "maxdb_connect_errno(${1:oid})" },
		{ "trigger": "maxdb_connect_error", "contents": "maxdb_connect_error(${1:oid})" },
		{ "trigger": "maxdb_debug", "contents": "maxdb_debug(${1:debug})" },
		{ "trigger": "maxdb_disable_rpl_parse", "contents": "maxdb_disable_rpl_parse(${1:link})" },
		{ "trigger": "maxdb_dump_debug_info", "contents": "maxdb_dump_debug_info(${1:link})" },
		{ "trigger": "maxdb_embedded_connect", "contents": "maxdb_embedded_connect()" },
		{ "trigger": "maxdb_enable_reads_from_master", "contents": "maxdb_enable_reads_from_master(${1:link})" },
		{ "trigger": "maxdb_enable_rpl_parse", "contents": "maxdb_enable_rpl_parse(${1:link})" },
		{ "trigger": "maxdb_escape_string", "contents": "maxdb_escape_string()" },
		{ "trigger": "maxdb_execute", "contents": "maxdb_execute()" },
		{ "trigger": "maxdb_fetch", "contents": "maxdb_fetch()" },
		{ "trigger": "maxdb_get_client_info", "contents": "maxdb_get_client_info(${1:oid})" },
		{ "trigger": "maxdb_get_client_version", "contents": "maxdb_get_client_version(${1:oid})" },
		{ "trigger": "maxdb_get_metadata", "contents": "maxdb_get_metadata()" },
		{ "trigger": "maxdb_init", "contents": "maxdb_init(${1:oid})" },
		{ "trigger": "maxdb_master_query", "contents": "maxdb_master_query(${1:link}, ${2:query})" },
		{ "trigger": "maxdb_param_count", "contents": "maxdb_param_count()" },
		{ "trigger": "maxdb_report", "contents": "maxdb_report(${1:flags})" },
		{ "trigger": "maxdb_rpl_parse_enabled", "contents": "maxdb_rpl_parse_enabled(${1:link})" },
		{ "trigger": "maxdb_rpl_probe", "contents": "maxdb_rpl_probe(${1:link})" },
		{ "trigger": "maxdb_send_long_data", "contents": "maxdb_send_long_data()" },
		{ "trigger": "maxdb_server_end", "contents": "maxdb_server_end(${1:oid})" },
		{ "trigger": "maxdb_server_init", "contents": "maxdb_server_init()" },
		{ "trigger": "maxdb_set_opt", "contents": "maxdb_set_opt()" },
		{ "trigger": "maxdb_stmt_sqlstate", "contents": "maxdb_stmt_sqlstate(${1:stmt})" },
		{ "trigger": "maxdb_thread_safe", "contents": "maxdb_thread_safe(${1:oid})" },
		{ "trigger": "mb_check_encoding", "contents": "mb_check_encoding()" },
		{ "trigger": "mb_convert_case", "contents": "mb_convert_case(${1:str}, ${2:mode = MB_CASE_UPPER})" },
		{ "trigger": "mb_convert_encoding", "contents": "mb_convert_encoding(${1:str}, ${2:to_encoding})" },
		{ "trigger": "mb_convert_kana", "contents": "mb_convert_kana(${1:str})" },
		{ "trigger": "mb_convert_variables", "contents": "mb_convert_variables(${1:to_encoding}, ${2:from_encoding}, ${3:vars})" },
		{ "trigger": "mb_decode_mimeheader", "contents": "mb_decode_mimeheader(${1:str})" },
		{ "trigger": "mb_decode_numericentity", "contents": "mb_decode_numericentity(${1:str}, ${2:convmap}, ${3:encoding})" },
		{ "trigger": "mb_detect_encoding", "contents": "mb_detect_encoding(${1:str})" },
		{ "trigger": "mb_detect_order", "contents": "mb_detect_order()" },
		{ "trigger": "mb_encode_mimeheader", "contents": "mb_encode_mimeheader(${1:str})" },
		{ "trigger": "mb_encode_numericentity", "contents": "mb_encode_numericentity(${1:str}, ${2:convmap}, ${3:encoding})" },
		{ "trigger": "mb_encoding_aliases", "contents": "mb_encoding_aliases(${1:encoding})" },
		{ "trigger": "mb_ereg", "contents": "mb_ereg(${1:pattern}, ${2:string})" },
		{ "trigger": "mb_ereg_match", "contents": "mb_ereg_match(${1:pattern}, ${2:string})" },
		{ "trigger": "mb_ereg_replace", "contents": "mb_ereg_replace(${1:pattern}, ${2:replacement}, ${3:string})" },
		{ "trigger": "mb_ereg_search", "contents": "mb_ereg_search()" },
		{ "trigger": "mb_ereg_search_getpos", "contents": "mb_ereg_search_getpos(${1:oid})" },
		{ "trigger": "mb_ereg_search_getregs", "contents": "mb_ereg_search_getregs(${1:oid})" },
		{ "trigger": "mb_ereg_search_init", "contents": "mb_ereg_search_init(${1:string})" },
		{ "trigger": "mb_ereg_search_pos", "contents": "mb_ereg_search_pos()" },
		{ "trigger": "mb_ereg_search_regs", "contents": "mb_ereg_search_regs()" },
		{ "trigger": "mb_ereg_search_setpos", "contents": "mb_ereg_search_setpos(${1:position})" },
		{ "trigger": "mb_eregi", "contents": "mb_eregi(${1:pattern}, ${2:string})" },
		{ "trigger": "mb_eregi_replace", "contents": "mb_eregi_replace(${1:pattern}, ${2:replace}, ${3:string})" },
		{ "trigger": "mb_get_info", "contents": "mb_get_info()" },
		{ "trigger": "mb_http_input", "contents": "mb_http_input()" },
		{ "trigger": "mb_http_output", "contents": "mb_http_output()" },
		{ "trigger": "mb_internal_encoding", "contents": "mb_internal_encoding()" },
		{ "trigger": "mb_language", "contents": "mb_language()" },
		{ "trigger": "mb_list_encodings", "contents": "mb_list_encodings(${1:oid})" },
		{ "trigger": "mb_output_handler", "contents": "mb_output_handler(${1:contents}, ${2:status})" },
		{ "trigger": "mb_parse_str", "contents": "mb_parse_str(${1:encoded_string})" },
		{ "trigger": "mb_preferred_mime_name", "contents": "mb_preferred_mime_name(${1:encoding})" },
		{ "trigger": "mb_regex_encoding", "contents": "mb_regex_encoding()" },
		{ "trigger": "mb_regex_set_options", "contents": "mb_regex_set_options()" },
		{ "trigger": "mb_send_mail", "contents": "mb_send_mail(${1:to}, ${2:subject}, ${3:message})" },
		{ "trigger": "mb_split", "contents": "mb_split(${1:pattern}, ${2:string})" },
		{ "trigger": "mb_strcut", "contents": "mb_strcut(${1:str}, ${2:start})" },
		{ "trigger": "mb_strimwidth", "contents": "mb_strimwidth(${1:str}, ${2:start}, ${3:width})" },
		{ "trigger": "mb_stripos", "contents": "mb_stripos(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_stristr", "contents": "mb_stristr(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strlen", "contents": "mb_strlen(${1:str})" },
		{ "trigger": "mb_strpos", "contents": "mb_strpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strrchr", "contents": "mb_strrchr(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strrichr", "contents": "mb_strrichr(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strripos", "contents": "mb_strripos(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strrpos", "contents": "mb_strrpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strstr", "contents": "mb_strstr(${1:haystack}, ${2:needle})" },
		{ "trigger": "mb_strtolower", "contents": "mb_strtolower(${1:str})" },
		{ "trigger": "mb_strtoupper", "contents": "mb_strtoupper(${1:str})" },
		{ "trigger": "mb_strwidth", "contents": "mb_strwidth(${1:str})" },
		{ "trigger": "mb_substitute_character", "contents": "mb_substitute_character()" },
		{ "trigger": "mb_substr", "contents": "mb_substr(${1:str}, ${2:start})" },
		{ "trigger": "mb_substr_count", "contents": "mb_substr_count(${1:haystack}, ${2:needle})" },
		{ "trigger": "mcrypt_cbc", "contents": "mcrypt_cbc(${1:cipher}, ${2:key}, ${3:data}, ${4:mode})" },
		{ "trigger": "mcrypt_cfb", "contents": "mcrypt_cfb(${1:cipher}, ${2:key}, ${3:data}, ${4:mode}, ${5:iv})" },
		{ "trigger": "mcrypt_create_iv", "contents": "mcrypt_create_iv(${1:size})" },
		{ "trigger": "mcrypt_decrypt", "contents": "mcrypt_decrypt(${1:cipher}, ${2:key}, ${3:data}, ${4:mode})" },
		{ "trigger": "mcrypt_ecb", "contents": "mcrypt_ecb(${1:cipher}, ${2:key}, ${3:data}, ${4:mode})" },
		{ "trigger": "mcrypt_enc_get_algorithms_name", "contents": "mcrypt_enc_get_algorithms_name(${1:td})" },
		{ "trigger": "mcrypt_enc_get_block_size", "contents": "mcrypt_enc_get_block_size(${1:td})" },
		{ "trigger": "mcrypt_enc_get_iv_size", "contents": "mcrypt_enc_get_iv_size(${1:td})" },
		{ "trigger": "mcrypt_enc_get_key_size", "contents": "mcrypt_enc_get_key_size(${1:td})" },
		{ "trigger": "mcrypt_enc_get_modes_name", "contents": "mcrypt_enc_get_modes_name(${1:td})" },
		{ "trigger": "mcrypt_enc_get_supported_key_sizes", "contents": "mcrypt_enc_get_supported_key_sizes(${1:td})" },
		{ "trigger": "mcrypt_enc_is_block_algorithm", "contents": "mcrypt_enc_is_block_algorithm(${1:td})" },
		{ "trigger": "mcrypt_enc_is_block_algorithm_mode", "contents": "mcrypt_enc_is_block_algorithm_mode(${1:td})" },
		{ "trigger": "mcrypt_enc_is_block_mode", "contents": "mcrypt_enc_is_block_mode(${1:td})" },
		{ "trigger": "mcrypt_enc_self_test", "contents": "mcrypt_enc_self_test(${1:td})" },
		{ "trigger": "mcrypt_encrypt", "contents": "mcrypt_encrypt(${1:cipher}, ${2:key}, ${3:data}, ${4:mode})" },
		{ "trigger": "mcrypt_generic", "contents": "mcrypt_generic(${1:td}, ${2:data})" },
		{ "trigger": "mcrypt_generic_deinit", "contents": "mcrypt_generic_deinit(${1:td})" },
		{ "trigger": "mcrypt_generic_end", "contents": "mcrypt_generic_end(${1:td})" },
		{ "trigger": "mcrypt_generic_init", "contents": "mcrypt_generic_init(${1:td}, ${2:key}, ${3:iv})" },
		{ "trigger": "mcrypt_get_block_size", "contents": "mcrypt_get_block_size(${1:cipher})" },
		{ "trigger": "mcrypt_get_cipher_name", "contents": "mcrypt_get_cipher_name(${1:cipher})" },
		{ "trigger": "mcrypt_get_iv_size", "contents": "mcrypt_get_iv_size(${1:cipher}, ${2:mode})" },
		{ "trigger": "mcrypt_get_key_size", "contents": "mcrypt_get_key_size(${1:cipher})" },
		{ "trigger": "mcrypt_list_algorithms", "contents": "mcrypt_list_algorithms()" },
		{ "trigger": "mcrypt_list_modes", "contents": "mcrypt_list_modes()" },
		{ "trigger": "mcrypt_module_close", "contents": "mcrypt_module_close(${1:td})" },
		{ "trigger": "mcrypt_module_get_algo_block_size", "contents": "mcrypt_module_get_algo_block_size(${1:algorithm})" },
		{ "trigger": "mcrypt_module_get_algo_key_size", "contents": "mcrypt_module_get_algo_key_size(${1:algorithm})" },
		{ "trigger": "mcrypt_module_get_supported_key_sizes", "contents": "mcrypt_module_get_supported_key_sizes(${1:algorithm})" },
		{ "trigger": "mcrypt_module_is_block_algorithm", "contents": "mcrypt_module_is_block_algorithm(${1:algorithm})" },
		{ "trigger": "mcrypt_module_is_block_algorithm_mode", "contents": "mcrypt_module_is_block_algorithm_mode(${1:mode})" },
		{ "trigger": "mcrypt_module_is_block_mode", "contents": "mcrypt_module_is_block_mode(${1:mode})" },
		{ "trigger": "mcrypt_module_open", "contents": "mcrypt_module_open(${1:algorithm}, ${2:algorithm_directory}, ${3:mode}, ${4:mode_directory})" },
		{ "trigger": "mcrypt_module_self_test", "contents": "mcrypt_module_self_test(${1:algorithm})" },
		{ "trigger": "mcrypt_ofb", "contents": "mcrypt_ofb(${1:cipher}, ${2:key}, ${3:data}, ${4:mode}, ${5:iv})" },
		{ "trigger": "md5", "contents": "md5(${1:str})" },
		{ "trigger": "md5_file", "contents": "md5_file(${1:filename})" },
		{ "trigger": "mdecrypt_generic", "contents": "mdecrypt_generic(${1:td}, ${2:data})" },
		{ "trigger": "memcache_debug", "contents": "memcache_debug(${1:on_off})" },
		{ "trigger": "memory_get_peak_usage", "contents": "memory_get_peak_usage()" },
		{ "trigger": "memory_get_usage", "contents": "memory_get_usage()" },
		{ "trigger": "metaphone", "contents": "metaphone(${1:str})" },
		{ "trigger": "method_exists", "contents": "method_exists(${1:object}, ${2:method_name})" },
		{ "trigger": "mhash", "contents": "mhash(${1:hash}, ${2:data})" },
		{ "trigger": "mhash_count", "contents": "mhash_count(${1:oid})" },
		{ "trigger": "mhash_get_block_size", "contents": "mhash_get_block_size(${1:hash})" },
		{ "trigger": "mhash_get_hash_name", "contents": "mhash_get_hash_name(${1:hash})" },
		{ "trigger": "mhash_keygen_s2k", "contents": "mhash_keygen_s2k(${1:hash}, ${2:password}, ${3:salt}, ${4:bytes})" },
		{ "trigger": "microtime", "contents": "microtime()" },
		{ "trigger": "mime_content_type", "contents": "mime_content_type(${1:filename})" },
		{ "trigger": "min", "contents": "min(${1:values})" },
		{ "trigger": "ming_keypress", "contents": "ming_keypress(${1:char})" },
		{ "trigger": "ming_setcubicthreshold", "contents": "ming_setcubicthreshold(${1:threshold})" },
		{ "trigger": "ming_setscale", "contents": "ming_setscale(${1:scale})" },
		{ "trigger": "ming_setswfcompression", "contents": "ming_setswfcompression(${1:level})" },
		{ "trigger": "ming_useconstants", "contents": "ming_useconstants(${1:use})" },
		{ "trigger": "ming_useswfversion", "contents": "ming_useswfversion(${1:version})" },
		{ "trigger": "mkdir", "contents": "mkdir(${1:pathname})" },
		{ "trigger": "mktime", "contents": "mktime()" },
		{ "trigger": "money_format", "contents": "money_format(${1:format}, ${2:number})" },
		{ "trigger": "move_uploaded_file", "contents": "move_uploaded_file(${1:filename}, ${2:destination})" },
		{ "trigger": "mqseries_back", "contents": "mqseries_back(${1:hconn}, ${2:compCode}, ${3:reason})" },
		{ "trigger": "mqseries_begin", "contents": "mqseries_begin(${1:hconn}, ${2:beginOptions}, ${3:compCode}, ${4:reason})" },
		{ "trigger": "mqseries_close", "contents": "mqseries_close(${1:hconn}, ${2:hobj}, ${3:options}, ${4:compCode}, ${5:reason})" },
		{ "trigger": "mqseries_cmit", "contents": "mqseries_cmit(${1:hconn}, ${2:compCode}, ${3:reason})" },
		{ "trigger": "mqseries_conn", "contents": "mqseries_conn(${1:qManagerName}, ${2:hconn}, ${3:compCode}, ${4:reason})" },
		{ "trigger": "mqseries_connx", "contents": "mqseries_connx(${1:qManagerName}, ${2:connOptions}, ${3:hconn}, ${4:compCode}, ${5:reason})" },
		{ "trigger": "mqseries_disc", "contents": "mqseries_disc(${1:hconn}, ${2:compCode}, ${3:reason})" },
		{ "trigger": "mqseries_get", "contents": "mqseries_get(${1:hConn}, ${2:hObj}, ${3:md}, ${4:gmo}, ${5:bufferLength}, ${6:msg}, ${7:data_length}, ${8:compCode}, ${9:reason})" },
		{ "trigger": "mqseries_inq", "contents": "mqseries_inq(${1:hconn}, ${2:hobj}, ${3:selectorCount}, ${4:selectors}, ${5:intAttrCount}, ${6:intAttr}, ${7:charAttrLength}, ${8:charAttr}, ${9:compCode}, ${10:reason})" },
		{ "trigger": "mqseries_open", "contents": "mqseries_open(${1:hconn}, ${2:objDesc}, ${3:option}, ${4:hobj}, ${5:compCode}, ${6:reason})" },
		{ "trigger": "mqseries_put", "contents": "mqseries_put(${1:hConn}, ${2:hObj}, ${3:md}, ${4:pmo}, ${5:message}, ${6:compCode}, ${7:reason})" },
		{ "trigger": "mqseries_put1", "contents": "mqseries_put1(${1:hconn}, ${2:objDesc}, ${3:msgDesc}, ${4:pmo}, ${5:buffer}, ${6:compCode}, ${7:reason})" },
		{ "trigger": "mqseries_set", "contents": "mqseries_set(${1:hconn}, ${2:hobj}, ${3:selectorcount}, ${4:selectors}, ${5:intattrcount}, ${6:intattrs}, ${7:charattrlength}, ${8:charattrs}, ${9:compCode}, ${10:reason})" },
		{ "trigger": "mqseries_strerror", "contents": "mqseries_strerror(${1:reason})" },
		{ "trigger": "msession_connect", "contents": "msession_connect(${1:host}, ${2:port})" },
		{ "trigger": "msession_count", "contents": "msession_count(${1:oid})" },
		{ "trigger": "msession_create", "contents": "msession_create(${1:session})" },
		{ "trigger": "msession_destroy", "contents": "msession_destroy(${1:name})" },
		{ "trigger": "msession_disconnect", "contents": "msession_disconnect(${1:oid})" },
		{ "trigger": "msession_find", "contents": "msession_find(${1:name}, ${2:value})" },
		{ "trigger": "msession_get", "contents": "msession_get(${1:session}, ${2:name}, ${3:value})" },
		{ "trigger": "msession_get_array", "contents": "msession_get_array(${1:session})" },
		{ "trigger": "msession_get_data", "contents": "msession_get_data(${1:session})" },
		{ "trigger": "msession_inc", "contents": "msession_inc(${1:session}, ${2:name})" },
		{ "trigger": "msession_list", "contents": "msession_list(${1:oid})" },
		{ "trigger": "msession_listvar", "contents": "msession_listvar(${1:name})" },
		{ "trigger": "msession_lock", "contents": "msession_lock(${1:name})" },
		{ "trigger": "msession_plugin", "contents": "msession_plugin(${1:session}, ${2:val})" },
		{ "trigger": "msession_randstr", "contents": "msession_randstr(${1:param})" },
		{ "trigger": "msession_set", "contents": "msession_set(${1:session}, ${2:name}, ${3:value})" },
		{ "trigger": "msession_set_array", "contents": "msession_set_array(${1:session}, ${2:tuples})" },
		{ "trigger": "msession_set_data", "contents": "msession_set_data(${1:session}, ${2:value})" },
		{ "trigger": "msession_timeout", "contents": "msession_timeout(${1:session})" },
		{ "trigger": "msession_uniq", "contents": "msession_uniq(${1:param})" },
		{ "trigger": "msession_unlock", "contents": "msession_unlock(${1:session}, ${2:key})" },
		{ "trigger": "msg_get_queue", "contents": "msg_get_queue(${1:key})" },
		{ "trigger": "msg_queue_exists", "contents": "msg_queue_exists(${1:key})" },
		{ "trigger": "msg_receive", "contents": "msg_receive(${1:queue}, ${2:desiredmsgtype}, ${3:msgtype}, ${4:maxsize}, ${5:message})" },
		{ "trigger": "msg_remove_queue", "contents": "msg_remove_queue(${1:queue})" },
		{ "trigger": "msg_send", "contents": "msg_send(${1:queue}, ${2:msgtype}, ${3:message})" },
		{ "trigger": "msg_set_queue", "contents": "msg_set_queue(${1:queue}, ${2:data})" },
		{ "trigger": "msg_stat_queue", "contents": "msg_stat_queue(${1:queue})" },
		{ "trigger": "msql", "contents": "msql()" },
		{ "trigger": "msql_affected_rows", "contents": "msql_affected_rows(${1:result})" },
		{ "trigger": "msql_close", "contents": "msql_close()" },
		{ "trigger": "msql_connect", "contents": "msql_connect()" },
		{ "trigger": "msql_create_db", "contents": "msql_create_db(${1:database_name})" },
		{ "trigger": "msql_createdb", "contents": "msql_createdb()" },
		{ "trigger": "msql_data_seek", "contents": "msql_data_seek(${1:result}, ${2:row_number})" },
		{ "trigger": "msql_db_query", "contents": "msql_db_query(${1:database}, ${2:query})" },
		{ "trigger": "msql_dbname", "contents": "msql_dbname()" },
		{ "trigger": "msql_drop_db", "contents": "msql_drop_db(${1:database_name})" },
		{ "trigger": "msql_error", "contents": "msql_error(${1:oid})" },
		{ "trigger": "msql_fetch_array", "contents": "msql_fetch_array(${1:result})" },
		{ "trigger": "msql_fetch_field", "contents": "msql_fetch_field(${1:result})" },
		{ "trigger": "msql_fetch_object", "contents": "msql_fetch_object(${1:result})" },
		{ "trigger": "msql_fetch_row", "contents": "msql_fetch_row(${1:result})" },
		{ "trigger": "msql_field_flags", "contents": "msql_field_flags(${1:result}, ${2:field_offset})" },
		{ "trigger": "msql_field_len", "contents": "msql_field_len(${1:result}, ${2:field_offset})" },
		{ "trigger": "msql_field_name", "contents": "msql_field_name(${1:result}, ${2:field_offset})" },
		{ "trigger": "msql_field_seek", "contents": "msql_field_seek(${1:result}, ${2:field_offset})" },
		{ "trigger": "msql_field_table", "contents": "msql_field_table(${1:result}, ${2:field_offset})" },
		{ "trigger": "msql_field_type", "contents": "msql_field_type(${1:result}, ${2:field_offset})" },
		{ "trigger": "msql_fieldflags", "contents": "msql_fieldflags()" },
		{ "trigger": "msql_fieldlen", "contents": "msql_fieldlen()" },
		{ "trigger": "msql_fieldname", "contents": "msql_fieldname()" },
		{ "trigger": "msql_fieldtable", "contents": "msql_fieldtable()" },
		{ "trigger": "msql_fieldtype", "contents": "msql_fieldtype()" },
		{ "trigger": "msql_free_result", "contents": "msql_free_result(${1:result})" },
		{ "trigger": "msql_list_dbs", "contents": "msql_list_dbs()" },
		{ "trigger": "msql_list_fields", "contents": "msql_list_fields(${1:database}, ${2:tablename})" },
		{ "trigger": "msql_list_tables", "contents": "msql_list_tables(${1:database})" },
		{ "trigger": "msql_num_fields", "contents": "msql_num_fields(${1:result})" },
		{ "trigger": "msql_num_rows", "contents": "msql_num_rows(${1:query_identifier})" },
		{ "trigger": "msql_numfields", "contents": "msql_numfields()" },
		{ "trigger": "msql_numrows", "contents": "msql_numrows()" },
		{ "trigger": "msql_pconnect", "contents": "msql_pconnect()" },
		{ "trigger": "msql_query", "contents": "msql_query(${1:query})" },
		{ "trigger": "msql_regcase", "contents": "msql_regcase()" },
		{ "trigger": "msql_result", "contents": "msql_result(${1:result}, ${2:row})" },
		{ "trigger": "msql_select_db", "contents": "msql_select_db(${1:database_name})" },
		{ "trigger": "msql_tablename", "contents": "msql_tablename()" },
		{ "trigger": "mssql_bind", "contents": "mssql_bind(${1:stmt}, ${2:param_name}, ${3:var}, ${4:type})" },
		{ "trigger": "mssql_close", "contents": "mssql_close()" },
		{ "trigger": "mssql_connect", "contents": "mssql_connect()" },
		{ "trigger": "mssql_data_seek", "contents": "mssql_data_seek(${1:result_identifier}, ${2:row_number})" },
		{ "trigger": "mssql_execute", "contents": "mssql_execute(${1:stmt})" },
		{ "trigger": "mssql_fetch_array", "contents": "mssql_fetch_array(${1:result})" },
		{ "trigger": "mssql_fetch_assoc", "contents": "mssql_fetch_assoc(${1:result_id})" },
		{ "trigger": "mssql_fetch_batch", "contents": "mssql_fetch_batch(${1:result})" },
		{ "trigger": "mssql_fetch_field", "contents": "mssql_fetch_field(${1:result})" },
		{ "trigger": "mssql_fetch_object", "contents": "mssql_fetch_object(${1:result})" },
		{ "trigger": "mssql_fetch_row", "contents": "mssql_fetch_row(${1:result})" },
		{ "trigger": "mssql_field_length", "contents": "mssql_field_length(${1:result})" },
		{ "trigger": "mssql_field_name", "contents": "mssql_field_name(${1:result})" },
		{ "trigger": "mssql_field_seek", "contents": "mssql_field_seek(${1:result}, ${2:field_offset})" },
		{ "trigger": "mssql_field_type", "contents": "mssql_field_type(${1:result})" },
		{ "trigger": "mssql_free_result", "contents": "mssql_free_result(${1:result})" },
		{ "trigger": "mssql_free_statement", "contents": "mssql_free_statement(${1:stmt})" },
		{ "trigger": "mssql_get_last_message", "contents": "mssql_get_last_message(${1:oid})" },
		{ "trigger": "mssql_guid_string", "contents": "mssql_guid_string(${1:binary})" },
		{ "trigger": "mssql_init", "contents": "mssql_init(${1:sp_name})" },
		{ "trigger": "mssql_min_error_severity", "contents": "mssql_min_error_severity(${1:severity})" },
		{ "trigger": "mssql_min_message_severity", "contents": "mssql_min_message_severity(${1:severity})" },
		{ "trigger": "mssql_next_result", "contents": "mssql_next_result(${1:result_id})" },
		{ "trigger": "mssql_num_fields", "contents": "mssql_num_fields(${1:result})" },
		{ "trigger": "mssql_num_rows", "contents": "mssql_num_rows(${1:result})" },
		{ "trigger": "mssql_pconnect", "contents": "mssql_pconnect()" },
		{ "trigger": "mssql_query", "contents": "mssql_query(${1:query})" },
		{ "trigger": "mssql_result", "contents": "mssql_result(${1:result}, ${2:row}, ${3:field})" },
		{ "trigger": "mssql_rows_affected", "contents": "mssql_rows_affected(${1:link_identifier})" },
		{ "trigger": "mssql_select_db", "contents": "mssql_select_db(${1:database_name})" },
		{ "trigger": "mt_getrandmax", "contents": "mt_getrandmax(${1:oid})" },
		{ "trigger": "mt_rand", "contents": "mt_rand(${1:oid})" },
		{ "trigger": "mt_srand", "contents": "mt_srand()" },
		{ "trigger": "mysql_affected_rows", "contents": "mysql_affected_rows()" },
		{ "trigger": "mysql_client_encoding", "contents": "mysql_client_encoding()" },
		{ "trigger": "mysql_close", "contents": "mysql_close()" },
		{ "trigger": "mysql_connect", "contents": "mysql_connect()" },
		{ "trigger": "mysql_create_db", "contents": "mysql_create_db(${1:database_name})" },
		{ "trigger": "mysql_data_seek", "contents": "mysql_data_seek(${1:result}, ${2:row_number})" },
		{ "trigger": "mysql_db_name", "contents": "mysql_db_name(${1:result}, ${2:row})" },
		{ "trigger": "mysql_db_query", "contents": "mysql_db_query(${1:database}, ${2:query})" },
		{ "trigger": "mysql_drop_db", "contents": "mysql_drop_db(${1:database_name})" },
		{ "trigger": "mysql_errno", "contents": "mysql_errno()" },
		{ "trigger": "mysql_error", "contents": "mysql_error()" },
		{ "trigger": "mysql_escape_string", "contents": "mysql_escape_string(${1:unescaped_string})" },
		{ "trigger": "mysql_fetch_array", "contents": "mysql_fetch_array(${1:result})" },
		{ "trigger": "mysql_fetch_assoc", "contents": "mysql_fetch_assoc(${1:result})" },
		{ "trigger": "mysql_fetch_field", "contents": "mysql_fetch_field(${1:result})" },
		{ "trigger": "mysql_fetch_lengths", "contents": "mysql_fetch_lengths(${1:result})" },
		{ "trigger": "mysql_fetch_object", "contents": "mysql_fetch_object(${1:result})" },
		{ "trigger": "mysql_fetch_row", "contents": "mysql_fetch_row(${1:result})" },
		{ "trigger": "mysql_field_flags", "contents": "mysql_field_flags(${1:result}, ${2:field_offset})" },
		{ "trigger": "mysql_field_len", "contents": "mysql_field_len(${1:result}, ${2:field_offset})" },
		{ "trigger": "mysql_field_name", "contents": "mysql_field_name(${1:result}, ${2:field_offset})" },
		{ "trigger": "mysql_field_seek", "contents": "mysql_field_seek(${1:result}, ${2:field_offset})" },
		{ "trigger": "mysql_field_table", "contents": "mysql_field_table(${1:result}, ${2:field_offset})" },
		{ "trigger": "mysql_field_type", "contents": "mysql_field_type(${1:result}, ${2:field_offset})" },
		{ "trigger": "mysql_free_result", "contents": "mysql_free_result(${1:result})" },
		{ "trigger": "mysql_get_client_info", "contents": "mysql_get_client_info(${1:oid})" },
		{ "trigger": "mysql_get_host_info", "contents": "mysql_get_host_info()" },
		{ "trigger": "mysql_get_proto_info", "contents": "mysql_get_proto_info()" },
		{ "trigger": "mysql_get_server_info", "contents": "mysql_get_server_info()" },
		{ "trigger": "mysql_info", "contents": "mysql_info()" },
		{ "trigger": "mysql_insert_id", "contents": "mysql_insert_id()" },
		{ "trigger": "mysql_list_dbs", "contents": "mysql_list_dbs()" },
		{ "trigger": "mysql_list_fields", "contents": "mysql_list_fields(${1:database_name}, ${2:table_name})" },
		{ "trigger": "mysql_list_processes", "contents": "mysql_list_processes()" },
		{ "trigger": "mysql_list_tables", "contents": "mysql_list_tables(${1:database})" },
		{ "trigger": "mysql_num_fields", "contents": "mysql_num_fields(${1:result})" },
		{ "trigger": "mysql_num_rows", "contents": "mysql_num_rows(${1:result})" },
		{ "trigger": "mysql_pconnect", "contents": "mysql_pconnect()" },
		{ "trigger": "mysql_ping", "contents": "mysql_ping()" },
		{ "trigger": "mysql_query", "contents": "mysql_query(${1:query})" },
		{ "trigger": "mysql_real_escape_string", "contents": "mysql_real_escape_string(${1:unescaped_string})" },
		{ "trigger": "mysql_result", "contents": "mysql_result(${1:result}, ${2:row})" },
		{ "trigger": "mysql_select_db", "contents": "mysql_select_db(${1:database_name})" },
		{ "trigger": "mysql_set_charset", "contents": "mysql_set_charset(${1:charset})" },
		{ "trigger": "mysql_stat", "contents": "mysql_stat()" },
		{ "trigger": "mysql_tablename", "contents": "mysql_tablename(${1:result}, ${2:i})" },
		{ "trigger": "mysql_thread_id", "contents": "mysql_thread_id()" },
		{ "trigger": "mysql_unbuffered_query", "contents": "mysql_unbuffered_query(${1:query})" },
		{ "trigger": "mysqli_bind_param", "contents": "mysqli_bind_param()" },
		{ "trigger": "mysqli_bind_result", "contents": "mysqli_bind_result()" },
		{ "trigger": "mysqli_client_encoding", "contents": "mysqli_client_encoding()" },
		{ "trigger": "mysqli_connect", "contents": "mysqli_connect()" },
		{ "trigger": "mysqli_disable_rpl_parse", "contents": "mysqli_disable_rpl_parse(${1:link})" },
		{ "trigger": "mysqli_enable_reads_from_master", "contents": "mysqli_enable_reads_from_master(${1:link})" },
		{ "trigger": "mysqli_enable_rpl_parse", "contents": "mysqli_enable_rpl_parse(${1:link})" },
		{ "trigger": "mysqli_escape_string", "contents": "mysqli_escape_string()" },
		{ "trigger": "mysqli_execute", "contents": "mysqli_execute()" },
		{ "trigger": "mysqli_fetch", "contents": "mysqli_fetch()" },
		{ "trigger": "mysqli_get_metadata", "contents": "mysqli_get_metadata()" },
		{ "trigger": "mysqli_master_query", "contents": "mysqli_master_query(${1:link}, ${2:query})" },
		{ "trigger": "mysqli_param_count", "contents": "mysqli_param_count()" },
		{ "trigger": "mysqli_report", "contents": "mysqli_report(${1:flags})" },
		{ "trigger": "mysqli_rpl_parse_enabled", "contents": "mysqli_rpl_parse_enabled(${1:link})" },
		{ "trigger": "mysqli_rpl_probe", "contents": "mysqli_rpl_probe(${1:link})" },
		{ "trigger": "mysqli_send_long_data", "contents": "mysqli_send_long_data()" },
		{ "trigger": "mysqli_set_opt", "contents": "mysqli_set_opt()" },
		{ "trigger": "mysqli_slave_query", "contents": "mysqli_slave_query(${1:link}, ${2:query})" },
		{ "trigger": "mysqlnd_qc_change_handler", "contents": "mysqlnd_qc_change_handler(${1:handler})" },
		{ "trigger": "mysqlnd_qc_clear_cache", "contents": "mysqlnd_qc_clear_cache(${1:oid})" },
		{ "trigger": "mysqlnd_qc_get_cache_info", "contents": "mysqlnd_qc_get_cache_info(${1:oid})" },
		{ "trigger": "mysqlnd_qc_get_core_stats", "contents": "mysqlnd_qc_get_core_stats(${1:oid})" },
		{ "trigger": "mysqlnd_qc_get_handler", "contents": "mysqlnd_qc_get_handler(${1:oid})" },
		{ "trigger": "mysqlnd_qc_get_query_trace_log", "contents": "mysqlnd_qc_get_query_trace_log(${1:oid})" },
		{ "trigger": "mysqlnd_qc_set_user_handlers", "contents": "mysqlnd_qc_set_user_handlers(${1:get_hash}, ${2:find_query_in_cache}, ${3:return_to_cache}, ${4:add_query_to_cache_if_not_exists}, ${5:query_is_select}, ${6:update_query_run_time_stats}, ${7:get_stats}, ${8:clear_cache})" },
		{ "trigger": "natcasesort", "contents": "natcasesort(${1:array})" },
		{ "trigger": "natsort", "contents": "natsort(${1:array})" },
		{ "trigger": "ncurses_addch", "contents": "ncurses_addch(${1:ch})" },
		{ "trigger": "ncurses_addchnstr", "contents": "ncurses_addchnstr(${1:s}, ${2:n})" },
		{ "trigger": "ncurses_addchstr", "contents": "ncurses_addchstr(${1:s})" },
		{ "trigger": "ncurses_addnstr", "contents": "ncurses_addnstr(${1:s}, ${2:n})" },
		{ "trigger": "ncurses_addstr", "contents": "ncurses_addstr(${1:text})" },
		{ "trigger": "ncurses_assume_default_colors", "contents": "ncurses_assume_default_colors(${1:fg}, ${2:bg})" },
		{ "trigger": "ncurses_attroff", "contents": "ncurses_attroff(${1:attributes})" },
		{ "trigger": "ncurses_attron", "contents": "ncurses_attron(${1:attributes})" },
		{ "trigger": "ncurses_attrset", "contents": "ncurses_attrset(${1:attributes})" },
		{ "trigger": "ncurses_baudrate", "contents": "ncurses_baudrate(${1:oid})" },
		{ "trigger": "ncurses_beep", "contents": "ncurses_beep(${1:oid})" },
		{ "trigger": "ncurses_bkgd", "contents": "ncurses_bkgd(${1:attrchar})" },
		{ "trigger": "ncurses_bkgdset", "contents": "ncurses_bkgdset(${1:attrchar})" },
		{ "trigger": "ncurses_border", "contents": "ncurses_border(${1:left}, ${2:right}, ${3:top}, ${4:bottom}, ${5:tl_corner}, ${6:tr_corner}, ${7:bl_corner}, ${8:br_corner})" },
		{ "trigger": "ncurses_bottom_panel", "contents": "ncurses_bottom_panel(${1:panel})" },
		{ "trigger": "ncurses_can_change_color", "contents": "ncurses_can_change_color(${1:oid})" },
		{ "trigger": "ncurses_cbreak", "contents": "ncurses_cbreak(${1:oid})" },
		{ "trigger": "ncurses_clear", "contents": "ncurses_clear(${1:oid})" },
		{ "trigger": "ncurses_clrtobot", "contents": "ncurses_clrtobot(${1:oid})" },
		{ "trigger": "ncurses_clrtoeol", "contents": "ncurses_clrtoeol(${1:oid})" },
		{ "trigger": "ncurses_color_content", "contents": "ncurses_color_content(${1:color}, ${2:r}, ${3:g}, ${4:b})" },
		{ "trigger": "ncurses_color_set", "contents": "ncurses_color_set(${1:pair})" },
		{ "trigger": "ncurses_curs_set", "contents": "ncurses_curs_set(${1:visibility})" },
		{ "trigger": "ncurses_def_prog_mode", "contents": "ncurses_def_prog_mode(${1:oid})" },
		{ "trigger": "ncurses_def_shell_mode", "contents": "ncurses_def_shell_mode(${1:oid})" },
		{ "trigger": "ncurses_define_key", "contents": "ncurses_define_key(${1:definition}, ${2:keycode})" },
		{ "trigger": "ncurses_del_panel", "contents": "ncurses_del_panel(${1:panel})" },
		{ "trigger": "ncurses_delay_output", "contents": "ncurses_delay_output(${1:milliseconds})" },
		{ "trigger": "ncurses_delch", "contents": "ncurses_delch(${1:oid})" },
		{ "trigger": "ncurses_deleteln", "contents": "ncurses_deleteln(${1:oid})" },
		{ "trigger": "ncurses_delwin", "contents": "ncurses_delwin(${1:window})" },
		{ "trigger": "ncurses_doupdate", "contents": "ncurses_doupdate(${1:oid})" },
		{ "trigger": "ncurses_echo", "contents": "ncurses_echo(${1:oid})" },
		{ "trigger": "ncurses_echochar", "contents": "ncurses_echochar(${1:character})" },
		{ "trigger": "ncurses_end", "contents": "ncurses_end(${1:oid})" },
		{ "trigger": "ncurses_erase", "contents": "ncurses_erase(${1:oid})" },
		{ "trigger": "ncurses_erasechar", "contents": "ncurses_erasechar(${1:oid})" },
		{ "trigger": "ncurses_filter", "contents": "ncurses_filter(${1:oid})" },
		{ "trigger": "ncurses_flash", "contents": "ncurses_flash(${1:oid})" },
		{ "trigger": "ncurses_flushinp", "contents": "ncurses_flushinp(${1:oid})" },
		{ "trigger": "ncurses_getch", "contents": "ncurses_getch(${1:oid})" },
		{ "trigger": "ncurses_getmaxyx", "contents": "ncurses_getmaxyx(${1:window}, ${2:y}, ${3:x})" },
		{ "trigger": "ncurses_getmouse", "contents": "ncurses_getmouse(${1:mevent})" },
		{ "trigger": "ncurses_getyx", "contents": "ncurses_getyx(${1:window}, ${2:y}, ${3:x})" },
		{ "trigger": "ncurses_halfdelay", "contents": "ncurses_halfdelay(${1:tenth})" },
		{ "trigger": "ncurses_has_colors", "contents": "ncurses_has_colors(${1:oid})" },
		{ "trigger": "ncurses_has_ic", "contents": "ncurses_has_ic(${1:oid})" },
		{ "trigger": "ncurses_has_il", "contents": "ncurses_has_il(${1:oid})" },
		{ "trigger": "ncurses_has_key", "contents": "ncurses_has_key(${1:keycode})" },
		{ "trigger": "ncurses_hide_panel", "contents": "ncurses_hide_panel(${1:panel})" },
		{ "trigger": "ncurses_hline", "contents": "ncurses_hline(${1:charattr}, ${2:n})" },
		{ "trigger": "ncurses_inch", "contents": "ncurses_inch(${1:oid})" },
		{ "trigger": "ncurses_init", "contents": "ncurses_init(${1:oid})" },
		{ "trigger": "ncurses_init_color", "contents": "ncurses_init_color(${1:color}, ${2:r}, ${3:g}, ${4:b})" },
		{ "trigger": "ncurses_init_pair", "contents": "ncurses_init_pair(${1:pair}, ${2:fg}, ${3:bg})" },
		{ "trigger": "ncurses_insch", "contents": "ncurses_insch(${1:character})" },
		{ "trigger": "ncurses_insdelln", "contents": "ncurses_insdelln(${1:count})" },
		{ "trigger": "ncurses_insertln", "contents": "ncurses_insertln(${1:oid})" },
		{ "trigger": "ncurses_insstr", "contents": "ncurses_insstr(${1:text})" },
		{ "trigger": "ncurses_instr", "contents": "ncurses_instr(${1:buffer})" },
		{ "trigger": "ncurses_isendwin", "contents": "ncurses_isendwin(${1:oid})" },
		{ "trigger": "ncurses_keyok", "contents": "ncurses_keyok(${1:keycode}, ${2:enable})" },
		{ "trigger": "ncurses_keypad", "contents": "ncurses_keypad(${1:window}, ${2:bf})" },
		{ "trigger": "ncurses_killchar", "contents": "ncurses_killchar(${1:oid})" },
		{ "trigger": "ncurses_longname", "contents": "ncurses_longname(${1:oid})" },
		{ "trigger": "ncurses_meta", "contents": "ncurses_meta(${1:window}, ${2:8bit})" },
		{ "trigger": "ncurses_mouse_trafo", "contents": "ncurses_mouse_trafo(${1:y}, ${2:x}, ${3:toscreen})" },
		{ "trigger": "ncurses_mouseinterval", "contents": "ncurses_mouseinterval(${1:milliseconds})" },
		{ "trigger": "ncurses_mousemask", "contents": "ncurses_mousemask(${1:newmask}, ${2:oldmask})" },
		{ "trigger": "ncurses_move", "contents": "ncurses_move(${1:y}, ${2:x})" },
		{ "trigger": "ncurses_move_panel", "contents": "ncurses_move_panel(${1:panel}, ${2:startx}, ${3:starty})" },
		{ "trigger": "ncurses_mvaddch", "contents": "ncurses_mvaddch(${1:y}, ${2:x}, ${3:c})" },
		{ "trigger": "ncurses_mvaddchnstr", "contents": "ncurses_mvaddchnstr(${1:y}, ${2:x}, ${3:s}, ${4:n})" },
		{ "trigger": "ncurses_mvaddchstr", "contents": "ncurses_mvaddchstr(${1:y}, ${2:x}, ${3:s})" },
		{ "trigger": "ncurses_mvaddnstr", "contents": "ncurses_mvaddnstr(${1:y}, ${2:x}, ${3:s}, ${4:n})" },
		{ "trigger": "ncurses_mvaddstr", "contents": "ncurses_mvaddstr(${1:y}, ${2:x}, ${3:s})" },
		{ "trigger": "ncurses_mvcur", "contents": "ncurses_mvcur(${1:old_y}, ${2:old_x}, ${3:new_y}, ${4:new_x})" },
		{ "trigger": "ncurses_mvdelch", "contents": "ncurses_mvdelch(${1:y}, ${2:x})" },
		{ "trigger": "ncurses_mvgetch", "contents": "ncurses_mvgetch(${1:y}, ${2:x})" },
		{ "trigger": "ncurses_mvhline", "contents": "ncurses_mvhline(${1:y}, ${2:x}, ${3:attrchar}, ${4:n})" },
		{ "trigger": "ncurses_mvinch", "contents": "ncurses_mvinch(${1:y}, ${2:x})" },
		{ "trigger": "ncurses_mvvline", "contents": "ncurses_mvvline(${1:y}, ${2:x}, ${3:attrchar}, ${4:n})" },
		{ "trigger": "ncurses_mvwaddstr", "contents": "ncurses_mvwaddstr(${1:window}, ${2:y}, ${3:x}, ${4:text})" },
		{ "trigger": "ncurses_napms", "contents": "ncurses_napms(${1:milliseconds})" },
		{ "trigger": "ncurses_new_panel", "contents": "ncurses_new_panel(${1:window})" },
		{ "trigger": "ncurses_newpad", "contents": "ncurses_newpad(${1:rows}, ${2:cols})" },
		{ "trigger": "ncurses_newwin", "contents": "ncurses_newwin(${1:rows}, ${2:cols}, ${3:y}, ${4:x})" },
		{ "trigger": "ncurses_nl", "contents": "ncurses_nl(${1:oid})" },
		{ "trigger": "ncurses_nocbreak", "contents": "ncurses_nocbreak(${1:oid})" },
		{ "trigger": "ncurses_noecho", "contents": "ncurses_noecho(${1:oid})" },
		{ "trigger": "ncurses_nonl", "contents": "ncurses_nonl(${1:oid})" },
		{ "trigger": "ncurses_noqiflush", "contents": "ncurses_noqiflush(${1:oid})" },
		{ "trigger": "ncurses_noraw", "contents": "ncurses_noraw(${1:oid})" },
		{ "trigger": "ncurses_pair_content", "contents": "ncurses_pair_content(${1:pair}, ${2:f}, ${3:b})" },
		{ "trigger": "ncurses_panel_above", "contents": "ncurses_panel_above(${1:panel})" },
		{ "trigger": "ncurses_panel_below", "contents": "ncurses_panel_below(${1:panel})" },
		{ "trigger": "ncurses_panel_window", "contents": "ncurses_panel_window(${1:panel})" },
		{ "trigger": "ncurses_pnoutrefresh", "contents": "ncurses_pnoutrefresh(${1:pad}, ${2:pminrow}, ${3:pmincol}, ${4:sminrow}, ${5:smincol}, ${6:smaxrow}, ${7:smaxcol})" },
		{ "trigger": "ncurses_prefresh", "contents": "ncurses_prefresh(${1:pad}, ${2:pminrow}, ${3:pmincol}, ${4:sminrow}, ${5:smincol}, ${6:smaxrow}, ${7:smaxcol})" },
		{ "trigger": "ncurses_putp", "contents": "ncurses_putp(${1:text})" },
		{ "trigger": "ncurses_qiflush", "contents": "ncurses_qiflush(${1:oid})" },
		{ "trigger": "ncurses_raw", "contents": "ncurses_raw(${1:oid})" },
		{ "trigger": "ncurses_refresh", "contents": "ncurses_refresh(${1:ch})" },
		{ "trigger": "ncurses_replace_panel", "contents": "ncurses_replace_panel(${1:panel}, ${2:window})" },
		{ "trigger": "ncurses_reset_prog_mode", "contents": "ncurses_reset_prog_mode(${1:oid})" },
		{ "trigger": "ncurses_reset_shell_mode", "contents": "ncurses_reset_shell_mode(${1:oid})" },
		{ "trigger": "ncurses_resetty", "contents": "ncurses_resetty(${1:oid})" },
		{ "trigger": "ncurses_savetty", "contents": "ncurses_savetty(${1:oid})" },
		{ "trigger": "ncurses_scr_dump", "contents": "ncurses_scr_dump(${1:filename})" },
		{ "trigger": "ncurses_scr_init", "contents": "ncurses_scr_init(${1:filename})" },
		{ "trigger": "ncurses_scr_restore", "contents": "ncurses_scr_restore(${1:filename})" },
		{ "trigger": "ncurses_scr_set", "contents": "ncurses_scr_set(${1:filename})" },
		{ "trigger": "ncurses_scrl", "contents": "ncurses_scrl(${1:count})" },
		{ "trigger": "ncurses_show_panel", "contents": "ncurses_show_panel(${1:panel})" },
		{ "trigger": "ncurses_slk_attr", "contents": "ncurses_slk_attr(${1:oid})" },
		{ "trigger": "ncurses_slk_attroff", "contents": "ncurses_slk_attroff(${1:intarg})" },
		{ "trigger": "ncurses_slk_attron", "contents": "ncurses_slk_attron(${1:intarg})" },
		{ "trigger": "ncurses_slk_attrset", "contents": "ncurses_slk_attrset(${1:intarg})" },
		{ "trigger": "ncurses_slk_clear", "contents": "ncurses_slk_clear(${1:oid})" },
		{ "trigger": "ncurses_slk_color", "contents": "ncurses_slk_color(${1:intarg})" },
		{ "trigger": "ncurses_slk_init", "contents": "ncurses_slk_init(${1:format})" },
		{ "trigger": "ncurses_slk_noutrefresh", "contents": "ncurses_slk_noutrefresh(${1:oid})" },
		{ "trigger": "ncurses_slk_refresh", "contents": "ncurses_slk_refresh(${1:oid})" },
		{ "trigger": "ncurses_slk_restore", "contents": "ncurses_slk_restore(${1:oid})" },
		{ "trigger": "ncurses_slk_set", "contents": "ncurses_slk_set(${1:labelnr}, ${2:label}, ${3:format})" },
		{ "trigger": "ncurses_slk_touch", "contents": "ncurses_slk_touch(${1:oid})" },
		{ "trigger": "ncurses_standend", "contents": "ncurses_standend(${1:oid})" },
		{ "trigger": "ncurses_standout", "contents": "ncurses_standout(${1:oid})" },
		{ "trigger": "ncurses_start_color", "contents": "ncurses_start_color(${1:oid})" },
		{ "trigger": "ncurses_termattrs", "contents": "ncurses_termattrs(${1:oid})" },
		{ "trigger": "ncurses_termname", "contents": "ncurses_termname(${1:oid})" },
		{ "trigger": "ncurses_timeout", "contents": "ncurses_timeout(${1:millisec})" },
		{ "trigger": "ncurses_top_panel", "contents": "ncurses_top_panel(${1:panel})" },
		{ "trigger": "ncurses_typeahead", "contents": "ncurses_typeahead(${1:fd})" },
		{ "trigger": "ncurses_ungetch", "contents": "ncurses_ungetch(${1:keycode})" },
		{ "trigger": "ncurses_ungetmouse", "contents": "ncurses_ungetmouse(${1:mevent})" },
		{ "trigger": "ncurses_update_panels", "contents": "ncurses_update_panels(${1:oid})" },
		{ "trigger": "ncurses_use_default_colors", "contents": "ncurses_use_default_colors(${1:oid})" },
		{ "trigger": "ncurses_use_env", "contents": "ncurses_use_env(${1:flag})" },
		{ "trigger": "ncurses_use_extended_names", "contents": "ncurses_use_extended_names(${1:flag})" },
		{ "trigger": "ncurses_vidattr", "contents": "ncurses_vidattr(${1:intarg})" },
		{ "trigger": "ncurses_vline", "contents": "ncurses_vline(${1:charattr}, ${2:n})" },
		{ "trigger": "ncurses_waddch", "contents": "ncurses_waddch(${1:window}, ${2:ch})" },
		{ "trigger": "ncurses_waddstr", "contents": "ncurses_waddstr(${1:window}, ${2:str})" },
		{ "trigger": "ncurses_wattroff", "contents": "ncurses_wattroff(${1:window}, ${2:attrs})" },
		{ "trigger": "ncurses_wattron", "contents": "ncurses_wattron(${1:window}, ${2:attrs})" },
		{ "trigger": "ncurses_wattrset", "contents": "ncurses_wattrset(${1:window}, ${2:attrs})" },
		{ "trigger": "ncurses_wborder", "contents": "ncurses_wborder(${1:window}, ${2:left}, ${3:right}, ${4:top}, ${5:bottom}, ${6:tl_corner}, ${7:tr_corner}, ${8:bl_corner}, ${9:br_corner})" },
		{ "trigger": "ncurses_wclear", "contents": "ncurses_wclear(${1:window})" },
		{ "trigger": "ncurses_wcolor_set", "contents": "ncurses_wcolor_set(${1:window}, ${2:color_pair})" },
		{ "trigger": "ncurses_werase", "contents": "ncurses_werase(${1:window})" },
		{ "trigger": "ncurses_wgetch", "contents": "ncurses_wgetch(${1:window})" },
		{ "trigger": "ncurses_whline", "contents": "ncurses_whline(${1:window}, ${2:charattr}, ${3:n})" },
		{ "trigger": "ncurses_wmouse_trafo", "contents": "ncurses_wmouse_trafo(${1:window}, ${2:y}, ${3:x}, ${4:toscreen})" },
		{ "trigger": "ncurses_wmove", "contents": "ncurses_wmove(${1:window}, ${2:y}, ${3:x})" },
		{ "trigger": "ncurses_wnoutrefresh", "contents": "ncurses_wnoutrefresh(${1:window})" },
		{ "trigger": "ncurses_wrefresh", "contents": "ncurses_wrefresh(${1:window})" },
		{ "trigger": "ncurses_wstandend", "contents": "ncurses_wstandend(${1:window})" },
		{ "trigger": "ncurses_wstandout", "contents": "ncurses_wstandout(${1:window})" },
		{ "trigger": "ncurses_wvline", "contents": "ncurses_wvline(${1:window}, ${2:charattr}, ${3:n})" },
		{ "trigger": "newt_bell", "contents": "newt_bell(${1:oid})" },
		{ "trigger": "newt_button", "contents": "newt_button(${1:left}, ${2:top}, ${3:text})" },
		{ "trigger": "newt_button_bar", "contents": "newt_button_bar(${1:buttons})" },
		{ "trigger": "newt_centered_window", "contents": "newt_centered_window(${1:width}, ${2:height})" },
		{ "trigger": "newt_checkbox", "contents": "newt_checkbox(${1:left}, ${2:top}, ${3:text}, ${4:def_value})" },
		{ "trigger": "newt_checkbox_get_value", "contents": "newt_checkbox_get_value(${1:checkbox})" },
		{ "trigger": "newt_checkbox_set_flags", "contents": "newt_checkbox_set_flags(${1:checkbox}, ${2:flags}, ${3:sense})" },
		{ "trigger": "newt_checkbox_set_value", "contents": "newt_checkbox_set_value(${1:checkbox}, ${2:value})" },
		{ "trigger": "newt_checkbox_tree", "contents": "newt_checkbox_tree(${1:left}, ${2:top}, ${3:height})" },
		{ "trigger": "newt_checkbox_tree_add_item", "contents": "newt_checkbox_tree_add_item(${1:checkboxtree}, ${2:text}, ${3:data}, ${4:flags}, ${5:index})" },
		{ "trigger": "newt_checkbox_tree_find_item", "contents": "newt_checkbox_tree_find_item(${1:checkboxtree}, ${2:data})" },
		{ "trigger": "newt_checkbox_tree_get_current", "contents": "newt_checkbox_tree_get_current(${1:checkboxtree})" },
		{ "trigger": "newt_checkbox_tree_get_entry_value", "contents": "newt_checkbox_tree_get_entry_value(${1:checkboxtree}, ${2:data})" },
		{ "trigger": "newt_checkbox_tree_get_multi_selection", "contents": "newt_checkbox_tree_get_multi_selection(${1:checkboxtree}, ${2:seqnum})" },
		{ "trigger": "newt_checkbox_tree_get_selection", "contents": "newt_checkbox_tree_get_selection(${1:checkboxtree})" },
		{ "trigger": "newt_checkbox_tree_multi", "contents": "newt_checkbox_tree_multi(${1:left}, ${2:top}, ${3:height}, ${4:seq})" },
		{ "trigger": "newt_checkbox_tree_set_current", "contents": "newt_checkbox_tree_set_current(${1:checkboxtree}, ${2:data})" },
		{ "trigger": "newt_checkbox_tree_set_entry", "contents": "newt_checkbox_tree_set_entry(${1:checkboxtree}, ${2:data}, ${3:text})" },
		{ "trigger": "newt_checkbox_tree_set_entry_value", "contents": "newt_checkbox_tree_set_entry_value(${1:checkboxtree}, ${2:data}, ${3:value})" },
		{ "trigger": "newt_checkbox_tree_set_width", "contents": "newt_checkbox_tree_set_width(${1:checkbox_tree}, ${2:width})" },
		{ "trigger": "newt_clear_key_buffer", "contents": "newt_clear_key_buffer(${1:oid})" },
		{ "trigger": "newt_cls", "contents": "newt_cls(${1:oid})" },
		{ "trigger": "newt_compact_button", "contents": "newt_compact_button(${1:left}, ${2:top}, ${3:text})" },
		{ "trigger": "newt_component_add_callback", "contents": "newt_component_add_callback(${1:component}, ${2:func_name}, ${3:data})" },
		{ "trigger": "newt_component_takes_focus", "contents": "newt_component_takes_focus(${1:component}, ${2:takes_focus})" },
		{ "trigger": "newt_create_grid", "contents": "newt_create_grid(${1:cols}, ${2:rows})" },
		{ "trigger": "newt_cursor_off", "contents": "newt_cursor_off(${1:oid})" },
		{ "trigger": "newt_cursor_on", "contents": "newt_cursor_on(${1:oid})" },
		{ "trigger": "newt_delay", "contents": "newt_delay(${1:microseconds})" },
		{ "trigger": "newt_draw_form", "contents": "newt_draw_form(${1:form})" },
		{ "trigger": "newt_draw_root_text", "contents": "newt_draw_root_text(${1:left}, ${2:top}, ${3:text})" },
		{ "trigger": "newt_entry", "contents": "newt_entry(${1:left}, ${2:top}, ${3:width})" },
		{ "trigger": "newt_entry_get_value", "contents": "newt_entry_get_value(${1:entry})" },
		{ "trigger": "newt_entry_set", "contents": "newt_entry_set(${1:entry}, ${2:value})" },
		{ "trigger": "newt_entry_set_filter", "contents": "newt_entry_set_filter(${1:entry}, ${2:filter}, ${3:data})" },
		{ "trigger": "newt_entry_set_flags", "contents": "newt_entry_set_flags(${1:entry}, ${2:flags}, ${3:sense})" },
		{ "trigger": "newt_finished", "contents": "newt_finished(${1:oid})" },
		{ "trigger": "newt_form", "contents": "newt_form()" },
		{ "trigger": "newt_form_add_component", "contents": "newt_form_add_component(${1:form}, ${2:component})" },
		{ "trigger": "newt_form_add_components", "contents": "newt_form_add_components(${1:form}, ${2:components})" },
		{ "trigger": "newt_form_add_hot_key", "contents": "newt_form_add_hot_key(${1:form}, ${2:key})" },
		{ "trigger": "newt_form_destroy", "contents": "newt_form_destroy(${1:form})" },
		{ "trigger": "newt_form_get_current", "contents": "newt_form_get_current(${1:form})" },
		{ "trigger": "newt_form_run", "contents": "newt_form_run(${1:form}, ${2:exit_struct})" },
		{ "trigger": "newt_form_set_background", "contents": "newt_form_set_background(${1:from}, ${2:background})" },
		{ "trigger": "newt_form_set_height", "contents": "newt_form_set_height(${1:form}, ${2:height})" },
		{ "trigger": "newt_form_set_size", "contents": "newt_form_set_size(${1:form})" },
		{ "trigger": "newt_form_set_timer", "contents": "newt_form_set_timer(${1:form}, ${2:milliseconds})" },
		{ "trigger": "newt_form_set_width", "contents": "newt_form_set_width(${1:form}, ${2:width})" },
		{ "trigger": "newt_form_watch_fd", "contents": "newt_form_watch_fd(${1:form}, ${2:stream})" },
		{ "trigger": "newt_get_screen_size", "contents": "newt_get_screen_size(${1:cols}, ${2:rows})" },
		{ "trigger": "newt_grid_add_components_to_form", "contents": "newt_grid_add_components_to_form(${1:grid}, ${2:form}, ${3:recurse})" },
		{ "trigger": "newt_grid_basic_window", "contents": "newt_grid_basic_window(${1:text}, ${2:middle}, ${3:buttons})" },
		{ "trigger": "newt_grid_free", "contents": "newt_grid_free(${1:grid}, ${2:recurse})" },
		{ "trigger": "newt_grid_get_size", "contents": "newt_grid_get_size(${1:grid}, ${2:width}, ${3:height})" },
		{ "trigger": "newt_grid_h_close_stacked", "contents": "newt_grid_h_close_stacked(${1:element1_type}, ${2:element1})" },
		{ "trigger": "newt_grid_h_stacked", "contents": "newt_grid_h_stacked(${1:element1_type}, ${2:element1})" },
		{ "trigger": "newt_grid_place", "contents": "newt_grid_place(${1:grid}, ${2:left}, ${3:top})" },
		{ "trigger": "newt_grid_set_field", "contents": "newt_grid_set_field(${1:grid}, ${2:col}, ${3:row}, ${4:type}, ${5:val}, ${6:pad_left}, ${7:pad_top}, ${8:pad_right}, ${9:pad_bottom}, ${10:anchor})" },
		{ "trigger": "newt_grid_simple_window", "contents": "newt_grid_simple_window(${1:text}, ${2:middle}, ${3:buttons})" },
		{ "trigger": "newt_grid_v_close_stacked", "contents": "newt_grid_v_close_stacked(${1:element1_type}, ${2:element1})" },
		{ "trigger": "newt_grid_v_stacked", "contents": "newt_grid_v_stacked(${1:element1_type}, ${2:element1})" },
		{ "trigger": "newt_grid_wrapped_window", "contents": "newt_grid_wrapped_window(${1:grid}, ${2:title})" },
		{ "trigger": "newt_grid_wrapped_window_at", "contents": "newt_grid_wrapped_window_at(${1:grid}, ${2:title}, ${3:left}, ${4:top})" },
		{ "trigger": "newt_init", "contents": "newt_init(${1:oid})" },
		{ "trigger": "newt_label", "contents": "newt_label(${1:left}, ${2:top}, ${3:text})" },
		{ "trigger": "newt_label_set_text", "contents": "newt_label_set_text(${1:label}, ${2:text})" },
		{ "trigger": "newt_listbox", "contents": "newt_listbox(${1:left}, ${2:top}, ${3:height})" },
		{ "trigger": "newt_listbox_append_entry", "contents": "newt_listbox_append_entry(${1:listbox}, ${2:text}, ${3:data})" },
		{ "trigger": "newt_listbox_clear", "contents": "newt_listbox_clear(${1:listobx})" },
		{ "trigger": "newt_listbox_clear_selection", "contents": "newt_listbox_clear_selection(${1:listbox})" },
		{ "trigger": "newt_listbox_delete_entry", "contents": "newt_listbox_delete_entry(${1:listbox}, ${2:key})" },
		{ "trigger": "newt_listbox_get_current", "contents": "newt_listbox_get_current(${1:listbox})" },
		{ "trigger": "newt_listbox_get_selection", "contents": "newt_listbox_get_selection(${1:listbox})" },
		{ "trigger": "newt_listbox_insert_entry", "contents": "newt_listbox_insert_entry(${1:listbox}, ${2:text}, ${3:data}, ${4:key})" },
		{ "trigger": "newt_listbox_item_count", "contents": "newt_listbox_item_count(${1:listbox})" },
		{ "trigger": "newt_listbox_select_item", "contents": "newt_listbox_select_item(${1:listbox}, ${2:key}, ${3:sense})" },
		{ "trigger": "newt_listbox_set_current", "contents": "newt_listbox_set_current(${1:listbox}, ${2:num})" },
		{ "trigger": "newt_listbox_set_current_by_key", "contents": "newt_listbox_set_current_by_key(${1:listbox}, ${2:key})" },
		{ "trigger": "newt_listbox_set_data", "contents": "newt_listbox_set_data(${1:listbox}, ${2:num}, ${3:data})" },
		{ "trigger": "newt_listbox_set_entry", "contents": "newt_listbox_set_entry(${1:listbox}, ${2:num}, ${3:text})" },
		{ "trigger": "newt_listbox_set_width", "contents": "newt_listbox_set_width(${1:listbox}, ${2:width})" },
		{ "trigger": "newt_listitem", "contents": "newt_listitem(${1:left}, ${2:top}, ${3:text}, ${4:is_default}, ${5:prev_item}, ${6:data})" },
		{ "trigger": "newt_listitem_get_data", "contents": "newt_listitem_get_data(${1:item})" },
		{ "trigger": "newt_listitem_set", "contents": "newt_listitem_set(${1:item}, ${2:text})" },
		{ "trigger": "newt_open_window", "contents": "newt_open_window(${1:left}, ${2:top}, ${3:width}, ${4:height})" },
		{ "trigger": "newt_pop_help_line", "contents": "newt_pop_help_line(${1:oid})" },
		{ "trigger": "newt_pop_window", "contents": "newt_pop_window(${1:oid})" },
		{ "trigger": "newt_push_help_line", "contents": "newt_push_help_line()" },
		{ "trigger": "newt_radio_get_current", "contents": "newt_radio_get_current(${1:set_member})" },
		{ "trigger": "newt_radiobutton", "contents": "newt_radiobutton(${1:left}, ${2:top}, ${3:text}, ${4:is_default})" },
		{ "trigger": "newt_redraw_help_line", "contents": "newt_redraw_help_line(${1:oid})" },
		{ "trigger": "newt_reflow_text", "contents": "newt_reflow_text(${1:text}, ${2:width}, ${3:flex_down}, ${4:flex_up}, ${5:actual_width}, ${6:actual_height})" },
		{ "trigger": "newt_refresh", "contents": "newt_refresh(${1:oid})" },
		{ "trigger": "newt_resize_screen", "contents": "newt_resize_screen()" },
		{ "trigger": "newt_resume", "contents": "newt_resume(${1:oid})" },
		{ "trigger": "newt_run_form", "contents": "newt_run_form(${1:form})" },
		{ "trigger": "newt_scale", "contents": "newt_scale(${1:left}, ${2:top}, ${3:width}, ${4:full_value})" },
		{ "trigger": "newt_scale_set", "contents": "newt_scale_set(${1:scale}, ${2:amount})" },
		{ "trigger": "newt_scrollbar_set", "contents": "newt_scrollbar_set(${1:scrollbar}, ${2:where}, ${3:total})" },
		{ "trigger": "newt_set_help_callback", "contents": "newt_set_help_callback(${1:function})" },
		{ "trigger": "newt_set_suspend_callback", "contents": "newt_set_suspend_callback(${1:function}, ${2:data})" },
		{ "trigger": "newt_suspend", "contents": "newt_suspend(${1:oid})" },
		{ "trigger": "newt_textbox", "contents": "newt_textbox(${1:left}, ${2:top}, ${3:width}, ${4:height})" },
		{ "trigger": "newt_textbox_get_num_lines", "contents": "newt_textbox_get_num_lines(${1:textbox})" },
		{ "trigger": "newt_textbox_reflowed", "contents": "newt_textbox_reflowed(${1:left}, ${2:top}, ${3:*text}, ${4:width}, ${5:flex_down}, ${6:flex_up})" },
		{ "trigger": "newt_textbox_set_height", "contents": "newt_textbox_set_height(${1:textbox}, ${2:height})" },
		{ "trigger": "newt_textbox_set_text", "contents": "newt_textbox_set_text(${1:textbox}, ${2:text})" },
		{ "trigger": "newt_vertical_scrollbar", "contents": "newt_vertical_scrollbar(${1:left}, ${2:top}, ${3:height})" },
		{ "trigger": "newt_wait_for_key", "contents": "newt_wait_for_key(${1:oid})" },
		{ "trigger": "newt_win_choice", "contents": "newt_win_choice(${1:title}, ${2:button1_text}, ${3:button2_text}, ${4:format})" },
		{ "trigger": "newt_win_entries", "contents": "newt_win_entries(${1:title}, ${2:text}, ${3:suggested_width}, ${4:flex_down}, ${5:flex_up}, ${6:data_width}, ${7:items}, ${8:button1})" },
		{ "trigger": "newt_win_menu", "contents": "newt_win_menu(${1:title}, ${2:text}, ${3:suggestedWidth}, ${4:flexDown}, ${5:flexUp}, ${6:maxListHeight}, ${7:items}, ${8:listItem})" },
		{ "trigger": "newt_win_message", "contents": "newt_win_message(${1:title}, ${2:button_text}, ${3:format})" },
		{ "trigger": "newt_win_messagev", "contents": "newt_win_messagev(${1:title}, ${2:button_text}, ${3:format}, ${4:args})" },
		{ "trigger": "newt_win_ternary", "contents": "newt_win_ternary(${1:title}, ${2:button1_text}, ${3:button2_text}, ${4:button3_text}, ${5:format})" },
		{ "trigger": "next", "contents": "next(${1:array})" },
		{ "trigger": "ngettext", "contents": "ngettext(${1:msgid1}, ${2:msgid2}, ${3:n})" },
		{ "trigger": "nl2br", "contents": "nl2br(${1:string})" },
		{ "trigger": "nl_langinfo", "contents": "nl_langinfo(${1:item})" },
		{ "trigger": "notes_body", "contents": "notes_body(${1:server}, ${2:mailbox}, ${3:msg_number})" },
		{ "trigger": "notes_copy_db", "contents": "notes_copy_db(${1:from_database_name}, ${2:to_database_name})" },
		{ "trigger": "notes_create_db", "contents": "notes_create_db(${1:database_name})" },
		{ "trigger": "notes_create_note", "contents": "notes_create_note(${1:database_name}, ${2:form_name})" },
		{ "trigger": "notes_drop_db", "contents": "notes_drop_db(${1:database_name})" },
		{ "trigger": "notes_find_note", "contents": "notes_find_note(${1:database_name}, ${2:name})" },
		{ "trigger": "notes_header_info", "contents": "notes_header_info(${1:server}, ${2:mailbox}, ${3:msg_number})" },
		{ "trigger": "notes_list_msgs", "contents": "notes_list_msgs(${1:db})" },
		{ "trigger": "notes_mark_read", "contents": "notes_mark_read(${1:database_name}, ${2:user_name}, ${3:note_id})" },
		{ "trigger": "notes_mark_unread", "contents": "notes_mark_unread(${1:database_name}, ${2:user_name}, ${3:note_id})" },
		{ "trigger": "notes_nav_create", "contents": "notes_nav_create(${1:database_name}, ${2:name})" },
		{ "trigger": "notes_search", "contents": "notes_search(${1:database_name}, ${2:keywords})" },
		{ "trigger": "notes_unread", "contents": "notes_unread(${1:database_name}, ${2:user_name})" },
		{ "trigger": "notes_version", "contents": "notes_version(${1:database_name})" },
		{ "trigger": "nsapi_request_headers", "contents": "nsapi_request_headers(${1:oid})" },
		{ "trigger": "nsapi_response_headers", "contents": "nsapi_response_headers(${1:oid})" },
		{ "trigger": "nsapi_virtual", "contents": "nsapi_virtual(${1:uri})" },
		{ "trigger": "nthmac", "contents": "nthmac(${1:clent}, ${2:data})" },
		{ "trigger": "number_format", "contents": "number_format(${1:number})" },
		{ "trigger": "oauth_get_sbs", "contents": "oauth_get_sbs(${1:http_method}, ${2:uri})" },
		{ "trigger": "oauth_urlencode", "contents": "oauth_urlencode(${1:uri})" },
		{ "trigger": "ob_clean", "contents": "ob_clean(${1:oid})" },
		{ "trigger": "ob_deflatehandler", "contents": "ob_deflatehandler(${1:data}, ${2:mode})" },
		{ "trigger": "ob_end_clean", "contents": "ob_end_clean(${1:oid})" },
		{ "trigger": "ob_end_flush", "contents": "ob_end_flush(${1:oid})" },
		{ "trigger": "ob_etaghandler", "contents": "ob_etaghandler(${1:data}, ${2:mode})" },
		{ "trigger": "ob_flush", "contents": "ob_flush(${1:oid})" },
		{ "trigger": "ob_get_clean", "contents": "ob_get_clean(${1:oid})" },
		{ "trigger": "ob_get_contents", "contents": "ob_get_contents(${1:oid})" },
		{ "trigger": "ob_get_flush", "contents": "ob_get_flush(${1:oid})" },
		{ "trigger": "ob_get_length", "contents": "ob_get_length(${1:oid})" },
		{ "trigger": "ob_get_level", "contents": "ob_get_level(${1:oid})" },
		{ "trigger": "ob_get_status", "contents": "ob_get_status()" },
		{ "trigger": "ob_gzhandler", "contents": "ob_gzhandler(${1:buffer}, ${2:mode})" },
		{ "trigger": "ob_iconv_handler", "contents": "ob_iconv_handler(${1:contents}, ${2:status})" },
		{ "trigger": "ob_implicit_flush", "contents": "ob_implicit_flush()" },
		{ "trigger": "ob_inflatehandler", "contents": "ob_inflatehandler(${1:data}, ${2:mode})" },
		{ "trigger": "ob_list_handlers", "contents": "ob_list_handlers(${1:oid})" },
		{ "trigger": "ob_start", "contents": "ob_start()" },
		{ "trigger": "ob_tidyhandler", "contents": "ob_tidyhandler(${1:input})" },
		{ "trigger": "oci_bind_array_by_name", "contents": "oci_bind_array_by_name(${1:statement}, ${2:name}, ${3:var_array}, ${4:max_table_length})" },
		{ "trigger": "oci_bind_by_name", "contents": "oci_bind_by_name(${1:statement}, ${2:bv_name}, ${3:variable})" },
		{ "trigger": "oci_cancel", "contents": "oci_cancel(${1:statement})" },
		{ "trigger": "oci_close", "contents": "oci_close(${1:connection})" },
		{ "trigger": "oci_commit", "contents": "oci_commit(${1:connection})" },
		{ "trigger": "oci_connect", "contents": "oci_connect(${1:username}, ${2:password})" },
		{ "trigger": "oci_define_by_name", "contents": "oci_define_by_name(${1:statement}, ${2:column_name}, ${3:variable})" },
		{ "trigger": "oci_error", "contents": "oci_error()" },
		{ "trigger": "oci_execute", "contents": "oci_execute(${1:statement})" },
		{ "trigger": "oci_fetch", "contents": "oci_fetch(${1:statement})" },
		{ "trigger": "oci_fetch_all", "contents": "oci_fetch_all(${1:statement}, ${2:output})" },
		{ "trigger": "oci_fetch_array", "contents": "oci_fetch_array(${1:statement})" },
		{ "trigger": "oci_fetch_assoc", "contents": "oci_fetch_assoc(${1:statement})" },
		{ "trigger": "oci_fetch_object", "contents": "oci_fetch_object(${1:statement})" },
		{ "trigger": "oci_fetch_row", "contents": "oci_fetch_row(${1:statement})" },
		{ "trigger": "oci_field_is_null", "contents": "oci_field_is_null(${1:statement}, ${2:field})" },
		{ "trigger": "oci_field_name", "contents": "oci_field_name(${1:statement}, ${2:field})" },
		{ "trigger": "oci_field_precision", "contents": "oci_field_precision(${1:statement}, ${2:field})" },
		{ "trigger": "oci_field_scale", "contents": "oci_field_scale(${1:statement}, ${2:field})" },
		{ "trigger": "oci_field_size", "contents": "oci_field_size(${1:statement}, ${2:field})" },
		{ "trigger": "oci_field_type", "contents": "oci_field_type(${1:statement}, ${2:field})" },
		{ "trigger": "oci_field_type_raw", "contents": "oci_field_type_raw(${1:statement}, ${2:field})" },
		{ "trigger": "oci_free_statement", "contents": "oci_free_statement(${1:statement})" },
		{ "trigger": "oci_internal_debug", "contents": "oci_internal_debug(${1:onoff})" },
		{ "trigger": "oci_lob_copy", "contents": "oci_lob_copy(${1:lob_to}, ${2:lob_from})" },
		{ "trigger": "oci_lob_is_equal", "contents": "oci_lob_is_equal(${1:lob1}, ${2:lob2})" },
		{ "trigger": "oci_new_collection", "contents": "oci_new_collection(${1:connection}, ${2:tdo})" },
		{ "trigger": "oci_new_connect", "contents": "oci_new_connect(${1:username}, ${2:password})" },
		{ "trigger": "oci_new_cursor", "contents": "oci_new_cursor(${1:connection})" },
		{ "trigger": "oci_new_descriptor", "contents": "oci_new_descriptor(${1:connection})" },
		{ "trigger": "oci_num_fields", "contents": "oci_num_fields(${1:statement})" },
		{ "trigger": "oci_num_rows", "contents": "oci_num_rows(${1:statement})" },
		{ "trigger": "oci_parse", "contents": "oci_parse(${1:connection}, ${2:sql_text})" },
		{ "trigger": "oci_password_change", "contents": "oci_password_change(${1:connection}, ${2:username}, ${3:old_password}, ${4:new_password})" },
		{ "trigger": "oci_pconnect", "contents": "oci_pconnect(${1:username}, ${2:password})" },
		{ "trigger": "oci_result", "contents": "oci_result(${1:statement}, ${2:field})" },
		{ "trigger": "oci_rollback", "contents": "oci_rollback(${1:connection})" },
		{ "trigger": "oci_server_version", "contents": "oci_server_version(${1:connection})" },
		{ "trigger": "oci_set_action", "contents": "oci_set_action(${1:connection}, ${2:action_name})" },
		{ "trigger": "oci_set_client_identifier", "contents": "oci_set_client_identifier(${1:connection}, ${2:client_identifier})" },
		{ "trigger": "oci_set_client_info", "contents": "oci_set_client_info(${1:connection}, ${2:client_info})" },
		{ "trigger": "oci_set_edition", "contents": "oci_set_edition(${1:edition})" },
		{ "trigger": "oci_set_module_name", "contents": "oci_set_module_name(${1:connection}, ${2:module_name})" },
		{ "trigger": "oci_set_prefetch", "contents": "oci_set_prefetch(${1:statement}, ${2:rows})" },
		{ "trigger": "oci_statement_type", "contents": "oci_statement_type(${1:statement})" },
		{ "trigger": "ocibindbyname", "contents": "ocibindbyname()" },
		{ "trigger": "ocicancel", "contents": "ocicancel()" },
		{ "trigger": "ocicloselob", "contents": "ocicloselob()" },
		{ "trigger": "ocicollappend", "contents": "ocicollappend()" },
		{ "trigger": "ocicollassign", "contents": "ocicollassign()" },
		{ "trigger": "ocicollassignelem", "contents": "ocicollassignelem()" },
		{ "trigger": "ocicollgetelem", "contents": "ocicollgetelem()" },
		{ "trigger": "ocicollmax", "contents": "ocicollmax()" },
		{ "trigger": "ocicollsize", "contents": "ocicollsize()" },
		{ "trigger": "ocicolltrim", "contents": "ocicolltrim()" },
		{ "trigger": "ocicolumnisnull", "contents": "ocicolumnisnull()" },
		{ "trigger": "ocicolumnname", "contents": "ocicolumnname()" },
		{ "trigger": "ocicolumnprecision", "contents": "ocicolumnprecision()" },
		{ "trigger": "ocicolumnscale", "contents": "ocicolumnscale()" },
		{ "trigger": "ocicolumnsize", "contents": "ocicolumnsize()" },
		{ "trigger": "ocicolumntype", "contents": "ocicolumntype()" },
		{ "trigger": "ocicolumntyperaw", "contents": "ocicolumntyperaw()" },
		{ "trigger": "ocicommit", "contents": "ocicommit()" },
		{ "trigger": "ocidefinebyname", "contents": "ocidefinebyname()" },
		{ "trigger": "ocierror", "contents": "ocierror()" },
		{ "trigger": "ociexecute", "contents": "ociexecute()" },
		{ "trigger": "ocifetch", "contents": "ocifetch()" },
		{ "trigger": "ocifetchinto", "contents": "ocifetchinto(${1:statement}, ${2:result})" },
		{ "trigger": "ocifetchstatement", "contents": "ocifetchstatement()" },
		{ "trigger": "ocifreecollection", "contents": "ocifreecollection()" },
		{ "trigger": "ocifreecursor", "contents": "ocifreecursor()" },
		{ "trigger": "ocifreedesc", "contents": "ocifreedesc()" },
		{ "trigger": "ocifreestatement", "contents": "ocifreestatement()" },
		{ "trigger": "ociinternaldebug", "contents": "ociinternaldebug()" },
		{ "trigger": "ociloadlob", "contents": "ociloadlob()" },
		{ "trigger": "ocilogoff", "contents": "ocilogoff()" },
		{ "trigger": "ocilogon", "contents": "ocilogon()" },
		{ "trigger": "ocinewcollection", "contents": "ocinewcollection()" },
		{ "trigger": "ocinewcursor", "contents": "ocinewcursor()" },
		{ "trigger": "ocinewdescriptor", "contents": "ocinewdescriptor()" },
		{ "trigger": "ocinlogon", "contents": "ocinlogon()" },
		{ "trigger": "ocinumcols", "contents": "ocinumcols()" },
		{ "trigger": "ociparse", "contents": "ociparse()" },
		{ "trigger": "ociplogon", "contents": "ociplogon()" },
		{ "trigger": "ociresult", "contents": "ociresult()" },
		{ "trigger": "ocirollback", "contents": "ocirollback()" },
		{ "trigger": "ocirowcount", "contents": "ocirowcount()" },
		{ "trigger": "ocisavelob", "contents": "ocisavelob()" },
		{ "trigger": "ocisavelobfile", "contents": "ocisavelobfile()" },
		{ "trigger": "ociserverversion", "contents": "ociserverversion()" },
		{ "trigger": "ocisetprefetch", "contents": "ocisetprefetch()" },
		{ "trigger": "ocistatementtype", "contents": "ocistatementtype()" },
		{ "trigger": "ociwritelobtofile", "contents": "ociwritelobtofile()" },
		{ "trigger": "ociwritetemporarylob", "contents": "ociwritetemporarylob()" },
		{ "trigger": "octdec", "contents": "octdec(${1:octal_string})" },
		{ "trigger": "odbc_autocommit", "contents": "odbc_autocommit(${1:connection_id})" },
		{ "trigger": "odbc_binmode", "contents": "odbc_binmode(${1:result_id}, ${2:mode})" },
		{ "trigger": "odbc_close", "contents": "odbc_close(${1:connection_id})" },
		{ "trigger": "odbc_close_all", "contents": "odbc_close_all(${1:oid})" },
		{ "trigger": "odbc_columnprivileges", "contents": "odbc_columnprivileges(${1:connection_id}, ${2:qualifier}, ${3:owner}, ${4:table_name}, ${5:column_name})" },
		{ "trigger": "odbc_columns", "contents": "odbc_columns(${1:connection_id})" },
		{ "trigger": "odbc_commit", "contents": "odbc_commit(${1:connection_id})" },
		{ "trigger": "odbc_connect", "contents": "odbc_connect(${1:dsn}, ${2:user}, ${3:password})" },
		{ "trigger": "odbc_cursor", "contents": "odbc_cursor(${1:result_id})" },
		{ "trigger": "odbc_data_source", "contents": "odbc_data_source(${1:connection_id}, ${2:fetch_type})" },
		{ "trigger": "odbc_do", "contents": "odbc_do()" },
		{ "trigger": "odbc_error", "contents": "odbc_error()" },
		{ "trigger": "odbc_errormsg", "contents": "odbc_errormsg()" },
		{ "trigger": "odbc_exec", "contents": "odbc_exec(${1:connection_id}, ${2:query_string})" },
		{ "trigger": "odbc_execute", "contents": "odbc_execute(${1:result_id})" },
		{ "trigger": "odbc_fetch_array", "contents": "odbc_fetch_array(${1:result})" },
		{ "trigger": "odbc_fetch_into", "contents": "odbc_fetch_into(${1:result_id}, ${2:result_array})" },
		{ "trigger": "odbc_fetch_object", "contents": "odbc_fetch_object(${1:result})" },
		{ "trigger": "odbc_fetch_row", "contents": "odbc_fetch_row(${1:result_id})" },
		{ "trigger": "odbc_field_len", "contents": "odbc_field_len(${1:result_id}, ${2:field_number})" },
		{ "trigger": "odbc_field_name", "contents": "odbc_field_name(${1:result_id}, ${2:field_number})" },
		{ "trigger": "odbc_field_num", "contents": "odbc_field_num(${1:result_id}, ${2:field_name})" },
		{ "trigger": "odbc_field_precision", "contents": "odbc_field_precision()" },
		{ "trigger": "odbc_field_scale", "contents": "odbc_field_scale(${1:result_id}, ${2:field_number})" },
		{ "trigger": "odbc_field_type", "contents": "odbc_field_type(${1:result_id}, ${2:field_number})" },
		{ "trigger": "odbc_foreignkeys", "contents": "odbc_foreignkeys(${1:connection_id}, ${2:pk_qualifier}, ${3:pk_owner}, ${4:pk_table}, ${5:fk_qualifier}, ${6:fk_owner}, ${7:fk_table})" },
		{ "trigger": "odbc_free_result", "contents": "odbc_free_result(${1:result_id})" },
		{ "trigger": "odbc_gettypeinfo", "contents": "odbc_gettypeinfo(${1:connection_id})" },
		{ "trigger": "odbc_longreadlen", "contents": "odbc_longreadlen(${1:result_id}, ${2:length})" },
		{ "trigger": "odbc_next_result", "contents": "odbc_next_result(${1:result_id})" },
		{ "trigger": "odbc_num_fields", "contents": "odbc_num_fields(${1:result_id})" },
		{ "trigger": "odbc_num_rows", "contents": "odbc_num_rows(${1:result_id})" },
		{ "trigger": "odbc_pconnect", "contents": "odbc_pconnect(${1:dsn}, ${2:user}, ${3:password})" },
		{ "trigger": "odbc_prepare", "contents": "odbc_prepare(${1:connection_id}, ${2:query_string})" },
		{ "trigger": "odbc_primarykeys", "contents": "odbc_primarykeys(${1:connection_id}, ${2:qualifier}, ${3:owner}, ${4:table})" },
		{ "trigger": "odbc_procedurecolumns", "contents": "odbc_procedurecolumns(${1:connection_id})" },
		{ "trigger": "odbc_procedures", "contents": "odbc_procedures(${1:connection_id})" },
		{ "trigger": "odbc_result", "contents": "odbc_result(${1:result_id}, ${2:field})" },
		{ "trigger": "odbc_result_all", "contents": "odbc_result_all(${1:result_id})" },
		{ "trigger": "odbc_rollback", "contents": "odbc_rollback(${1:connection_id})" },
		{ "trigger": "odbc_setoption", "contents": "odbc_setoption(${1:id}, ${2:function}, ${3:option}, ${4:param})" },
		{ "trigger": "odbc_specialcolumns", "contents": "odbc_specialcolumns(${1:connection_id}, ${2:type}, ${3:qualifier}, ${4:owner}, ${5:table}, ${6:scope}, ${7:nullable})" },
		{ "trigger": "odbc_statistics", "contents": "odbc_statistics(${1:connection_id}, ${2:qualifier}, ${3:owner}, ${4:table_name}, ${5:unique}, ${6:accuracy})" },
		{ "trigger": "odbc_tableprivileges", "contents": "odbc_tableprivileges(${1:connection_id}, ${2:qualifier}, ${3:owner}, ${4:name})" },
		{ "trigger": "odbc_tables", "contents": "odbc_tables(${1:connection_id})" },
		{ "trigger": "openal_buffer_create", "contents": "openal_buffer_create(${1:oid})" },
		{ "trigger": "openal_buffer_data", "contents": "openal_buffer_data(${1:buffer}, ${2:format}, ${3:data}, ${4:freq})" },
		{ "trigger": "openal_buffer_destroy", "contents": "openal_buffer_destroy(${1:buffer})" },
		{ "trigger": "openal_buffer_get", "contents": "openal_buffer_get(${1:buffer}, ${2:property})" },
		{ "trigger": "openal_buffer_loadwav", "contents": "openal_buffer_loadwav(${1:buffer}, ${2:wavfile})" },
		{ "trigger": "openal_context_create", "contents": "openal_context_create(${1:device})" },
		{ "trigger": "openal_context_current", "contents": "openal_context_current(${1:context})" },
		{ "trigger": "openal_context_destroy", "contents": "openal_context_destroy(${1:context})" },
		{ "trigger": "openal_context_process", "contents": "openal_context_process(${1:context})" },
		{ "trigger": "openal_context_suspend", "contents": "openal_context_suspend(${1:context})" },
		{ "trigger": "openal_device_close", "contents": "openal_device_close(${1:device})" },
		{ "trigger": "openal_device_open", "contents": "openal_device_open()" },
		{ "trigger": "openal_listener_get", "contents": "openal_listener_get(${1:property})" },
		{ "trigger": "openal_listener_set", "contents": "openal_listener_set(${1:property}, ${2:setting})" },
		{ "trigger": "openal_source_create", "contents": "openal_source_create(${1:oid})" },
		{ "trigger": "openal_source_destroy", "contents": "openal_source_destroy(${1:source})" },
		{ "trigger": "openal_source_get", "contents": "openal_source_get(${1:source}, ${2:property})" },
		{ "trigger": "openal_source_pause", "contents": "openal_source_pause(${1:source})" },
		{ "trigger": "openal_source_play", "contents": "openal_source_play(${1:source})" },
		{ "trigger": "openal_source_rewind", "contents": "openal_source_rewind(${1:source})" },
		{ "trigger": "openal_source_set", "contents": "openal_source_set(${1:source}, ${2:property}, ${3:setting})" },
		{ "trigger": "openal_source_stop", "contents": "openal_source_stop(${1:source})" },
		{ "trigger": "openal_stream", "contents": "openal_stream(${1:source}, ${2:format}, ${3:rate})" },
		{ "trigger": "opendir", "contents": "opendir(${1:path})" },
		{ "trigger": "openlog", "contents": "openlog(${1:ident}, ${2:option}, ${3:facility})" },
		{ "trigger": "openssl_csr_export", "contents": "openssl_csr_export(${1:csr}, ${2:out})" },
		{ "trigger": "openssl_csr_export_to_file", "contents": "openssl_csr_export_to_file(${1:csr}, ${2:outfilename})" },
		{ "trigger": "openssl_csr_get_public_key", "contents": "openssl_csr_get_public_key(${1:csr})" },
		{ "trigger": "openssl_csr_get_subject", "contents": "openssl_csr_get_subject(${1:csr})" },
		{ "trigger": "openssl_csr_new", "contents": "openssl_csr_new(${1:dn}, ${2:privkey})" },
		{ "trigger": "openssl_csr_sign", "contents": "openssl_csr_sign(${1:csr}, ${2:cacert}, ${3:priv_key}, ${4:days})" },
		{ "trigger": "openssl_decrypt", "contents": "openssl_decrypt(${1:data}, ${2:method}, ${3:password})" },
		{ "trigger": "openssl_dh_compute_key", "contents": "openssl_dh_compute_key(${1:pub_key}, ${2:dh_key})" },
		{ "trigger": "openssl_digest", "contents": "openssl_digest(${1:data}, ${2:method})" },
		{ "trigger": "openssl_encrypt", "contents": "openssl_encrypt(${1:data}, ${2:method}, ${3:password})" },
		{ "trigger": "openssl_error_string", "contents": "openssl_error_string(${1:oid})" },
		{ "trigger": "openssl_free_key", "contents": "openssl_free_key(${1:key_identifier})" },
		{ "trigger": "openssl_get_cipher_methods", "contents": "openssl_get_cipher_methods()" },
		{ "trigger": "openssl_get_md_methods", "contents": "openssl_get_md_methods()" },
		{ "trigger": "openssl_get_privatekey", "contents": "openssl_get_privatekey()" },
		{ "trigger": "openssl_get_publickey", "contents": "openssl_get_publickey()" },
		{ "trigger": "openssl_open", "contents": "openssl_open(${1:sealed_data}, ${2:open_data}, ${3:env_key}, ${4:priv_key_id})" },
		{ "trigger": "openssl_pkcs12_export", "contents": "openssl_pkcs12_export(${1:x509}, ${2:out}, ${3:priv_key}, ${4:pass})" },
		{ "trigger": "openssl_pkcs12_export_to_file", "contents": "openssl_pkcs12_export_to_file(${1:x509}, ${2:filename}, ${3:priv_key}, ${4:pass})" },
		{ "trigger": "openssl_pkcs12_read", "contents": "openssl_pkcs12_read(${1:pkcs12}, ${2:certs}, ${3:pass})" },
		{ "trigger": "openssl_pkcs7_decrypt", "contents": "openssl_pkcs7_decrypt(${1:infilename}, ${2:outfilename}, ${3:recipcert})" },
		{ "trigger": "openssl_pkcs7_encrypt", "contents": "openssl_pkcs7_encrypt(${1:infile}, ${2:outfile}, ${3:recipcerts}, ${4:headers})" },
		{ "trigger": "openssl_pkcs7_sign", "contents": "openssl_pkcs7_sign(${1:infilename}, ${2:outfilename}, ${3:signcert}, ${4:privkey}, ${5:headers})" },
		{ "trigger": "openssl_pkcs7_verify", "contents": "openssl_pkcs7_verify(${1:filename}, ${2:flags})" },
		{ "trigger": "openssl_pkey_export", "contents": "openssl_pkey_export(${1:key}, ${2:out})" },
		{ "trigger": "openssl_pkey_export_to_file", "contents": "openssl_pkey_export_to_file(${1:key}, ${2:outfilename})" },
		{ "trigger": "openssl_pkey_free", "contents": "openssl_pkey_free(${1:key})" },
		{ "trigger": "openssl_pkey_get_details", "contents": "openssl_pkey_get_details(${1:key})" },
		{ "trigger": "openssl_pkey_get_private", "contents": "openssl_pkey_get_private(${1:key})" },
		{ "trigger": "openssl_pkey_get_public", "contents": "openssl_pkey_get_public(${1:certificate})" },
		{ "trigger": "openssl_pkey_new", "contents": "openssl_pkey_new()" },
		{ "trigger": "openssl_private_decrypt", "contents": "openssl_private_decrypt(${1:data}, ${2:decrypted}, ${3:key})" },
		{ "trigger": "openssl_private_encrypt", "contents": "openssl_private_encrypt(${1:data}, ${2:crypted}, ${3:key})" },
		{ "trigger": "openssl_public_decrypt", "contents": "openssl_public_decrypt(${1:data}, ${2:decrypted}, ${3:key})" },
		{ "trigger": "openssl_public_encrypt", "contents": "openssl_public_encrypt(${1:data}, ${2:crypted}, ${3:key})" },
		{ "trigger": "openssl_random_pseudo_bytes", "contents": "openssl_random_pseudo_bytes(${1:length})" },
		{ "trigger": "openssl_seal", "contents": "openssl_seal(${1:data}, ${2:sealed_data}, ${3:env_keys}, ${4:pub_key_ids})" },
		{ "trigger": "openssl_sign", "contents": "openssl_sign(${1:data}, ${2:signature}, ${3:priv_key_id})" },
		{ "trigger": "openssl_verify", "contents": "openssl_verify(${1:data}, ${2:signature}, ${3:pub_key_id})" },
		{ "trigger": "openssl_x509_check_private_key", "contents": "openssl_x509_check_private_key(${1:cert}, ${2:key})" },
		{ "trigger": "openssl_x509_checkpurpose", "contents": "openssl_x509_checkpurpose(${1:x509cert}, ${2:purpose})" },
		{ "trigger": "openssl_x509_export", "contents": "openssl_x509_export(${1:x509}, ${2:output})" },
		{ "trigger": "openssl_x509_export_to_file", "contents": "openssl_x509_export_to_file(${1:x509}, ${2:outfilename})" },
		{ "trigger": "openssl_x509_free", "contents": "openssl_x509_free(${1:x509cert})" },
		{ "trigger": "openssl_x509_parse", "contents": "openssl_x509_parse(${1:x509cert})" },
		{ "trigger": "openssl_x509_read", "contents": "openssl_x509_read(${1:x509certdata})" },
		{ "trigger": "ord", "contents": "ord(${1:string})" },
		{ "trigger": "output_add_rewrite_var", "contents": "output_add_rewrite_var(${1:name}, ${2:value})" },
		{ "trigger": "output_reset_rewrite_vars", "contents": "output_reset_rewrite_vars(${1:oid})" },
		{ "trigger": "overload", "contents": "overload(${1:class_name})" },
		{ "trigger": "override_function", "contents": "override_function(${1:function_name}, ${2:function_args}, ${3:function_code})" },
		{ "trigger": "ovrimos_close", "contents": "ovrimos_close(${1:connection})" },
		{ "trigger": "ovrimos_commit", "contents": "ovrimos_commit(${1:connection_id})" },
		{ "trigger": "ovrimos_connect", "contents": "ovrimos_connect(${1:host}, ${2:dborport}, ${3:user}, ${4:password})" },
		{ "trigger": "ovrimos_cursor", "contents": "ovrimos_cursor(${1:result_id})" },
		{ "trigger": "ovrimos_exec", "contents": "ovrimos_exec(${1:connection_id}, ${2:query})" },
		{ "trigger": "ovrimos_execute", "contents": "ovrimos_execute(${1:result_id})" },
		{ "trigger": "ovrimos_fetch_into", "contents": "ovrimos_fetch_into(${1:result_id}, ${2:result_array})" },
		{ "trigger": "ovrimos_fetch_row", "contents": "ovrimos_fetch_row(${1:result_id})" },
		{ "trigger": "ovrimos_field_len", "contents": "ovrimos_field_len(${1:result_id}, ${2:field_number})" },
		{ "trigger": "ovrimos_field_name", "contents": "ovrimos_field_name(${1:result_id}, ${2:field_number})" },
		{ "trigger": "ovrimos_field_num", "contents": "ovrimos_field_num(${1:result_id}, ${2:field_name})" },
		{ "trigger": "ovrimos_field_type", "contents": "ovrimos_field_type(${1:result_id}, ${2:field_number})" },
		{ "trigger": "ovrimos_free_result", "contents": "ovrimos_free_result(${1:result_id})" },
		{ "trigger": "ovrimos_longreadlen", "contents": "ovrimos_longreadlen(${1:result_id}, ${2:length})" },
		{ "trigger": "ovrimos_num_fields", "contents": "ovrimos_num_fields(${1:result_id})" },
		{ "trigger": "ovrimos_num_rows", "contents": "ovrimos_num_rows(${1:result_id})" },
		{ "trigger": "ovrimos_prepare", "contents": "ovrimos_prepare(${1:connection_id}, ${2:query})" },
		{ "trigger": "ovrimos_result", "contents": "ovrimos_result(${1:result_id}, ${2:field})" },
		{ "trigger": "ovrimos_result_all", "contents": "ovrimos_result_all(${1:result_id})" },
		{ "trigger": "ovrimos_rollback", "contents": "ovrimos_rollback(${1:connection_id})" },
		{ "trigger": "pack", "contents": "pack(${1:format})" },
		{ "trigger": "parse_ini_file", "contents": "parse_ini_file(${1:filename})" },
		{ "trigger": "parse_ini_string", "contents": "parse_ini_string(${1:ini})" },
		{ "trigger": "parse_str", "contents": "parse_str(${1:str})" },
		{ "trigger": "parse_url", "contents": "parse_url(${1:url})" },
		{ "trigger": "parsekit_compile_file", "contents": "parsekit_compile_file(${1:filename})" },
		{ "trigger": "parsekit_compile_string", "contents": "parsekit_compile_string(${1:phpcode})" },
		{ "trigger": "parsekit_func_arginfo", "contents": "parsekit_func_arginfo(${1:function})" },
		{ "trigger": "passthru", "contents": "passthru(${1:command})" },
		{ "trigger": "pathinfo", "contents": "pathinfo(${1:path})" },
		{ "trigger": "pclose", "contents": "pclose(${1:handle})" },
		{ "trigger": "pcntl_alarm", "contents": "pcntl_alarm(${1:seconds})" },
		{ "trigger": "pcntl_exec", "contents": "pcntl_exec(${1:path})" },
		{ "trigger": "pcntl_fork", "contents": "pcntl_fork(${1:oid})" },
		{ "trigger": "pcntl_getpriority", "contents": "pcntl_getpriority()" },
		{ "trigger": "pcntl_setpriority", "contents": "pcntl_setpriority(${1:priority})" },
		{ "trigger": "pcntl_signal", "contents": "pcntl_signal(${1:signo}, ${2:handler})" },
		{ "trigger": "pcntl_signal_dispatch", "contents": "pcntl_signal_dispatch(${1:oid})" },
		{ "trigger": "pcntl_sigprocmask", "contents": "pcntl_sigprocmask(${1:how}, ${2:set})" },
		{ "trigger": "pcntl_sigtimedwait", "contents": "pcntl_sigtimedwait(${1:set})" },
		{ "trigger": "pcntl_sigwaitinfo", "contents": "pcntl_sigwaitinfo(${1:set})" },
		{ "trigger": "pcntl_wait", "contents": "pcntl_wait(${1:status})" },
		{ "trigger": "pcntl_waitpid", "contents": "pcntl_waitpid(${1:pid}, ${2:status})" },
		{ "trigger": "pcntl_wexitstatus", "contents": "pcntl_wexitstatus(${1:status})" },
		{ "trigger": "pcntl_wifexited", "contents": "pcntl_wifexited(${1:status})" },
		{ "trigger": "pcntl_wifsignaled", "contents": "pcntl_wifsignaled(${1:status})" },
		{ "trigger": "pcntl_wifstopped", "contents": "pcntl_wifstopped(${1:status})" },
		{ "trigger": "pcntl_wstopsig", "contents": "pcntl_wstopsig(${1:status})" },
		{ "trigger": "pcntl_wtermsig", "contents": "pcntl_wtermsig(${1:status})" },
		{ "trigger": "PDF_activate_item", "contents": "PDF_activate_item(${1:pdfdoc}, ${2:id})" },
		{ "trigger": "PDF_add_annotation", "contents": "PDF_add_annotation()" },
		{ "trigger": "PDF_add_bookmark", "contents": "PDF_add_bookmark()" },
		{ "trigger": "PDF_add_launchlink", "contents": "PDF_add_launchlink(${1:pdfdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:filename})" },
		{ "trigger": "PDF_add_locallink", "contents": "PDF_add_locallink(${1:pdfdoc}, ${2:lowerleftx}, ${3:lowerlefty}, ${4:upperrightx}, ${5:upperrighty}, ${6:page}, ${7:dest})" },
		{ "trigger": "PDF_add_nameddest", "contents": "PDF_add_nameddest(${1:pdfdoc}, ${2:name}, ${3:optlist})" },
		{ "trigger": "PDF_add_note", "contents": "PDF_add_note(${1:pdfdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:contents}, ${7:title}, ${8:icon}, ${9:open})" },
		{ "trigger": "PDF_add_outline", "contents": "PDF_add_outline()" },
		{ "trigger": "PDF_add_pdflink", "contents": "PDF_add_pdflink(${1:pdfdoc}, ${2:bottom_left_x}, ${3:bottom_left_y}, ${4:up_right_x}, ${5:up_right_y}, ${6:filename}, ${7:page}, ${8:dest})" },
		{ "trigger": "PDF_add_table_cell", "contents": "PDF_add_table_cell(${1:pdfdoc}, ${2:table}, ${3:column}, ${4:row}, ${5:text}, ${6:optlist})" },
		{ "trigger": "PDF_add_textflow", "contents": "PDF_add_textflow(${1:pdfdoc}, ${2:textflow}, ${3:text}, ${4:optlist})" },
		{ "trigger": "PDF_add_thumbnail", "contents": "PDF_add_thumbnail(${1:pdfdoc}, ${2:image})" },
		{ "trigger": "PDF_add_weblink", "contents": "PDF_add_weblink(${1:pdfdoc}, ${2:lowerleftx}, ${3:lowerlefty}, ${4:upperrightx}, ${5:upperrighty}, ${6:url})" },
		{ "trigger": "PDF_arc", "contents": "PDF_arc(${1:p}, ${2:x}, ${3:y}, ${4:r}, ${5:alpha}, ${6:beta})" },
		{ "trigger": "PDF_arcn", "contents": "PDF_arcn(${1:p}, ${2:x}, ${3:y}, ${4:r}, ${5:alpha}, ${6:beta})" },
		{ "trigger": "PDF_attach_file", "contents": "PDF_attach_file(${1:pdfdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:filename}, ${7:description}, ${8:author}, ${9:mimetype}, ${10:icon})" },
		{ "trigger": "PDF_begin_document", "contents": "PDF_begin_document(${1:pdfdoc}, ${2:filename}, ${3:optlist})" },
		{ "trigger": "PDF_begin_font", "contents": "PDF_begin_font(${1:pdfdoc}, ${2:filename}, ${3:a}, ${4:b}, ${5:c}, ${6:d}, ${7:e}, ${8:f}, ${9:optlist})" },
		{ "trigger": "PDF_begin_glyph", "contents": "PDF_begin_glyph(${1:pdfdoc}, ${2:glyphname}, ${3:wx}, ${4:llx}, ${5:lly}, ${6:urx}, ${7:ury})" },
		{ "trigger": "PDF_begin_item", "contents": "PDF_begin_item(${1:pdfdoc}, ${2:tag}, ${3:optlist})" },
		{ "trigger": "PDF_begin_layer", "contents": "PDF_begin_layer(${1:pdfdoc}, ${2:layer})" },
		{ "trigger": "PDF_begin_page", "contents": "PDF_begin_page(${1:pdfdoc}, ${2:width}, ${3:height})" },
		{ "trigger": "PDF_begin_page_ext", "contents": "PDF_begin_page_ext(${1:pdfdoc}, ${2:width}, ${3:height}, ${4:optlist})" },
		{ "trigger": "PDF_begin_pattern", "contents": "PDF_begin_pattern(${1:pdfdoc}, ${2:width}, ${3:height}, ${4:xstep}, ${5:ystep}, ${6:painttype})" },
		{ "trigger": "PDF_begin_template", "contents": "PDF_begin_template(${1:pdfdoc}, ${2:width}, ${3:height})" },
		{ "trigger": "PDF_begin_template_ext", "contents": "PDF_begin_template_ext(${1:pdfdoc}, ${2:width}, ${3:height}, ${4:optlist})" },
		{ "trigger": "PDF_circle", "contents": "PDF_circle(${1:pdfdoc}, ${2:x}, ${3:y}, ${4:r})" },
		{ "trigger": "PDF_clip", "contents": "PDF_clip(${1:p})" },
		{ "trigger": "PDF_close", "contents": "PDF_close(${1:p})" },
		{ "trigger": "PDF_close_image", "contents": "PDF_close_image(${1:p}, ${2:image})" },
		{ "trigger": "PDF_close_pdi", "contents": "PDF_close_pdi(${1:p}, ${2:doc})" },
		{ "trigger": "PDF_close_pdi_page", "contents": "PDF_close_pdi_page(${1:p}, ${2:page})" },
		{ "trigger": "PDF_closepath", "contents": "PDF_closepath(${1:p})" },
		{ "trigger": "PDF_closepath_fill_stroke", "contents": "PDF_closepath_fill_stroke(${1:p})" },
		{ "trigger": "PDF_closepath_stroke", "contents": "PDF_closepath_stroke(${1:p})" },
		{ "trigger": "PDF_concat", "contents": "PDF_concat(${1:p}, ${2:a}, ${3:b}, ${4:c}, ${5:d}, ${6:e}, ${7:f})" },
		{ "trigger": "PDF_continue_text", "contents": "PDF_continue_text(${1:p}, ${2:text})" },
		{ "trigger": "PDF_create_3dview", "contents": "PDF_create_3dview(${1:pdfdoc}, ${2:username}, ${3:optlist})" },
		{ "trigger": "PDF_create_action", "contents": "PDF_create_action(${1:pdfdoc}, ${2:type}, ${3:optlist})" },
		{ "trigger": "PDF_create_annotation", "contents": "PDF_create_annotation(${1:pdfdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:type}, ${7:optlist})" },
		{ "trigger": "PDF_create_bookmark", "contents": "PDF_create_bookmark(${1:pdfdoc}, ${2:text}, ${3:optlist})" },
		{ "trigger": "PDF_create_field", "contents": "PDF_create_field(${1:pdfdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:name}, ${7:type}, ${8:optlist})" },
		{ "trigger": "PDF_create_fieldgroup", "contents": "PDF_create_fieldgroup(${1:pdfdoc}, ${2:name}, ${3:optlist})" },
		{ "trigger": "PDF_create_gstate", "contents": "PDF_create_gstate(${1:pdfdoc}, ${2:optlist})" },
		{ "trigger": "PDF_create_pvf", "contents": "PDF_create_pvf(${1:pdfdoc}, ${2:filename}, ${3:data}, ${4:optlist})" },
		{ "trigger": "PDF_create_textflow", "contents": "PDF_create_textflow(${1:pdfdoc}, ${2:text}, ${3:optlist})" },
		{ "trigger": "PDF_curveto", "contents": "PDF_curveto(${1:p}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:x3}, ${7:y3})" },
		{ "trigger": "PDF_define_layer", "contents": "PDF_define_layer(${1:pdfdoc}, ${2:name}, ${3:optlist})" },
		{ "trigger": "PDF_delete", "contents": "PDF_delete(${1:pdfdoc})" },
		{ "trigger": "PDF_delete_pvf", "contents": "PDF_delete_pvf(${1:pdfdoc}, ${2:filename})" },
		{ "trigger": "PDF_delete_table", "contents": "PDF_delete_table(${1:pdfdoc}, ${2:table}, ${3:optlist})" },
		{ "trigger": "PDF_delete_textflow", "contents": "PDF_delete_textflow(${1:pdfdoc}, ${2:textflow})" },
		{ "trigger": "PDF_encoding_set_char", "contents": "PDF_encoding_set_char(${1:pdfdoc}, ${2:encoding}, ${3:slot}, ${4:glyphname}, ${5:uv})" },
		{ "trigger": "PDF_end_document", "contents": "PDF_end_document(${1:pdfdoc}, ${2:optlist})" },
		{ "trigger": "PDF_end_font", "contents": "PDF_end_font(${1:pdfdoc})" },
		{ "trigger": "PDF_end_glyph", "contents": "PDF_end_glyph(${1:pdfdoc})" },
		{ "trigger": "PDF_end_item", "contents": "PDF_end_item(${1:pdfdoc}, ${2:id})" },
		{ "trigger": "PDF_end_layer", "contents": "PDF_end_layer(${1:pdfdoc})" },
		{ "trigger": "PDF_end_page", "contents": "PDF_end_page(${1:p})" },
		{ "trigger": "PDF_end_page_ext", "contents": "PDF_end_page_ext(${1:pdfdoc}, ${2:optlist})" },
		{ "trigger": "PDF_end_pattern", "contents": "PDF_end_pattern(${1:p})" },
		{ "trigger": "PDF_end_template", "contents": "PDF_end_template(${1:p})" },
		{ "trigger": "PDF_endpath", "contents": "PDF_endpath(${1:p})" },
		{ "trigger": "PDF_fill", "contents": "PDF_fill(${1:p})" },
		{ "trigger": "PDF_fill_imageblock", "contents": "PDF_fill_imageblock(${1:pdfdoc}, ${2:page}, ${3:blockname}, ${4:image}, ${5:optlist})" },
		{ "trigger": "PDF_fill_pdfblock", "contents": "PDF_fill_pdfblock(${1:pdfdoc}, ${2:page}, ${3:blockname}, ${4:contents}, ${5:optlist})" },
		{ "trigger": "PDF_fill_stroke", "contents": "PDF_fill_stroke(${1:p})" },
		{ "trigger": "PDF_fill_textblock", "contents": "PDF_fill_textblock(${1:pdfdoc}, ${2:page}, ${3:blockname}, ${4:text}, ${5:optlist})" },
		{ "trigger": "PDF_findfont", "contents": "PDF_findfont(${1:p}, ${2:fontname}, ${3:encoding}, ${4:embed})" },
		{ "trigger": "PDF_fit_image", "contents": "PDF_fit_image(${1:pdfdoc}, ${2:image}, ${3:x}, ${4:y}, ${5:optlist})" },
		{ "trigger": "PDF_fit_pdi_page", "contents": "PDF_fit_pdi_page(${1:pdfdoc}, ${2:page}, ${3:x}, ${4:y}, ${5:optlist})" },
		{ "trigger": "PDF_fit_table", "contents": "PDF_fit_table(${1:pdfdoc}, ${2:table}, ${3:llx}, ${4:lly}, ${5:urx}, ${6:ury}, ${7:optlist})" },
		{ "trigger": "PDF_fit_textflow", "contents": "PDF_fit_textflow(${1:pdfdoc}, ${2:textflow}, ${3:llx}, ${4:lly}, ${5:urx}, ${6:ury}, ${7:optlist})" },
		{ "trigger": "PDF_fit_textline", "contents": "PDF_fit_textline(${1:pdfdoc}, ${2:text}, ${3:x}, ${4:y}, ${5:optlist})" },
		{ "trigger": "PDF_get_apiname", "contents": "PDF_get_apiname(${1:pdfdoc})" },
		{ "trigger": "PDF_get_buffer", "contents": "PDF_get_buffer(${1:p})" },
		{ "trigger": "PDF_get_errmsg", "contents": "PDF_get_errmsg(${1:pdfdoc})" },
		{ "trigger": "PDF_get_errnum", "contents": "PDF_get_errnum(${1:pdfdoc})" },
		{ "trigger": "PDF_get_font", "contents": "PDF_get_font()" },
		{ "trigger": "PDF_get_fontname", "contents": "PDF_get_fontname()" },
		{ "trigger": "PDF_get_fontsize", "contents": "PDF_get_fontsize()" },
		{ "trigger": "PDF_get_image_height", "contents": "PDF_get_image_height()" },
		{ "trigger": "PDF_get_image_width", "contents": "PDF_get_image_width()" },
		{ "trigger": "PDF_get_majorversion", "contents": "PDF_get_majorversion(${1:oid})" },
		{ "trigger": "PDF_get_minorversion", "contents": "PDF_get_minorversion(${1:oid})" },
		{ "trigger": "PDF_get_parameter", "contents": "PDF_get_parameter(${1:p}, ${2:key}, ${3:modifier})" },
		{ "trigger": "PDF_get_pdi_parameter", "contents": "PDF_get_pdi_parameter(${1:p}, ${2:key}, ${3:doc}, ${4:page}, ${5:reserved})" },
		{ "trigger": "PDF_get_pdi_value", "contents": "PDF_get_pdi_value(${1:p}, ${2:key}, ${3:doc}, ${4:page}, ${5:reserved})" },
		{ "trigger": "PDF_get_value", "contents": "PDF_get_value(${1:p}, ${2:key}, ${3:modifier})" },
		{ "trigger": "PDF_info_font", "contents": "PDF_info_font(${1:pdfdoc}, ${2:font}, ${3:keyword}, ${4:optlist})" },
		{ "trigger": "PDF_info_matchbox", "contents": "PDF_info_matchbox(${1:pdfdoc}, ${2:boxname}, ${3:num}, ${4:keyword})" },
		{ "trigger": "PDF_info_table", "contents": "PDF_info_table(${1:pdfdoc}, ${2:table}, ${3:keyword})" },
		{ "trigger": "PDF_info_textflow", "contents": "PDF_info_textflow(${1:pdfdoc}, ${2:textflow}, ${3:keyword})" },
		{ "trigger": "PDF_info_textline", "contents": "PDF_info_textline(${1:pdfdoc}, ${2:text}, ${3:keyword}, ${4:optlist})" },
		{ "trigger": "PDF_initgraphics", "contents": "PDF_initgraphics(${1:p})" },
		{ "trigger": "PDF_lineto", "contents": "PDF_lineto(${1:p}, ${2:x}, ${3:y})" },
		{ "trigger": "PDF_load_3ddata", "contents": "PDF_load_3ddata(${1:pdfdoc}, ${2:filename}, ${3:optlist})" },
		{ "trigger": "PDF_load_font", "contents": "PDF_load_font(${1:pdfdoc}, ${2:fontname}, ${3:encoding}, ${4:optlist})" },
		{ "trigger": "PDF_load_iccprofile", "contents": "PDF_load_iccprofile(${1:pdfdoc}, ${2:profilename}, ${3:optlist})" },
		{ "trigger": "PDF_load_image", "contents": "PDF_load_image(${1:pdfdoc}, ${2:imagetype}, ${3:filename}, ${4:optlist})" },
		{ "trigger": "PDF_makespotcolor", "contents": "PDF_makespotcolor(${1:p}, ${2:spotname})" },
		{ "trigger": "PDF_moveto", "contents": "PDF_moveto(${1:p}, ${2:x}, ${3:y})" },
		{ "trigger": "PDF_new", "contents": "PDF_new(${1:oid})" },
		{ "trigger": "PDF_open_ccitt", "contents": "PDF_open_ccitt(${1:pdfdoc}, ${2:filename}, ${3:width}, ${4:height}, ${5:BitReverse}, ${6:k}, ${7:Blackls1})" },
		{ "trigger": "PDF_open_file", "contents": "PDF_open_file(${1:p}, ${2:filename})" },
		{ "trigger": "PDF_open_gif", "contents": "PDF_open_gif()" },
		{ "trigger": "PDF_open_image", "contents": "PDF_open_image(${1:p}, ${2:imagetype}, ${3:source}, ${4:data}, ${5:length}, ${6:width}, ${7:height}, ${8:components}, ${9:bpc}, ${10:params})" },
		{ "trigger": "PDF_open_image_file", "contents": "PDF_open_image_file(${1:p}, ${2:imagetype}, ${3:filename}, ${4:stringparam}, ${5:intparam})" },
		{ "trigger": "PDF_open_jpeg", "contents": "PDF_open_jpeg()" },
		{ "trigger": "PDF_open_memory_image", "contents": "PDF_open_memory_image(${1:p}, ${2:image})" },
		{ "trigger": "PDF_open_pdi", "contents": "PDF_open_pdi(${1:pdfdoc}, ${2:filename}, ${3:optlist}, ${4:len})" },
		{ "trigger": "PDF_open_pdi_document", "contents": "PDF_open_pdi_document(${1:p}, ${2:filename}, ${3:optlist})" },
		{ "trigger": "PDF_open_pdi_page", "contents": "PDF_open_pdi_page(${1:p}, ${2:doc}, ${3:pagenumber}, ${4:optlist})" },
		{ "trigger": "PDF_open_tiff", "contents": "PDF_open_tiff()" },
		{ "trigger": "PDF_pcos_get_number", "contents": "PDF_pcos_get_number(${1:p}, ${2:doc}, ${3:path})" },
		{ "trigger": "PDF_pcos_get_stream", "contents": "PDF_pcos_get_stream(${1:p}, ${2:doc}, ${3:optlist}, ${4:path})" },
		{ "trigger": "PDF_pcos_get_string", "contents": "PDF_pcos_get_string(${1:p}, ${2:doc}, ${3:path})" },
		{ "trigger": "PDF_place_image", "contents": "PDF_place_image(${1:pdfdoc}, ${2:image}, ${3:x}, ${4:y}, ${5:scale})" },
		{ "trigger": "PDF_place_pdi_page", "contents": "PDF_place_pdi_page(${1:pdfdoc}, ${2:page}, ${3:x}, ${4:y}, ${5:sx}, ${6:sy})" },
		{ "trigger": "PDF_process_pdi", "contents": "PDF_process_pdi(${1:pdfdoc}, ${2:doc}, ${3:page}, ${4:optlist})" },
		{ "trigger": "PDF_rect", "contents": "PDF_rect(${1:p}, ${2:x}, ${3:y}, ${4:width}, ${5:height})" },
		{ "trigger": "PDF_restore", "contents": "PDF_restore(${1:p})" },
		{ "trigger": "PDF_resume_page", "contents": "PDF_resume_page(${1:pdfdoc}, ${2:optlist})" },
		{ "trigger": "PDF_rotate", "contents": "PDF_rotate(${1:p}, ${2:phi})" },
		{ "trigger": "PDF_save", "contents": "PDF_save(${1:p})" },
		{ "trigger": "PDF_scale", "contents": "PDF_scale(${1:p}, ${2:sx}, ${3:sy})" },
		{ "trigger": "PDF_set_border_color", "contents": "PDF_set_border_color(${1:p}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "PDF_set_border_dash", "contents": "PDF_set_border_dash(${1:pdfdoc}, ${2:black}, ${3:white})" },
		{ "trigger": "PDF_set_border_style", "contents": "PDF_set_border_style(${1:pdfdoc}, ${2:style}, ${3:width})" },
		{ "trigger": "PDF_set_char_spacing", "contents": "PDF_set_char_spacing()" },
		{ "trigger": "PDF_set_duration", "contents": "PDF_set_duration()" },
		{ "trigger": "PDF_set_gstate", "contents": "PDF_set_gstate(${1:pdfdoc}, ${2:gstate})" },
		{ "trigger": "PDF_set_horiz_scaling", "contents": "PDF_set_horiz_scaling()" },
		{ "trigger": "PDF_set_info", "contents": "PDF_set_info(${1:p}, ${2:key}, ${3:value})" },
		{ "trigger": "PDF_set_info_author", "contents": "PDF_set_info_author()" },
		{ "trigger": "PDF_set_info_creator", "contents": "PDF_set_info_creator()" },
		{ "trigger": "PDF_set_info_keywords", "contents": "PDF_set_info_keywords()" },
		{ "trigger": "PDF_set_info_subject", "contents": "PDF_set_info_subject()" },
		{ "trigger": "PDF_set_info_title", "contents": "PDF_set_info_title()" },
		{ "trigger": "PDF_set_layer_dependency", "contents": "PDF_set_layer_dependency(${1:pdfdoc}, ${2:type}, ${3:optlist})" },
		{ "trigger": "PDF_set_leading", "contents": "PDF_set_leading()" },
		{ "trigger": "PDF_set_parameter", "contents": "PDF_set_parameter(${1:p}, ${2:key}, ${3:value})" },
		{ "trigger": "PDF_set_text_matrix", "contents": "PDF_set_text_matrix()" },
		{ "trigger": "PDF_set_text_pos", "contents": "PDF_set_text_pos(${1:p}, ${2:x}, ${3:y})" },
		{ "trigger": "PDF_set_text_rendering", "contents": "PDF_set_text_rendering()" },
		{ "trigger": "PDF_set_text_rise", "contents": "PDF_set_text_rise()" },
		{ "trigger": "PDF_set_value", "contents": "PDF_set_value(${1:p}, ${2:key}, ${3:value})" },
		{ "trigger": "PDF_set_word_spacing", "contents": "PDF_set_word_spacing()" },
		{ "trigger": "PDF_setcolor", "contents": "PDF_setcolor(${1:p}, ${2:fstype}, ${3:colorspace}, ${4:c1}, ${5:c2}, ${6:c3}, ${7:c4})" },
		{ "trigger": "PDF_setdash", "contents": "PDF_setdash(${1:pdfdoc}, ${2:b}, ${3:w})" },
		{ "trigger": "PDF_setdashpattern", "contents": "PDF_setdashpattern(${1:pdfdoc}, ${2:optlist})" },
		{ "trigger": "PDF_setflat", "contents": "PDF_setflat(${1:pdfdoc}, ${2:flatness})" },
		{ "trigger": "PDF_setfont", "contents": "PDF_setfont(${1:pdfdoc}, ${2:font}, ${3:fontsize})" },
		{ "trigger": "PDF_setgray", "contents": "PDF_setgray(${1:p}, ${2:g})" },
		{ "trigger": "PDF_setgray_fill", "contents": "PDF_setgray_fill(${1:p}, ${2:g})" },
		{ "trigger": "PDF_setgray_stroke", "contents": "PDF_setgray_stroke(${1:p}, ${2:g})" },
		{ "trigger": "PDF_setlinecap", "contents": "PDF_setlinecap(${1:p}, ${2:linecap})" },
		{ "trigger": "PDF_setlinejoin", "contents": "PDF_setlinejoin(${1:p}, ${2:value})" },
		{ "trigger": "PDF_setlinewidth", "contents": "PDF_setlinewidth(${1:p}, ${2:width})" },
		{ "trigger": "PDF_setmatrix", "contents": "PDF_setmatrix(${1:p}, ${2:a}, ${3:b}, ${4:c}, ${5:d}, ${6:e}, ${7:f})" },
		{ "trigger": "PDF_setmiterlimit", "contents": "PDF_setmiterlimit(${1:pdfdoc}, ${2:miter})" },
		{ "trigger": "PDF_setpolydash", "contents": "PDF_setpolydash()" },
		{ "trigger": "PDF_setrgbcolor", "contents": "PDF_setrgbcolor(${1:p}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "PDF_setrgbcolor_fill", "contents": "PDF_setrgbcolor_fill(${1:p}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "PDF_setrgbcolor_stroke", "contents": "PDF_setrgbcolor_stroke(${1:p}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "PDF_shading", "contents": "PDF_shading(${1:pdfdoc}, ${2:shtype}, ${3:x0}, ${4:y0}, ${5:x1}, ${6:y1}, ${7:c1}, ${8:c2}, ${9:c3}, ${10:c4}, ${11:optlist})" },
		{ "trigger": "PDF_shading_pattern", "contents": "PDF_shading_pattern(${1:pdfdoc}, ${2:shading}, ${3:optlist})" },
		{ "trigger": "PDF_shfill", "contents": "PDF_shfill(${1:pdfdoc}, ${2:shading})" },
		{ "trigger": "PDF_show", "contents": "PDF_show(${1:pdfdoc}, ${2:text})" },
		{ "trigger": "PDF_show_boxed", "contents": "PDF_show_boxed(${1:p}, ${2:text}, ${3:left}, ${4:top}, ${5:width}, ${6:height}, ${7:mode}, ${8:feature})" },
		{ "trigger": "PDF_show_xy", "contents": "PDF_show_xy(${1:p}, ${2:text}, ${3:x}, ${4:y})" },
		{ "trigger": "PDF_skew", "contents": "PDF_skew(${1:p}, ${2:alpha}, ${3:beta})" },
		{ "trigger": "PDF_stringwidth", "contents": "PDF_stringwidth(${1:p}, ${2:text}, ${3:font}, ${4:fontsize})" },
		{ "trigger": "PDF_stroke", "contents": "PDF_stroke(${1:p})" },
		{ "trigger": "PDF_suspend_page", "contents": "PDF_suspend_page(${1:pdfdoc}, ${2:optlist})" },
		{ "trigger": "PDF_translate", "contents": "PDF_translate(${1:p}, ${2:tx}, ${3:ty})" },
		{ "trigger": "PDF_utf16_to_utf8", "contents": "PDF_utf16_to_utf8(${1:pdfdoc}, ${2:utf16string})" },
		{ "trigger": "PDF_utf32_to_utf16", "contents": "PDF_utf32_to_utf16(${1:pdfdoc}, ${2:utf32string}, ${3:ordering})" },
		{ "trigger": "PDF_utf8_to_utf16", "contents": "PDF_utf8_to_utf16(${1:pdfdoc}, ${2:utf8string}, ${3:ordering})" },
		{ "trigger": "pfsockopen", "contents": "pfsockopen(${1:hostname})" },
		{ "trigger": "pg_affected_rows", "contents": "pg_affected_rows(${1:result})" },
		{ "trigger": "pg_cancel_query", "contents": "pg_cancel_query(${1:connection})" },
		{ "trigger": "pg_client_encoding", "contents": "pg_client_encoding()" },
		{ "trigger": "pg_close", "contents": "pg_close()" },
		{ "trigger": "pg_connect", "contents": "pg_connect(${1:connection_string})" },
		{ "trigger": "pg_connection_busy", "contents": "pg_connection_busy(${1:connection})" },
		{ "trigger": "pg_connection_reset", "contents": "pg_connection_reset(${1:connection})" },
		{ "trigger": "pg_connection_status", "contents": "pg_connection_status(${1:connection})" },
		{ "trigger": "pg_convert", "contents": "pg_convert(${1:connection}, ${2:table_name}, ${3:assoc_array})" },
		{ "trigger": "pg_copy_from", "contents": "pg_copy_from(${1:connection}, ${2:table_name}, ${3:rows})" },
		{ "trigger": "pg_copy_to", "contents": "pg_copy_to(${1:connection}, ${2:table_name})" },
		{ "trigger": "pg_dbname", "contents": "pg_dbname()" },
		{ "trigger": "pg_delete", "contents": "pg_delete(${1:connection}, ${2:table_name}, ${3:assoc_array})" },
		{ "trigger": "pg_end_copy", "contents": "pg_end_copy()" },
		{ "trigger": "pg_escape_bytea", "contents": "pg_escape_bytea()" },
		{ "trigger": "pg_escape_string", "contents": "pg_escape_string()" },
		{ "trigger": "pg_execute", "contents": "pg_execute()" },
		{ "trigger": "pg_fetch_all", "contents": "pg_fetch_all(${1:result})" },
		{ "trigger": "pg_fetch_all_columns", "contents": "pg_fetch_all_columns(${1:result})" },
		{ "trigger": "pg_fetch_array", "contents": "pg_fetch_array(${1:result})" },
		{ "trigger": "pg_fetch_assoc", "contents": "pg_fetch_assoc(${1:result})" },
		{ "trigger": "pg_fetch_object", "contents": "pg_fetch_object(${1:result})" },
		{ "trigger": "pg_fetch_result", "contents": "pg_fetch_result(${1:result}, ${2:row}, ${3:field})" },
		{ "trigger": "pg_fetch_row", "contents": "pg_fetch_row(${1:result})" },
		{ "trigger": "pg_field_is_null", "contents": "pg_field_is_null(${1:result}, ${2:row}, ${3:field})" },
		{ "trigger": "pg_field_name", "contents": "pg_field_name(${1:result}, ${2:field_number})" },
		{ "trigger": "pg_field_num", "contents": "pg_field_num(${1:result}, ${2:field_name})" },
		{ "trigger": "pg_field_prtlen", "contents": "pg_field_prtlen(${1:result}, ${2:row_number}, ${3:field_name_or_number})" },
		{ "trigger": "pg_field_size", "contents": "pg_field_size(${1:result}, ${2:field_number})" },
		{ "trigger": "pg_field_table", "contents": "pg_field_table(${1:result}, ${2:field_number})" },
		{ "trigger": "pg_field_type", "contents": "pg_field_type(${1:result}, ${2:field_number})" },
		{ "trigger": "pg_field_type_oid", "contents": "pg_field_type_oid(${1:result}, ${2:field_number})" },
		{ "trigger": "pg_free_result", "contents": "pg_free_result(${1:result})" },
		{ "trigger": "pg_get_notify", "contents": "pg_get_notify(${1:connection})" },
		{ "trigger": "pg_get_pid", "contents": "pg_get_pid(${1:connection})" },
		{ "trigger": "pg_get_result", "contents": "pg_get_result()" },
		{ "trigger": "pg_host", "contents": "pg_host()" },
		{ "trigger": "pg_insert", "contents": "pg_insert(${1:connection}, ${2:table_name}, ${3:assoc_array})" },
		{ "trigger": "pg_last_error", "contents": "pg_last_error()" },
		{ "trigger": "pg_last_notice", "contents": "pg_last_notice(${1:connection})" },
		{ "trigger": "pg_last_oid", "contents": "pg_last_oid(${1:result})" },
		{ "trigger": "pg_lo_close", "contents": "pg_lo_close(${1:large_object})" },
		{ "trigger": "pg_lo_create", "contents": "pg_lo_create()" },
		{ "trigger": "pg_lo_export", "contents": "pg_lo_export()" },
		{ "trigger": "pg_lo_import", "contents": "pg_lo_import()" },
		{ "trigger": "pg_lo_open", "contents": "pg_lo_open(${1:connection}, ${2:oid}, ${3:mode})" },
		{ "trigger": "pg_lo_read", "contents": "pg_lo_read(${1:large_object})" },
		{ "trigger": "pg_lo_read_all", "contents": "pg_lo_read_all(${1:large_object})" },
		{ "trigger": "pg_lo_seek", "contents": "pg_lo_seek(${1:large_object}, ${2:offset})" },
		{ "trigger": "pg_lo_tell", "contents": "pg_lo_tell(${1:large_object})" },
		{ "trigger": "pg_lo_unlink", "contents": "pg_lo_unlink(${1:connection}, ${2:oid})" },
		{ "trigger": "pg_lo_write", "contents": "pg_lo_write(${1:large_object}, ${2:data})" },
		{ "trigger": "pg_meta_data", "contents": "pg_meta_data(${1:connection}, ${2:table_name})" },
		{ "trigger": "pg_num_fields", "contents": "pg_num_fields(${1:result})" },
		{ "trigger": "pg_num_rows", "contents": "pg_num_rows(${1:result})" },
		{ "trigger": "pg_options", "contents": "pg_options()" },
		{ "trigger": "pg_parameter_status", "contents": "pg_parameter_status()" },
		{ "trigger": "pg_pconnect", "contents": "pg_pconnect(${1:connection_string})" },
		{ "trigger": "pg_ping", "contents": "pg_ping()" },
		{ "trigger": "pg_port", "contents": "pg_port()" },
		{ "trigger": "pg_prepare", "contents": "pg_prepare()" },
		{ "trigger": "pg_put_line", "contents": "pg_put_line()" },
		{ "trigger": "pg_query", "contents": "pg_query()" },
		{ "trigger": "pg_query_params", "contents": "pg_query_params()" },
		{ "trigger": "pg_result_error", "contents": "pg_result_error(${1:result})" },
		{ "trigger": "pg_result_error_field", "contents": "pg_result_error_field(${1:result}, ${2:fieldcode})" },
		{ "trigger": "pg_result_seek", "contents": "pg_result_seek(${1:result}, ${2:offset})" },
		{ "trigger": "pg_result_status", "contents": "pg_result_status(${1:result})" },
		{ "trigger": "pg_select", "contents": "pg_select(${1:connection}, ${2:table_name}, ${3:assoc_array})" },
		{ "trigger": "pg_send_execute", "contents": "pg_send_execute(${1:connection}, ${2:stmtname}, ${3:params})" },
		{ "trigger": "pg_send_prepare", "contents": "pg_send_prepare(${1:connection}, ${2:stmtname}, ${3:query})" },
		{ "trigger": "pg_send_query", "contents": "pg_send_query(${1:connection}, ${2:query})" },
		{ "trigger": "pg_send_query_params", "contents": "pg_send_query_params(${1:connection}, ${2:query}, ${3:params})" },
		{ "trigger": "pg_set_client_encoding", "contents": "pg_set_client_encoding()" },
		{ "trigger": "pg_set_error_verbosity", "contents": "pg_set_error_verbosity()" },
		{ "trigger": "pg_trace", "contents": "pg_trace(${1:pathname})" },
		{ "trigger": "pg_transaction_status", "contents": "pg_transaction_status(${1:connection})" },
		{ "trigger": "pg_tty", "contents": "pg_tty()" },
		{ "trigger": "pg_unescape_bytea", "contents": "pg_unescape_bytea(${1:data})" },
		{ "trigger": "pg_untrace", "contents": "pg_untrace()" },
		{ "trigger": "pg_update", "contents": "pg_update(${1:connection}, ${2:table_name}, ${3:data}, ${4:condition})" },
		{ "trigger": "pg_version", "contents": "pg_version()" },
		{ "trigger": "php_check_syntax", "contents": "php_check_syntax(${1:filename})" },
		{ "trigger": "php_ini_loaded_file", "contents": "php_ini_loaded_file(${1:oid})" },
		{ "trigger": "php_ini_scanned_files", "contents": "php_ini_scanned_files(${1:oid})" },
		{ "trigger": "php_logo_guid", "contents": "php_logo_guid(${1:oid})" },
		{ "trigger": "php_sapi_name", "contents": "php_sapi_name(${1:oid})" },
		{ "trigger": "php_strip_whitespace", "contents": "php_strip_whitespace(${1:filename})" },
		{ "trigger": "php_uname", "contents": "php_uname()" },
		{ "trigger": "phpcredits", "contents": "phpcredits()" },
		{ "trigger": "phpinfo", "contents": "phpinfo()" },
		{ "trigger": "phpversion", "contents": "phpversion()" },
		{ "trigger": "pi", "contents": "pi(${1:oid})" },
		{ "trigger": "png2wbmp", "contents": "png2wbmp(${1:pngname}, ${2:wbmpname}, ${3:dest_height}, ${4:dest_width}, ${5:threshold})" },
		{ "trigger": "popen", "contents": "popen(${1:command}, ${2:mode})" },
		{ "trigger": "pos", "contents": "pos()" },
		{ "trigger": "posix_access", "contents": "posix_access(${1:file})" },
		{ "trigger": "posix_ctermid", "contents": "posix_ctermid(${1:oid})" },
		{ "trigger": "posix_errno", "contents": "posix_errno()" },
		{ "trigger": "posix_get_last_error", "contents": "posix_get_last_error(${1:oid})" },
		{ "trigger": "posix_getcwd", "contents": "posix_getcwd(${1:oid})" },
		{ "trigger": "posix_getegid", "contents": "posix_getegid(${1:oid})" },
		{ "trigger": "posix_geteuid", "contents": "posix_geteuid(${1:oid})" },
		{ "trigger": "posix_getgid", "contents": "posix_getgid(${1:oid})" },
		{ "trigger": "posix_getgrgid", "contents": "posix_getgrgid(${1:gid})" },
		{ "trigger": "posix_getgrnam", "contents": "posix_getgrnam(${1:name})" },
		{ "trigger": "posix_getgroups", "contents": "posix_getgroups(${1:oid})" },
		{ "trigger": "posix_getlogin", "contents": "posix_getlogin(${1:oid})" },
		{ "trigger": "posix_getpgid", "contents": "posix_getpgid(${1:pid})" },
		{ "trigger": "posix_getpgrp", "contents": "posix_getpgrp(${1:oid})" },
		{ "trigger": "posix_getpid", "contents": "posix_getpid(${1:oid})" },
		{ "trigger": "posix_getppid", "contents": "posix_getppid(${1:oid})" },
		{ "trigger": "posix_getpwnam", "contents": "posix_getpwnam(${1:username})" },
		{ "trigger": "posix_getpwuid", "contents": "posix_getpwuid(${1:uid})" },
		{ "trigger": "posix_getrlimit", "contents": "posix_getrlimit(${1:oid})" },
		{ "trigger": "posix_getsid", "contents": "posix_getsid(${1:pid})" },
		{ "trigger": "posix_getuid", "contents": "posix_getuid(${1:oid})" },
		{ "trigger": "posix_initgroups", "contents": "posix_initgroups(${1:name}, ${2:base_group_id})" },
		{ "trigger": "posix_isatty", "contents": "posix_isatty(${1:fd})" },
		{ "trigger": "posix_kill", "contents": "posix_kill(${1:pid}, ${2:sig})" },
		{ "trigger": "posix_mkfifo", "contents": "posix_mkfifo(${1:pathname}, ${2:mode})" },
		{ "trigger": "posix_mknod", "contents": "posix_mknod(${1:pathname}, ${2:mode})" },
		{ "trigger": "posix_setegid", "contents": "posix_setegid(${1:gid})" },
		{ "trigger": "posix_seteuid", "contents": "posix_seteuid(${1:uid})" },
		{ "trigger": "posix_setgid", "contents": "posix_setgid(${1:gid})" },
		{ "trigger": "posix_setpgid", "contents": "posix_setpgid(${1:pid}, ${2:pgid})" },
		{ "trigger": "posix_setsid", "contents": "posix_setsid(${1:oid})" },
		{ "trigger": "posix_setuid", "contents": "posix_setuid(${1:uid})" },
		{ "trigger": "posix_strerror", "contents": "posix_strerror(${1:errno})" },
		{ "trigger": "posix_times", "contents": "posix_times(${1:oid})" },
		{ "trigger": "posix_ttyname", "contents": "posix_ttyname(${1:fd})" },
		{ "trigger": "posix_uname", "contents": "posix_uname(${1:oid})" },
		{ "trigger": "pow", "contents": "pow(${1:base}, ${2:exp})" },
		{ "trigger": "preg_filter", "contents": "preg_filter(${1:pattern}, ${2:replacement}, ${3:subject})" },
		{ "trigger": "preg_grep", "contents": "preg_grep(${1:pattern}, ${2:input})" },
		{ "trigger": "preg_last_error", "contents": "preg_last_error(${1:oid})" },
		{ "trigger": "preg_match", "contents": "preg_match(${1:pattern}, ${2:subject})" },
		{ "trigger": "preg_match_all", "contents": "preg_match_all(${1:pattern}, ${2:subject}, ${3:matches})" },
		{ "trigger": "preg_quote", "contents": "preg_quote(${1:str})" },
		{ "trigger": "preg_replace", "contents": "preg_replace(${1:pattern}, ${2:replacement}, ${3:subject})" },
		{ "trigger": "preg_replace_callback", "contents": "preg_replace_callback(${1:pattern}, ${2:callback}, ${3:subject})" },
		{ "trigger": "preg_split", "contents": "preg_split(${1:pattern}, ${2:subject})" },
		{ "trigger": "prev", "contents": "prev(${1:array})" },
		{ "trigger": "print", "contents": "print(${1:arg})" },
		{ "trigger": "print_r", "contents": "print_r(${1:expression})" },
		{ "trigger": "printer_abort", "contents": "printer_abort(${1:printer_handle})" },
		{ "trigger": "printer_close", "contents": "printer_close(${1:printer_handle})" },
		{ "trigger": "printer_create_brush", "contents": "printer_create_brush(${1:style}, ${2:color})" },
		{ "trigger": "printer_create_dc", "contents": "printer_create_dc(${1:printer_handle})" },
		{ "trigger": "printer_create_font", "contents": "printer_create_font(${1:face}, ${2:height}, ${3:width}, ${4:font_weight}, ${5:italic}, ${6:underline}, ${7:strikeout}, ${8:orientation})" },
		{ "trigger": "printer_create_pen", "contents": "printer_create_pen(${1:style}, ${2:width}, ${3:color})" },
		{ "trigger": "printer_delete_brush", "contents": "printer_delete_brush(${1:brush_handle})" },
		{ "trigger": "printer_delete_dc", "contents": "printer_delete_dc(${1:printer_handle})" },
		{ "trigger": "printer_delete_font", "contents": "printer_delete_font(${1:font_handle})" },
		{ "trigger": "printer_delete_pen", "contents": "printer_delete_pen(${1:pen_handle})" },
		{ "trigger": "printer_draw_bmp", "contents": "printer_draw_bmp(${1:printer_handle}, ${2:filename}, ${3:x}, ${4:y})" },
		{ "trigger": "printer_draw_chord", "contents": "printer_draw_chord(${1:printer_handle}, ${2:rec_x}, ${3:rec_y}, ${4:rec_x1}, ${5:rec_y1}, ${6:rad_x}, ${7:rad_y}, ${8:rad_x1}, ${9:rad_y1})" },
		{ "trigger": "printer_draw_elipse", "contents": "printer_draw_elipse(${1:printer_handle}, ${2:ul_x}, ${3:ul_y}, ${4:lr_x}, ${5:lr_y})" },
		{ "trigger": "printer_draw_line", "contents": "printer_draw_line(${1:printer_handle}, ${2:from_x}, ${3:from_y}, ${4:to_x}, ${5:to_y})" },
		{ "trigger": "printer_draw_pie", "contents": "printer_draw_pie(${1:printer_handle}, ${2:rec_x}, ${3:rec_y}, ${4:rec_x1}, ${5:rec_y1}, ${6:rad1_x}, ${7:rad1_y}, ${8:rad2_x}, ${9:rad2_y})" },
		{ "trigger": "printer_draw_rectangle", "contents": "printer_draw_rectangle(${1:printer_handle}, ${2:ul_x}, ${3:ul_y}, ${4:lr_x}, ${5:lr_y})" },
		{ "trigger": "printer_draw_roundrect", "contents": "printer_draw_roundrect(${1:printer_handle}, ${2:ul_x}, ${3:ul_y}, ${4:lr_x}, ${5:lr_y}, ${6:width}, ${7:height})" },
		{ "trigger": "printer_draw_text", "contents": "printer_draw_text(${1:printer_handle}, ${2:text}, ${3:x}, ${4:y})" },
		{ "trigger": "printer_end_doc", "contents": "printer_end_doc(${1:printer_handle})" },
		{ "trigger": "printer_end_page", "contents": "printer_end_page(${1:printer_handle})" },
		{ "trigger": "printer_get_option", "contents": "printer_get_option(${1:printer_handle}, ${2:option})" },
		{ "trigger": "printer_list", "contents": "printer_list(${1:enumtype})" },
		{ "trigger": "printer_logical_fontheight", "contents": "printer_logical_fontheight(${1:printer_handle}, ${2:height})" },
		{ "trigger": "printer_open", "contents": "printer_open()" },
		{ "trigger": "printer_select_brush", "contents": "printer_select_brush(${1:printer_handle}, ${2:brush_handle})" },
		{ "trigger": "printer_select_font", "contents": "printer_select_font(${1:printer_handle}, ${2:font_handle})" },
		{ "trigger": "printer_select_pen", "contents": "printer_select_pen(${1:printer_handle}, ${2:pen_handle})" },
		{ "trigger": "printer_set_option", "contents": "printer_set_option(${1:printer_handle}, ${2:option}, ${3:value})" },
		{ "trigger": "printer_start_doc", "contents": "printer_start_doc(${1:printer_handle})" },
		{ "trigger": "printer_start_page", "contents": "printer_start_page(${1:printer_handle})" },
		{ "trigger": "printer_write", "contents": "printer_write(${1:printer_handle}, ${2:content})" },
		{ "trigger": "printf", "contents": "printf(${1:format})" },
		{ "trigger": "proc_close", "contents": "proc_close(${1:process})" },
		{ "trigger": "proc_get_status", "contents": "proc_get_status(${1:process})" },
		{ "trigger": "proc_nice", "contents": "proc_nice(${1:increment})" },
		{ "trigger": "proc_open", "contents": "proc_open(${1:cmd}, ${2:descriptorspec}, ${3:pipes})" },
		{ "trigger": "proc_terminate", "contents": "proc_terminate(${1:process})" },
		{ "trigger": "property_exists", "contents": "property_exists(${1:class}, ${2:property})" },
		{ "trigger": "ps_add_bookmark", "contents": "ps_add_bookmark(${1:psdoc}, ${2:text})" },
		{ "trigger": "ps_add_launchlink", "contents": "ps_add_launchlink(${1:psdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:filename})" },
		{ "trigger": "ps_add_locallink", "contents": "ps_add_locallink(${1:psdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:page}, ${7:dest})" },
		{ "trigger": "ps_add_note", "contents": "ps_add_note(${1:psdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:contents}, ${7:title}, ${8:icon}, ${9:open})" },
		{ "trigger": "ps_add_pdflink", "contents": "ps_add_pdflink(${1:psdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:filename}, ${7:page}, ${8:dest})" },
		{ "trigger": "ps_add_weblink", "contents": "ps_add_weblink(${1:psdoc}, ${2:llx}, ${3:lly}, ${4:urx}, ${5:ury}, ${6:url})" },
		{ "trigger": "ps_arc", "contents": "ps_arc(${1:psdoc}, ${2:x}, ${3:y}, ${4:radius}, ${5:alpha}, ${6:beta})" },
		{ "trigger": "ps_arcn", "contents": "ps_arcn(${1:psdoc}, ${2:x}, ${3:y}, ${4:radius}, ${5:alpha}, ${6:beta})" },
		{ "trigger": "ps_begin_page", "contents": "ps_begin_page(${1:psdoc}, ${2:width}, ${3:height})" },
		{ "trigger": "ps_begin_pattern", "contents": "ps_begin_pattern(${1:psdoc}, ${2:width}, ${3:height}, ${4:xstep}, ${5:ystep}, ${6:painttype})" },
		{ "trigger": "ps_begin_template", "contents": "ps_begin_template(${1:psdoc}, ${2:width}, ${3:height})" },
		{ "trigger": "ps_circle", "contents": "ps_circle(${1:psdoc}, ${2:x}, ${3:y}, ${4:radius})" },
		{ "trigger": "ps_clip", "contents": "ps_clip(${1:psdoc})" },
		{ "trigger": "ps_close", "contents": "ps_close(${1:psdoc})" },
		{ "trigger": "ps_close_image", "contents": "ps_close_image(${1:psdoc}, ${2:imageid})" },
		{ "trigger": "ps_closepath", "contents": "ps_closepath(${1:psdoc})" },
		{ "trigger": "ps_closepath_stroke", "contents": "ps_closepath_stroke(${1:psdoc})" },
		{ "trigger": "ps_continue_text", "contents": "ps_continue_text(${1:psdoc}, ${2:text})" },
		{ "trigger": "ps_curveto", "contents": "ps_curveto(${1:psdoc}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:x3}, ${7:y3})" },
		{ "trigger": "ps_delete", "contents": "ps_delete(${1:psdoc})" },
		{ "trigger": "ps_end_page", "contents": "ps_end_page(${1:psdoc})" },
		{ "trigger": "ps_end_pattern", "contents": "ps_end_pattern(${1:psdoc})" },
		{ "trigger": "ps_end_template", "contents": "ps_end_template(${1:psdoc})" },
		{ "trigger": "ps_fill", "contents": "ps_fill(${1:psdoc})" },
		{ "trigger": "ps_fill_stroke", "contents": "ps_fill_stroke(${1:psdoc})" },
		{ "trigger": "ps_findfont", "contents": "ps_findfont(${1:psdoc}, ${2:fontname}, ${3:encoding})" },
		{ "trigger": "ps_get_buffer", "contents": "ps_get_buffer(${1:psdoc})" },
		{ "trigger": "ps_get_parameter", "contents": "ps_get_parameter(${1:psdoc}, ${2:name})" },
		{ "trigger": "ps_get_value", "contents": "ps_get_value(${1:psdoc}, ${2:name})" },
		{ "trigger": "ps_hyphenate", "contents": "ps_hyphenate(${1:psdoc}, ${2:text})" },
		{ "trigger": "ps_include_file", "contents": "ps_include_file(${1:psdoc}, ${2:file})" },
		{ "trigger": "ps_lineto", "contents": "ps_lineto(${1:psdoc}, ${2:x}, ${3:y})" },
		{ "trigger": "ps_makespotcolor", "contents": "ps_makespotcolor(${1:psdoc}, ${2:name})" },
		{ "trigger": "ps_moveto", "contents": "ps_moveto(${1:psdoc}, ${2:x}, ${3:y})" },
		{ "trigger": "ps_new", "contents": "ps_new(${1:oid})" },
		{ "trigger": "ps_open_file", "contents": "ps_open_file(${1:psdoc})" },
		{ "trigger": "ps_open_image", "contents": "ps_open_image(${1:psdoc}, ${2:type}, ${3:source}, ${4:data}, ${5:lenght}, ${6:width}, ${7:height}, ${8:components}, ${9:bpc}, ${10:params})" },
		{ "trigger": "ps_open_image_file", "contents": "ps_open_image_file(${1:psdoc}, ${2:type}, ${3:filename})" },
		{ "trigger": "ps_open_memory_image", "contents": "ps_open_memory_image(${1:psdoc}, ${2:gd})" },
		{ "trigger": "ps_place_image", "contents": "ps_place_image(${1:psdoc}, ${2:imageid}, ${3:x}, ${4:y}, ${5:scale})" },
		{ "trigger": "ps_rect", "contents": "ps_rect(${1:psdoc}, ${2:x}, ${3:y}, ${4:width}, ${5:height})" },
		{ "trigger": "ps_restore", "contents": "ps_restore(${1:psdoc})" },
		{ "trigger": "ps_rotate", "contents": "ps_rotate(${1:psdoc}, ${2:rot})" },
		{ "trigger": "ps_save", "contents": "ps_save(${1:psdoc})" },
		{ "trigger": "ps_scale", "contents": "ps_scale(${1:psdoc}, ${2:x}, ${3:y})" },
		{ "trigger": "ps_set_border_color", "contents": "ps_set_border_color(${1:psdoc}, ${2:red}, ${3:green}, ${4:blue})" },
		{ "trigger": "ps_set_border_dash", "contents": "ps_set_border_dash(${1:psdoc}, ${2:black}, ${3:white})" },
		{ "trigger": "ps_set_border_style", "contents": "ps_set_border_style(${1:psdoc}, ${2:style}, ${3:width})" },
		{ "trigger": "ps_set_info", "contents": "ps_set_info(${1:p}, ${2:key}, ${3:val})" },
		{ "trigger": "ps_set_parameter", "contents": "ps_set_parameter(${1:psdoc}, ${2:name}, ${3:value})" },
		{ "trigger": "ps_set_text_pos", "contents": "ps_set_text_pos(${1:psdoc}, ${2:x}, ${3:y})" },
		{ "trigger": "ps_set_value", "contents": "ps_set_value(${1:psdoc}, ${2:name}, ${3:value})" },
		{ "trigger": "ps_setcolor", "contents": "ps_setcolor(${1:psdoc}, ${2:type}, ${3:colorspace}, ${4:c1}, ${5:c2}, ${6:c3}, ${7:c4})" },
		{ "trigger": "ps_setdash", "contents": "ps_setdash(${1:psdoc}, ${2:on}, ${3:off})" },
		{ "trigger": "ps_setflat", "contents": "ps_setflat(${1:psdoc}, ${2:value})" },
		{ "trigger": "ps_setfont", "contents": "ps_setfont(${1:psdoc}, ${2:fontid}, ${3:size})" },
		{ "trigger": "ps_setgray", "contents": "ps_setgray(${1:psdoc}, ${2:gray})" },
		{ "trigger": "ps_setlinecap", "contents": "ps_setlinecap(${1:psdoc}, ${2:type})" },
		{ "trigger": "ps_setlinejoin", "contents": "ps_setlinejoin(${1:psdoc}, ${2:type})" },
		{ "trigger": "ps_setlinewidth", "contents": "ps_setlinewidth(${1:psdoc}, ${2:width})" },
		{ "trigger": "ps_setmiterlimit", "contents": "ps_setmiterlimit(${1:psdoc}, ${2:value})" },
		{ "trigger": "ps_setoverprintmode", "contents": "ps_setoverprintmode(${1:psdoc}, ${2:mode})" },
		{ "trigger": "ps_setpolydash", "contents": "ps_setpolydash(${1:psdoc}, ${2:arr})" },
		{ "trigger": "ps_shading", "contents": "ps_shading(${1:psdoc}, ${2:type}, ${3:x0}, ${4:y0}, ${5:x1}, ${6:y1}, ${7:c1}, ${8:c2}, ${9:c3}, ${10:c4}, ${11:optlist})" },
		{ "trigger": "ps_shading_pattern", "contents": "ps_shading_pattern(${1:psdoc}, ${2:shadingid}, ${3:optlist})" },
		{ "trigger": "ps_shfill", "contents": "ps_shfill(${1:psdoc}, ${2:shadingid})" },
		{ "trigger": "ps_show", "contents": "ps_show(${1:psdoc}, ${2:text})" },
		{ "trigger": "ps_show2", "contents": "ps_show2(${1:psdoc}, ${2:text}, ${3:len})" },
		{ "trigger": "ps_show_boxed", "contents": "ps_show_boxed(${1:psdoc}, ${2:text}, ${3:left}, ${4:bottom}, ${5:width}, ${6:height}, ${7:hmode})" },
		{ "trigger": "ps_show_xy", "contents": "ps_show_xy(${1:psdoc}, ${2:text}, ${3:x}, ${4:y})" },
		{ "trigger": "ps_show_xy2", "contents": "ps_show_xy2(${1:psdoc}, ${2:text}, ${3:len}, ${4:xcoor}, ${5:ycoor})" },
		{ "trigger": "ps_string_geometry", "contents": "ps_string_geometry(${1:psdoc}, ${2:text})" },
		{ "trigger": "ps_stringwidth", "contents": "ps_stringwidth(${1:psdoc}, ${2:text})" },
		{ "trigger": "ps_stroke", "contents": "ps_stroke(${1:psdoc})" },
		{ "trigger": "ps_symbol", "contents": "ps_symbol(${1:psdoc}, ${2:ord})" },
		{ "trigger": "ps_symbol_name", "contents": "ps_symbol_name(${1:psdoc}, ${2:ord})" },
		{ "trigger": "ps_symbol_width", "contents": "ps_symbol_width(${1:psdoc}, ${2:ord})" },
		{ "trigger": "ps_translate", "contents": "ps_translate(${1:psdoc}, ${2:x}, ${3:y})" },
		{ "trigger": "pspell_add_to_personal", "contents": "pspell_add_to_personal(${1:dictionary_link}, ${2:word})" },
		{ "trigger": "pspell_add_to_session", "contents": "pspell_add_to_session(${1:dictionary_link}, ${2:word})" },
		{ "trigger": "pspell_check", "contents": "pspell_check(${1:dictionary_link}, ${2:word})" },
		{ "trigger": "pspell_clear_session", "contents": "pspell_clear_session(${1:dictionary_link})" },
		{ "trigger": "pspell_config_create", "contents": "pspell_config_create(${1:language})" },
		{ "trigger": "pspell_config_data_dir", "contents": "pspell_config_data_dir(${1:conf}, ${2:directory})" },
		{ "trigger": "pspell_config_dict_dir", "contents": "pspell_config_dict_dir(${1:conf}, ${2:directory})" },
		{ "trigger": "pspell_config_ignore", "contents": "pspell_config_ignore(${1:dictionary_link}, ${2:n})" },
		{ "trigger": "pspell_config_mode", "contents": "pspell_config_mode(${1:dictionary_link}, ${2:mode})" },
		{ "trigger": "pspell_config_personal", "contents": "pspell_config_personal(${1:dictionary_link}, ${2:file})" },
		{ "trigger": "pspell_config_repl", "contents": "pspell_config_repl(${1:dictionary_link}, ${2:file})" },
		{ "trigger": "pspell_config_runtogether", "contents": "pspell_config_runtogether(${1:dictionary_link}, ${2:flag})" },
		{ "trigger": "pspell_config_save_repl", "contents": "pspell_config_save_repl(${1:dictionary_link}, ${2:flag})" },
		{ "trigger": "pspell_new", "contents": "pspell_new(${1:language})" },
		{ "trigger": "pspell_new_config", "contents": "pspell_new_config(${1:config})" },
		{ "trigger": "pspell_new_personal", "contents": "pspell_new_personal(${1:personal}, ${2:language})" },
		{ "trigger": "pspell_save_wordlist", "contents": "pspell_save_wordlist(${1:dictionary_link})" },
		{ "trigger": "pspell_store_replacement", "contents": "pspell_store_replacement(${1:dictionary_link}, ${2:misspelled}, ${3:correct})" },
		{ "trigger": "pspell_suggest", "contents": "pspell_suggest(${1:dictionary_link}, ${2:word})" },
		{ "trigger": "putenv", "contents": "putenv(${1:setting})" },
		{ "trigger": "px_close", "contents": "px_close(${1:pxdoc})" },
		{ "trigger": "px_create_fp", "contents": "px_create_fp(${1:pxdoc}, ${2:file}, ${3:fielddesc})" },
		{ "trigger": "px_date2string", "contents": "px_date2string(${1:pxdoc}, ${2:value}, ${3:format})" },
		{ "trigger": "px_delete", "contents": "px_delete(${1:pxdoc})" },
		{ "trigger": "px_delete_record", "contents": "px_delete_record(${1:pxdoc}, ${2:num})" },
		{ "trigger": "px_get_field", "contents": "px_get_field(${1:pxdoc}, ${2:fieldno})" },
		{ "trigger": "px_get_info", "contents": "px_get_info(${1:pxdoc})" },
		{ "trigger": "px_get_parameter", "contents": "px_get_parameter(${1:pxdoc}, ${2:name})" },
		{ "trigger": "px_get_record", "contents": "px_get_record(${1:pxdoc}, ${2:num})" },
		{ "trigger": "px_get_schema", "contents": "px_get_schema(${1:pxdoc})" },
		{ "trigger": "px_get_value", "contents": "px_get_value(${1:pxdoc}, ${2:name})" },
		{ "trigger": "px_insert_record", "contents": "px_insert_record(${1:pxdoc}, ${2:data})" },
		{ "trigger": "px_new", "contents": "px_new(${1:oid})" },
		{ "trigger": "px_numfields", "contents": "px_numfields(${1:pxdoc})" },
		{ "trigger": "px_numrecords", "contents": "px_numrecords(${1:pxdoc})" },
		{ "trigger": "px_open_fp", "contents": "px_open_fp(${1:pxdoc}, ${2:file})" },
		{ "trigger": "px_put_record", "contents": "px_put_record(${1:pxdoc}, ${2:record})" },
		{ "trigger": "px_retrieve_record", "contents": "px_retrieve_record(${1:pxdoc}, ${2:num})" },
		{ "trigger": "px_set_blob_file", "contents": "px_set_blob_file(${1:pxdoc}, ${2:filename})" },
		{ "trigger": "px_set_parameter", "contents": "px_set_parameter(${1:pxdoc}, ${2:name}, ${3:value})" },
		{ "trigger": "px_set_tablename", "contents": "px_set_tablename(${1:pxdoc}, ${2:name})" },
		{ "trigger": "px_set_targetencoding", "contents": "px_set_targetencoding(${1:pxdoc}, ${2:encoding})" },
		{ "trigger": "px_set_value", "contents": "px_set_value(${1:pxdoc}, ${2:name}, ${3:value})" },
		{ "trigger": "px_timestamp2string", "contents": "px_timestamp2string(${1:pxdoc}, ${2:value}, ${3:format})" },
		{ "trigger": "px_update_record", "contents": "px_update_record(${1:pxdoc}, ${2:data}, ${3:num})" },
		{ "trigger": "qdom_error", "contents": "qdom_error(${1:oid})" },
		{ "trigger": "qdom_tree", "contents": "qdom_tree(${1:doc})" },
		{ "trigger": "quoted_printable_decode", "contents": "quoted_printable_decode(${1:str})" },
		{ "trigger": "quoted_printable_encode", "contents": "quoted_printable_encode(${1:str})" },
		{ "trigger": "quotemeta", "contents": "quotemeta(${1:str})" },
		{ "trigger": "rad2deg", "contents": "rad2deg(${1:number})" },
		{ "trigger": "radius_acct_open", "contents": "radius_acct_open(${1:oid})" },
		{ "trigger": "radius_add_server", "contents": "radius_add_server(${1:radius_handle}, ${2:hostname}, ${3:port}, ${4:secret}, ${5:timeout}, ${6:max_tries})" },
		{ "trigger": "radius_auth_open", "contents": "radius_auth_open(${1:oid})" },
		{ "trigger": "radius_close", "contents": "radius_close(${1:radius_handle})" },
		{ "trigger": "radius_config", "contents": "radius_config(${1:radius_handle}, ${2:file})" },
		{ "trigger": "radius_create_request", "contents": "radius_create_request(${1:radius_handle}, ${2:type})" },
		{ "trigger": "radius_cvt_addr", "contents": "radius_cvt_addr(${1:data})" },
		{ "trigger": "radius_cvt_int", "contents": "radius_cvt_int(${1:data})" },
		{ "trigger": "radius_cvt_string", "contents": "radius_cvt_string(${1:data})" },
		{ "trigger": "radius_demangle", "contents": "radius_demangle(${1:radius_handle}, ${2:mangled})" },
		{ "trigger": "radius_demangle_mppe_key", "contents": "radius_demangle_mppe_key(${1:radius_handle}, ${2:mangled})" },
		{ "trigger": "radius_get_attr", "contents": "radius_get_attr(${1:radius_handle})" },
		{ "trigger": "radius_get_vendor_attr", "contents": "radius_get_vendor_attr(${1:data})" },
		{ "trigger": "radius_put_addr", "contents": "radius_put_addr(${1:radius_handle}, ${2:type}, ${3:addr})" },
		{ "trigger": "radius_put_attr", "contents": "radius_put_attr(${1:radius_handle}, ${2:type}, ${3:value})" },
		{ "trigger": "radius_put_int", "contents": "radius_put_int(${1:radius_handle}, ${2:type}, ${3:value})" },
		{ "trigger": "radius_put_string", "contents": "radius_put_string(${1:radius_handle}, ${2:type}, ${3:value})" },
		{ "trigger": "radius_put_vendor_addr", "contents": "radius_put_vendor_addr(${1:radius_handle}, ${2:vendor}, ${3:type}, ${4:addr})" },
		{ "trigger": "radius_put_vendor_attr", "contents": "radius_put_vendor_attr(${1:radius_handle}, ${2:vendor}, ${3:type}, ${4:value})" },
		{ "trigger": "radius_put_vendor_int", "contents": "radius_put_vendor_int(${1:radius_handle}, ${2:vendor}, ${3:type}, ${4:value})" },
		{ "trigger": "radius_put_vendor_string", "contents": "radius_put_vendor_string(${1:radius_handle}, ${2:vendor}, ${3:type}, ${4:value})" },
		{ "trigger": "radius_request_authenticator", "contents": "radius_request_authenticator(${1:radius_handle})" },
		{ "trigger": "radius_send_request", "contents": "radius_send_request(${1:radius_handle})" },
		{ "trigger": "radius_server_secret", "contents": "radius_server_secret(${1:radius_handle})" },
		{ "trigger": "radius_strerror", "contents": "radius_strerror(${1:radius_handle})" },
		{ "trigger": "rand", "contents": "rand(${1:oid})" },
		{ "trigger": "range", "contents": "range(${1:low}, ${2:high})" },
		{ "trigger": "rar_wrapper_cache_stats", "contents": "rar_wrapper_cache_stats(${1:oid})" },
		{ "trigger": "rawurldecode", "contents": "rawurldecode(${1:str})" },
		{ "trigger": "rawurlencode", "contents": "rawurlencode(${1:str})" },
		{ "trigger": "read_exif_data", "contents": "read_exif_data()" },
		{ "trigger": "readdir", "contents": "readdir()" },
		{ "trigger": "readfile", "contents": "readfile(${1:filename})" },
		{ "trigger": "readgzfile", "contents": "readgzfile(${1:filename})" },
		{ "trigger": "readline", "contents": "readline()" },
		{ "trigger": "readline_add_history", "contents": "readline_add_history(${1:line})" },
		{ "trigger": "readline_callback_handler_install", "contents": "readline_callback_handler_install(${1:prompt}, ${2:callback})" },
		{ "trigger": "readline_callback_handler_remove", "contents": "readline_callback_handler_remove(${1:oid})" },
		{ "trigger": "readline_callback_read_char", "contents": "readline_callback_read_char(${1:oid})" },
		{ "trigger": "readline_clear_history", "contents": "readline_clear_history(${1:oid})" },
		{ "trigger": "readline_completion_function", "contents": "readline_completion_function(${1:function})" },
		{ "trigger": "readline_info", "contents": "readline_info()" },
		{ "trigger": "readline_list_history", "contents": "readline_list_history(${1:oid})" },
		{ "trigger": "readline_on_new_line", "contents": "readline_on_new_line(${1:oid})" },
		{ "trigger": "readline_read_history", "contents": "readline_read_history()" },
		{ "trigger": "readline_redisplay", "contents": "readline_redisplay(${1:oid})" },
		{ "trigger": "readline_write_history", "contents": "readline_write_history()" },
		{ "trigger": "readlink", "contents": "readlink(${1:path})" },
		{ "trigger": "realpath", "contents": "realpath(${1:path})" },
		{ "trigger": "realpath_cache_get", "contents": "realpath_cache_get(${1:oid})" },
		{ "trigger": "realpath_cache_size", "contents": "realpath_cache_size(${1:oid})" },
		{ "trigger": "recode", "contents": "recode()" },
		{ "trigger": "recode_file", "contents": "recode_file(${1:request}, ${2:input}, ${3:output})" },
		{ "trigger": "recode_string", "contents": "recode_string(${1:request}, ${2:string})" },
		{ "trigger": "", "contents": "(${1:name})" },
		{ "trigger": "register_shutdown_function", "contents": "register_shutdown_function(${1:function})" },
		{ "trigger": "register_tick_function", "contents": "register_tick_function(${1:function})" },
		{ "trigger": "rename", "contents": "rename(${1:oldname}, ${2:newname})" },
		{ "trigger": "rename_function", "contents": "rename_function(${1:original_name}, ${2:new_name})" },
		{ "trigger": "", "contents": "()" },
		{ "trigger": "", "contents": "()" },
		{ "trigger": "reset", "contents": "reset(${1:array})" },
		{ "trigger": "restore_error_handler", "contents": "restore_error_handler(${1:oid})" },
		{ "trigger": "restore_exception_handler", "contents": "restore_exception_handler(${1:oid})" },
		{ "trigger": "restore_include_path", "contents": "restore_include_path(${1:oid})" },
		{ "trigger": "", "contents": "()" },
		{ "trigger": "rewind", "contents": "rewind(${1:handle})" },
		{ "trigger": "rewinddir", "contents": "rewinddir()" },
		{ "trigger": "rmdir", "contents": "rmdir(${1:dirname})" },
		{ "trigger": "round", "contents": "round(${1:val})" },
		{ "trigger": "rpm_close", "contents": "rpm_close(${1:rpmr})" },
		{ "trigger": "rpm_get_tag", "contents": "rpm_get_tag(${1:rpmr}, ${2:tagnum})" },
		{ "trigger": "rpm_is_valid", "contents": "rpm_is_valid(${1:filename})" },
		{ "trigger": "rpm_open", "contents": "rpm_open(${1:filename})" },
		{ "trigger": "rpm_version", "contents": "rpm_version(${1:oid})" },
		{ "trigger": "rsort", "contents": "rsort(${1:array})" },
		{ "trigger": "rtrim", "contents": "rtrim(${1:str})" },
		{ "trigger": "runkit_class_adopt", "contents": "runkit_class_adopt(${1:classname}, ${2:parentname})" },
		{ "trigger": "runkit_class_emancipate", "contents": "runkit_class_emancipate(${1:classname})" },
		{ "trigger": "runkit_constant_add", "contents": "runkit_constant_add(${1:constname}, ${2:value})" },
		{ "trigger": "runkit_constant_redefine", "contents": "runkit_constant_redefine(${1:constname}, ${2:newvalue})" },
		{ "trigger": "runkit_constant_remove", "contents": "runkit_constant_remove(${1:constname})" },
		{ "trigger": "runkit_function_add", "contents": "runkit_function_add(${1:funcname}, ${2:arglist}, ${3:code})" },
		{ "trigger": "runkit_function_copy", "contents": "runkit_function_copy(${1:funcname}, ${2:targetname})" },
		{ "trigger": "runkit_function_redefine", "contents": "runkit_function_redefine(${1:funcname}, ${2:arglist}, ${3:code})" },
		{ "trigger": "runkit_function_remove", "contents": "runkit_function_remove(${1:funcname})" },
		{ "trigger": "runkit_function_rename", "contents": "runkit_function_rename(${1:funcname}, ${2:newname})" },
		{ "trigger": "runkit_import", "contents": "runkit_import(${1:filename})" },
		{ "trigger": "runkit_lint", "contents": "runkit_lint(${1:code})" },
		{ "trigger": "runkit_lint_file", "contents": "runkit_lint_file(${1:filename})" },
		{ "trigger": "runkit_method_add", "contents": "runkit_method_add(${1:classname}, ${2:methodname}, ${3:args}, ${4:code})" },
		{ "trigger": "runkit_method_copy", "contents": "runkit_method_copy(${1:dClass}, ${2:dMethod}, ${3:sClass})" },
		{ "trigger": "runkit_method_redefine", "contents": "runkit_method_redefine(${1:classname}, ${2:methodname}, ${3:args}, ${4:code})" },
		{ "trigger": "runkit_method_remove", "contents": "runkit_method_remove(${1:classname}, ${2:methodname})" },
		{ "trigger": "runkit_method_rename", "contents": "runkit_method_rename(${1:classname}, ${2:methodname}, ${3:newname})" },
		{ "trigger": "runkit_return_value_used", "contents": "runkit_return_value_used(${1:oid})" },
		{ "trigger": "runkit_sandbox_output_handler", "contents": "runkit_sandbox_output_handler(${1:sandbox})" },
		{ "trigger": "runkit_superglobals", "contents": "runkit_superglobals(${1:oid})" },
		{ "trigger": "scandir", "contents": "scandir(${1:directory})" },
		{ "trigger": "sem_acquire", "contents": "sem_acquire(${1:sem_identifier})" },
		{ "trigger": "sem_get", "contents": "sem_get(${1:key})" },
		{ "trigger": "sem_release", "contents": "sem_release(${1:sem_identifier})" },
		{ "trigger": "sem_remove", "contents": "sem_remove(${1:sem_identifier})" },
		{ "trigger": "serialize", "contents": "serialize(${1:value})" },
		{ "trigger": "session_cache_expire", "contents": "session_cache_expire()" },
		{ "trigger": "session_cache_limiter", "contents": "session_cache_limiter()" },
		{ "trigger": "session_commit", "contents": "session_commit()" },
		{ "trigger": "session_decode", "contents": "session_decode(${1:data})" },
		{ "trigger": "session_destroy", "contents": "session_destroy(${1:oid})" },
		{ "trigger": "session_encode", "contents": "session_encode(${1:oid})" },
		{ "trigger": "session_get_cookie_params", "contents": "session_get_cookie_params(${1:oid})" },
		{ "trigger": "session_id", "contents": "session_id()" },
		{ "trigger": "session_is_registered", "contents": "session_is_registered(${1:name})" },
		{ "trigger": "session_module_name", "contents": "session_module_name()" },
		{ "trigger": "session_name", "contents": "session_name()" },
		{ "trigger": "session_pgsql_add_error", "contents": "session_pgsql_add_error(${1:error_level})" },
		{ "trigger": "session_pgsql_get_error", "contents": "session_pgsql_get_error()" },
		{ "trigger": "session_pgsql_get_field", "contents": "session_pgsql_get_field(${1:oid})" },
		{ "trigger": "session_pgsql_reset", "contents": "session_pgsql_reset(${1:oid})" },
		{ "trigger": "session_pgsql_set_field", "contents": "session_pgsql_set_field(${1:value})" },
		{ "trigger": "session_pgsql_status", "contents": "session_pgsql_status(${1:oid})" },
		{ "trigger": "session_regenerate_id", "contents": "session_regenerate_id()" },
		{ "trigger": "session_register", "contents": "session_register(${1:name})" },
		{ "trigger": "session_save_path", "contents": "session_save_path()" },
		{ "trigger": "session_set_cookie_params", "contents": "session_set_cookie_params(${1:lifetime})" },
		{ "trigger": "session_set_save_handler", "contents": "session_set_save_handler(${1:open}, ${2:close}, ${3:read}, ${4:write}, ${5:destroy}, ${6:gc})" },
		{ "trigger": "session_start", "contents": "session_start(${1:oid})" },
		{ "trigger": "session_unregister", "contents": "session_unregister(${1:name})" },
		{ "trigger": "session_unset", "contents": "session_unset(${1:oid})" },
		{ "trigger": "session_write_close", "contents": "session_write_close(${1:oid})" },
		{ "trigger": "set_error_handler", "contents": "set_error_handler(${1:error_handler})" },
		{ "trigger": "set_exception_handler", "contents": "set_exception_handler(${1:exception_handler})" },
		{ "trigger": "set_file_buffer", "contents": "set_file_buffer()" },
		{ "trigger": "set_include_path", "contents": "set_include_path(${1:new_include_path})" },
		{ "trigger": "set_magic_quotes_runtime", "contents": "set_magic_quotes_runtime(${1:new_setting})" },
		{ "trigger": "set_socket_blocking", "contents": "set_socket_blocking()" },
		{ "trigger": "set_time_limit", "contents": "set_time_limit(${1:seconds})" },
		{ "trigger": "setcookie", "contents": "setcookie(${1:name})" },
		{ "trigger": "setlocale", "contents": "setlocale(${1:category}, ${2:locale})" },
		{ "trigger": "setrawcookie", "contents": "setrawcookie(${1:name})" },
		{ "trigger": "settype", "contents": "settype(${1:var}, ${2:type})" },
		{ "trigger": "sha1", "contents": "sha1(${1:str})" },
		{ "trigger": "sha1_file", "contents": "sha1_file(${1:filename})" },
		{ "trigger": "shell_exec", "contents": "shell_exec(${1:cmd})" },
		{ "trigger": "shm_attach", "contents": "shm_attach(${1:key})" },
		{ "trigger": "shm_detach", "contents": "shm_detach(${1:shm_identifier})" },
		{ "trigger": "shm_get_var", "contents": "shm_get_var(${1:shm_identifier}, ${2:variable_key})" },
		{ "trigger": "shm_has_var", "contents": "shm_has_var(${1:shm_identifier}, ${2:variable_key})" },
		{ "trigger": "shm_put_var", "contents": "shm_put_var(${1:shm_identifier}, ${2:variable_key}, ${3:variable})" },
		{ "trigger": "shm_remove", "contents": "shm_remove(${1:shm_identifier})" },
		{ "trigger": "shm_remove_var", "contents": "shm_remove_var(${1:shm_identifier}, ${2:variable_key})" },
		{ "trigger": "shmop_close", "contents": "shmop_close(${1:shmid})" },
		{ "trigger": "shmop_delete", "contents": "shmop_delete(${1:shmid})" },
		{ "trigger": "shmop_open", "contents": "shmop_open(${1:key}, ${2:flags}, ${3:mode}, ${4:size})" },
		{ "trigger": "shmop_read", "contents": "shmop_read(${1:shmid}, ${2:start}, ${3:count})" },
		{ "trigger": "shmop_size", "contents": "shmop_size(${1:shmid})" },
		{ "trigger": "shmop_write", "contents": "shmop_write(${1:shmid}, ${2:data}, ${3:offset})" },
		{ "trigger": "show_source", "contents": "show_source()" },
		{ "trigger": "shuffle", "contents": "shuffle(${1:array})" },
		{ "trigger": "signeurlpaiement", "contents": "signeurlpaiement(${1:clent}, ${2:data})" },
		{ "trigger": "similar_text", "contents": "similar_text(${1:first}, ${2:second})" },
		{ "trigger": "simplexml_import_dom", "contents": "simplexml_import_dom(${1:node})" },
		{ "trigger": "simplexml_load_file", "contents": "simplexml_load_file(${1:filename})" },
		{ "trigger": "simplexml_load_string", "contents": "simplexml_load_string(${1:data})" },
		{ "trigger": "sin", "contents": "sin(${1:arg})" },
		{ "trigger": "sinh", "contents": "sinh(${1:arg})" },
		{ "trigger": "sizeof", "contents": "sizeof()" },
		{ "trigger": "sleep", "contents": "sleep(${1:seconds})" },
		{ "trigger": "snmp2_get", "contents": "snmp2_get(${1:host}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmp2_getnext", "contents": "snmp2_getnext(${1:host}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmp2_real_walk", "contents": "snmp2_real_walk(${1:host}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmp2_set", "contents": "snmp2_set(${1:host}, ${2:community}, ${3:object_id}, ${4:type}, ${5:value})" },
		{ "trigger": "snmp2_walk", "contents": "snmp2_walk(${1:host}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmp3_get", "contents": "snmp3_get(${1:host}, ${2:sec_name}, ${3:sec_level}, ${4:auth_protocol}, ${5:auth_passphrase}, ${6:priv_protocol}, ${7:priv_passphrase}, ${8:object_id})" },
		{ "trigger": "snmp3_getnext", "contents": "snmp3_getnext(${1:host}, ${2:sec_name}, ${3:sec_level}, ${4:auth_protocol}, ${5:auth_passphrase}, ${6:priv_protocol}, ${7:priv_passphrase}, ${8:object_id})" },
		{ "trigger": "snmp3_real_walk", "contents": "snmp3_real_walk(${1:host}, ${2:sec_name}, ${3:sec_level}, ${4:auth_protocol}, ${5:auth_passphrase}, ${6:priv_protocol}, ${7:priv_passphrase}, ${8:object_id})" },
		{ "trigger": "snmp3_set", "contents": "snmp3_set(${1:host}, ${2:sec_name}, ${3:sec_level}, ${4:auth_protocol}, ${5:auth_passphrase}, ${6:priv_protocol}, ${7:priv_passphrase}, ${8:object_id}, ${9:type}, ${10:value})" },
		{ "trigger": "snmp3_walk", "contents": "snmp3_walk(${1:host}, ${2:sec_name}, ${3:sec_level}, ${4:auth_protocol}, ${5:auth_passphrase}, ${6:priv_protocol}, ${7:priv_passphrase}, ${8:object_id})" },
		{ "trigger": "snmp_get_quick_print", "contents": "snmp_get_quick_print(${1:oid})" },
		{ "trigger": "snmp_get_valueretrieval", "contents": "snmp_get_valueretrieval(${1:oid})" },
		{ "trigger": "snmp_read_mib", "contents": "snmp_read_mib(${1:filename})" },
		{ "trigger": "snmp_set_enum_print", "contents": "snmp_set_enum_print(${1:enum_print})" },
		{ "trigger": "snmp_set_oid_numeric_print", "contents": "snmp_set_oid_numeric_print(${1:oid_numeric_print})" },
		{ "trigger": "snmp_set_oid_output_format", "contents": "snmp_set_oid_output_format(${1:oid_format = SNMP_OID_OUTPUT_MODULE})" },
		{ "trigger": "snmp_set_quick_print", "contents": "snmp_set_quick_print(${1:quick_print})" },
		{ "trigger": "snmp_set_valueretrieval", "contents": "snmp_set_valueretrieval(${1:method})" },
		{ "trigger": "snmpget", "contents": "snmpget(${1:hostname}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmpgetnext", "contents": "snmpgetnext(${1:host}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmprealwalk", "contents": "snmprealwalk(${1:host}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmpset", "contents": "snmpset(${1:host}, ${2:community}, ${3:object_id}, ${4:type}, ${5:value})" },
		{ "trigger": "snmpwalk", "contents": "snmpwalk(${1:hostname}, ${2:community}, ${3:object_id})" },
		{ "trigger": "snmpwalkoid", "contents": "snmpwalkoid(${1:hostname}, ${2:community}, ${3:object_id})" },
		{ "trigger": "socket_accept", "contents": "socket_accept(${1:socket})" },
		{ "trigger": "socket_bind", "contents": "socket_bind(${1:socket}, ${2:address})" },
		{ "trigger": "socket_clear_error", "contents": "socket_clear_error()" },
		{ "trigger": "socket_close", "contents": "socket_close(${1:socket})" },
		{ "trigger": "socket_connect", "contents": "socket_connect(${1:socket}, ${2:address})" },
		{ "trigger": "socket_create", "contents": "socket_create(${1:domain}, ${2:type}, ${3:protocol})" },
		{ "trigger": "socket_create_listen", "contents": "socket_create_listen(${1:port})" },
		{ "trigger": "socket_create_pair", "contents": "socket_create_pair(${1:domain}, ${2:type}, ${3:protocol}, ${4:fd})" },
		{ "trigger": "socket_get_option", "contents": "socket_get_option(${1:socket}, ${2:level}, ${3:optname})" },
		{ "trigger": "socket_get_status", "contents": "socket_get_status()" },
		{ "trigger": "socket_getpeername", "contents": "socket_getpeername(${1:socket}, ${2:address})" },
		{ "trigger": "socket_getsockname", "contents": "socket_getsockname(${1:socket}, ${2:addr})" },
		{ "trigger": "socket_last_error", "contents": "socket_last_error()" },
		{ "trigger": "socket_listen", "contents": "socket_listen(${1:socket})" },
		{ "trigger": "socket_read", "contents": "socket_read(${1:socket}, ${2:length})" },
		{ "trigger": "socket_recv", "contents": "socket_recv(${1:socket}, ${2:buf}, ${3:len}, ${4:flags})" },
		{ "trigger": "socket_recvfrom", "contents": "socket_recvfrom(${1:socket}, ${2:buf}, ${3:len}, ${4:flags}, ${5:name})" },
		{ "trigger": "socket_select", "contents": "socket_select(${1:read}, ${2:write}, ${3:except}, ${4:tv_sec})" },
		{ "trigger": "socket_send", "contents": "socket_send(${1:socket}, ${2:buf}, ${3:len}, ${4:flags})" },
		{ "trigger": "socket_sendto", "contents": "socket_sendto(${1:socket}, ${2:buf}, ${3:len}, ${4:flags}, ${5:addr})" },
		{ "trigger": "socket_set_block", "contents": "socket_set_block(${1:socket})" },
		{ "trigger": "socket_set_blocking", "contents": "socket_set_blocking()" },
		{ "trigger": "socket_set_nonblock", "contents": "socket_set_nonblock(${1:socket})" },
		{ "trigger": "socket_set_option", "contents": "socket_set_option(${1:socket}, ${2:level}, ${3:optname}, ${4:optval})" },
		{ "trigger": "socket_set_timeout", "contents": "socket_set_timeout()" },
		{ "trigger": "socket_shutdown", "contents": "socket_shutdown(${1:socket})" },
		{ "trigger": "socket_strerror", "contents": "socket_strerror(${1:errno})" },
		{ "trigger": "socket_write", "contents": "socket_write(${1:socket}, ${2:buffer})" },
		{ "trigger": "solr_get_version", "contents": "solr_get_version(${1:oid})" },
		{ "trigger": "sort", "contents": "sort(${1:array})" },
		{ "trigger": "soundex", "contents": "soundex(${1:str})" },
		{ "trigger": "spl_autoload", "contents": "spl_autoload(${1:class_name})" },
		{ "trigger": "spl_autoload_call", "contents": "spl_autoload_call(${1:class_name})" },
		{ "trigger": "spl_autoload_extensions", "contents": "spl_autoload_extensions()" },
		{ "trigger": "spl_autoload_functions", "contents": "spl_autoload_functions(${1:oid})" },
		{ "trigger": "spl_autoload_register", "contents": "spl_autoload_register()" },
		{ "trigger": "spl_autoload_unregister", "contents": "spl_autoload_unregister(${1:autoload_function})" },
		{ "trigger": "spl_classes", "contents": "spl_classes(${1:oid})" },
		{ "trigger": "spl_object_hash", "contents": "spl_object_hash(${1:obj})" },
		{ "trigger": "split", "contents": "split(${1:pattern}, ${2:string})" },
		{ "trigger": "spliti", "contents": "spliti(${1:pattern}, ${2:string})" },
		{ "trigger": "sprintf", "contents": "sprintf(${1:format})" },
		{ "trigger": "sql_regcase", "contents": "sql_regcase(${1:string})" },
		{ "trigger": "sqlite_close", "contents": "sqlite_close(${1:dbhandle})" },
		{ "trigger": "sqlite_error_string", "contents": "sqlite_error_string(${1:error_code})" },
		{ "trigger": "sqlite_escape_string", "contents": "sqlite_escape_string(${1:item})" },
		{ "trigger": "sqlite_factory", "contents": "sqlite_factory(${1:filename})" },
		{ "trigger": "sqlite_fetch_string", "contents": "sqlite_fetch_string()" },
		{ "trigger": "sqlite_has_more", "contents": "sqlite_has_more(${1:result})" },
		{ "trigger": "sqlite_libencoding", "contents": "sqlite_libencoding(${1:oid})" },
		{ "trigger": "sqlite_libversion", "contents": "sqlite_libversion(${1:oid})" },
		{ "trigger": "sqlite_open", "contents": "sqlite_open(${1:filename})" },
		{ "trigger": "sqlite_popen", "contents": "sqlite_popen(${1:filename})" },
		{ "trigger": "sqlite_udf_decode_binary", "contents": "sqlite_udf_decode_binary(${1:data})" },
		{ "trigger": "sqlite_udf_encode_binary", "contents": "sqlite_udf_encode_binary(${1:data})" },
		{ "trigger": "sqrt", "contents": "sqrt(${1:arg})" },
		{ "trigger": "srand", "contents": "srand()" },
		{ "trigger": "sscanf", "contents": "sscanf(${1:str}, ${2:format})" },
		{ "trigger": "ssdeep_fuzzy_compare", "contents": "ssdeep_fuzzy_compare(${1:signature1}, ${2:signature2})" },
		{ "trigger": "ssdeep_fuzzy_hash", "contents": "ssdeep_fuzzy_hash(${1:to_hash})" },
		{ "trigger": "ssdeep_fuzzy_hash_filename", "contents": "ssdeep_fuzzy_hash_filename(${1:file_name})" },
		{ "trigger": "ssh2_auth_hostbased_file", "contents": "ssh2_auth_hostbased_file(${1:session}, ${2:username}, ${3:hostname}, ${4:pubkeyfile}, ${5:privkeyfile})" },
		{ "trigger": "ssh2_auth_none", "contents": "ssh2_auth_none(${1:session}, ${2:username})" },
		{ "trigger": "ssh2_auth_password", "contents": "ssh2_auth_password(${1:session}, ${2:username}, ${3:password})" },
		{ "trigger": "ssh2_auth_pubkey_file", "contents": "ssh2_auth_pubkey_file(${1:session}, ${2:username}, ${3:pubkeyfile}, ${4:privkeyfile})" },
		{ "trigger": "ssh2_connect", "contents": "ssh2_connect(${1:host})" },
		{ "trigger": "ssh2_exec", "contents": "ssh2_exec(${1:session}, ${2:command})" },
		{ "trigger": "ssh2_fetch_stream", "contents": "ssh2_fetch_stream(${1:channel}, ${2:streamid})" },
		{ "trigger": "ssh2_fingerprint", "contents": "ssh2_fingerprint(${1:session})" },
		{ "trigger": "ssh2_methods_negotiated", "contents": "ssh2_methods_negotiated(${1:session})" },
		{ "trigger": "ssh2_publickey_add", "contents": "ssh2_publickey_add(${1:pkey}, ${2:algoname}, ${3:blob})" },
		{ "trigger": "ssh2_publickey_init", "contents": "ssh2_publickey_init(${1:session})" },
		{ "trigger": "ssh2_publickey_list", "contents": "ssh2_publickey_list(${1:pkey})" },
		{ "trigger": "ssh2_publickey_remove", "contents": "ssh2_publickey_remove(${1:pkey}, ${2:algoname}, ${3:blob})" },
		{ "trigger": "ssh2_scp_recv", "contents": "ssh2_scp_recv(${1:session}, ${2:remote_file}, ${3:local_file})" },
		{ "trigger": "ssh2_scp_send", "contents": "ssh2_scp_send(${1:session}, ${2:local_file}, ${3:remote_file})" },
		{ "trigger": "ssh2_sftp", "contents": "ssh2_sftp(${1:session})" },
		{ "trigger": "ssh2_sftp_lstat", "contents": "ssh2_sftp_lstat(${1:sftp}, ${2:path})" },
		{ "trigger": "ssh2_sftp_mkdir", "contents": "ssh2_sftp_mkdir(${1:sftp}, ${2:dirname})" },
		{ "trigger": "ssh2_sftp_readlink", "contents": "ssh2_sftp_readlink(${1:sftp}, ${2:link})" },
		{ "trigger": "ssh2_sftp_realpath", "contents": "ssh2_sftp_realpath(${1:sftp}, ${2:filename})" },
		{ "trigger": "ssh2_sftp_rename", "contents": "ssh2_sftp_rename(${1:sftp}, ${2:from}, ${3:to})" },
		{ "trigger": "ssh2_sftp_rmdir", "contents": "ssh2_sftp_rmdir(${1:sftp}, ${2:dirname})" },
		{ "trigger": "ssh2_sftp_stat", "contents": "ssh2_sftp_stat(${1:sftp}, ${2:path})" },
		{ "trigger": "ssh2_sftp_symlink", "contents": "ssh2_sftp_symlink(${1:sftp}, ${2:target}, ${3:link})" },
		{ "trigger": "ssh2_sftp_unlink", "contents": "ssh2_sftp_unlink(${1:sftp}, ${2:filename})" },
		{ "trigger": "ssh2_shell", "contents": "ssh2_shell(${1:session})" },
		{ "trigger": "ssh2_tunnel", "contents": "ssh2_tunnel(${1:session}, ${2:host}, ${3:port})" },
		{ "trigger": "stat", "contents": "stat(${1:filename})" },
		{ "trigger": "stats_absolute_deviation", "contents": "stats_absolute_deviation(${1:a})" },
		{ "trigger": "stats_cdf_beta", "contents": "stats_cdf_beta(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_binomial", "contents": "stats_cdf_binomial(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_cauchy", "contents": "stats_cdf_cauchy(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_chisquare", "contents": "stats_cdf_chisquare(${1:par1}, ${2:par2}, ${3:which})" },
		{ "trigger": "stats_cdf_exponential", "contents": "stats_cdf_exponential(${1:par1}, ${2:par2}, ${3:which})" },
		{ "trigger": "stats_cdf_f", "contents": "stats_cdf_f(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_gamma", "contents": "stats_cdf_gamma(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_laplace", "contents": "stats_cdf_laplace(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_logistic", "contents": "stats_cdf_logistic(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_negative_binomial", "contents": "stats_cdf_negative_binomial(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_noncentral_chisquare", "contents": "stats_cdf_noncentral_chisquare(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_noncentral_f", "contents": "stats_cdf_noncentral_f(${1:par1}, ${2:par2}, ${3:par3}, ${4:par4}, ${5:which})" },
		{ "trigger": "stats_cdf_poisson", "contents": "stats_cdf_poisson(${1:par1}, ${2:par2}, ${3:which})" },
		{ "trigger": "stats_cdf_t", "contents": "stats_cdf_t(${1:par1}, ${2:par2}, ${3:which})" },
		{ "trigger": "stats_cdf_uniform", "contents": "stats_cdf_uniform(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_cdf_weibull", "contents": "stats_cdf_weibull(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_covariance", "contents": "stats_covariance(${1:a}, ${2:b})" },
		{ "trigger": "stats_den_uniform", "contents": "stats_den_uniform(${1:x}, ${2:a}, ${3:b})" },
		{ "trigger": "stats_dens_beta", "contents": "stats_dens_beta(${1:x}, ${2:a}, ${3:b})" },
		{ "trigger": "stats_dens_cauchy", "contents": "stats_dens_cauchy(${1:x}, ${2:ave}, ${3:stdev})" },
		{ "trigger": "stats_dens_chisquare", "contents": "stats_dens_chisquare(${1:x}, ${2:dfr})" },
		{ "trigger": "stats_dens_exponential", "contents": "stats_dens_exponential(${1:x}, ${2:scale})" },
		{ "trigger": "stats_dens_f", "contents": "stats_dens_f(${1:x}, ${2:dfr1}, ${3:dfr2})" },
		{ "trigger": "stats_dens_gamma", "contents": "stats_dens_gamma(${1:x}, ${2:shape}, ${3:scale})" },
		{ "trigger": "stats_dens_laplace", "contents": "stats_dens_laplace(${1:x}, ${2:ave}, ${3:stdev})" },
		{ "trigger": "stats_dens_logistic", "contents": "stats_dens_logistic(${1:x}, ${2:ave}, ${3:stdev})" },
		{ "trigger": "stats_dens_negative_binomial", "contents": "stats_dens_negative_binomial(${1:x}, ${2:n}, ${3:pi})" },
		{ "trigger": "stats_dens_normal", "contents": "stats_dens_normal(${1:x}, ${2:ave}, ${3:stdev})" },
		{ "trigger": "stats_dens_pmf_binomial", "contents": "stats_dens_pmf_binomial(${1:x}, ${2:n}, ${3:pi})" },
		{ "trigger": "stats_dens_pmf_hypergeometric", "contents": "stats_dens_pmf_hypergeometric(${1:n1}, ${2:n2}, ${3:N1}, ${4:N2})" },
		{ "trigger": "stats_dens_pmf_poisson", "contents": "stats_dens_pmf_poisson(${1:x}, ${2:lb})" },
		{ "trigger": "stats_dens_t", "contents": "stats_dens_t(${1:x}, ${2:dfr})" },
		{ "trigger": "stats_dens_weibull", "contents": "stats_dens_weibull(${1:x}, ${2:a}, ${3:b})" },
		{ "trigger": "stats_harmonic_mean", "contents": "stats_harmonic_mean(${1:a})" },
		{ "trigger": "stats_kurtosis", "contents": "stats_kurtosis(${1:a})" },
		{ "trigger": "stats_rand_gen_beta", "contents": "stats_rand_gen_beta(${1:a}, ${2:b})" },
		{ "trigger": "stats_rand_gen_chisquare", "contents": "stats_rand_gen_chisquare(${1:df})" },
		{ "trigger": "stats_rand_gen_exponential", "contents": "stats_rand_gen_exponential(${1:av})" },
		{ "trigger": "stats_rand_gen_f", "contents": "stats_rand_gen_f(${1:dfn}, ${2:dfd})" },
		{ "trigger": "stats_rand_gen_funiform", "contents": "stats_rand_gen_funiform(${1:low}, ${2:high})" },
		{ "trigger": "stats_rand_gen_gamma", "contents": "stats_rand_gen_gamma(${1:a}, ${2:r})" },
		{ "trigger": "stats_rand_gen_ibinomial", "contents": "stats_rand_gen_ibinomial(${1:n}, ${2:pp})" },
		{ "trigger": "stats_rand_gen_ibinomial_negative", "contents": "stats_rand_gen_ibinomial_negative(${1:n}, ${2:p})" },
		{ "trigger": "stats_rand_gen_int", "contents": "stats_rand_gen_int(${1:oid})" },
		{ "trigger": "stats_rand_gen_ipoisson", "contents": "stats_rand_gen_ipoisson(${1:mu})" },
		{ "trigger": "stats_rand_gen_iuniform", "contents": "stats_rand_gen_iuniform(${1:low}, ${2:high})" },
		{ "trigger": "stats_rand_gen_noncenral_chisquare", "contents": "stats_rand_gen_noncenral_chisquare(${1:df}, ${2:xnonc})" },
		{ "trigger": "stats_rand_gen_noncentral_f", "contents": "stats_rand_gen_noncentral_f(${1:dfn}, ${2:dfd}, ${3:xnonc})" },
		{ "trigger": "stats_rand_gen_noncentral_t", "contents": "stats_rand_gen_noncentral_t(${1:df}, ${2:xnonc})" },
		{ "trigger": "stats_rand_gen_normal", "contents": "stats_rand_gen_normal(${1:av}, ${2:sd})" },
		{ "trigger": "stats_rand_gen_t", "contents": "stats_rand_gen_t(${1:df})" },
		{ "trigger": "stats_rand_get_seeds", "contents": "stats_rand_get_seeds(${1:oid})" },
		{ "trigger": "stats_rand_phrase_to_seeds", "contents": "stats_rand_phrase_to_seeds(${1:phrase})" },
		{ "trigger": "stats_rand_ranf", "contents": "stats_rand_ranf(${1:oid})" },
		{ "trigger": "stats_rand_setall", "contents": "stats_rand_setall(${1:iseed1}, ${2:iseed2})" },
		{ "trigger": "stats_skew", "contents": "stats_skew(${1:a})" },
		{ "trigger": "stats_standard_deviation", "contents": "stats_standard_deviation(${1:a})" },
		{ "trigger": "stats_stat_binomial_coef", "contents": "stats_stat_binomial_coef(${1:x}, ${2:n})" },
		{ "trigger": "stats_stat_correlation", "contents": "stats_stat_correlation(${1:arr1}, ${2:arr2})" },
		{ "trigger": "stats_stat_gennch", "contents": "stats_stat_gennch(${1:n})" },
		{ "trigger": "stats_stat_independent_t", "contents": "stats_stat_independent_t(${1:arr1}, ${2:arr2})" },
		{ "trigger": "stats_stat_innerproduct", "contents": "stats_stat_innerproduct(${1:arr1}, ${2:arr2})" },
		{ "trigger": "stats_stat_noncentral_t", "contents": "stats_stat_noncentral_t(${1:par1}, ${2:par2}, ${3:par3}, ${4:which})" },
		{ "trigger": "stats_stat_paired_t", "contents": "stats_stat_paired_t(${1:arr1}, ${2:arr2})" },
		{ "trigger": "stats_stat_percentile", "contents": "stats_stat_percentile(${1:df}, ${2:xnonc})" },
		{ "trigger": "stats_stat_powersum", "contents": "stats_stat_powersum(${1:arr}, ${2:power})" },
		{ "trigger": "stats_variance", "contents": "stats_variance(${1:a})" },
		{ "trigger": "stomp_connect_error", "contents": "stomp_connect_error(${1:oid})" },
		{ "trigger": "stomp_version", "contents": "stomp_version(${1:oid})" },
		{ "trigger": "str_getcsv", "contents": "str_getcsv(${1:input})" },
		{ "trigger": "str_ireplace", "contents": "str_ireplace(${1:search}, ${2:replace}, ${3:subject})" },
		{ "trigger": "str_pad", "contents": "str_pad(${1:input}, ${2:pad_length})" },
		{ "trigger": "str_repeat", "contents": "str_repeat(${1:input}, ${2:multiplier})" },
		{ "trigger": "str_replace", "contents": "str_replace(${1:search}, ${2:replace}, ${3:subject})" },
		{ "trigger": "str_rot13", "contents": "str_rot13(${1:str})" },
		{ "trigger": "str_shuffle", "contents": "str_shuffle(${1:str})" },
		{ "trigger": "str_split", "contents": "str_split(${1:string})" },
		{ "trigger": "str_word_count", "contents": "str_word_count(${1:string})" },
		{ "trigger": "strcasecmp", "contents": "strcasecmp(${1:str1}, ${2:str2})" },
		{ "trigger": "strchr", "contents": "strchr()" },
		{ "trigger": "strcmp", "contents": "strcmp(${1:str1}, ${2:str2})" },
		{ "trigger": "strcoll", "contents": "strcoll(${1:str1}, ${2:str2})" },
		{ "trigger": "strcspn", "contents": "strcspn(${1:str1}, ${2:str2})" },
		{ "trigger": "stream_bucket_append", "contents": "stream_bucket_append(${1:brigade}, ${2:bucket})" },
		{ "trigger": "stream_bucket_make_writeable", "contents": "stream_bucket_make_writeable(${1:brigade})" },
		{ "trigger": "stream_bucket_new", "contents": "stream_bucket_new(${1:stream}, ${2:buffer})" },
		{ "trigger": "stream_bucket_prepend", "contents": "stream_bucket_prepend(${1:brigade}, ${2:bucket})" },
		{ "trigger": "stream_context_create", "contents": "stream_context_create()" },
		{ "trigger": "stream_context_get_default", "contents": "stream_context_get_default()" },
		{ "trigger": "stream_context_get_options", "contents": "stream_context_get_options(${1:stream_or_context})" },
		{ "trigger": "stream_context_get_params", "contents": "stream_context_get_params(${1:stream_or_context})" },
		{ "trigger": "stream_context_set_default", "contents": "stream_context_set_default(${1:options})" },
		{ "trigger": "stream_context_set_option", "contents": "stream_context_set_option(${1:stream_or_context}, ${2:wrapper}, ${3:option}, ${4:value})" },
		{ "trigger": "stream_context_set_params", "contents": "stream_context_set_params(${1:stream_or_context}, ${2:params})" },
		{ "trigger": "stream_copy_to_stream", "contents": "stream_copy_to_stream(${1:source}, ${2:dest})" },
		{ "trigger": "stream_encoding", "contents": "stream_encoding(${1:stream})" },
		{ "trigger": "stream_filter_append", "contents": "stream_filter_append(${1:stream}, ${2:filtername})" },
		{ "trigger": "stream_filter_prepend", "contents": "stream_filter_prepend(${1:stream}, ${2:filtername})" },
		{ "trigger": "stream_filter_register", "contents": "stream_filter_register(${1:filtername}, ${2:classname})" },
		{ "trigger": "stream_filter_remove", "contents": "stream_filter_remove(${1:stream_filter})" },
		{ "trigger": "stream_get_contents", "contents": "stream_get_contents(${1:handle})" },
		{ "trigger": "stream_get_filters", "contents": "stream_get_filters(${1:oid})" },
		{ "trigger": "stream_get_line", "contents": "stream_get_line(${1:handle}, ${2:length})" },
		{ "trigger": "stream_get_meta_data", "contents": "stream_get_meta_data(${1:stream})" },
		{ "trigger": "stream_get_transports", "contents": "stream_get_transports(${1:oid})" },
		{ "trigger": "stream_get_wrappers", "contents": "stream_get_wrappers(${1:oid})" },
		{ "trigger": "stream_is_local", "contents": "stream_is_local(${1:stream_or_url})" },
		{ "trigger": "stream_notification_callback", "contents": "stream_notification_callback(${1:notification_code}, ${2:severity}, ${3:message}, ${4:message_code}, ${5:bytes_transferred}, ${6:bytes_max})" },
		{ "trigger": "stream_register_wrapper", "contents": "stream_register_wrapper()" },
		{ "trigger": "stream_resolve_include_path", "contents": "stream_resolve_include_path(${1:filename})" },
		{ "trigger": "stream_select", "contents": "stream_select(${1:read}, ${2:write}, ${3:except}, ${4:tv_sec})" },
		{ "trigger": "stream_set_blocking", "contents": "stream_set_blocking(${1:stream}, ${2:mode})" },
		{ "trigger": "stream_set_read_buffer", "contents": "stream_set_read_buffer(${1:stream}, ${2:buffer})" },
		{ "trigger": "stream_set_timeout", "contents": "stream_set_timeout(${1:stream}, ${2:seconds})" },
		{ "trigger": "stream_set_write_buffer", "contents": "stream_set_write_buffer(${1:stream}, ${2:buffer})" },
		{ "trigger": "stream_socket_accept", "contents": "stream_socket_accept(${1:server_socket})" },
		{ "trigger": "stream_socket_client", "contents": "stream_socket_client(${1:remote_socket})" },
		{ "trigger": "stream_socket_enable_crypto", "contents": "stream_socket_enable_crypto(${1:stream}, ${2:enable})" },
		{ "trigger": "stream_socket_get_name", "contents": "stream_socket_get_name(${1:handle}, ${2:want_peer})" },
		{ "trigger": "stream_socket_pair", "contents": "stream_socket_pair(${1:domain}, ${2:type}, ${3:protocol})" },
		{ "trigger": "stream_socket_recvfrom", "contents": "stream_socket_recvfrom(${1:socket}, ${2:length})" },
		{ "trigger": "stream_socket_sendto", "contents": "stream_socket_sendto(${1:socket}, ${2:data})" },
		{ "trigger": "stream_socket_server", "contents": "stream_socket_server(${1:local_socket})" },
		{ "trigger": "stream_socket_shutdown", "contents": "stream_socket_shutdown(${1:stream}, ${2:how})" },
		{ "trigger": "stream_supports_lock", "contents": "stream_supports_lock(${1:stream})" },
		{ "trigger": "stream_wrapper_register", "contents": "stream_wrapper_register(${1:protocol}, ${2:classname})" },
		{ "trigger": "stream_wrapper_restore", "contents": "stream_wrapper_restore(${1:protocol})" },
		{ "trigger": "stream_wrapper_unregister", "contents": "stream_wrapper_unregister(${1:protocol})" },
		{ "trigger": "strftime", "contents": "strftime(${1:format})" },
		{ "trigger": "strip_tags", "contents": "strip_tags(${1:str})" },
		{ "trigger": "stripcslashes", "contents": "stripcslashes(${1:str})" },
		{ "trigger": "stripos", "contents": "stripos(${1:haystack}, ${2:needle})" },
		{ "trigger": "stripslashes", "contents": "stripslashes(${1:str})" },
		{ "trigger": "stristr", "contents": "stristr(${1:haystack}, ${2:needle})" },
		{ "trigger": "strlen", "contents": "strlen(${1:string})" },
		{ "trigger": "strnatcasecmp", "contents": "strnatcasecmp(${1:str1}, ${2:str2})" },
		{ "trigger": "strnatcmp", "contents": "strnatcmp(${1:str1}, ${2:str2})" },
		{ "trigger": "strncasecmp", "contents": "strncasecmp(${1:str1}, ${2:str2}, ${3:len})" },
		{ "trigger": "strncmp", "contents": "strncmp(${1:str1}, ${2:str2}, ${3:len})" },
		{ "trigger": "strpbrk", "contents": "strpbrk(${1:haystack}, ${2:char_list})" },
		{ "trigger": "strpos", "contents": "strpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "strptime", "contents": "strptime(${1:date}, ${2:format})" },
		{ "trigger": "strrchr", "contents": "strrchr(${1:haystack}, ${2:needle})" },
		{ "trigger": "strrev", "contents": "strrev(${1:string})" },
		{ "trigger": "strripos", "contents": "strripos(${1:haystack}, ${2:needle})" },
		{ "trigger": "strrpos", "contents": "strrpos(${1:haystack}, ${2:needle})" },
		{ "trigger": "strspn", "contents": "strspn(${1:subject}, ${2:mask})" },
		{ "trigger": "strstr", "contents": "strstr(${1:haystack}, ${2:needle})" },
		{ "trigger": "strtok", "contents": "strtok(${1:str}, ${2:token})" },
		{ "trigger": "strtolower", "contents": "strtolower(${1:str})" },
		{ "trigger": "strtotime", "contents": "strtotime(${1:time})" },
		{ "trigger": "strtoupper", "contents": "strtoupper(${1:string})" },
		{ "trigger": "strtr", "contents": "strtr(${1:str}, ${2:from}, ${3:to})" },
		{ "trigger": "strval", "contents": "strval(${1:var})" },
		{ "trigger": "substr", "contents": "substr(${1:string}, ${2:start})" },
		{ "trigger": "substr_compare", "contents": "substr_compare(${1:main_str}, ${2:str}, ${3:offset})" },
		{ "trigger": "substr_count", "contents": "substr_count(${1:haystack}, ${2:needle})" },
		{ "trigger": "substr_replace", "contents": "substr_replace(${1:string}, ${2:replacement}, ${3:start})" },
		{ "trigger": "svn_add", "contents": "svn_add(${1:path})" },
		{ "trigger": "svn_auth_get_parameter", "contents": "svn_auth_get_parameter(${1:key})" },
		{ "trigger": "svn_auth_set_parameter", "contents": "svn_auth_set_parameter(${1:key}, ${2:value})" },
		{ "trigger": "svn_blame", "contents": "svn_blame(${1:repository_url})" },
		{ "trigger": "svn_cat", "contents": "svn_cat(${1:repos_url})" },
		{ "trigger": "svn_checkout", "contents": "svn_checkout(${1:repos}, ${2:targetpath})" },
		{ "trigger": "svn_cleanup", "contents": "svn_cleanup(${1:workingdir})" },
		{ "trigger": "svn_client_version", "contents": "svn_client_version(${1:oid})" },
		{ "trigger": "svn_commit", "contents": "svn_commit(${1:log}, ${2:targets})" },
		{ "trigger": "svn_delete", "contents": "svn_delete(${1:path})" },
		{ "trigger": "svn_diff", "contents": "svn_diff(${1:path1}, ${2:rev1}, ${3:path2}, ${4:rev2})" },
		{ "trigger": "svn_export", "contents": "svn_export(${1:frompath}, ${2:topath})" },
		{ "trigger": "svn_fs_abort_txn", "contents": "svn_fs_abort_txn(${1:txn})" },
		{ "trigger": "svn_fs_apply_text", "contents": "svn_fs_apply_text(${1:root}, ${2:path})" },
		{ "trigger": "svn_fs_begin_txn2", "contents": "svn_fs_begin_txn2(${1:repos}, ${2:rev})" },
		{ "trigger": "svn_fs_change_node_prop", "contents": "svn_fs_change_node_prop(${1:root}, ${2:path}, ${3:name}, ${4:value})" },
		{ "trigger": "svn_fs_check_path", "contents": "svn_fs_check_path(${1:fsroot}, ${2:path})" },
		{ "trigger": "svn_fs_contents_changed", "contents": "svn_fs_contents_changed(${1:root1}, ${2:path1}, ${3:root2}, ${4:path2})" },
		{ "trigger": "svn_fs_copy", "contents": "svn_fs_copy(${1:from_root}, ${2:from_path}, ${3:to_root}, ${4:to_path})" },
		{ "trigger": "svn_fs_delete", "contents": "svn_fs_delete(${1:root}, ${2:path})" },
		{ "trigger": "svn_fs_dir_entries", "contents": "svn_fs_dir_entries(${1:fsroot}, ${2:path})" },
		{ "trigger": "svn_fs_file_contents", "contents": "svn_fs_file_contents(${1:fsroot}, ${2:path})" },
		{ "trigger": "svn_fs_file_length", "contents": "svn_fs_file_length(${1:fsroot}, ${2:path})" },
		{ "trigger": "svn_fs_is_dir", "contents": "svn_fs_is_dir(${1:root}, ${2:path})" },
		{ "trigger": "svn_fs_is_file", "contents": "svn_fs_is_file(${1:root}, ${2:path})" },
		{ "trigger": "svn_fs_make_dir", "contents": "svn_fs_make_dir(${1:root}, ${2:path})" },
		{ "trigger": "svn_fs_make_file", "contents": "svn_fs_make_file(${1:root}, ${2:path})" },
		{ "trigger": "svn_fs_node_created_rev", "contents": "svn_fs_node_created_rev(${1:fsroot}, ${2:path})" },
		{ "trigger": "svn_fs_node_prop", "contents": "svn_fs_node_prop(${1:fsroot}, ${2:path}, ${3:propname})" },
		{ "trigger": "svn_fs_props_changed", "contents": "svn_fs_props_changed(${1:root1}, ${2:path1}, ${3:root2}, ${4:path2})" },
		{ "trigger": "svn_fs_revision_prop", "contents": "svn_fs_revision_prop(${1:fs}, ${2:revnum}, ${3:propname})" },
		{ "trigger": "svn_fs_revision_root", "contents": "svn_fs_revision_root(${1:fs}, ${2:revnum})" },
		{ "trigger": "svn_fs_txn_root", "contents": "svn_fs_txn_root(${1:txn})" },
		{ "trigger": "svn_fs_youngest_rev", "contents": "svn_fs_youngest_rev(${1:fs})" },
		{ "trigger": "svn_import", "contents": "svn_import(${1:path}, ${2:url}, ${3:nonrecursive})" },
		{ "trigger": "svn_log", "contents": "svn_log(${1:repos_url})" },
		{ "trigger": "svn_ls", "contents": "svn_ls(${1:repos_url})" },
		{ "trigger": "svn_mkdir", "contents": "svn_mkdir(${1:path})" },
		{ "trigger": "svn_repos_create", "contents": "svn_repos_create(${1:path})" },
		{ "trigger": "svn_repos_fs", "contents": "svn_repos_fs(${1:repos})" },
		{ "trigger": "svn_repos_fs_begin_txn_for_commit", "contents": "svn_repos_fs_begin_txn_for_commit(${1:repos}, ${2:rev}, ${3:author}, ${4:log_msg})" },
		{ "trigger": "svn_repos_fs_commit_txn", "contents": "svn_repos_fs_commit_txn(${1:txn})" },
		{ "trigger": "svn_repos_hotcopy", "contents": "svn_repos_hotcopy(${1:repospath}, ${2:destpath}, ${3:cleanlogs})" },
		{ "trigger": "svn_repos_open", "contents": "svn_repos_open(${1:path})" },
		{ "trigger": "svn_repos_recover", "contents": "svn_repos_recover(${1:path})" },
		{ "trigger": "svn_revert", "contents": "svn_revert(${1:path})" },
		{ "trigger": "svn_status", "contents": "svn_status(${1:path})" },
		{ "trigger": "svn_update", "contents": "svn_update(${1:path})" },
		{ "trigger": "swf_actiongeturl", "contents": "swf_actiongeturl(${1:url}, ${2:target})" },
		{ "trigger": "swf_actiongotoframe", "contents": "swf_actiongotoframe(${1:framenumber})" },
		{ "trigger": "swf_actiongotolabel", "contents": "swf_actiongotolabel(${1:label})" },
		{ "trigger": "swf_actionnextframe", "contents": "swf_actionnextframe(${1:oid})" },
		{ "trigger": "swf_actionplay", "contents": "swf_actionplay(${1:oid})" },
		{ "trigger": "swf_actionprevframe", "contents": "swf_actionprevframe(${1:oid})" },
		{ "trigger": "swf_actionsettarget", "contents": "swf_actionsettarget(${1:target})" },
		{ "trigger": "swf_actionstop", "contents": "swf_actionstop(${1:oid})" },
		{ "trigger": "swf_actiontogglequality", "contents": "swf_actiontogglequality(${1:oid})" },
		{ "trigger": "swf_actionwaitforframe", "contents": "swf_actionwaitforframe(${1:framenumber}, ${2:skipcount})" },
		{ "trigger": "swf_addbuttonrecord", "contents": "swf_addbuttonrecord(${1:states}, ${2:shapeid}, ${3:depth})" },
		{ "trigger": "swf_addcolor", "contents": "swf_addcolor(${1:r}, ${2:g}, ${3:b}, ${4:a})" },
		{ "trigger": "swf_closefile", "contents": "swf_closefile()" },
		{ "trigger": "swf_definebitmap", "contents": "swf_definebitmap(${1:objid}, ${2:image_name})" },
		{ "trigger": "swf_definefont", "contents": "swf_definefont(${1:fontid}, ${2:fontname})" },
		{ "trigger": "swf_defineline", "contents": "swf_defineline(${1:objid}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:width})" },
		{ "trigger": "swf_definepoly", "contents": "swf_definepoly(${1:objid}, ${2:coords}, ${3:npoints}, ${4:width})" },
		{ "trigger": "swf_definerect", "contents": "swf_definerect(${1:objid}, ${2:x1}, ${3:y1}, ${4:x2}, ${5:y2}, ${6:width})" },
		{ "trigger": "swf_definetext", "contents": "swf_definetext(${1:objid}, ${2:str}, ${3:docenter})" },
		{ "trigger": "swf_endbutton", "contents": "swf_endbutton(${1:oid})" },
		{ "trigger": "swf_enddoaction", "contents": "swf_enddoaction(${1:oid})" },
		{ "trigger": "swf_endshape", "contents": "swf_endshape(${1:oid})" },
		{ "trigger": "swf_endsymbol", "contents": "swf_endsymbol(${1:oid})" },
		{ "trigger": "swf_fontsize", "contents": "swf_fontsize(${1:size})" },
		{ "trigger": "swf_fontslant", "contents": "swf_fontslant(${1:slant})" },
		{ "trigger": "swf_fonttracking", "contents": "swf_fonttracking(${1:tracking})" },
		{ "trigger": "swf_getbitmapinfo", "contents": "swf_getbitmapinfo(${1:bitmapid})" },
		{ "trigger": "swf_getfontinfo", "contents": "swf_getfontinfo(${1:oid})" },
		{ "trigger": "swf_getframe", "contents": "swf_getframe(${1:oid})" },
		{ "trigger": "swf_labelframe", "contents": "swf_labelframe(${1:name})" },
		{ "trigger": "swf_lookat", "contents": "swf_lookat(${1:view_x}, ${2:view_y}, ${3:view_z}, ${4:reference_x}, ${5:reference_y}, ${6:reference_z}, ${7:twist})" },
		{ "trigger": "swf_modifyobject", "contents": "swf_modifyobject(${1:depth}, ${2:how})" },
		{ "trigger": "swf_mulcolor", "contents": "swf_mulcolor(${1:r}, ${2:g}, ${3:b}, ${4:a})" },
		{ "trigger": "swf_nextid", "contents": "swf_nextid(${1:oid})" },
		{ "trigger": "swf_oncondition", "contents": "swf_oncondition(${1:transition})" },
		{ "trigger": "swf_openfile", "contents": "swf_openfile(${1:filename}, ${2:width}, ${3:height}, ${4:framerate}, ${5:r}, ${6:g}, ${7:b})" },
		{ "trigger": "swf_ortho", "contents": "swf_ortho(${1:xmin}, ${2:xmax}, ${3:ymin}, ${4:ymax}, ${5:zmin}, ${6:zmax})" },
		{ "trigger": "swf_ortho2", "contents": "swf_ortho2(${1:xmin}, ${2:xmax}, ${3:ymin}, ${4:ymax})" },
		{ "trigger": "swf_perspective", "contents": "swf_perspective(${1:fovy}, ${2:aspect}, ${3:near}, ${4:far})" },
		{ "trigger": "swf_placeobject", "contents": "swf_placeobject(${1:objid}, ${2:depth})" },
		{ "trigger": "swf_polarview", "contents": "swf_polarview(${1:dist}, ${2:azimuth}, ${3:incidence}, ${4:twist})" },
		{ "trigger": "swf_popmatrix", "contents": "swf_popmatrix(${1:oid})" },
		{ "trigger": "swf_posround", "contents": "swf_posround(${1:round})" },
		{ "trigger": "swf_pushmatrix", "contents": "swf_pushmatrix(${1:oid})" },
		{ "trigger": "swf_removeobject", "contents": "swf_removeobject(${1:depth})" },
		{ "trigger": "swf_rotate", "contents": "swf_rotate(${1:angle}, ${2:axis})" },
		{ "trigger": "swf_scale", "contents": "swf_scale(${1:x}, ${2:y}, ${3:z})" },
		{ "trigger": "swf_setfont", "contents": "swf_setfont(${1:fontid})" },
		{ "trigger": "swf_setframe", "contents": "swf_setframe(${1:framenumber})" },
		{ "trigger": "swf_shapearc", "contents": "swf_shapearc(${1:x}, ${2:y}, ${3:r}, ${4:ang1}, ${5:ang2})" },
		{ "trigger": "swf_shapecurveto", "contents": "swf_shapecurveto(${1:x1}, ${2:y1}, ${3:x2}, ${4:y2})" },
		{ "trigger": "swf_shapecurveto3", "contents": "swf_shapecurveto3(${1:x1}, ${2:y1}, ${3:x2}, ${4:y2}, ${5:x3}, ${6:y3})" },
		{ "trigger": "swf_shapefillbitmapclip", "contents": "swf_shapefillbitmapclip(${1:bitmapid})" },
		{ "trigger": "swf_shapefillbitmaptile", "contents": "swf_shapefillbitmaptile(${1:bitmapid})" },
		{ "trigger": "swf_shapefilloff", "contents": "swf_shapefilloff(${1:oid})" },
		{ "trigger": "swf_shapefillsolid", "contents": "swf_shapefillsolid(${1:r}, ${2:g}, ${3:b}, ${4:a})" },
		{ "trigger": "swf_shapelinesolid", "contents": "swf_shapelinesolid(${1:r}, ${2:g}, ${3:b}, ${4:a}, ${5:width})" },
		{ "trigger": "swf_shapelineto", "contents": "swf_shapelineto(${1:x}, ${2:y})" },
		{ "trigger": "swf_shapemoveto", "contents": "swf_shapemoveto(${1:x}, ${2:y})" },
		{ "trigger": "swf_showframe", "contents": "swf_showframe(${1:oid})" },
		{ "trigger": "swf_startbutton", "contents": "swf_startbutton(${1:objid}, ${2:type})" },
		{ "trigger": "swf_startdoaction", "contents": "swf_startdoaction(${1:oid})" },
		{ "trigger": "swf_startshape", "contents": "swf_startshape(${1:objid})" },
		{ "trigger": "swf_startsymbol", "contents": "swf_startsymbol(${1:objid})" },
		{ "trigger": "swf_textwidth", "contents": "swf_textwidth(${1:str})" },
		{ "trigger": "swf_translate", "contents": "swf_translate(${1:x}, ${2:y}, ${3:z})" },
		{ "trigger": "swf_viewport", "contents": "swf_viewport(${1:xmin}, ${2:xmax}, ${3:ymin}, ${4:ymax})" },
		{ "trigger": "SWFSound", "contents": "SWFSound(${1:filename})" },
		{ "trigger": "sybase_affected_rows", "contents": "sybase_affected_rows()" },
		{ "trigger": "sybase_close", "contents": "sybase_close()" },
		{ "trigger": "sybase_connect", "contents": "sybase_connect()" },
		{ "trigger": "sybase_data_seek", "contents": "sybase_data_seek(${1:result_identifier}, ${2:row_number})" },
		{ "trigger": "sybase_deadlock_retry_count", "contents": "sybase_deadlock_retry_count(${1:retry_count})" },
		{ "trigger": "sybase_fetch_array", "contents": "sybase_fetch_array(${1:result})" },
		{ "trigger": "sybase_fetch_assoc", "contents": "sybase_fetch_assoc(${1:result})" },
		{ "trigger": "sybase_fetch_field", "contents": "sybase_fetch_field(${1:result})" },
		{ "trigger": "sybase_fetch_object", "contents": "sybase_fetch_object(${1:result})" },
		{ "trigger": "sybase_fetch_row", "contents": "sybase_fetch_row(${1:result})" },
		{ "trigger": "sybase_field_seek", "contents": "sybase_field_seek(${1:result}, ${2:field_offset})" },
		{ "trigger": "sybase_free_result", "contents": "sybase_free_result(${1:result})" },
		{ "trigger": "sybase_get_last_message", "contents": "sybase_get_last_message(${1:oid})" },
		{ "trigger": "sybase_min_client_severity", "contents": "sybase_min_client_severity(${1:severity})" },
		{ "trigger": "sybase_min_error_severity", "contents": "sybase_min_error_severity(${1:severity})" },
		{ "trigger": "sybase_min_message_severity", "contents": "sybase_min_message_severity(${1:severity})" },
		{ "trigger": "sybase_min_server_severity", "contents": "sybase_min_server_severity(${1:severity})" },
		{ "trigger": "sybase_num_fields", "contents": "sybase_num_fields(${1:result})" },
		{ "trigger": "sybase_num_rows", "contents": "sybase_num_rows(${1:result})" },
		{ "trigger": "sybase_pconnect", "contents": "sybase_pconnect()" },
		{ "trigger": "sybase_query", "contents": "sybase_query(${1:query})" },
		{ "trigger": "sybase_result", "contents": "sybase_result(${1:result}, ${2:row}, ${3:field})" },
		{ "trigger": "sybase_select_db", "contents": "sybase_select_db(${1:database_name})" },
		{ "trigger": "sybase_set_message_handler", "contents": "sybase_set_message_handler(${1:handler})" },
		{ "trigger": "sybase_unbuffered_query", "contents": "sybase_unbuffered_query(${1:query}, ${2:link_identifier})" },
		{ "trigger": "symlink", "contents": "symlink(${1:target}, ${2:link})" },
		{ "trigger": "sys_get_temp_dir", "contents": "sys_get_temp_dir(${1:oid})" },
		{ "trigger": "sys_getloadavg", "contents": "sys_getloadavg(${1:oid})" },
		{ "trigger": "syslog", "contents": "syslog(${1:priority}, ${2:message})" },
		{ "trigger": "system", "contents": "system(${1:command})" },
		{ "trigger": "tan", "contents": "tan(${1:arg})" },
		{ "trigger": "tanh", "contents": "tanh(${1:arg})" },
		{ "trigger": "tcpwrap_check", "contents": "tcpwrap_check(${1:daemon}, ${2:address})" },
		{ "trigger": "tempnam", "contents": "tempnam(${1:dir}, ${2:prefix})" },
		{ "trigger": "textdomain", "contents": "textdomain(${1:text_domain})" },
		{ "trigger": "tidy_access_count", "contents": "tidy_access_count(${1:object})" },
		{ "trigger": "tidy_config_count", "contents": "tidy_config_count(${1:object})" },
		{ "trigger": "tidy_error_count", "contents": "tidy_error_count(${1:object})" },
		{ "trigger": "tidy_get_error_buffer", "contents": "tidy_get_error_buffer(${1:object})" },
		{ "trigger": "tidy_get_output", "contents": "tidy_get_output(${1:object})" },
		{ "trigger": "tidy_load_config", "contents": "tidy_load_config(${1:filename}, ${2:encoding})" },
		{ "trigger": "tidy_reset_config", "contents": "tidy_reset_config(${1:oid})" },
		{ "trigger": "tidy_save_config", "contents": "tidy_save_config(${1:filename})" },
		{ "trigger": "tidy_set_encoding", "contents": "tidy_set_encoding(${1:encoding})" },
		{ "trigger": "tidy_setopt", "contents": "tidy_setopt(${1:option}, ${2:value})" },
		{ "trigger": "tidy_warning_count", "contents": "tidy_warning_count(${1:object})" },
		{ "trigger": "time", "contents": "time(${1:oid})" },
		{ "trigger": "time_nanosleep", "contents": "time_nanosleep(${1:seconds}, ${2:nanoseconds})" },
		{ "trigger": "time_sleep_until", "contents": "time_sleep_until(${1:timestamp})" },
		{ "trigger": "timezone_abbreviations_list", "contents": "timezone_abbreviations_list()" },
		{ "trigger": "timezone_identifiers_list", "contents": "timezone_identifiers_list()" },
		{ "trigger": "timezone_location_get", "contents": "timezone_location_get()" },
		{ "trigger": "timezone_name_from_abbr", "contents": "timezone_name_from_abbr(${1:abbr})" },
		{ "trigger": "timezone_name_get", "contents": "timezone_name_get()" },
		{ "trigger": "timezone_offset_get", "contents": "timezone_offset_get()" },
		{ "trigger": "timezone_open", "contents": "timezone_open()" },
		{ "trigger": "timezone_transitions_get", "contents": "timezone_transitions_get()" },
		{ "trigger": "timezone_version_get", "contents": "timezone_version_get(${1:oid})" },
		{ "trigger": "tmpfile", "contents": "tmpfile(${1:oid})" },
		{ "trigger": "token_get_all", "contents": "token_get_all(${1:source})" },
		{ "trigger": "token_name", "contents": "token_name(${1:token})" },
		{ "trigger": "touch", "contents": "touch(${1:filename})" },
		{ "trigger": "trigger_error", "contents": "trigger_error(${1:error_msg})" },
		{ "trigger": "trim", "contents": "trim(${1:str})" },
		{ "trigger": "uasort", "contents": "uasort(${1:array}, ${2:cmp_function})" },
		{ "trigger": "ucfirst", "contents": "ucfirst(${1:str})" },
		{ "trigger": "ucwords", "contents": "ucwords(${1:str})" },
		{ "trigger": "udm_add_search_limit", "contents": "udm_add_search_limit(${1:agent}, ${2:var}, ${3:val})" },
		{ "trigger": "udm_alloc_agent", "contents": "udm_alloc_agent(${1:dbaddr})" },
		{ "trigger": "udm_alloc_agent_array", "contents": "udm_alloc_agent_array(${1:databases})" },
		{ "trigger": "udm_api_version", "contents": "udm_api_version(${1:oid})" },
		{ "trigger": "udm_cat_list", "contents": "udm_cat_list(${1:agent}, ${2:category})" },
		{ "trigger": "udm_cat_path", "contents": "udm_cat_path(${1:agent}, ${2:category})" },
		{ "trigger": "udm_check_charset", "contents": "udm_check_charset(${1:agent}, ${2:charset})" },
		{ "trigger": "udm_check_stored", "contents": "udm_check_stored(${1:agent}, ${2:link}, ${3:doc_id})" },
		{ "trigger": "udm_clear_search_limits", "contents": "udm_clear_search_limits(${1:agent})" },
		{ "trigger": "udm_close_stored", "contents": "udm_close_stored(${1:agent}, ${2:link})" },
		{ "trigger": "udm_crc32", "contents": "udm_crc32(${1:agent}, ${2:str})" },
		{ "trigger": "udm_errno", "contents": "udm_errno(${1:agent})" },
		{ "trigger": "udm_error", "contents": "udm_error(${1:agent})" },
		{ "trigger": "udm_find", "contents": "udm_find(${1:agent}, ${2:query})" },
		{ "trigger": "udm_free_agent", "contents": "udm_free_agent(${1:agent})" },
		{ "trigger": "udm_free_ispell_data", "contents": "udm_free_ispell_data(${1:agent})" },
		{ "trigger": "udm_free_res", "contents": "udm_free_res(${1:res})" },
		{ "trigger": "udm_get_doc_count", "contents": "udm_get_doc_count(${1:agent})" },
		{ "trigger": "udm_get_res_field", "contents": "udm_get_res_field(${1:res}, ${2:row}, ${3:field})" },
		{ "trigger": "udm_get_res_param", "contents": "udm_get_res_param(${1:res}, ${2:param})" },
		{ "trigger": "udm_hash32", "contents": "udm_hash32(${1:agent}, ${2:str})" },
		{ "trigger": "udm_load_ispell_data", "contents": "udm_load_ispell_data(${1:agent}, ${2:var}, ${3:val1}, ${4:val2}, ${5:flag})" },
		{ "trigger": "udm_open_stored", "contents": "udm_open_stored(${1:agent}, ${2:storedaddr})" },
		{ "trigger": "udm_set_agent_param", "contents": "udm_set_agent_param(${1:agent}, ${2:var}, ${3:val})" },
		{ "trigger": "uksort", "contents": "uksort(${1:array}, ${2:cmp_function})" },
		{ "trigger": "umask", "contents": "umask()" },
		{ "trigger": "uniqid", "contents": "uniqid()" },
		{ "trigger": "unixtojd", "contents": "unixtojd()" },
		{ "trigger": "unlink", "contents": "unlink(${1:filename})" },
		{ "trigger": "unpack", "contents": "unpack(${1:format}, ${2:data})" },
		{ "trigger": "unregister_tick_function", "contents": "unregister_tick_function(${1:function_name})" },
		{ "trigger": "unserialize", "contents": "unserialize(${1:str})" },
		{ "trigger": "unset", "contents": "unset(${1:var})" },
		{ "trigger": "urldecode", "contents": "urldecode(${1:str})" },
		{ "trigger": "urlencode", "contents": "urlencode(${1:str})" },
		{ "trigger": "use_soap_error_handler", "contents": "use_soap_error_handler()" },
		{ "trigger": "user_error", "contents": "user_error()" },
		{ "trigger": "usleep", "contents": "usleep(${1:micro_seconds})" },
		{ "trigger": "usort", "contents": "usort(${1:array}, ${2:cmp_function})" },
		{ "trigger": "utf8_decode", "contents": "utf8_decode(${1:data})" },
		{ "trigger": "utf8_encode", "contents": "utf8_encode(${1:data})" },
		{ "trigger": "var_dump", "contents": "var_dump(${1:expression})" },
		{ "trigger": "var_export", "contents": "var_export(${1:expression})" },
		{ "trigger": "variant_abs", "contents": "variant_abs(${1:val})" },
		{ "trigger": "variant_add", "contents": "variant_add(${1:left}, ${2:right})" },
		{ "trigger": "variant_and", "contents": "variant_and(${1:left}, ${2:right})" },
		{ "trigger": "variant_cast", "contents": "variant_cast(${1:variant}, ${2:type})" },
		{ "trigger": "variant_cat", "contents": "variant_cat(${1:left}, ${2:right})" },
		{ "trigger": "variant_cmp", "contents": "variant_cmp(${1:left}, ${2:right})" },
		{ "trigger": "variant_date_from_timestamp", "contents": "variant_date_from_timestamp(${1:timestamp})" },
		{ "trigger": "variant_date_to_timestamp", "contents": "variant_date_to_timestamp(${1:variant})" },
		{ "trigger": "variant_div", "contents": "variant_div(${1:left}, ${2:right})" },
		{ "trigger": "variant_eqv", "contents": "variant_eqv(${1:left}, ${2:right})" },
		{ "trigger": "variant_fix", "contents": "variant_fix(${1:variant})" },
		{ "trigger": "variant_get_type", "contents": "variant_get_type(${1:variant})" },
		{ "trigger": "variant_idiv", "contents": "variant_idiv(${1:left}, ${2:right})" },
		{ "trigger": "variant_imp", "contents": "variant_imp(${1:left}, ${2:right})" },
		{ "trigger": "variant_int", "contents": "variant_int(${1:variant})" },
		{ "trigger": "variant_mod", "contents": "variant_mod(${1:left}, ${2:right})" },
		{ "trigger": "variant_mul", "contents": "variant_mul(${1:left}, ${2:right})" },
		{ "trigger": "variant_neg", "contents": "variant_neg(${1:variant})" },
		{ "trigger": "variant_not", "contents": "variant_not(${1:variant})" },
		{ "trigger": "variant_or", "contents": "variant_or(${1:left}, ${2:right})" },
		{ "trigger": "variant_pow", "contents": "variant_pow(${1:left}, ${2:right})" },
		{ "trigger": "variant_round", "contents": "variant_round(${1:variant}, ${2:decimals})" },
		{ "trigger": "variant_set", "contents": "variant_set(${1:variant}, ${2:value})" },
		{ "trigger": "variant_set_type", "contents": "variant_set_type(${1:variant}, ${2:type})" },
		{ "trigger": "variant_sub", "contents": "variant_sub(${1:left}, ${2:right})" },
		{ "trigger": "variant_xor", "contents": "variant_xor(${1:left}, ${2:right})" },
		{ "trigger": "version_compare", "contents": "version_compare(${1:version1}, ${2:version2})" },
		{ "trigger": "vfprintf", "contents": "vfprintf(${1:handle}, ${2:format}, ${3:args})" },
		{ "trigger": "virtual", "contents": "virtual(${1:filename})" },
		{ "trigger": "vpopmail_add_alias_domain", "contents": "vpopmail_add_alias_domain(${1:domain}, ${2:aliasdomain})" },
		{ "trigger": "vpopmail_add_alias_domain_ex", "contents": "vpopmail_add_alias_domain_ex(${1:olddomain}, ${2:newdomain})" },
		{ "trigger": "vpopmail_add_domain", "contents": "vpopmail_add_domain(${1:domain}, ${2:dir}, ${3:uid}, ${4:gid})" },
		{ "trigger": "vpopmail_add_domain_ex", "contents": "vpopmail_add_domain_ex(${1:domain}, ${2:passwd})" },
		{ "trigger": "vpopmail_add_user", "contents": "vpopmail_add_user(${1:user}, ${2:domain}, ${3:password})" },
		{ "trigger": "vpopmail_alias_add", "contents": "vpopmail_alias_add(${1:user}, ${2:domain}, ${3:alias})" },
		{ "trigger": "vpopmail_alias_del", "contents": "vpopmail_alias_del(${1:user}, ${2:domain})" },
		{ "trigger": "vpopmail_alias_del_domain", "contents": "vpopmail_alias_del_domain(${1:domain})" },
		{ "trigger": "vpopmail_alias_get", "contents": "vpopmail_alias_get(${1:alias}, ${2:domain})" },
		{ "trigger": "vpopmail_alias_get_all", "contents": "vpopmail_alias_get_all(${1:domain})" },
		{ "trigger": "vpopmail_auth_user", "contents": "vpopmail_auth_user(${1:user}, ${2:domain}, ${3:password})" },
		{ "trigger": "vpopmail_del_domain", "contents": "vpopmail_del_domain(${1:domain})" },
		{ "trigger": "vpopmail_del_domain_ex", "contents": "vpopmail_del_domain_ex(${1:domain})" },
		{ "trigger": "vpopmail_del_user", "contents": "vpopmail_del_user(${1:user}, ${2:domain})" },
		{ "trigger": "vpopmail_error", "contents": "vpopmail_error(${1:oid})" },
		{ "trigger": "vpopmail_passwd", "contents": "vpopmail_passwd(${1:user}, ${2:domain}, ${3:password})" },
		{ "trigger": "vpopmail_set_user_quota", "contents": "vpopmail_set_user_quota(${1:user}, ${2:domain}, ${3:quota})" },
		{ "trigger": "vprintf", "contents": "vprintf(${1:format}, ${2:args})" },
		{ "trigger": "vsprintf", "contents": "vsprintf(${1:format}, ${2:args})" },
		{ "trigger": "w32api_deftype", "contents": "w32api_deftype(${1:typename}, ${2:member1_type}, ${3:member1_name})" },
		{ "trigger": "w32api_init_dtype", "contents": "w32api_init_dtype(${1:typename}, ${2:value})" },
		{ "trigger": "w32api_invoke_function", "contents": "w32api_invoke_function(${1:funcname}, ${2:argument})" },
		{ "trigger": "w32api_register_function", "contents": "w32api_register_function(${1:library}, ${2:function_name}, ${3:return_type})" },
		{ "trigger": "w32api_set_call_method", "contents": "w32api_set_call_method(${1:method})" },
		{ "trigger": "wddx_add_vars", "contents": "wddx_add_vars(${1:packet_id}, ${2:var_name})" },
		{ "trigger": "wddx_deserialize", "contents": "wddx_deserialize()" },
		{ "trigger": "wddx_packet_end", "contents": "wddx_packet_end(${1:packet_id})" },
		{ "trigger": "wddx_packet_start", "contents": "wddx_packet_start()" },
		{ "trigger": "wddx_serialize_value", "contents": "wddx_serialize_value(${1:var})" },
		{ "trigger": "wddx_serialize_vars", "contents": "wddx_serialize_vars(${1:var_name})" },
		{ "trigger": "wddx_unserialize", "contents": "wddx_unserialize(${1:packet})" },
		{ "trigger": "win32_continue_service", "contents": "win32_continue_service(${1:servicename})" },
		{ "trigger": "win32_create_service", "contents": "win32_create_service(${1:details})" },
		{ "trigger": "win32_delete_service", "contents": "win32_delete_service(${1:servicename})" },
		{ "trigger": "win32_get_last_control_message", "contents": "win32_get_last_control_message(${1:oid})" },
		{ "trigger": "win32_pause_service", "contents": "win32_pause_service(${1:servicename})" },
		{ "trigger": "win32_ps_list_procs", "contents": "win32_ps_list_procs(${1:oid})" },
		{ "trigger": "win32_ps_stat_mem", "contents": "win32_ps_stat_mem(${1:oid})" },
		{ "trigger": "win32_ps_stat_proc", "contents": "win32_ps_stat_proc()" },
		{ "trigger": "win32_query_service_status", "contents": "win32_query_service_status(${1:servicename})" },
		{ "trigger": "win32_set_service_status", "contents": "win32_set_service_status(${1:status})" },
		{ "trigger": "win32_start_service", "contents": "win32_start_service(${1:servicename})" },
		{ "trigger": "win32_start_service_ctrl_dispatcher", "contents": "win32_start_service_ctrl_dispatcher(${1:name})" },
		{ "trigger": "win32_stop_service", "contents": "win32_stop_service(${1:servicename})" },
		{ "trigger": "wincache_fcache_fileinfo", "contents": "wincache_fcache_fileinfo()" },
		{ "trigger": "wincache_fcache_meminfo", "contents": "wincache_fcache_meminfo(${1:oid})" },
		{ "trigger": "wincache_lock", "contents": "wincache_lock(${1:key})" },
		{ "trigger": "wincache_ocache_fileinfo", "contents": "wincache_ocache_fileinfo()" },
		{ "trigger": "wincache_ocache_meminfo", "contents": "wincache_ocache_meminfo(${1:oid})" },
		{ "trigger": "wincache_refresh_if_changed", "contents": "wincache_refresh_if_changed()" },
		{ "trigger": "wincache_rplist_fileinfo", "contents": "wincache_rplist_fileinfo()" },
		{ "trigger": "wincache_rplist_meminfo", "contents": "wincache_rplist_meminfo(${1:oid})" },
		{ "trigger": "wincache_scache_info", "contents": "wincache_scache_info()" },
		{ "trigger": "wincache_scache_meminfo", "contents": "wincache_scache_meminfo(${1:oid})" },
		{ "trigger": "wincache_ucache_add", "contents": "wincache_ucache_add(${1:key}, ${2:value})" },
		{ "trigger": "wincache_ucache_cas", "contents": "wincache_ucache_cas(${1:key}, ${2:old_value}, ${3:new_value})" },
		{ "trigger": "wincache_ucache_clear", "contents": "wincache_ucache_clear(${1:oid})" },
		{ "trigger": "wincache_ucache_dec", "contents": "wincache_ucache_dec(${1:key})" },
		{ "trigger": "wincache_ucache_delete", "contents": "wincache_ucache_delete(${1:key})" },
		{ "trigger": "wincache_ucache_exists", "contents": "wincache_ucache_exists(${1:key})" },
		{ "trigger": "wincache_ucache_get", "contents": "wincache_ucache_get(${1:key})" },
		{ "trigger": "wincache_ucache_inc", "contents": "wincache_ucache_inc(${1:key})" },
		{ "trigger": "wincache_ucache_info", "contents": "wincache_ucache_info()" },
		{ "trigger": "wincache_ucache_meminfo", "contents": "wincache_ucache_meminfo(${1:oid})" },
		{ "trigger": "wincache_ucache_set", "contents": "wincache_ucache_set(${1:key}, ${2:value})" },
		{ "trigger": "wincache_unlock", "contents": "wincache_unlock(${1:key})" },
		{ "trigger": "wordwrap", "contents": "wordwrap(${1:str})" },
		{ "trigger": "xattr_get", "contents": "xattr_get(${1:filename}, ${2:name})" },
		{ "trigger": "xattr_list", "contents": "xattr_list(${1:filename})" },
		{ "trigger": "xattr_remove", "contents": "xattr_remove(${1:filename}, ${2:name})" },
		{ "trigger": "xattr_set", "contents": "xattr_set(${1:filename}, ${2:name}, ${3:value})" },
		{ "trigger": "xattr_supported", "contents": "xattr_supported(${1:filename})" },
		{ "trigger": "xdiff_file_bdiff", "contents": "xdiff_file_bdiff(${1:old_file}, ${2:new_file}, ${3:dest})" },
		{ "trigger": "xdiff_file_bdiff_size", "contents": "xdiff_file_bdiff_size(${1:file})" },
		{ "trigger": "xdiff_file_bpatch", "contents": "xdiff_file_bpatch(${1:file}, ${2:patch}, ${3:dest})" },
		{ "trigger": "xdiff_file_diff", "contents": "xdiff_file_diff(${1:old_file}, ${2:new_file}, ${3:dest})" },
		{ "trigger": "xdiff_file_diff_binary", "contents": "xdiff_file_diff_binary(${1:old_file}, ${2:new_file}, ${3:dest})" },
		{ "trigger": "xdiff_file_merge3", "contents": "xdiff_file_merge3(${1:old_file}, ${2:new_file1}, ${3:new_file2}, ${4:dest})" },
		{ "trigger": "xdiff_file_patch", "contents": "xdiff_file_patch(${1:file}, ${2:patch}, ${3:dest})" },
		{ "trigger": "xdiff_file_patch_binary", "contents": "xdiff_file_patch_binary(${1:file}, ${2:patch}, ${3:dest})" },
		{ "trigger": "xdiff_file_rabdiff", "contents": "xdiff_file_rabdiff(${1:old_file}, ${2:new_file}, ${3:dest})" },
		{ "trigger": "xdiff_string_bdiff", "contents": "xdiff_string_bdiff(${1:old_data}, ${2:new_data})" },
		{ "trigger": "xdiff_string_bdiff_size", "contents": "xdiff_string_bdiff_size(${1:patch})" },
		{ "trigger": "xdiff_string_bpatch", "contents": "xdiff_string_bpatch(${1:str}, ${2:patch})" },
		{ "trigger": "xdiff_string_diff", "contents": "xdiff_string_diff(${1:old_data}, ${2:new_data})" },
		{ "trigger": "xdiff_string_diff_binary", "contents": "xdiff_string_diff_binary(${1:old_data}, ${2:new_data})" },
		{ "trigger": "xdiff_string_merge3", "contents": "xdiff_string_merge3(${1:old_data}, ${2:new_data1}, ${3:new_data2})" },
		{ "trigger": "xdiff_string_patch", "contents": "xdiff_string_patch(${1:str}, ${2:patch})" },
		{ "trigger": "xdiff_string_patch_binary", "contents": "xdiff_string_patch_binary(${1:str}, ${2:patch})" },
		{ "trigger": "xdiff_string_rabdiff", "contents": "xdiff_string_rabdiff(${1:old_data}, ${2:new_data})" },
		{ "trigger": "xml_error_string", "contents": "xml_error_string(${1:code})" },
		{ "trigger": "xml_get_current_byte_index", "contents": "xml_get_current_byte_index(${1:parser})" },
		{ "trigger": "xml_get_current_column_number", "contents": "xml_get_current_column_number(${1:parser})" },
		{ "trigger": "xml_get_current_line_number", "contents": "xml_get_current_line_number(${1:parser})" },
		{ "trigger": "xml_get_error_code", "contents": "xml_get_error_code(${1:parser})" },
		{ "trigger": "xml_parse", "contents": "xml_parse(${1:parser}, ${2:data})" },
		{ "trigger": "xml_parse_into_struct", "contents": "xml_parse_into_struct(${1:parser}, ${2:data}, ${3:values})" },
		{ "trigger": "xml_parser_create", "contents": "xml_parser_create()" },
		{ "trigger": "xml_parser_create_ns", "contents": "xml_parser_create_ns()" },
		{ "trigger": "xml_parser_free", "contents": "xml_parser_free(${1:parser})" },
		{ "trigger": "xml_parser_get_option", "contents": "xml_parser_get_option(${1:parser}, ${2:option})" },
		{ "trigger": "xml_parser_set_option", "contents": "xml_parser_set_option(${1:parser}, ${2:option}, ${3:value})" },
		{ "trigger": "xml_set_character_data_handler", "contents": "xml_set_character_data_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_default_handler", "contents": "xml_set_default_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_element_handler", "contents": "xml_set_element_handler(${1:parser}, ${2:start_element_handler}, ${3:end_element_handler})" },
		{ "trigger": "xml_set_end_namespace_decl_handler", "contents": "xml_set_end_namespace_decl_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_external_entity_ref_handler", "contents": "xml_set_external_entity_ref_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_notation_decl_handler", "contents": "xml_set_notation_decl_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_object", "contents": "xml_set_object(${1:parser}, ${2:object})" },
		{ "trigger": "xml_set_processing_instruction_handler", "contents": "xml_set_processing_instruction_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_start_namespace_decl_handler", "contents": "xml_set_start_namespace_decl_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xml_set_unparsed_entity_decl_handler", "contents": "xml_set_unparsed_entity_decl_handler(${1:parser}, ${2:handler})" },
		{ "trigger": "xmlrpc_decode", "contents": "xmlrpc_decode(${1:xml})" },
		{ "trigger": "xmlrpc_decode_request", "contents": "xmlrpc_decode_request(${1:xml}, ${2:method})" },
		{ "trigger": "xmlrpc_encode", "contents": "xmlrpc_encode(${1:value})" },
		{ "trigger": "xmlrpc_encode_request", "contents": "xmlrpc_encode_request(${1:method}, ${2:params})" },
		{ "trigger": "xmlrpc_get_type", "contents": "xmlrpc_get_type(${1:value})" },
		{ "trigger": "xmlrpc_is_fault", "contents": "xmlrpc_is_fault(${1:arg})" },
		{ "trigger": "xmlrpc_parse_method_descriptions", "contents": "xmlrpc_parse_method_descriptions(${1:xml})" },
		{ "trigger": "xmlrpc_server_add_introspection_data", "contents": "xmlrpc_server_add_introspection_data(${1:server}, ${2:desc})" },
		{ "trigger": "xmlrpc_server_call_method", "contents": "xmlrpc_server_call_method(${1:server}, ${2:xml}, ${3:user_data})" },
		{ "trigger": "xmlrpc_server_create", "contents": "xmlrpc_server_create(${1:oid})" },
		{ "trigger": "xmlrpc_server_destroy", "contents": "xmlrpc_server_destroy(${1:server})" },
		{ "trigger": "xmlrpc_server_register_introspection_callback", "contents": "xmlrpc_server_register_introspection_callback(${1:server}, ${2:function})" },
		{ "trigger": "xmlrpc_server_register_method", "contents": "xmlrpc_server_register_method(${1:server}, ${2:method_name}, ${3:function})" },
		{ "trigger": "xmlrpc_set_type", "contents": "xmlrpc_set_type(${1:value}, ${2:type})" },
		{ "trigger": "xpath_eval", "contents": "xpath_eval(${1:xpath_expression})" },
		{ "trigger": "xpath_eval_expression", "contents": "xpath_eval_expression(${1:expression})" },
		{ "trigger": "xpath_new_context", "contents": "xpath_new_context(${1:dom_document})" },
		{ "trigger": "xpath_register_ns", "contents": "xpath_register_ns(${1:xpath_context}, ${2:prefix}, ${3:uri})" },
		{ "trigger": "xpath_register_ns_auto", "contents": "xpath_register_ns_auto(${1:xpath_context})" },
		{ "trigger": "xptr_eval", "contents": "xptr_eval(${1:eval_str})" },
		{ "trigger": "xptr_new_context", "contents": "xptr_new_context(${1:oid})" },
		{ "trigger": "xslt_backend_info", "contents": "xslt_backend_info(${1:oid})" },
		{ "trigger": "xslt_backend_name", "contents": "xslt_backend_name(${1:oid})" },
		{ "trigger": "xslt_backend_version", "contents": "xslt_backend_version(${1:oid})" },
		{ "trigger": "xslt_create", "contents": "xslt_create(${1:oid})" },
		{ "trigger": "xslt_errno", "contents": "xslt_errno(${1:xh})" },
		{ "trigger": "xslt_error", "contents": "xslt_error(${1:xh})" },
		{ "trigger": "xslt_free", "contents": "xslt_free(${1:xh})" },
		{ "trigger": "xslt_getopt", "contents": "xslt_getopt(${1:processor})" },
		{ "trigger": "xslt_process", "contents": "xslt_process(${1:xh}, ${2:xmlcontainer}, ${3:xslcontainer})" },
		{ "trigger": "xslt_set_base", "contents": "xslt_set_base(${1:xh}, ${2:uri})" },
		{ "trigger": "xslt_set_encoding", "contents": "xslt_set_encoding(${1:xh}, ${2:encoding})" },
		{ "trigger": "xslt_set_error_handler", "contents": "xslt_set_error_handler(${1:xh}, ${2:handler})" },
		{ "trigger": "xslt_set_log", "contents": "xslt_set_log(${1:xh})" },
		{ "trigger": "xslt_set_object", "contents": "xslt_set_object(${1:processor}, ${2:obj})" },
		{ "trigger": "xslt_set_sax_handler", "contents": "xslt_set_sax_handler(${1:xh}, ${2:handlers})" },
		{ "trigger": "xslt_set_sax_handlers", "contents": "xslt_set_sax_handlers(${1:processor}, ${2:handlers})" },
		{ "trigger": "xslt_set_scheme_handler", "contents": "xslt_set_scheme_handler(${1:xh}, ${2:handlers})" },
		{ "trigger": "xslt_set_scheme_handlers", "contents": "xslt_set_scheme_handlers(${1:xh}, ${2:handlers})" },
		{ "trigger": "xslt_setopt", "contents": "xslt_setopt(${1:processor}, ${2:newmask})" },
		{ "trigger": "yaml_emit", "contents": "yaml_emit(${1:data})" },
		{ "trigger": "yaml_emit_file", "contents": "yaml_emit_file(${1:filename}, ${2:data})" },
		{ "trigger": "yaml_parse", "contents": "yaml_parse(${1:input})" },
		{ "trigger": "yaml_parse_file", "contents": "yaml_parse_file(${1:filename})" },
		{ "trigger": "yaml_parse_url", "contents": "yaml_parse_url(${1:url})" },
		{ "trigger": "yaz_addinfo", "contents": "yaz_addinfo(${1:id})" },
		{ "trigger": "yaz_ccl_conf", "contents": "yaz_ccl_conf(${1:id}, ${2:config})" },
		{ "trigger": "yaz_ccl_parse", "contents": "yaz_ccl_parse(${1:id}, ${2:query}, ${3:result})" },
		{ "trigger": "yaz_close", "contents": "yaz_close(${1:id})" },
		{ "trigger": "yaz_connect", "contents": "yaz_connect(${1:zurl})" },
		{ "trigger": "yaz_database", "contents": "yaz_database(${1:id}, ${2:databases})" },
		{ "trigger": "yaz_element", "contents": "yaz_element(${1:id}, ${2:elementset})" },
		{ "trigger": "yaz_errno", "contents": "yaz_errno(${1:id})" },
		{ "trigger": "yaz_error", "contents": "yaz_error(${1:id})" },
		{ "trigger": "yaz_es", "contents": "yaz_es(${1:id}, ${2:type}, ${3:args})" },
		{ "trigger": "yaz_es_result", "contents": "yaz_es_result(${1:id})" },
		{ "trigger": "yaz_get_option", "contents": "yaz_get_option(${1:id}, ${2:name})" },
		{ "trigger": "yaz_hits", "contents": "yaz_hits(${1:id})" },
		{ "trigger": "yaz_itemorder", "contents": "yaz_itemorder(${1:id}, ${2:args})" },
		{ "trigger": "yaz_present", "contents": "yaz_present(${1:id})" },
		{ "trigger": "yaz_range", "contents": "yaz_range(${1:id}, ${2:start}, ${3:number})" },
		{ "trigger": "yaz_record", "contents": "yaz_record(${1:id}, ${2:pos}, ${3:type})" },
		{ "trigger": "yaz_scan", "contents": "yaz_scan(${1:id}, ${2:type}, ${3:startterm})" },
		{ "trigger": "yaz_scan_result", "contents": "yaz_scan_result(${1:id})" },
		{ "trigger": "yaz_schema", "contents": "yaz_schema(${1:id}, ${2:schema})" },
		{ "trigger": "yaz_search", "contents": "yaz_search(${1:id}, ${2:type}, ${3:query})" },
		{ "trigger": "yaz_set_option", "contents": "yaz_set_option(${1:id}, ${2:name}, ${3:value})" },
		{ "trigger": "yaz_sort", "contents": "yaz_sort(${1:id}, ${2:criteria})" },
		{ "trigger": "yaz_syntax", "contents": "yaz_syntax(${1:id}, ${2:syntax})" },
		{ "trigger": "yaz_wait", "contents": "yaz_wait()" },
		{ "trigger": "yp_all", "contents": "yp_all(${1:domain}, ${2:map}, ${3:callback})" },
		{ "trigger": "yp_cat", "contents": "yp_cat(${1:domain}, ${2:map})" },
		{ "trigger": "yp_err_string", "contents": "yp_err_string(${1:errorcode})" },
		{ "trigger": "yp_errno", "contents": "yp_errno(${1:oid})" },
		{ "trigger": "yp_first", "contents": "yp_first(${1:domain}, ${2:map})" },
		{ "trigger": "yp_get_default_domain", "contents": "yp_get_default_domain(${1:oid})" },
		{ "trigger": "yp_master", "contents": "yp_master(${1:domain}, ${2:map})" },
		{ "trigger": "yp_match", "contents": "yp_match(${1:domain}, ${2:map}, ${3:key})" },
		{ "trigger": "yp_next", "contents": "yp_next(${1:domain}, ${2:map}, ${3:key})" },
		{ "trigger": "yp_order", "contents": "yp_order(${1:domain}, ${2:map})" },
		{ "trigger": "zend_logo_guid", "contents": "zend_logo_guid(${1:oid})" },
		{ "trigger": "zend_thread_id", "contents": "zend_thread_id(${1:oid})" },
		{ "trigger": "zend_version", "contents": "zend_version(${1:oid})" },
		{ "trigger": "zip_close", "contents": "zip_close(${1:zip})" },
		{ "trigger": "zip_entry_close", "contents": "zip_entry_close(${1:zip_entry})" },
		{ "trigger": "zip_entry_compressedsize", "contents": "zip_entry_compressedsize(${1:zip_entry})" },
		{ "trigger": "zip_entry_compressionmethod", "contents": "zip_entry_compressionmethod(${1:zip_entry})" },
		{ "trigger": "zip_entry_filesize", "contents": "zip_entry_filesize(${1:zip_entry})" },
		{ "trigger": "zip_entry_name", "contents": "zip_entry_name(${1:zip_entry})" },
		{ "trigger": "zip_entry_open", "contents": "zip_entry_open(${1:zip}, ${2:zip_entry})" },
		{ "trigger": "zip_entry_read", "contents": "zip_entry_read(${1:zip_entry})" },
		{ "trigger": "zip_open", "contents": "zip_open(${1:filename})" },
		{ "trigger": "zip_read", "contents": "zip_read(${1:zip})" },
		{ "trigger": "zlib_get_coding_type", "contents": "zlib_get_coding_type(${1:oid})" }
	]
}PKiZ=A#php.sublime-snippet<snippet>
    <content><![CDATA[<?${TM_PHP_OPEN_TAG:php} $0 ?>]]></content>
    <tabTrigger>php</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>&lt;?php … ?&gt;</description>
</snippet>
PK(X>MPHP.tmLanguage<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>comment</key>
	<string>TODO:
• Try to improve parameters list syntax – scope numbers, ‘=’, ‘,’ and possibly be intelligent about entity ordering
• Is meta.function-call the correct scope? I've added it to my theme but by default it's not highlighted</string>
	<key>fileTypes</key>
	<array>
		<!-- .php files are actually opened with HTML.tmLanguage, this is just a bit of trickery to make it look like PHP.tmLanguage is used to open them -->
		<string>php</string>
	</array>
	<key>firstLineMatch</key>
	<string>^#!.*(?&lt;!-)php[0-9]{0,1}\b</string>
	<key>foldingStartMarker</key>
	<string>(/\*|\{\s*$|&lt;&lt;&lt;HTML)</string>
	<key>foldingStopMarker</key>
	<string>(\*/|^\s*\}|^HTML;)</string>
	<key>name</key>
	<string>PHP</string>
	<key>patterns</key>
	<array>
		<dict>
			<key>captures</key>
			<dict>
				<key>1</key>
				<dict>
					<key>name</key>
					<string>punctuation.whitespace.embedded.leading.php</string>
				</dict>
				<key>2</key>
				<dict>
					<key>name</key>
					<string>source.php.embedded.line.empty.html</string>
				</dict>
				<key>3</key>
				<dict>
					<key>name</key>
					<string>punctuation.section.embedded.begin.php</string>
				</dict>
				<key>4</key>
				<dict>
					<key>name</key>
					<string>meta.consecutive-tags.php</string>
				</dict>
				<key>5</key>
				<dict>
					<key>name</key>
					<string>source.php</string>
				</dict>
				<key>6</key>
				<dict>
					<key>name</key>
					<string>punctuation.section.embedded.end.php</string>
				</dict>
				<key>7</key>
				<dict>
					<key>name</key>
					<string>source.php</string>
				</dict>
				<key>8</key>
				<dict>
					<key>name</key>
					<string>punctuation.whitespace.embedded.trailing.php</string>
				</dict>
			</dict>
			<key>comment</key>
			<string>Matches empty tags.</string>
			<key>match</key>
			<string>(?x)
				(^\s*)?							# 1 - Leading whitespace
					(							# 2 - meta.embedded.line.empty.php
						(						# 3 - Open Tag
							(?:
								((?&lt;=\?&gt;)&lt;)		# 4 - Consecutive tags
							  | &lt;
							)
							\?(?i:php|=)?
						)
							(\s*)				# 5 - Loneliness
						((\?)&gt;)					# 6 - Close Tag
												# 7 - Scope ? as scope.php
					)
				(
					\1							# Match nothing if there was no
												#   leading whitespace...
				  | (\s*$\n)?					# or match trailing whitespace.
				)
			</string>
		</dict>
		<dict>
			<key>begin</key>
			<string>^\s*(?=&lt;\?)</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.whitespace.embedded.leading.php</string>
				</dict>
			</dict>
			<key>comment</key>
			<string>Catches tags with preceeding whitespace.</string>
			<key>end</key>
			<string>(?&lt;=\?&gt;)(\s*$\n)?</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.whitespace.embedded.trailing.php</string>
				</dict>
			</dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>begin</key>
					<string>&lt;\?(?i:php|=)?</string>
					<key>beginCaptures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.section.embedded.begin.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>(\?)&gt;</string>
					<key>endCaptures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.section.embedded.end.php</string>
						</dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>source.php</string>
						</dict>
					</dict>
					<key>name</key>
					<string>source.php.embedded.block.html</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#language</string>
						</dict>
					</array>
				</dict>
			</array>
		</dict>
		<dict>
			<key>begin</key>
			<string>(((?&lt;=\?&gt;)&lt;)|&lt;)\?(?i:php|=)?</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.section.embedded.begin.php</string>
				</dict>
				<key>2</key>
				<dict>
					<key>name</key>
					<string>meta.consecutive-tags.php</string>
				</dict>
			</dict>
			<key>comment</key>
			<string>Catches the remainder.</string>
			<key>end</key>
			<string>(\?)&gt;</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.section.embedded.end.php</string>
				</dict>
				<key>1</key>
				<dict>
					<key>name</key>
					<string>source.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>source.php.embedded.line.html</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>include</key>
					<string>#language</string>
				</dict>
			</array>
		</dict>
	</array>
	<key>repository</key>
	<dict>
		<key>constants</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>match</key>
					<string>(?i)\b(TRUE|FALSE|NULL|__(FILE|FUNCTION|CLASS|METHOD|LINE)__|ON|OFF|YES|NO|NL|BR|TAB)\b</string>
					<key>name</key>
					<string>constant.language.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\b(DEFAULT_INCLUDE_PATH|E_(ALL|COMPILE_(ERROR|WARNING)|CORE_(ERROR|WARNING)|(RECOVERABLE_)?ERROR|NOTICE|PARSE|STRICT|USER_(ERROR|NOTICE|WARNING)|WARNING)|PEAR_(EXTENSION_DIR|INSTALL_DIR)|PHP_(BINDIR|CONFIG_FILE_PATH|DATADIR|E(OL|XTENSION_DIR)|L(IBDIR|OCALSTATEDIR)|O(S|UTPUT_HANDLER_CONT|UTPUT_HANDLER_END|UTPUT_HANDLER_START)|SYSCONFDIR|VERSION))\b</string>
					<key>name</key>
					<string>support.constant.core.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\b(A(B(DAY_([1-7])|MON_([0-9]{1,2}))|LT_DIGITS|M_STR|SSERT_(ACTIVE|BAIL|CALLBACK|QUIET_EVAL|WARNING))|C(ASE_(LOWER|UPPER)|HAR_MAX|O(DESET|NNECTION_(ABORTED|NORMAL|TIMEOUT)|UNT_(NORMAL|RECURSIVE))|REDITS_(ALL|DOCS|FULLPAGE|GENERAL|GROUP|MODULES|QA|SAPI)|RNCYSTR|RYPT_(BLOWFISH|EXT_DES|MD5|SALT_LENGTH|STD_DES)|URRENCY_SYMBOL)|D(AY_([1-7])|ECIMAL_POINT|IRECTORY_SEPARATOR|_(FMT|T_FMT))|E(NT_(COMPAT|NOQUOTES|QUOTES)|RA(|_D_FMT|_D_T_FMT|_T_FMT|_YEAR)|XTR_(IF_EXISTS|OVERWRITE|PREFIX_(ALL|IF_EXISTS|INVALID|SAME)|SKIP))|FRAC_DIGITS|GROUPING|HTML_(ENTITIES|SPECIALCHARS)|IN(FO_(ALL|CONFIGURATION|CREDITS|ENVIRONMENT|GENERAL|LICENSE|MODULES|VARIABLES)|I_(ALL|PERDIR|SYSTEM|USER)|T_(CURR_SYMBOL|FRAC_DIGITS))|L(C_(ALL|COLLATE|CTYPE|MESSAGES|MONETARY|NUMERIC|TIME)|O(CK_(EX|NB|SH|UN)|G_(ALERT|AUTH(|PRIV)|CONS|CRIT|CRON|DAEMON|DEBUG|EMERG|ERR|INFO|KERN|LOCAL([0-7])|LPR|MAIL|NDELAY|NEWS|NOTICE|NOWAIT|ODELAY|PERROR|PID|SYSLOG|USER|UUCP|WARNING)))|M(ON_([0-9]{1,2}|DECIMAL_POINT|GROUPING|THOUSANDS_SEP)|YSQL_(ASSOC|BOTH|NUM)|_(1_PI|2_(PI|SQRTPI)|E|L(N10|N2|OG(10E|2E))|PI(|_2|_4)|SQRT1_2|SQRT2))|N(EGATIVE_SIGN|O(EXPR|STR)|_(CS_PRECEDES|SEP_BY_SPACE|SIGN_POSN))|P(ATH(INFO_(BASENAME|DIRNAME|EXTENSION|FILENAME)|_SEPARATOR)|M_STR|OSITIVE_SIGN|_(CS_PRECEDES|SEP_BY_SPACE|SIGN_POSN))|RADIXCHAR|S(EEK_(CUR|END|SET)|ORT_(ASC|DESC|NUMERIC|REGULAR|STRING)|TR_PAD_(BOTH|LEFT|RIGHT))|T(HOUS(ANDS_SEP|EP)|_(FMT(|_AMPM)))|YES(EXPR|STR))\b</string>
					<key>name</key>
					<string>support.constant.std.php</string>
				</dict>
				<dict>
					<key>comment</key>
					<string>In PHP, any identifier which is not a variable is taken to be a constant.
				However, if there is no constant defined with the given name then a notice
				is generated and the constant is assumed to have the value of its name.</string>
					<key>match</key>
					<string>[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*</string>
					<key>name</key>
					<string>constant.other.php</string>
				</dict>
			</array>
		</dict>
		<key>function-call</key>
		<dict>
			<key>match</key>
			<string>[A-Za-z_][A-Za-z_0-9]*(?=\s*\()</string>
			<key>name</key>
			<string>meta.function-call.php</string>
		</dict>
		<key>instantiation</key>
		<dict>
			<key>captures</key>
			<dict>
				<key>1</key>
				<dict>
					<key>name</key>
					<string>keyword.other.new.php</string>
				</dict>
				<key>2</key>
				<dict>
					<key>name</key>
					<string>variable.other.php</string>
				</dict>
				<key>3</key>
				<dict>
					<key>name</key>
					<string>support.class.php</string>
				</dict>
				<key>4</key>
				<dict>
					<key>name</key>
					<string>support.class.php</string>
				</dict>
			</dict>
			<key>match</key>
			<string>(?i)\b(new)\s+(?:(\$[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)|(\w+))|(\w+)(?=::)</string>
		</dict>
		<key>interpolation</key>
		<dict>
			<key>comment</key>
			<string>http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>match</key>
					<string>\\[0-7]{1,3}</string>
					<key>name</key>
					<string>constant.numeric.octal.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\\x[0-9A-Fa-f]{1,2}</string>
					<key>name</key>
					<string>constant.numeric.hex.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\\[nrt\\\$\"]</string>
					<key>name</key>
					<string>constant.character.escape.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>variable.other.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
						<key>4</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
					</dict>
					<key>comment</key>
					<string>Simple syntax with braces: "foo${bar}baz"</string>
					<key>match</key>
					<string>(?x)
						((\$\{)(?&lt;name&gt;[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)(\}))
						</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>variable.other.php</string>
						</dict>
						<key>10</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
						<key>11</key>
						<dict>
							<key>name</key>
							<string>string.unquoted.index.php</string>
						</dict>
						<key>12</key>
						<dict>
							<key>name</key>
							<string>invalid.illegal.invalid-simple-array-index.php</string>
						</dict>
						<key>13</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.index-end.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
						<key>4</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.class.php</string>
						</dict>
						<key>5</key>
						<dict>
							<key>name</key>
							<string>variable.other.property.php</string>
						</dict>
						<key>6</key>
						<dict>
							<key>name</key>
							<string>invalid.illegal.php</string>
						</dict>
						<key>7</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.index-start.php</string>
						</dict>
						<key>8</key>
						<dict>
							<key>name</key>
							<string>constant.numeric.index.php</string>
						</dict>
						<key>9</key>
						<dict>
							<key>name</key>
							<string>variable.other.index.php</string>
						</dict>
					</dict>
					<key>comment</key>
					<string>Simple syntax: $foo, $foo[0], $foo[$bar], $foo-&gt;bar</string>
					<key>match</key>
					<string>(?x)
						((\$)(?&lt;name&gt;[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*))
						(?:
							(-&gt;)
								(?:
									(\g&lt;name&gt;)
									|
									(\$\g&lt;name&gt;)
								)
							|
							(\[)
								(?:(\d+)|((\$)\g&lt;name&gt;)|(\w+)|(.*?))
							(\])
						)?
						</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>(?=(?&lt;regex&gt;(?#simple syntax)\$(?&lt;name&gt;[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)(?:\[(?&lt;index&gt;[a-zA-Z0-9_\x{7f}-\x{ff}]+|\$\g&lt;name&gt;)\]|-&gt;\g&lt;name&gt;(\(.*?\))?)?|(?#simple syntax with braces)\$\{(?:\g&lt;name&gt;(?&lt;indices&gt;\[(?:\g&lt;index&gt;|'(?:\\.|[^'\\])*'|"(?:\g&lt;regex&gt;|\\.|[^"\\])*")\])?|\g&lt;complex&gt;|\$\{\g&lt;complex&gt;\})\}|(?#complex syntax)\{(?&lt;complex&gt;\$(?&lt;segment&gt;\g&lt;name&gt;(\g&lt;indices&gt;*|\(.*?\))?)(?:-&gt;\g&lt;segment&gt;)*|\$\g&lt;complex&gt;|\$\{\g&lt;complex&gt;\})\}))\{</string>
					<key>beginCaptures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
					</dict>
					<key>comment</key>
					<string>Complex syntax. It seems this now supports complex method calls, as of PHP5.
							   I've put wildcards into the function call parameter lists to handle this, but this may break the pattern.
							   It also might be better to disable it as I shouldn't imagine it's used often (hopefully) and it may confuse PHP4 users.</string>
					<key>end</key>
					<string>\}</string>
					<key>endCaptures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
					</dict>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#function-call</string>
						</dict>
						<dict>
							<key>include</key>
							<string>#var_basic</string>
						</dict>
						<dict>
							<key>include</key>
							<string>#object</string>
						</dict>
						<dict>
							<key>include</key>
							<string>#numbers</string>
						</dict>
						<dict>
							<key>match</key>
							<string>\[</string>
							<key>name</key>
							<string>keyword.operator.index-start.php</string>
						</dict>
						<dict>
							<key>match</key>
							<string>\]</string>
							<key>name</key>
							<string>keyword.operator.index-end.php</string>
						</dict>
					</array>
				</dict>
			</array>
		</dict>
		<key>language</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>begin</key>
					<string>(?=&lt;&lt;&lt;\s*(HTML|XML|SQL|JAVASCRIPT)\s*$)</string>
					<key>end</key>
					<string>(?!&lt;?&lt;&lt;\s*(HTML|XML|SQL|JAVASCRIPT)\s*$)</string>
					<key>name</key>
					<string>string.unquoted.heredoc.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>begin</key>
							<string>(&lt;&lt;&lt;)\s*(HTML)\s*$\n?</string>
							<key>beginCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.begin.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
							</dict>
							<key>contentName</key>
							<string>text.html</string>
							<key>end</key>
							<string>^(HTML)(;?)$\n?</string>
							<key>endCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.end.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
							</dict>
							<key>name</key>
							<string>meta.embedded.html</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>include</key>
									<string>text.html.basic</string>
								</dict>
								<dict>
									<key>include</key>
									<string>#interpolation</string>
								</dict>
							</array>
						</dict>
						<dict>
							<key>begin</key>
							<string>(&lt;&lt;&lt;)\s*(XML)\s*$\n?</string>
							<key>beginCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.begin.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
							</dict>
							<key>contentName</key>
							<string>text.xml</string>
							<key>end</key>
							<string>^(XML)(;?)$\n?</string>
							<key>endCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.end.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
							</dict>
							<key>name</key>
							<string>meta.embedded.xml</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>include</key>
									<string>text.xml</string>
								</dict>
								<dict>
									<key>include</key>
									<string>#interpolation</string>
								</dict>
							</array>
						</dict>
						<dict>
							<key>begin</key>
							<string>(&lt;&lt;&lt;)\s*(SQL)\s*$\n?</string>
							<key>beginCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.begin.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
							</dict>
							<key>contentName</key>
							<string>source.sql</string>
							<key>end</key>
							<string>^(SQL)(;?)$\n?</string>
							<key>endCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.end.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
							</dict>
							<key>name</key>
							<string>meta.embedded.sql</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>include</key>
									<string>source.sql</string>
								</dict>
								<dict>
									<key>include</key>
									<string>#interpolation</string>
								</dict>
							</array>
						</dict>
						<dict>
							<key>begin</key>
							<string>(&lt;&lt;&lt;)\s*(JAVASCRIPT)\s*$\n?</string>
							<key>beginCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.begin.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
							</dict>
							<key>contentName</key>
							<string>source.js</string>
							<key>end</key>
							<string>^(JAVASCRIPT)(;?)$\n?</string>
							<key>endCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.section.embedded.end.php</string>
								</dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.heredoc.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.string.php</string>
								</dict>
							</dict>
							<key>name</key>
							<string>meta.embedded.js</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>include</key>
									<string>source.js</string>
								</dict>
								<dict>
									<key>include</key>
									<string>#interpolation</string>
								</dict>
							</array>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>/\*\*(?:#@\+)?\s*$</string>
					<key>captures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.comment.php</string>
						</dict>
					</dict>
					<key>comment</key>
					<string>This now only highlights a docblock if the first line contains only /**
								- this is to stop highlighting everything as invalid when people do comment banners with /******** ...
								- Now matches /**#@+ too - used for docblock templates: http://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.docblocktemplate</string>
					<key>end</key>
					<string>\*/</string>
					<key>name</key>
					<string>comment.block.documentation.phpdoc.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#php_doc</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>/\*</string>
					<key>captures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.comment.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\*/</string>
					<key>name</key>
					<string>comment.block.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.comment.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(//).*?($\n?|(?=\?&gt;))</string>
					<key>name</key>
					<string>comment.line.double-slash.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.comment.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(#).*?($\n?|(?=\?&gt;))</string>
					<key>name</key>
					<string>comment.line.number-sign.php</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>^(?i)\s*(interface)\s+([a-z0-9_]+)\s*(extends)?\s*</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>storage.type.interface.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>entity.name.type.interface.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>storage.modifier.extends.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>$</string>
					<key>name</key>
					<string>meta.interface.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>[a-zA-Z0-9_]+</string>
							<key>name</key>
							<string>entity.other.inherited-class.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>(?i)^\s*(abstract|final)?\s*(class)\s+([a-z0-9_]+)\s*</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>storage.modifier.abstract.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>storage.type.class.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>entity.name.type.class.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>$</string>
					<key>name</key>
					<string>meta.class.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>captures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.extends.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>entity.other.inherited-class.php</string>
								</dict>
							</dict>
							<key>match</key>
							<string>(?i:(extends))\s+([a-zA-Z0-9_]+)\s*</string>
						</dict>
						<dict>
							<key>begin</key>
							<string>(?i:(implements))\s+([a-zA-Z0-9_]+)\s*</string>
							<key>beginCaptures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.implements.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>support.class.implements.php</string>
								</dict>
							</dict>
							<key>end</key>
							<string>(?=\s*\b(?i:(extends)))|$</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>captures</key>
									<dict>
										<key>1</key>
										<dict>
											<key>name</key>
											<string>support.class.implements.php</string>
										</dict>
									</dict>
									<key>match</key>
									<string>,\s*([a-zA-Z0-9_]+)\s*</string>
								</dict>
							</array>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>\b(break|c(ase|ontinue)|d(e(clare|fault)|ie|o)|e(lse(if)?|nd(declare|for(each)?|if|switch|while)|xit)|for(each)?|if|return|switch|use|while)\b</string>
					<key>name</key>
					<string>keyword.control.php</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>(?i)\b((?:require|include)(?:_once)?)\b\s*</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.control.import.include.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>(?=\s|;|$)</string>
					<key>name</key>
					<string>meta.include.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#language</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.control.exception.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>support.class.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>variable.other.php</string>
						</dict>
						<key>4</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>\b(catch)\b\s*\(\s*([A-Za-z_][A-Za-z_0-9]*)\s*((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)\s*\)</string>
					<key>name</key>
					<string>meta.catch.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\b(catch|try|throw|exception)\b</string>
					<key>name</key>
					<string>keyword.control.exception.php</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>(?:^\s*)((?:(?:final|abstract|public|private|protected|static)\s+)*)(function)(?:\s+|(\s*&amp;\s*))(?:(__(?:call|(?:con|de)struct|get|(?:is|un)?set|tostring|clone|set_state|sleep|wakeup|autoload))|([a-zA-Z0-9_]+))\s*(\()</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>storage.modifier.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>storage.type.function.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>storage.modifier.reference.php</string>
						</dict>
						<key>4</key>
						<dict>
							<key>name</key>
							<string>support.function.magic.php</string>
						</dict>
						<key>5</key>
						<dict>
							<key>name</key>
							<string>entity.name.function.php</string>
						</dict>
						<key>6</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.parameters.begin.php</string>
						</dict>
					</dict>
					<key>contentName</key>
					<string>meta.function.arguments.php</string>
					<key>end</key>
					<string>\)</string>
					<key>endCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.parameters.end.php</string>
						</dict>
					</dict>
					<key>name</key>
					<string>meta.function.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>begin</key>
							<string>(?x)
									\s*(array) # Typehint
									\s*(&amp;)? 					# Reference
									\s*((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*) # The variable name
									\s*(=)	# A default value
									\s*(array)\s*(\()
									</string>
							<key>beginCaptures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>storage.type.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.php</string>
								</dict>
								<key>3</key>
								<dict>
									<key>name</key>
									<string>variable.other.php</string>
								</dict>
								<key>4</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.variable.php</string>
								</dict>
								<key>5</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.assignment.php</string>
								</dict>
								<key>6</key>
								<dict>
									<key>name</key>
									<string>support.function.construct.php</string>
								</dict>
								<key>7</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.array.begin.php</string>
								</dict>
							</dict>
							<key>contentName</key>
							<string>meta.array.php</string>
							<key>end</key>
							<string>\)</string>
							<key>endCaptures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.array.end.php</string>
								</dict>
							</dict>
							<key>name</key>
							<string>meta.function.argument.array.php</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>include</key>
									<string>#strings</string>
								</dict>
								<dict>
									<key>include</key>
									<string>#numbers</string>
								</dict>
							</array>
						</dict>
						<dict>
							<key>captures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>storage.type.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.php</string>
								</dict>
								<key>3</key>
								<dict>
									<key>name</key>
									<string>variable.other.php</string>
								</dict>
								<key>4</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.variable.php</string>
								</dict>
								<key>5</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.assignment.php</string>
								</dict>
								<key>6</key>
								<dict>
									<key>name</key>
									<string>constant.language.php</string>
								</dict>
								<key>7</key>
								<dict>
									<key>name</key>
									<string>invalid.illegal.non-null-typehinted.php</string>
								</dict>
							</dict>
							<key>match</key>
							<string>(?x)
									\s*(array) # Typehint
									\s*(&amp;)? 					# Reference
									\s*((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*) # The variable name
									(?:
										\s*(=)	# A default value
										\s*(?i:
											(NULL)
											|
											(\S.*?)
											)?
									)?
									\s*(?=,|\)) # A closing parentheses (end of argument list) or a comma
									</string>
							<key>name</key>
							<string>meta.function.argument.array.php</string>
						</dict>
						<dict>
							<key>captures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>support.class.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.php</string>
								</dict>
								<key>3</key>
								<dict>
									<key>name</key>
									<string>variable.other.php</string>
								</dict>
								<key>4</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.variable.php</string>
								</dict>
								<key>5</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.assignment.php</string>
								</dict>
								<key>6</key>
								<dict>
									<key>name</key>
									<string>constant.language.php</string>
								</dict>
								<key>7</key>
								<dict>
									<key>name</key>
									<string>invalid.illegal.non-null-typehinted.php</string>
								</dict>
							</dict>
							<key>match</key>
							<string>(?x)
									\s*([A-Za-z_][A-Za-z_0-9]*) # Typehinted class name
									\s*(&amp;)? 					# Reference
									\s*((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*) # The variable name
									(?:
										\s*(=)	# A default value
										\s*(?i:
											(NULL)
											|
											(\S.*?)
											)?
									)?
									\s*(?=,|\)) # A closing parentheses (end of argument list) or a comma
									</string>
							<key>name</key>
							<string>meta.function.argument.typehinted.php</string>
						</dict>
						<dict>
							<key>captures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>variable.other.php</string>
								</dict>
								<key>3</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.variable.php</string>
								</dict>
							</dict>
							<key>match</key>
							<string>(\s*&amp;)?\s*((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)\s*(?=,|\))</string>
							<key>name</key>
							<string>meta.function.argument.no-default.php</string>
						</dict>
						<dict>
							<key>begin</key>
							<string>(\s*&amp;)?\s*((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)(?:\s*(=)\s*)\s*</string>
							<key>captures</key>
							<dict>
								<key>1</key>
								<dict>
									<key>name</key>
									<string>storage.modifier.php</string>
								</dict>
								<key>2</key>
								<dict>
									<key>name</key>
									<string>variable.other.php</string>
								</dict>
								<key>3</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.variable.php</string>
								</dict>
								<key>4</key>
								<dict>
									<key>name</key>
									<string>keyword.operator.assignment.php</string>
								</dict>
							</dict>
							<key>end</key>
							<string>(?=,|\))</string>
							<key>name</key>
							<string>meta.function.argument.default.php</string>
							<key>patterns</key>
							<array>
								<dict>
									<key>include</key>
									<string>#parameter-default-types</string>
								</dict>
							</array>
						</dict>
						<dict>
							<key>begin</key>
							<string>/\*</string>
							<key>captures</key>
							<dict>
								<key>0</key>
								<dict>
									<key>name</key>
									<string>punctuation.definition.comment.php</string>
								</dict>
							</dict>
							<key>end</key>
							<string>\*/</string>
							<key>name</key>
							<string>comment.block.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(real|double|float|int(eger)?|bool(ean)?|string|class|clone|var|function|interface|parent|self|object)\b</string>
					<key>name</key>
					<string>storage.type.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(global|abstract|const|extends|implements|final|p(r(ivate|otected)|ublic)|static)\b</string>
					<key>name</key>
					<string>storage.modifier.php</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#object</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.class.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>meta.function-call.static.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>variable.other.class.php</string>
						</dict>
						<key>4</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.variable.php</string>
						</dict>
						<key>5</key>
						<dict>
							<key>name</key>
							<string>constant.other.class.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(?x)(::)
                        (?:
        				    ([A-Za-z_][A-Za-z_0-9]*)\s*\(
        				    |
        				    ((\$+)[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)
        				    |
        				    ([a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)
        				)?</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#support</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>(&lt;&lt;&lt;)\s*([a-zA-Z_]+[a-zA-Z0-9_]*)</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.string.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.heredoc.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>^(\2)(;?)$</string>
					<key>endCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.heredoc.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.string.php</string>
						</dict>
					</dict>
					<key>name</key>
					<string>string.unquoted.heredoc.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#interpolation</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>=&gt;</string>
					<key>name</key>
					<string>keyword.operator.key.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>&amp;(?=\s*(\$|new|[A-Za-z_][A-Za-z_0-9]+(?=\s*\()))</string>
					<key>name</key>
					<string>storage.modifier.reference.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>;</string>
					<key>name</key>
					<string>punctuation.terminator.expression.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(@)</string>
					<key>name</key>
					<string>keyword.operator.error-control.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(\-\-|\+\+)</string>
					<key>name</key>
					<string>keyword.operator.increment-decrement.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(\-|\+|\*|/|%)</string>
					<key>name</key>
					<string>keyword.operator.arithmetic.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)(!|&amp;&amp;|\|\|)|\b(and|or|xor|as)\b</string>
					<key>name</key>
					<string>keyword.operator.logical.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>&lt;&lt;|&gt;&gt;|~|\^|&amp;|\|</string>
					<key>name</key>
					<string>keyword.operator.bitwise.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(===|==|!==|!=|&lt;=|&gt;=|&lt;&gt;|&lt;|&gt;)</string>
					<key>name</key>
					<string>keyword.operator.comparison.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(\.=|\.)</string>
					<key>name</key>
					<string>keyword.operator.string.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>=</string>
					<key>name</key>
					<string>keyword.operator.assignment.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.type.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>support.class.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(?i)\b(instanceof)\b(?:\s+(\w+))?</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#numbers</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#strings</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#string-backtick</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#function-call</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#variables</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.operator.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>variable.other.property.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(?&lt;=[a-zA-Z0-9_\x{7f}-\x{ff}])(-&gt;)([a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*?)\b</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#instantiation</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#constants</string>
				</dict>
			</array>
		</dict>
		<key>numbers</key>
		<dict>
			<key>match</key>
			<string>\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)\b</string>
			<key>name</key>
			<string>constant.numeric.php</string>
		</dict>
		<key>object</key>
		<dict>
			<key>captures</key>
			<dict>
				<key>1</key>
				<dict>
					<key>name</key>
					<string>keyword.operator.class.php</string>
				</dict>
				<key>2</key>
				<dict>
					<key>name</key>
					<string>meta.function-call.object.php</string>
				</dict>
				<key>3</key>
				<dict>
					<key>name</key>
					<string>variable.other.property.php</string>
				</dict>
				<key>4</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.variable.php</string>
				</dict>
			</dict>
			<key>match</key>
			<string>(?x)(-&gt;)
    				(?:
    				    ([A-Za-z_][A-Za-z_0-9]*)\s*\(
    				    |
    				    ((\$+)?[a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*)
    				)?</string>
		</dict>
		<key>parameter-default-types</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>include</key>
					<string>#strings</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#numbers</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#string-backtick</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#variables</string>
				</dict>
				<dict>
					<key>match</key>
					<string>=&gt;</string>
					<key>name</key>
					<string>keyword.operator.key.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>=</string>
					<key>name</key>
					<string>keyword.operator.assignment.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>&amp;(?=\s*\$)</string>
					<key>name</key>
					<string>storage.modifier.reference.php</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>(array)\s*(\()</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>support.function.construct.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.array.begin.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\)</string>
					<key>endCaptures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.array.end.php</string>
						</dict>
					</dict>
					<key>name</key>
					<string>meta.array.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#parameter-default-types</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>include</key>
					<string>#instantiation</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#constants</string>
				</dict>
			</array>
		</dict>
		<key>php_doc</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>comment</key>
					<string>PHPDocumentor only recognises lines with an asterisk as the first non-whitespaces character</string>
					<key>match</key>
					<string>^(?!\s*\*).*$\n?</string>
					<key>name</key>
					<string>invalid.illegal.missing-asterisk.phpdoc.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.other.phpdoc.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>storage.modifier.php</string>
						</dict>
						<key>4</key>
						<dict>
							<key>name</key>
							<string>invalid.illegal.wrong-access-type.phpdoc.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>^\s*\*\s*(@access)\s+((public|private|protected)|(.+))\s*$</string>
				</dict>
				<dict>
					<key>match</key>
					<string>((https?|s?ftp|ftps|file|smb|afp|nfs|(x-)?man|gopher|txmt)://|mailto:)[-:@a-zA-Z0-9_.~%+/?=&amp;#]+(?&lt;![.?:])</string>
					<key>name</key>
					<string>markup.underline.link.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.other.phpdoc.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>markup.underline.link.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(@xlink)\s+(.+)\s*$</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\@(a(bstract|uthor)|c(ategory|opyright)|example|global|internal|li(cense|nk)|pa(ckage|ram)|return|s(ee|ince|tatic|ubpackage)|t(hrows|odo)|v(ar|ersion)|uses|deprecated|final)\b</string>
					<key>name</key>
					<string>keyword.other.phpdoc.php</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>keyword.other.phpdoc.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>\{(@(link)).+?\}</string>
					<key>name</key>
					<string>meta.tag.inline.phpdoc.php</string>
				</dict>
			</array>
		</dict>
		<key>regex-double-quoted</key>
		<dict>
			<key>begin</key>
			<string>(?x)"/ (?= (\\.|[^"/])++/[imsxeADSUXu]*" )</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>end</key>
			<string>(/)([imsxeADSUXu]*)(")</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.regexp.double-quoted.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>comment</key>
					<string>Escaped from the regexp – there can also be 2 backslashes (since 1 will escape the first)</string>
					<key>match</key>
					<string>(\\){1,2}[.$^\[\]{}]</string>
					<key>name</key>
					<string>constant.character.escape.regex.php</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#interpolation</string>
				</dict>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.arbitrary-repitition.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.arbitrary-repitition.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(\{)\d+(,\d+)?(\})</string>
					<key>name</key>
					<string>string.regexp.arbitrary-repitition.php</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>\[(?:\^?\])?</string>
					<key>captures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.character-class.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\]</string>
					<key>name</key>
					<string>string.regexp.character-class.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#interpolation</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>[$^+*]</string>
					<key>name</key>
					<string>keyword.operator.regexp.php</string>
				</dict>
			</array>
		</dict>
		<key>regex-single-quoted</key>
		<dict>
			<key>begin</key>
			<string>(?x)'/ (?= (\\.|[^'/])++/[imsxeADSUXu]*' )</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>end</key>
			<string>(/)([imsxeADSUXu]*)(')</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.regexp.single-quoted.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>captures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.arbitrary-repitition.php</string>
						</dict>
						<key>3</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.arbitrary-repitition.php</string>
						</dict>
					</dict>
					<key>match</key>
					<string>(\{)\d+(,\d+)?(\})</string>
					<key>name</key>
					<string>string.regexp.arbitrary-repitition.php</string>
				</dict>
				<dict>
					<key>comment</key>
					<string>Escaped from the regexp – there can also be 2 backslashes (since 1 will escape the first)</string>
					<key>match</key>
					<string>(\\){1,2}[.$^\[\]{}]</string>
					<key>name</key>
					<string>constant.character.escape.regex.php</string>
				</dict>
				<dict>
					<key>comment</key>
					<string>Escaped from the PHP string – there can also be 2 backslashes (since 1 will escape the first)</string>
					<key>match</key>
					<string>\\{1,2}[\\']</string>
					<key>name</key>
					<string>constant.character.escape.php</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>\[(?:\^?\])?</string>
					<key>captures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.character-class.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\]</string>
					<key>name</key>
					<string>string.regexp.character-class.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\'\[\]]</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>[$^+*]</string>
					<key>name</key>
					<string>keyword.operator.regexp.php</string>
				</dict>
			</array>
		</dict>
		<key>sql-string-double-quoted</key>
		<dict>
			<key>begin</key>
			<string>"\s*(?=(SELECT|INSERT|UPDATE|DELETE|CREATE|REPLACE|ALTER)\b)</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>contentName</key>
			<string>source.sql.embedded.php</string>
			<key>end</key>
			<string>"</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.quoted.double.sql.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>match</key>
					<string>#(\\"|[^"])*(?="|$\n?)</string>
					<key>name</key>
					<string>comment.line.number-sign.sql</string>
				</dict>
				<dict>
					<key>match</key>
					<string>--(\\"|[^"])*(?="|$\n?)</string>
					<key>name</key>
					<string>comment.line.double-dash.sql</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>'(?=[^']*?")</string>
					<key>comment</key>
					<string>Unclosed strings must be captured to avoid them eating the remainder of the PHP script
					Sample case: $sql = "SELECT * FROM bar WHERE foo = '" . $variable . "'"</string>
					<key>end</key>
					<string>(?=")</string>
					<key>name</key>
					<string>string.quoted.single.unclosed.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\']</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>`(?=[^`]*?")</string>
					<key>comment</key>
					<string>Unclosed strings must be captured to avoid them eating the remainder of the PHP script
					Sample case: $sql = "SELECT * FROM bar WHERE foo = '" . $variable . "'"</string>
					<key>end</key>
					<string>(?=")</string>
					<key>name</key>
					<string>string.quoted.other.backtick.unclosed.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\']</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>\\"(?!([^\\"]|\\[^"])*\\")(?=(\\[^"]|.)*?")</string>
					<key>comment</key>
					<string>Unclosed strings must be captured to avoid them eating the remainder of the PHP script
					Sample case: $sql = "SELECT * FROM bar WHERE foo = '" . $variable . "'"</string>
					<key>end</key>
					<string>(?=")</string>
					<key>name</key>
					<string>string.quoted.double.unclosed.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\']</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>\\"</string>
					<key>captures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\\"</string>
					<key>name</key>
					<string>string.quoted.double.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#interpolation</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>`</string>
					<key>end</key>
					<string>`</string>
					<key>name</key>
					<string>string.quoted.other.backtick.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#interpolation</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>'</string>
					<key>end</key>
					<string>'</string>
					<key>name</key>
					<string>string.quoted.single.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#interpolation</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>\\.</string>
					<key>name</key>
					<string>constant.character.escape.php</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#interpolation</string>
				</dict>
				<dict>
					<key>include</key>
					<string>source.sql</string>
				</dict>
			</array>
		</dict>
		<key>sql-string-single-quoted</key>
		<dict>
			<key>begin</key>
			<string>'\s*(?=(SELECT|INSERT|UPDATE|DELETE|CREATE|REPLACE|ALTER)\b)</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>contentName</key>
			<string>source.sql.embedded.php</string>
			<key>end</key>
			<string>'</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.quoted.single.sql.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>match</key>
					<string>#(\\'|[^'])*(?='|$\n?)</string>
					<key>name</key>
					<string>comment.line.number-sign.sql</string>
				</dict>
				<dict>
					<key>match</key>
					<string>--(\\'|[^'])*(?='|$\n?)</string>
					<key>name</key>
					<string>comment.line.double-dash.sql</string>
				</dict>
				<dict>
					<key>begin</key>
					<string>\\'(?!([^\\']|\\[^'])*\\')(?=(\\[^']|.)*?')</string>
					<key>comment</key>
					<string>Unclosed strings must be captured to avoid them eating the remainder of the PHP script
					Sample case: $sql = "SELECT * FROM bar WHERE foo = '" . $variable . "'"</string>
					<key>end</key>
					<string>(?=')</string>
					<key>name</key>
					<string>string.quoted.single.unclosed.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\']</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>`(?=[^`]*?')</string>
					<key>comment</key>
					<string>Unclosed strings must be captured to avoid them eating the remainder of the PHP script
					Sample case: $sql = "SELECT * FROM bar WHERE foo = '" . $variable . "'"</string>
					<key>end</key>
					<string>(?=')</string>
					<key>name</key>
					<string>string.quoted.other.backtick.unclosed.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\']</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>"(?=[^"]*?')</string>
					<key>comment</key>
					<string>Unclosed strings must be captured to avoid them eating the remainder of the PHP script
					Sample case: $sql = "SELECT * FROM bar WHERE foo = '" . $variable . "'"</string>
					<key>end</key>
					<string>(?=')</string>
					<key>name</key>
					<string>string.quoted.double.unclosed.sql</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>match</key>
							<string>\\[\\']</string>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>begin</key>
					<string>\\'</string>
					<key>captures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>constant.character.escape.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\\'</string>
					<key>name</key>
					<string>string.quoted.single.sql</string>
				</dict>
				<dict>
					<key>match</key>
					<string>\\[\\']</string>
					<key>name</key>
					<string>constant.character.escape.php</string>
				</dict>
				<dict>
					<key>include</key>
					<string>source.sql</string>
				</dict>
			</array>
		</dict>
		<key>string-backtick</key>
		<dict>
			<key>begin</key>
			<string>`</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>end</key>
			<string>`</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.interpolated.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>match</key>
					<string>\\.</string>
					<key>name</key>
					<string>constant.character.escape.php</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#interpolation</string>
				</dict>
			</array>
		</dict>
		<key>string-double-quoted</key>
		<dict>
			<key>begin</key>
			<string>"</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>comment</key>
			<string>This contentName is just to allow the usage of “select scope” to select the string contents first, then the string with quotes</string>
			<key>contentName</key>
			<string>meta.string-contents.quoted.double.php</string>
			<key>end</key>
			<string>"</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.quoted.double.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>include</key>
					<string>#interpolation</string>
				</dict>
			</array>
		</dict>
		<key>string-single-quoted</key>
		<dict>
			<key>begin</key>
			<string>'</string>
			<key>beginCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.begin.php</string>
				</dict>
			</dict>
			<key>contentName</key>
			<string>meta.string-contents.quoted.single.php</string>
			<key>end</key>
			<string>'</string>
			<key>endCaptures</key>
			<dict>
				<key>0</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.string.end.php</string>
				</dict>
			</dict>
			<key>name</key>
			<string>string.quoted.single.php</string>
			<key>patterns</key>
			<array>
				<dict>
					<key>match</key>
					<string>\\[\\']</string>
					<key>name</key>
					<string>constant.character.escape.php</string>
				</dict>
			</array>
		</dict>
		<key>strings</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>include</key>
					<string>#regex-double-quoted</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#sql-string-double-quoted</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#string-double-quoted</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#regex-single-quoted</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#sql-string-single-quoted</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#string-single-quoted</string>
				</dict>
			</array>
		</dict>
		<key>support</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>begin</key>
					<string>(array)(\()</string>
					<key>beginCaptures</key>
					<dict>
						<key>1</key>
						<dict>
							<key>name</key>
							<string>support.function.construct.php</string>
						</dict>
						<key>2</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.array.begin.php</string>
						</dict>
					</dict>
					<key>end</key>
					<string>\)</string>
					<key>endCaptures</key>
					<dict>
						<key>0</key>
						<dict>
							<key>name</key>
							<string>punctuation.definition.array.end.php</string>
						</dict>
					</dict>
					<key>name</key>
					<string>meta.array.php</string>
					<key>patterns</key>
					<array>
						<dict>
							<key>include</key>
							<string>#language</string>
						</dict>
					</array>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(s(huffle|ort)|n(ext|at(sort|casesort))|c(o(unt|mpact)|urrent)|in_array|u(sort|ksort|asort)|prev|e(nd|xtract)|k(sort|ey|rsort)|a(sort|r(sort|ray_(s(hift|um|plice|earch|lice)|c(h(unk|ange_key_case)|o(unt_values|mbine))|intersect(_(u(key|assoc)|key|assoc))?|diff(_(u(key|assoc)|key|assoc))?|u(n(shift|ique)|intersect(_(uassoc|assoc))?|diff(_(uassoc|assoc))?)|p(op|ush|ad|roduct)|values|key(s|_exists)|f(il(ter|l(_keys)?)|lip)|walk(_recursive)?|r(e(duce|verse)|and)|m(ultisort|erge(_recursive)?|ap))))|r(sort|eset|ange)|m(in|ax))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.array.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bassert(_options)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.assert.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_attr_is_id(?=\s*\()</string>
					<key>name</key>
					<string>support.function.attr.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bbase64_(decode|encode)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.base64.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(highlight_(string|file)|s(ys_getloadavg|et_(include_path|magic_quotes_runtime)|leep)|c(on(stant|nection_(status|aborted))|all_user_(func(_array)?|method(_array)?))|time_(sleep_until|nanosleep)|i(s_uploaded_file|n(i_(set|restore|get(_all)?)|et_(ntop|pton))|p2long|gnore_user_abort|mport_request_variables)|u(sleep|nregister_tick_function)|error_(log|get_last)|p(hp_strip_whitespace|utenv|arse_ini_file|rint_r)|flush|long2ip|re(store_include_path|gister_(shutdown_function|tick_function))|get(servby(name|port)|opt|_(c(urrent_user|fg_var)|include_path|magic_quotes_(gpc|runtime))|protobyn(umber|ame)|env)|move_uploaded_file)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.basic_functions.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bbc(s(cale|ub|qrt)|comp|div|pow(mod)?|add|m(od|ul))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.bcmath.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bbirdstep_(c(o(nnect|mmit)|lose)|off_autocommit|exec|f(ieldn(um|ame)|etch|reeresult)|autocommit|r(ollback|esult))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.birdstep.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bget_browser(?=\s*\()</string>
					<key>name</key>
					<string>support.function.browscap.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(s(tr(nc(asecmp|mp)|c(asecmp|mp)|len)|et_e(rror_handler|xception_handler))|c(lass_exists|reate_function)|trigger_error|i(s_(subclass_of|a)|nterface_exists)|de(fine(d)?|bug_(print_backtrace|backtrace))|zend_version|property_exists|e(ach|rror_reporting|xtension_loaded)|func(tion_exists|_(num_args|get_arg(s)?))|leak|restore_e(rror_handler|xception_handler)|get_(class(_(vars|methods))?|included_files|de(clared_(classes|interfaces)|fined_(constants|vars|functions))|object_vars|extension_funcs|parent_class|loaded_extensions|resource_type)|method_exists)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.builtin_functions.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bbz(compress|decompress|open|err(str|no|or)|read)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.bz2.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(jdtounix|unixtojd)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.cal_unix.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(cal_(to_jd|info|days_in_month|from_jd)|j(d(to(j(ulian|ewish)|french|gregorian)|dayofweek|monthname)|uliantojd|ewishtojd)|frenchtojd|gregoriantojd)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.calendar.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_characterdata_(substring_data|insert_data|delete_data|append_data|replace_data)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.characterdata.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bcom_(create_guid|print_typeinfo|event_sink|load_typelib|get_active_object|message_pump)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.com_com.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bvariant_(s(ub|et(_type)?)|n(ot|eg)|c(a(st|t)|mp)|i(nt|div|mp)|or|d(iv|ate_(to_timestamp|from_timestamp))|pow|eqv|fix|a(nd|dd|bs)|get_type|round|xor|m(od|ul))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.com_variant.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bcrc32(?=\s*\()</string>
					<key>name</key>
					<string>support.function.crc32.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bcrypt(?=\s*\()</string>
					<key>name</key>
					<string>support.function.crypt.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bctype_(space|cntrl|digit|upper|p(unct|rint)|lower|al(num|pha)|graph|xdigit)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ctype.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bconvert_cyr_string(?=\s*\()</string>
					<key>name</key>
					<string>support.function.cyr_convert.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bstrptime(?=\s*\()</string>
					<key>name</key>
					<string>support.function.datetime.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdba_(handlers|sync|nextkey|close|insert|delete|op(timize|en)|exists|popen|key_split|f(irstkey|etch)|list|replace)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.dba.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdbase_(num(fields|records)|c(lose|reate)|delete_record|open|pack|add_record|get_(header_info|record(_with_names)?)|replace_record)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.dbase.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(scandir|c(h(dir|root)|losedir)|dir|opendir|re(addir|winddir)|g(etcwd|lob))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.dir.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdl(?=\s*\()</string>
					<key>name</key>
					<string>support.function.dl.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(dns_(check_record|get_(record|mx))|gethostby(name(l)?|addr))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.dns.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_document_(s(chema_validate(_file)?|ave(_html(_file)?|xml)?)|normalize_document|create_(c(datasection|omment)|text_node|document_fragment|processing_instruction|e(ntity_reference|lement(_ns)?)|attribute(_ns)?)|import_node|validate|load(_html(_file)?|xml)?|adopt_node|re(name_node|laxNG_validate_(file|xml))|get_element(s_by_tag_name(_ns)?|_by_id)|xinclude)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.document.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_domconfiguration_(set_parameter|can_set_parameter|get_parameter)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.domconfiguration.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_domerrorhandler_handle_error(?=\s*\()</string>
					<key>name</key>
					<string>support.function.domerrorhandler.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_domimplementation_(has_feature|create_document(_type)?|get_feature)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.domimplementation.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_domimplementationlist_item(?=\s*\()</string>
					<key>name</key>
					<string>support.function.domimplementationlist.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_domimplementationsource_get_domimplementation(s)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.domimplementationsource.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_domstringlist_item(?=\s*\()</string>
					<key>name</key>
					<string>support.function.domstringlist.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\beaster_da(ys|te)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.easter.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_element_(has_attribute(_ns)?|set_(id_attribute(_n(s|ode))?|attribute(_n(s|ode(_ns)?))?)|remove_attribute(_n(s|ode))?|get_(elements_by_tag_name(_ns)?|attribute(_n(s|ode(_ns)?))?))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.element.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(s(hell_exec|ystem)|p(assthru|roc_nice)|e(scapeshell(cmd|arg)|xec))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.exec.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bexif_(imagetype|t(humbnail|agname)|read_data)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.exif.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bfdf_(header|s(et_(s(tatus|ubmit_form_action)|target_frame|o(n_import_javascript|pt)|javascript_action|encoding|v(ersion|alue)|f(ile|lags)|ap)|ave(_string)?)|next_field_name|c(lose|reate)|open(_string)?|e(num_values|rr(no|or))|add_(template|doc_javascript)|remove_item|get_(status|opt|encoding|v(ersion|alue)|f(ile|lags)|a(ttachment|p)))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.fdf.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(sys_get_temp_dir|copy|t(empnam|mpfile)|u(nlink|mask)|p(close|open)|f(s(canf|tat|eek)|nmatch|close|t(ell|runcate)|ile(_(put_contents|get_contents))?|open|p(utcsv|assthru)|eof|flush|write|lock|read|get(s(s)?|c(sv)?))|r(e(name|a(dfile|lpath)|wind)|mdir)|get_meta_tags|mkdir)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.file.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(stat|c(h(own|grp|mod)|learstatcache)|is_(dir|executable|file|link|writable|readable)|touch|disk_(total_space|free_space)|file(size|ctime|type|inode|owner|_exists|perms|atime|group|mtime)|l(stat|chgrp))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.filestat.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bfilter_(has_var|input(_array)?|var(_array)?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.filter.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(sprintf|printf|v(sprintf|printf|fprintf)|fprintf)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.formatted_print.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(pfsockopen|fsockopen)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.fsock.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bftok(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ftok.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(image(s(y|tring(up)?|et(style|t(hickness|ile)|pixel|brush)|avealpha|x)|c(har(up)?|o(nvolution|py(res(ized|ampled)|merge(gray)?)?|lor(s(total|et|forindex)|closest(hwb|alpha)?|transparent|deallocate|exact(alpha)?|a(t|llocate(alpha)?)|resolve(alpha)?|match))|reate(truecolor|from(string|jpeg|png|wbmp|g(if|d(2(part)?)?)|x(pm|bm)))?)|2wbmp|t(ypes|tf(text|bbox)|ruecolortopalette)|i(struecolor|nterlace)|d(estroy|ashedline)|jpeg|ellipse|p(s(slantfont|copyfont|text|e(ncodefont|xtendfont)|freefont|loadfont|bbox)|ng|olygon|alettecopy)|f(t(text|bbox)|il(ter|l(toborder|ed(polygon|ellipse|arc|rectangle))?)|ont(height|width))|wbmp|a(ntialias|lphablending|rc)|l(ine|oadfont|ayereffect)|r(otate|ectangle)|g(if|d(2)?|ammacorrect|rab(screen|window))|xbm)|jpeg2wbmp|png2wbmp|gd_info)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.gd.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(ngettext|textdomain|d(ngettext|c(ngettext|gettext)|gettext)|gettext|bind(textdomain|_textdomain_codeset))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.gettext.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bgmp_(hamdist|s(can(1|0)|ign|trval|ub|etbit|qrt(rem)?)|c(om|lrbit|mp)|ne(g|xtprime)|in(tval|it|vert)|or|div(_(q(r)?|r)|exact)|jacobi|p(o(pcount|w(m)?)|erfect_square|rob_prime)|fact|legendre|a(nd|dd|bs)|random|gcd(ext)?|xor|m(od|ul))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.gmp.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bhash(_(hmac(_file)?|init|update(_(stream|file))?|fi(nal|le)|algos))?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.hash.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmd5(_file)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.hash_md.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsha1(_file)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.hash_sha.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(set(cookie|rawcookie)|header(s_(sent|list))?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.head.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(html(specialchars(_decode)?|_entity_decode|entities)|get_html_translation_table)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.html.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bhttp_build_query(?=\s*\()</string>
					<key>name</key>
					<string>support.function.http.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bibase_blob_(c(ancel|lose|reate)|i(nfo|mport)|open|echo|add|get)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ibase_blobs.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bibase_(set_event_handler|free_event_handler|wait_event)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ibase_events.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bibase_(n(um_(params|fields|rows)|ame_result)|execute|p(aram_info|repare)|f(ield_info|etch_(object|assoc|row)|ree_(query|result))|query|affected_rows)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ibase_query.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bibase_(serv(ice_(detach|attach)|er_info)|d(elete_user|b_info)|add_user|restore|backup|m(odify_user|aintain_db))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ibase_service.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(iconv(_(s(tr(pos|len|rpos)|ubstr|et_encoding)|get_encoding|mime_(decode(_headers)?|encode)))?|ob_iconv_handler)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.iconv.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(image_type_to_(extension|mime_type)|getimagesize)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.image.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(zend_logo_guid|php(credits|info|_(sapi_name|ini_scanned_files|uname|egg_logo_guid|logo_guid|real_logo_guid)|version))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.info.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bibase_(c(o(nnect|mmit(_ret)?)|lose)|trans|drop_db|pconnect|err(code|msg)|gen_id|rollback(_ret)?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.interbase.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bcurl_(setopt(_array)?|c(opy_handle|lose)|init|e(rr(no|or)|xec)|version|getinfo)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.interface.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\biptc(parse|embed)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.iptc.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bjson_(decode|encode)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.json.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\blcg_value(?=\s*\()</string>
					<key>name</key>
					<string>support.function.lcg.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bldap_(s(tart_tls|ort|e(t_(option|rebind_proc)|arch)|asl_bind)|next_(entry|attribute|reference)|co(nnect|unt_entries|mpare)|t61_to_8859|8859_to_t61|d(n2ufn|elete)|unbind|parse_re(sult|ference)|e(rr(no|2str|or)|xplode_dn)|f(irst_(entry|attribute|reference)|ree_result)|add|list|get_(option|dn|entries|values_len|attributes)|re(name|ad)|mod_(del|add|replace)|bind)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ldap.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\blevenshtein(?=\s*\()</string>
					<key>name</key>
					<string>support.function.levenshtein.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\blibxml_(set_streams_context|clear_errors|use_internal_errors|get_(errors|last_error))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.libxml.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(symlink|link(info)?|readlink)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.link.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(ezmlm_hash|mail)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mail.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bset_time_limit(?=\s*\()</string>
					<key>name</key>
					<string>support.function.main.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(h(ypot|exdec)|s(in(h)?|qrt)|number_format|c(os(h)?|eil)|is_(nan|infinite|finite)|tan(h)?|octdec|de(c(hex|oct|bin)|g2rad)|exp(m1)?|p(i|ow)|f(loor|mod)|log(1(p|0))?|a(sin(h)?|cos(h)?|tan(h|2)?|bs)|r(ound|ad2deg)|b(indec|ase_convert))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.math.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmb_(s(tr(str|cut|to(upper|lower)|i(str|pos|mwidth)|pos|width|len|r(chr|i(chr|pos)|pos))|ubst(itute_character|r(_count)?)|end_mail)|http_(input|output)|c(heck_encoding|onvert_(case|encoding|variables|kana))|internal_encoding|output_handler|de(code_(numericentity|mimeheader)|tect_(order|encoding))|encode_(numericentity|mimeheader)|p(arse_str|referred_mime_name)|l(ist_(encodings(_alias_names)?|mime_names)|anguage)|get_info)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mbstring.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bm(crypt_(c(fb|reate_iv|bc)|ofb|decrypt|e(cb|nc(_(self_test|is_block_(algorithm(_mode)?|mode)|get_(supported_key_sizes|iv_size|key_size|algorithms_name|modes_name|block_size))|rypt))|list_(algorithms|modes)|ge(neric(_(init|deinit))?|t_(cipher_name|iv_size|key_size|block_size))|module_(self_test|close|is_block_(algorithm(_mode)?|mode)|open|get_(supported_key_sizes|algo_(key_size|block_size))))|decrypt_generic)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mcrypt.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmd5(_file)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.md5.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmetaphone(?=\s*\()</string>
					<key>name</key>
					<string>support.function.metaphone.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmhash(_(count|keygen_s2k|get_(hash_name|block_size)))?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mhash.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(get(timeofday|rusage)|microtime)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.microtime.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmime_content_type(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mime_magic.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(swf(prebuiltclip_init|videostream_init)|ming_(set(scale|cubicthreshold)|use(swfversion|constants)|keypress))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ming.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bcurl_multi_(select|close|in(it|fo_read)|exec|add_handle|getcontent|remove_handle)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.multi.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmysqli_(s(sl_set|t(ore_result|at|mt_(s(tore_result|end_long_data|qlstate)|num_rows|close|in(sert_id|it)|data_seek|p(aram_count|repare)|e(rr(no|or)|xecute)|f(ield_count|etch|ree_result)|a(ttr_(set|get)|ffected_rows)|res(ult_metadata|et)|bind_(param|result)))|e(t_local_infile_(handler|default)|lect_db)|qlstate)|n(um_(fields|rows)|ext_result)|c(ha(nge_user|racter_set_name)|ommit|lose)|thread_(safe|id)|in(sert_id|it|fo)|options|d(ump_debug_info|ebug|ata_seek)|use_result|p(ing|repare)|err(no|or)|kill|f(ield_(seek|count|tell)|etch_(field(s|_direct)?|lengths|row)|ree_result)|warning_count|a(utocommit|ffected_rows)|r(ollback|eal_(connect|escape_string|query))|get_(server_(info|version)|host_info|client_(info|version)|proto_info)|more_results)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mysqli_api.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmysqli_embedded_server_(start|end)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mysqli_embedded.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmysqli_(s(tmt_get_warnings|et_charset)|connect(_err(no|or))?|query|fetch_(object|a(ssoc|rray))|get_(charset|warnings)|multi_query)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mysqli_nonapi.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmysqli_(s(end_query|lave_query)|disable_r(pl_parse|eads_from_master)|enable_r(pl_parse|eads_from_master)|rpl_(p(arse_enabled|robe)|query_type)|master_query)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mysqli_repl.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmysqli_report(?=\s*\()</string>
					<key>name</key>
					<string>support.function.mysqli_report.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_namednodemap_(set_named_item(_ns)?|item|remove_named_item(_ns)?|get_named_item(_ns)?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.namednodemap.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_namelist_get_name(space_uri)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.namelist.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bncurses_(s(how_panel|cr(_(set|init|dump|restore)|l)|ta(nd(out|end)|rt_color)|lk_(set|noutrefresh|c(olor|lear)|init|touch|attr(set|o(n|ff))?|re(store|fresh))|avetty)|h(ide_panel|line|a(s_(colors|i(c|l)|key)|lfdelay))|n(o(nl|cbreak|echo|qiflush|raw)|ew(_panel|pad|win)|apms|l)|c(olor_(set|content)|urs_set|l(ear|rto(eol|bot))|an_change_color|break)|t(ypeahead|imeout|op_panel|erm(name|attrs))|i(sendwin|n(s(str|ch|tr|delln|ertln)|ch|it(_(color|pair))?))|d(oupdate|e(f(ine_key|_(shell_mode|prog_mode))|l(ch|_panel|eteln|ay_output|win)))|u(se_(default_colors|e(nv|xtended_names))|nget(ch|mouse)|pdate_panels)|p(noutrefresh|utp|a(nel_(window|above|below)|ir_content)|refresh)|e(cho(char)?|nd|rase(char)?)|v(idattr|line)|k(illchar|ey(ok|pad))|qiflush|f(ilter|l(ushinp|ash))|longname|w(stand(out|end)|hline|noutrefresh|c(olor_set|lear)|erase|vline|a(ttr(set|o(n|ff))|dd(str|ch))|getch|refresh|mo(use_trafo|ve)|border)|a(ssume_default_colors|ttr(set|o(n|ff))|dd(str|nstr|ch(str|nstr)?))|r(e(set(ty|_(shell_mode|prog_mode))|place_panel|fresh)|aw)|get(yx|ch|m(ouse|axyx))|b(o(ttom_panel|rder)|eep|kgd(set)?|audrate)|m(o(use(interval|_trafo|mask)|ve(_panel)?)|eta|v(hline|cur|inch|delch|vline|waddstr|add(str|nstr|ch(str|nstr)?)|getch)))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.ncurses_functions.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_node_(set_user_data|has_(child_nodes|attributes)|normalize|c(ompare_document_position|lone_node)|i(s_(s(upported|ame_node)|default_namespace|equal_node)|nsert_before)|lookup_(namespace_uri|prefix)|append_child|get_(user_data|feature)|re(place_child|move_child))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.node.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_nodelist_item(?=\s*\()</string>
					<key>name</key>
					<string>support.function.nodelist.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bnsapi_(virtual|re(sponse_headers|quest_headers))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.nsapi.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\boci(setbufferinglob|_(s(tatement_type|e(t_prefetch|rver_version))|c(o(nnect|llection_(size|trim|element_(assign|get)|a(ssign|ppend)|max)|mmit)|lose|ancel)|n(um_(fields|rows)|ew_(c(o(nnect|llection)|ursor)|descriptor))|internal_debug|define_by_name|p(connect|a(ssword_change|rse))|e(rror|xecute)|f(ield_(s(cale|ize)|name|is_null|type(_raw)?|precision)|etch(_(object|a(ssoc|ll|rray)|row))?|ree_(statement|collection|descriptor))|lob_(s(ize|eek|ave)|c(opy|lose)|t(ell|runcate)|i(s_equal|mport)|e(of|rase|xport)|flush|append|write(_temporary)?|load|re(wind|ad))|r(ollback|esult)|bind_(array_by_name|by_name))|fetchinto|getbufferinglob)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.oci8_interface.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bopenssl_(s(ign|eal)|csr_(sign|new|export(_to_file)?|get_(subject|public_key))|open|error_string|p(ublic_(decrypt|encrypt)|k(cs(12_(export(_to_file)?|read)|7_(sign|decrypt|encrypt|verify))|ey_(new|export(_to_file)?|free|get_(details|p(ublic|rivate))))|rivate_(decrypt|encrypt))|verify|x509_(check(_private_key|purpose)|parse|export(_to_file)?|free|read))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.openssl.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bo(utput_(add_rewrite_var|reset_rewrite_vars)|b_(start|clean|implicit_flush|end_(clean|flush)|flush|list_handlers|get_(status|c(ontents|lean)|flush|le(ngth|vel))))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.output.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(unpack|pack)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pack.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bget(lastmod|my(inode|uid|pid|gid))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pageinfo.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bpcntl_(s(ignal|etpriority)|exec|fork|w(stopsig|termsig|if(s(ignaled|topped)|exited)|exitstatus|ait(pid)?)|alarm|getpriority)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pcntl.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bpdo_drivers(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pdo.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bpdo_drivers(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pdo_dbh.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bpg_(se(nd_(execute|prepare|query(_params)?)|t_(client_encoding|error_verbosity)|lect)|host|num_(fields|rows)|c(o(n(nect(ion_(status|reset|busy))?|vert)|py_(to|from))|ancel_query|l(ient_encoding|ose))|insert|t(ty|ra(nsaction_status|ce))|options|d(elete|bname)|u(n(trace|escape_bytea)|pdate)|e(scape_(string|bytea)|nd_copy|xecute)|p(connect|ing|ort|ut_line|arameter_status|repare)|version|f(ield_(size|n(um|ame)|is_null|t(ype(_oid)?|able)|prtlen)|etch_(object|a(ssoc|ll(_columns)?|rray)|r(ow|esult))|ree_result)|query(_params)?|affected_rows|l(o_(seek|c(lose|reate)|tell|import|open|unlink|export|write|read(_all)?)|ast_(notice|oid|error))|get_(notify|pid|result)|result_(s(tatus|eek)|error(_field)?)|meta_data)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pgsql.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(virtual|apache_(setenv|note|child_terminate|lookup_uri|get_(version|modules)|re(s(et_timeout|ponse_headers)|quest_(s(ome_auth_required|ub_req_(lookup_(uri|file)|method_uri)|e(t_(etag|last_modified)|rver_port)|atisfies)|headers(_(in|out))?|is_initial_req|discard_request_body|update_mtime|err_headers_out|log_error|auth_(name|type)|r(un|emote_host)|meets_conditions)))|getallheaders)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_apache.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(str(totime|ftime)|checkdate|time(zone_(name_(from_abbr|get)|identifiers_list|transitions_get|o(pen|ffset_get)|abbreviations_list))?|idate|date(_(sun(set|_info|rise)|create|isodate_set|time(zone_(set|get)|_set)|d(efault_timezone_(set|get)|ate_set)|offset_get|parse|format|modify))?|localtime|g(etdate|m(strftime|date|mktime))|mktime)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_date.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_import_simplexml(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_dom.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bfbsql_(hostname|s(t(op_db|art_db)|e(t_(characterset|transaction|password|lob_mode)|lect_db))|n(um_(fields|rows)|ext_result)|c(hange_user|o(nnect|mmit)|lo(se|b_size)|reate_(clob|db|blob))|table_name|insert_id|d(ata(_seek|base(_password)?)|rop_db|b_(status|query))|username|err(no|or)|p(connect|assword)|f(ield_(seek|name|t(ype|able)|flags|len)|etch_(object|field|lengths|a(ssoc|rray)|row)|ree_result)|query|warnings|list_(tables|dbs|fields)|a(utocommit|ffected_rows)|get_autostart_info|r(o(ws_fetched|llback)|e(sult|ad_(clob|blob)))|blob_size)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_fbsql.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bftp_(s(sl_connect|ystype|i(te|ze)|et_option)|n(list|b_(continue|put|f(put|get)|get))|c(h(dir|mod)|dup|onnect|lose)|delete|exec|p(ut|asv|wd)|f(put|get)|alloc|login|get(_option)?|r(ename|aw(list)?|mdir)|m(dtm|kdir))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_ftp.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(virtual|apache_(setenv|note|get(_(version|modules)|env)|response_headers)|getallheaders)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_functions.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bimap_(header(s|info)|s(can|tatus|ort|ubscribe|e(t(_quota|flag_full|acl)|arch)|avebody)|c(heck|l(ose|earflag_full)|reatemailbox)|num_(recent|msg)|t(hread|imeout)|8bit|delete(mailbox)?|open|u(n(subscribe|delete)|id|tf(7_(decode|encode)|8))|e(rrors|xpunge)|ping|qprint|fetch(header|structure|_overview|body)|l(sub|ist|ast_error)|a(ppend|lerts)|get(subscribed|_quota(root)?|acl|mailboxes)|r(e(namemailbox|open)|fc822_(parse_(headers|adrlist)|write_address))|m(sgno|ime_header_decode|ail(_(co(py|mpose)|move)|boxmsginfo)?)|b(inary|ody(struct)?|ase64))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_imap.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmb_(split|ereg(i(_replace)?|_(search(_(setpos|init|pos|get(pos|regs)|regs))?|replace|match))?|regex_(set_options|encoding))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_mbregex.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsmfi_(set(timeout|flags|reply)|chgheader|delrcpt|add(header|rcpt)|replacebody|getsymval)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_milter.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmsql_(select_db|num_(fields|rows)|c(onnect|lose|reate_db)|d(ata_seek|rop_db|b_query)|error|pconnect|f(ield_(seek|name|t(ype|able)|flags|len)|etch_(object|field|array|row)|ree_result)|query|affected_rows|list_(tables|dbs|fields)|result)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_msql.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmssql_(select_db|n(um_(fields|rows)|ext_result)|c(onnect|lose)|init|data_seek|execute|pconnect|query|f(ield_(seek|name|type|length)|etch_(object|field|a(ssoc|rray)|row|batch)|ree_(statement|result))|g(uid_string|et_last_message)|r(ows_affected|esult)|bind|min_(error_severity|message_severity))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_mssql.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmysql_(s(tat|e(t_charset|lect_db))|num_(fields|rows)|c(onnect|l(ient_encoding|ose)|reate_db)|thread_id|in(sert_id|fo)|d(ata_seek|rop_db|b_query)|unbuffered_query|e(scape_string|rr(no|or))|p(connect|ing)|f(ield_(seek|name|t(ype|able)|flags|len)|etch_(object|field|lengths|a(ssoc|rray)|row)|ree_result)|query|affected_rows|list_(tables|dbs|processes|fields)|re(sult|al_escape_string)|get_(server_info|host_info|client_info|proto_info))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_mysql.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(solid_fetch_prev|odbc_(s(tatistics|pecialcolumns|etoption)|n(um_(fields|rows)|ext_result)|c(o(nnect|lumn(s|privileges)|mmit)|ursor|lose(_all)?)|table(s|privileges)|data_source|e(rror(msg)?|xec(ute)?)|p(connect|r(imarykeys|ocedure(s|columns)|epare))|f(ield_(scale|n(um|ame)|type|len)|oreignkeys|etch_(into|object|array|row)|ree_result)|autocommit|longreadlen|gettypeinfo|r(ollback|esult(_all)?)|binmode))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_odbc.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bpreg_(split|quote|last_error|grep|replace(_callback)?|match(_all)?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_pcre.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(spl_(classes|object_hash|autoload(_(call|unregister|extensions|functions|register))?)|class_(implements|parents))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_spl.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsybase_(se(t_message_handler|lect_db)|num_(fields|rows)|c(onnect|lose)|d(eadlock_retry_count|ata_seek)|unbuffered_query|pconnect|f(ield_seek|etch_(object|field|a(ssoc|rray)|row)|ree_result)|query|affected_rows|result|get_last_message|min_(server_severity|client_severity))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_sybase_ct.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsybase_(select_db|num_(fields|rows)|c(onnect|lose)|data_seek|pconnect|f(ield_seek|etch_(object|field|array|row)|ree_result)|query|affected_rows|result|get_last_message|min_(error_severity|message_severity))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_sybase_db.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bxmlwriter_(s(tart_(c(omment|data)|d(td(_(e(ntity|lement)|attlist))?|ocument)|pi|element(_ns)?|attribute(_ns)?)|et_indent(_string)?)|text|o(utput_memory|pen_(uri|memory))|end_(c(omment|data)|d(td(_(e(ntity|lement)|attlist))?|ocument)|pi|element|attribute)|f(ull_end_element|lush)|write_(c(omment|data)|dtd(_(e(ntity|lement)|attlist))?|pi|element(_ns)?|attribute(_ns)?|raw))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_xmlwriter.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(s(tat(Name|Index)|et(Comment(Name|Index)|ArchiveComment))|c(lose|reateEmptyDir)|delete(Name|Index)|open|zip_(close|open|entry_(name|c(ompress(ionmethod|edsize)|lose)|open|filesize|read)|read)|unchange(Name|Index|All)|locateName|addF(ile|romString)|rename(Name|Index)|get(Stream|Comment(Name|Index)|NameIndex|From(Name|Index)|ArchiveComment))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.php_zip.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bposix_(s(trerror|et(sid|uid|pgid|e(uid|gid)|gid))|ctermid|i(satty|nitgroups)|t(tyname|imes)|uname|kill|access|get(sid|cwd|_last_error|uid|e(uid|gid)|p(id|pid|w(nam|uid)|g(id|rp))|login|rlimit|g(id|r(nam|oups|gid)))|mk(nod|fifo))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.posix.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bproc_(close|terminate|open|get_status)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.proc_open.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bpspell_(s(tore_replacement|uggest|ave_wordlist)|c(heck|onfig_(save_repl|create|ignore|d(ict_dir|ata_dir)|personal|r(untogether|epl)|mode)|lear_session)|new(_(config|personal))?|add_to_(session|personal))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.pspell.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bquoted_printable_decode(?=\s*\()</string>
					<key>name</key>
					<string>support.function.quot_print.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(srand|getrandmax|rand|mt_(srand|getrandmax|rand))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.rand.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\breadline(_(c(ompletion_function|allback_(handler_(install|remove)|read_char)|lear_history)|info|on_new_line|write_history|list_history|add_history|re(display|ad_history)))?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.readline.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\brecode_(string|file)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.recode.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(s(plit(i)?|ql_regcase)|ereg(i(_replace)?|_replace)?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.reg.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsession_(s(tart|et_(save_handler|cookie_params)|ave_path)|cache_(expire|limiter)|name|i(s_registered|d)|de(stroy|code)|un(set|register)|encode|write_close|reg(ister|enerate_id)|get_cookie_params|module_name)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.session.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsha1(_file)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.sha1.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bshmop_(size|close|delete|open|write|read)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.shmop.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsimplexml_(import_dom|load_(string|file))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.simplexml.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bconfirm_extname_compiled(?=\s*\()</string>
					<key>name</key>
					<string>support.function.skeleton.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(snmp(set|2_(set|walk|real_walk|get(next)?)|3_(set|walk|real_walk|get(next)?)|_(set_(oid_output_format|enum_print|valueretrieval|quick_print)|read_mib|get_(valueretrieval|quick_print))|walk|realwalk|get(next)?)|php_snmpv3)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.snmp.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsocket_(s(hutdown|trerror|e(nd(to)?|t_(nonblock|option|block)|lect))|c(onnect|l(ose|ear_error)|reate(_(pair|listen))?)|write|l(isten|ast_error)|accept|get(sockname|_option|peername)|re(cv(from)?|ad)|bind)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.sockets.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsoundex(?=\s*\()</string>
					<key>name</key>
					<string>support.function.soundex.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\biterator_(count|to_array|apply)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.spl_iterators.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsqlite_(has_prev|s(ingle_query|eek)|n(um_(fields|rows)|ext)|c(hanges|olumn|urrent|lose|reate_(function|aggregate))|open|u(nbuffered_query|df_(decode_binary|encode_binary))|e(scape_string|rror_string|xec)|p(open|rev)|key|valid|query|f(ield_name|etch_(single|column_types|object|a(ll|rray))|actory)|l(ib(encoding|version)|ast_(insert_rowid|error))|array_query|rewind|busy_timeout)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.sqlite.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bstream_(s(ocket_(s(hutdown|e(ndto|rver))|client|enable_crypto|pair|accept|recvfrom|get_name)|e(t_(timeout|write_buffer|blocking)|lect))|co(ntext_(set_(option|params)|create|get_(default|options))|py_to_stream)|filter_(prepend|append|remove)|get_(contents|transports|line|wrappers|meta_data))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.streamsfuncs.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(hebrev(c)?|s(scanf|imilar_text|tr(s(tr|pn)|natc(asecmp|mp)|c(hr|spn|oll)|i(str|p(slashes|cslashes|os|_tags))|t(o(upper|k|lower)|r)|_(s(huffle|plit)|ireplace|pad|word_count|r(ot13|ep(eat|lace)))|p(os|brk)|r(chr|ipos|ev|pos))|ubstr(_(co(unt|mpare)|replace))?|etlocale)|c(h(unk_split|r)|ount_chars)|nl(2br|_langinfo)|implode|trim|ord|dirname|uc(first|words)|join|pa(thinfo|rse_str)|explode|quotemeta|add(slashes|cslashes)|wordwrap|l(trim|ocaleconv)|rtrim|money_format|b(in2hex|asename))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.string.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_string_extend_find_offset(16|32)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.string_extend.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(syslog|closelog|openlog|define_syslog_variables)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.syslog.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bmsg_(s(tat_queue|e(nd|t_queue))|re(ceive|move_queue)|get_queue)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.sysvmsg.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bsem_(acquire|re(lease|move)|get)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.sysvsem.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bshm_(detach|put_var|attach|get_var|remove(_var)?)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.sysvshm.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_text_(split_text|is_whitespace_in_element_content|replace_whole_text)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.text.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\btidy_(c(onfig_count|lean_repair)|is_x(html|ml)|diagnose|error_count|parse_(string|file)|access_count|warning_count|repair_(string|file)|get(opt|_(h(tml(_ver)?|ead)|status|config|o(utput|pt_doc)|error_buffer|r(oot|elease)|body)))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.tidy.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\btoken_(name|get_all)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.tokenizer.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(s(trval|ettype)|i(s_(s(calar|tring)|callable|nu(ll|meric)|object|float|array|long|resource|bool)|ntval)|floatval|gettype)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.type.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\buniqid(?=\s*\()</string>
					<key>name</key>
					<string>support.function.uniqid.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(url(decode|encode)|parse_url|get_headers|rawurl(decode|encode))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.url.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bstream_(filter_register|get_filters|bucket_(new|prepend|append|make_writeable))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.user_filters.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_userdatahandler_handle(?=\s*\()</string>
					<key>name</key>
					<string>support.function.userdatahandler.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bstream_wrapper_(unregister|re(store|gister))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.userspace.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bconvert_uu(decode|encode)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.uuencode.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(serialize|debug_zval_dump|unserialize|var_(dump|export)|memory_get_(usage|peak_usage))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.var.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bversion_compare(?=\s*\()</string>
					<key>name</key>
					<string>support.function.versioning.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bwddx_(serialize_va(lue|rs)|deserialize|packet_(start|end)|add_vars)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.wddx.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(utf8_(decode|encode)|xml_(set_(start_namespace_decl_handler|notation_decl_handler|character_data_handler|default_handler|object|unparsed_entity_decl_handler|processing_instruction_handler|e(nd_namespace_decl_handler|lement_handler|xternal_entity_ref_handler))|error_string|parse(_into_struct|r_(set_option|create(_ns)?|free|get_option))?|get_(current_(column_number|line_number|byte_index)|error_code)))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.xml.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bxmlrpc_(se(t_type|rver_(c(all_method|reate)|destroy|add_introspection_data|register_(introspection_callback|method)))|is_fault|decode(_request)?|parse_method_descriptions|encode(_request)?|get_type)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.xmlrpc-epi-php.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bdom_xpath_(evaluate|query|register_ns)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.xpath.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bxsl_xsltprocessor_(has_exslt_support|set_parameter|transform_to_(doc|uri|xml)|import_stylesheet|re(gister_php_functions|move_parameter)|get_parameter)(?=\s*\()</string>
					<key>name</key>
					<string>support.function.xsltprocessor.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(ob_gzhandler|zlib_get_coding_type|readgzfile|gz(compress|inflate|deflate|open|uncompress|encode|file))(?=\s*\()</string>
					<key>name</key>
					<string>support.function.zlib.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\bis_int(eger)?(?=\s*\()</string>
					<key>name</key>
					<string>support.function.alias.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b(Re(cursive(RegexIterator|CachingIterator|IteratorIterator|DirectoryIterator|FilterIterator|ArrayIterator)|flection(Method|Class|Object|Extension|P(arameter|roperty)|Function)?|gexIterator)|s(tdClass|wf(s(hape|ound|prite)|text(field)?|displayitem|f(ill|ont(cha(r)?)?)|action|gradient|mo(vie|rph)|b(itmap|utton)))|XMLReader|tidyNode|S(impleXML(Iterator|Element)|oap(Server|Header|Client|Param|Var|Fault)|pl(TempFileObject|ObjectStorage|File(Info|Object)))|NoRewindIterator|C(OMPersistHelper|achingIterator)|I(nfiniteIterator|teratorIterator)|D(irectoryIterator|OM(XPath|Node|C(omment|dataSection)|Text|Document(Fragment)?|ProcessingInstruction|E(ntityReference|lement)|Attr))|P(DO(Statement)?|arentIterator)|E(rrorException|mptyIterator|xception)|FilterIterator|LimitIterator|A(p(pendIterator|acheRequest)|rray(Iterator|Object)))(?=\s*\()</string>
					<key>name</key>
					<string>support.class.builtin.php</string>
				</dict>
				<dict>
					<key>match</key>
					<string>(?i)\b((print|echo)\b|(isset|unset|e(val|mpty)|list)(?=\s*\())</string>
					<key>name</key>
					<string>support.function.construct.php</string>
				</dict>
			</array>
		</dict>
		<key>var_basic</key>
		<dict>
			<key>captures</key>
			<dict>
				<key>1</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.variable.php</string>
				</dict>
			</dict>
			<key>match</key>
			<string>(?x)
			            (\$+)[a-zA-Z_\x{7f}-\x{ff}]
			            [a-zA-Z0-9_\x{7f}-\x{ff}]*?\b</string>
			<key>name</key>
			<string>variable.other.php</string>
		</dict>
		<key>var_global</key>
		<dict>
			<key>captures</key>
			<dict>
				<key>1</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.variable.php</string>
				</dict>
			</dict>
			<key>match</key>
			<string>(\$)(_(COOKIE|FILES|GET|POST|REQUEST))\b</string>
			<key>name</key>
			<string>variable.other.global.php</string>
		</dict>
		<key>var_global_safer</key>
		<dict>
			<key>captures</key>
			<dict>
				<key>2</key>
				<dict>
					<key>name</key>
					<string>punctuation.definition.variable.php</string>
				</dict>
			</dict>
			<key>match</key>
			<string>((\$)(GLOBALS|_(ENV|SERVER|SESSION)))|\b(global)\b</string>
			<key>name</key>
			<string>variable.other.global.safer.php</string>
		</dict>
		<key>variables</key>
		<dict>
			<key>patterns</key>
			<array>
				<dict>
					<key>include</key>
					<string>#var_global</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#var_global_safer</string>
				</dict>
				<dict>
					<key>include</key>
					<string>#var_basic</string>
				</dict>
			</array>
		</dict>
	</dict>
	<key>scopeName</key>
	<string>source.php</string>
	<key>uuid</key>
	<string>22986475-8CA5-11D9-AEDD-000D93C8BE28</string>
</dict>
</plist>
PKiZ=d8 PHPDoc-class-var.sublime-snippet<snippet>
    <content><![CDATA[/**
 * ${3:undocumented class variable}
 *
 * @var ${4:string}
 **/
${1:var} \$$2;$0]]></content>
    <tabTrigger>doc_v</tabTrigger>
    <scope>source.php</scope>
    <description>Class Variable</description>
</snippet>
PKiZ=Xd**PHPDoc-class.sublime-snippet<snippet>
    <content><![CDATA[/**
 * ${3:undocumented class}
 *
 * @package ${4:default}
 * @author ${PHPDOC_AUTHOR:$TM_FULLNAME}
 **/
$1class $2
{$0
} // END $1class $2]]></content>
    <tabTrigger>doc_c</tabTrigger>
    <scope>source.php</scope>
    <description>Class</description>
</snippet>
PKiZ==*PHPDoc-constant-definition.sublime-snippet<snippet>
    <content><![CDATA[/**
 * ${3:undocumented constant}
 **/
define($1, $2);$0]]></content>
    <tabTrigger>doc_d</tabTrigger>
    <scope>source.php</scope>
    <description>Constant Definition</description>
</snippet>
PKiZ=g! **)PHPDoc-function-signature.sublime-snippet<snippet>
    <content><![CDATA[/**
 * ${4:undocumented function}
 *
 * @return ${5:void}
 * @author ${PHPDOC_AUTHOR:$TM_FULLNAME}$6
 **/
$1function $2($3);$0]]></content>
    <tabTrigger>doc_s</tabTrigger>
    <scope>source.php</scope>
    <description>Function Signature</description>
</snippet>
PKiZ=v##PHPDoc-function.sublime-snippet<snippet>
    <content><![CDATA[/**
 * ${4:undocumented function}
 *
 * @return ${5:void}
 * @author ${PHPDOC_AUTHOR:$TM_FULLNAME}$6
 **/
$1function $2($3)
{$0
}]]></content>
    <tabTrigger>doc_f</tabTrigger>
    <scope>source.php</scope>
    <description>Function</description>
</snippet>
PKiZ=922 PHPDoc-interface.sublime-snippet<snippet>
    <content><![CDATA[/**
 * ${2:undocumented class}
 *
 * @package ${3:default}
 * @author ${PHPDOC_AUTHOR:$TM_FULLNAME}
 **/
interface $1
{$0
} // END interface $1]]></content>
    <tabTrigger>doc_i</tabTrigger>
    <scope>source.php</scope>
    <description>Interface</description>
</snippet>
PKiZ=Mxrequire(-).sublime-snippet<snippet>
    <content><![CDATA[require '${1:file}';$0]]></content>
    <tabTrigger>req</tabTrigger>
    <scope>source.php</scope>
    <description>require …</description>
</snippet>
PKiZ=zrequire_once(-).sublime-snippet<snippet>
    <content><![CDATA[require_once '${1:file}';$0]]></content>
    <tabTrigger>req1</tabTrigger>
    <scope>source.php</scope>
    <description>require_once …</description>
</snippet>
PKiZ=-r[өreturn-$retVal;.sublime-snippet<snippet>
    <content><![CDATA[return$1;$0]]></content>
    <tabTrigger>ret</tabTrigger>
    <scope>source.php</scope>
    <description>return</description>
</snippet>
PKiZ=sreturn-FALSE;.sublime-snippet<snippet>
    <content><![CDATA[return false;$0]]></content>
    <tabTrigger>ret0</tabTrigger>
    <scope>source.php</scope>
    <description>return false</description>
</snippet>
PKiZ=B[Ufreturn-TRUE;.sublime-snippet<snippet>
    <content><![CDATA[return true;$0]]></content>
    <tabTrigger>ret1</tabTrigger>
    <scope>source.php</scope>
    <description>return true</description>
</snippet>
PKiZ=JDɳStart-Docblock.sublime-snippet<snippet>
    <content><![CDATA[/**
 * $0
 */]]></content>
    <tabTrigger>/**</tabTrigger>
    <scope>source.php</scope>
    <description>Start Docblock</description>
</snippet>
PKiZ=iswitch(-)-case.sublime-snippet<snippet>
    <content><![CDATA[case '${1:variable}':
	${0:# code...}
	break;]]></content>
    <tabTrigger>case</tabTrigger>
    <scope>source.php</scope>
    <description>case …</description>
</snippet>
PKiZ=>3
switch(-).sublime-snippet<snippet>
    <content><![CDATA[switch (${1:variable}) {
	case '${2:value}':
		${3:# code...}
		break;
	$0
	default:
		${4:# code...}
		break;
}]]></content>
    <tabTrigger>switch</tabTrigger>
    <scope>source.php</scope>
    <description>switch …</description>
</snippet>
PKiZ=iSymbol List.tmPreferences<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>name</key>
	<string>Symbols List: Indent Functions</string>
	<key>scope</key>
	<string>entity.name.function.php, support.function.magic.php</string>
	<key>settings</key>
	<dict>
		<key>showInSymbolList</key>
		<integer>1</integer>
	</dict>
	<key>uuid</key>
	<string>5157F71C-2801-4385-92EA-3D0B72AEE7C5</string>
</dict>
</plist>
PKiZ=#throw.sublime-snippet<snippet>
    <content><![CDATA[throw new $1Exception(${2:"${3:Error Processing Request}"}${4:, ${5:1}});
$0]]></content>
    <tabTrigger>throw</tabTrigger>
    <scope>source.php</scope>
    <description>Throw Exception</description>
</snippet>
PKiZ=t/try-{-___-}-catch-(___)-{-___-}.sublime-snippet<snippet>
    <content><![CDATA[${TM_SELECTED_TEXT/([\t ]*).*/$1/m}try {
	${3:${TM_SELECTED_TEXT/(\A.*)|(.+)|\n\z/(?1:$0:(?2:\t$0))/g}}
${TM_SELECTED_TEXT/([\t ]*).*/$1/m}} catch (${1:Exception} ${2:\$e}) {
${TM_SELECTED_TEXT/([\t ]*).*/$1/m}	$0
${TM_SELECTED_TEXT/([\t ]*).*/$1/m}}]]></content>
    <tabTrigger>try</tabTrigger>
    <scope>source.php</scope>
    <description>Wrap in try { … } catch (…) { … }</description>
</snippet>
PKiZ=?C~while(-).sublime-snippet<snippet>
    <content><![CDATA[while (${1:$a <= 10}) {
	${0:# code...}
}]]></content>
    <tabTrigger>while</tabTrigger>
    <scope>source.php</scope>
    <description>while …</description>
</snippet>
PKiZ=T$GLOBALS[''].sublime-snippetPKiZ=U$_COOKIE[''].sublime-snippetPKiZ=v4$_ENV[''].sublime-snippetPKiZ=)A$_FILES[''].sublime-snippetPKiZ= J$_GET[''].sublime-snippetPKiZ=Ǣ
$_POST[''].sublime-snippetPKiZ=n$_REQUEST[''].sublime-snippetPKiZ=+ɾ$_SERVER[''].sublime-snippetPKiZ=3$_SESSION[''].sublime-snippetPKiZ=k,,class-{-}.sublime-snippetPKiZ=kl+
Comments.tmPreferencesPKH@p.Completion Rules.tmPreferencesPKiZ=Constructor.sublime-snippetPKiZ=A{&define(-).sublime-snippetPKiZ=. defined(-).sublime-snippetPKiZ=+Kdo-while(-).sublime-snippetPKiZ=!mecho-___.sublime-snippetPKiZ=ZSelseif(-).sublime-snippetPKiZ=Z,2for(-).sublime-snippetPKiZ=5;]*foreach(-).sublime-snippetPKiZ=ZאYfunction-xx(-).sublime-snippetPKiZ=.5aif(-)-else(-).sublime-snippetPKiZ=F(if(-).sublime-snippetPKiZ=ztif-a-b;.sublime-snippetPKiZ=S
include(-).sublime-snippetPKiZ=r	include_once(-).sublime-snippetPK.?@:_%Indentation Rules Annex.tmPreferencesPKJ@p
yy Indentation Rules.tmPreferencesPKTY>+x<z$new-array(-).sublime-snippetPKiZ=$+o%php-$this.sublime-snippetPKiZ=P&php-echo-$this.sublime-snippetPKiZ= :g2%%*'php-echo-htmlentities(___).sublime-snippetPKiZ=E|b)php-echo-___.sublime-snippetPKiZ=X*php-else.sublime-snippetPKiZ=T^^4+php-foreach-(___)-___-php-endforeach.sublime-snippetPKiZ=SD`gg7K-php-if-(___)-___-php-else-___-php-endif.sublime-snippetPKiZ=?	%%*/php-if-(___)-___-php-endif.sublime-snippetPK?AAt0PHP.sublime-completionsPKiZ=A#php.sublime-snippetPK(X>MPHP.tmLanguagePKiZ=d8 0PHPDoc-class-var.sublime-snippetPKiZ=Xd**jPHPDoc-class.sublime-snippetPKiZ==*ΨPHPDoc-constant-definition.sublime-snippetPKiZ=g! **)PHPDoc-function-signature.sublime-snippetPKiZ=v##lPHPDoc-function.sublime-snippetPKiZ=922 ̬PHPDoc-interface.sublime-snippetPKiZ=Mx<require(-).sublime-snippetPKiZ=z-require_once(-).sublime-snippetPKiZ=-r[ө.return-$retVal;.sublime-snippetPKiZ=sreturn-FALSE;.sublime-snippetPKiZ=B[Ufreturn-TRUE;.sublime-snippetPKiZ=JDɳStart-Docblock.sublime-snippetPKiZ=i޳switch(-)-case.sublime-snippetPKiZ=>3
switch(-).sublime-snippetPKiZ=i4Symbol List.tmPreferencesPKiZ=#nthrow.sublime-snippetPKiZ=t/try-{-___-}-catch-(___)-{-___-}.sublime-snippetPKiZ=?C~while(-).sublime-snippetPK::

Anon7 - 2022
AnonSec Team