pygmentize 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +19 -0
- data/lib/pygments.rb +23 -0
- data/pygmentize.gemspec +11 -0
- data/test/pygments.rb +19 -0
- data/vendor/pygmentize.py +7 -0
- data/vendor/pygments/AUTHORS +73 -0
- data/vendor/pygments/LICENSE +25 -0
- data/vendor/pygments/__init__.py +91 -0
- data/vendor/pygments/__init__.pyc +0 -0
- data/vendor/pygments/cmdline.py +430 -0
- data/vendor/pygments/cmdline.pyc +0 -0
- data/vendor/pygments/console.py +74 -0
- data/vendor/pygments/console.pyc +0 -0
- data/vendor/pygments/filter.py +74 -0
- data/vendor/pygments/filter.pyc +0 -0
- data/vendor/pygments/filters/__init__.py +357 -0
- data/vendor/pygments/filters/__init__.pyc +0 -0
- data/vendor/pygments/formatter.py +92 -0
- data/vendor/pygments/formatter.pyc +0 -0
- data/vendor/pygments/formatters/__init__.py +68 -0
- data/vendor/pygments/formatters/__init__.pyc +0 -0
- data/vendor/pygments/formatters/_mapping.py +92 -0
- data/vendor/pygments/formatters/_mapping.pyc +0 -0
- data/vendor/pygments/formatters/bbcode.py +109 -0
- data/vendor/pygments/formatters/bbcode.pyc +0 -0
- data/vendor/pygments/formatters/html.py +723 -0
- data/vendor/pygments/formatters/html.pyc +0 -0
- data/vendor/pygments/formatters/img.py +553 -0
- data/vendor/pygments/formatters/img.pyc +0 -0
- data/vendor/pygments/formatters/latex.py +354 -0
- data/vendor/pygments/formatters/latex.pyc +0 -0
- data/vendor/pygments/formatters/other.py +117 -0
- data/vendor/pygments/formatters/other.pyc +0 -0
- data/vendor/pygments/formatters/rtf.py +136 -0
- data/vendor/pygments/formatters/rtf.pyc +0 -0
- data/vendor/pygments/formatters/svg.py +154 -0
- data/vendor/pygments/formatters/svg.pyc +0 -0
- data/vendor/pygments/formatters/terminal.py +109 -0
- data/vendor/pygments/formatters/terminal.pyc +0 -0
- data/vendor/pygments/formatters/terminal256.py +219 -0
- data/vendor/pygments/formatters/terminal256.pyc +0 -0
- data/vendor/pygments/lexer.py +660 -0
- data/vendor/pygments/lexer.pyc +0 -0
- data/vendor/pygments/lexers/__init__.py +226 -0
- data/vendor/pygments/lexers/__init__.pyc +0 -0
- data/vendor/pygments/lexers/_asybuiltins.py +1645 -0
- data/vendor/pygments/lexers/_clbuiltins.py +232 -0
- data/vendor/pygments/lexers/_luabuiltins.py +256 -0
- data/vendor/pygments/lexers/_mapping.py +234 -0
- data/vendor/pygments/lexers/_mapping.pyc +0 -0
- data/vendor/pygments/lexers/_phpbuiltins.py +3389 -0
- data/vendor/pygments/lexers/_vimbuiltins.py +3 -0
- data/vendor/pygments/lexers/agile.py +1485 -0
- data/vendor/pygments/lexers/agile.pyc +0 -0
- data/vendor/pygments/lexers/asm.py +353 -0
- data/vendor/pygments/lexers/compiled.py +2365 -0
- data/vendor/pygments/lexers/dotnet.py +355 -0
- data/vendor/pygments/lexers/functional.py +756 -0
- data/vendor/pygments/lexers/functional.pyc +0 -0
- data/vendor/pygments/lexers/math.py +461 -0
- data/vendor/pygments/lexers/other.py +2297 -0
- data/vendor/pygments/lexers/parsers.py +695 -0
- data/vendor/pygments/lexers/special.py +100 -0
- data/vendor/pygments/lexers/special.pyc +0 -0
- data/vendor/pygments/lexers/templates.py +1387 -0
- data/vendor/pygments/lexers/text.py +1586 -0
- data/vendor/pygments/lexers/web.py +1619 -0
- data/vendor/pygments/lexers/web.pyc +0 -0
- data/vendor/pygments/plugin.py +74 -0
- data/vendor/pygments/plugin.pyc +0 -0
- data/vendor/pygments/scanner.py +104 -0
- data/vendor/pygments/style.py +117 -0
- data/vendor/pygments/style.pyc +0 -0
- data/vendor/pygments/styles/__init__.py +68 -0
- data/vendor/pygments/styles/__init__.pyc +0 -0
- data/vendor/pygments/styles/autumn.py +65 -0
- data/vendor/pygments/styles/borland.py +51 -0
- data/vendor/pygments/styles/bw.py +49 -0
- data/vendor/pygments/styles/colorful.py +81 -0
- data/vendor/pygments/styles/default.py +73 -0
- data/vendor/pygments/styles/default.pyc +0 -0
- data/vendor/pygments/styles/emacs.py +72 -0
- data/vendor/pygments/styles/friendly.py +72 -0
- data/vendor/pygments/styles/fruity.py +43 -0
- data/vendor/pygments/styles/manni.py +75 -0
- data/vendor/pygments/styles/monokai.py +106 -0
- data/vendor/pygments/styles/murphy.py +80 -0
- data/vendor/pygments/styles/native.py +65 -0
- data/vendor/pygments/styles/pastie.py +75 -0
- data/vendor/pygments/styles/perldoc.py +69 -0
- data/vendor/pygments/styles/tango.py +141 -0
- data/vendor/pygments/styles/trac.py +63 -0
- data/vendor/pygments/styles/vim.py +63 -0
- data/vendor/pygments/styles/vs.py +38 -0
- data/vendor/pygments/token.py +198 -0
- data/vendor/pygments/token.pyc +0 -0
- data/vendor/pygments/unistring.py +130 -0
- data/vendor/pygments/unistring.pyc +0 -0
- data/vendor/pygments/util.py +226 -0
- data/vendor/pygments/util.pyc +0 -0
- metadata +166 -0
@@ -0,0 +1,234 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
"""
|
3
|
+
pygments.lexers._mapping
|
4
|
+
~~~~~~~~~~~~~~~~~~~~~~~~
|
5
|
+
|
6
|
+
Lexer mapping defintions. This file is generated by itself. Everytime
|
7
|
+
you change something on a builtin lexer defintion, run this script from
|
8
|
+
the lexers folder to update it.
|
9
|
+
|
10
|
+
Do not alter the LEXERS dictionary by hand.
|
11
|
+
|
12
|
+
:copyright: Copyright 2006-2010 by the Pygments team, see AUTHORS.
|
13
|
+
:license: BSD, see LICENSE for details.
|
14
|
+
"""
|
15
|
+
|
16
|
+
LEXERS = {
|
17
|
+
'ABAPLexer': ('pygments.lexers.other', 'ABAP', ('abap',), ('*.abap',), ('text/x-abap',)),
|
18
|
+
'ActionScript3Lexer': ('pygments.lexers.web', 'ActionScript 3', ('as3', 'actionscript3'), ('*.as',), ('application/x-actionscript', 'text/x-actionscript', 'text/actionscript')),
|
19
|
+
'ActionScriptLexer': ('pygments.lexers.web', 'ActionScript', ('as', 'actionscript'), ('*.as',), ('application/x-actionscript', 'text/x-actionscript', 'text/actionscript')),
|
20
|
+
'AdaLexer': ('pygments.lexers.compiled', 'Ada', ('ada', 'ada95ada2005'), ('*.adb', '*.ads', '*.ada'), ('text/x-ada',)),
|
21
|
+
'AntlrActionScriptLexer': ('pygments.lexers.parsers', 'ANTLR With ActionScript Target', ('antlr-as', 'antlr-actionscript'), ('*.G', '*.g'), ()),
|
22
|
+
'AntlrCSharpLexer': ('pygments.lexers.parsers', 'ANTLR With C# Target', ('antlr-csharp', 'antlr-c#'), ('*.G', '*.g'), ()),
|
23
|
+
'AntlrCppLexer': ('pygments.lexers.parsers', 'ANTLR With CPP Target', ('antlr-cpp',), ('*.G', '*.g'), ()),
|
24
|
+
'AntlrJavaLexer': ('pygments.lexers.parsers', 'ANTLR With Java Target', ('antlr-java',), ('*.G', '*.g'), ()),
|
25
|
+
'AntlrLexer': ('pygments.lexers.parsers', 'ANTLR', ('antlr',), (), ()),
|
26
|
+
'AntlrObjectiveCLexer': ('pygments.lexers.parsers', 'ANTLR With ObjectiveC Target', ('antlr-objc',), ('*.G', '*.g'), ()),
|
27
|
+
'AntlrPerlLexer': ('pygments.lexers.parsers', 'ANTLR With Perl Target', ('antlr-perl',), ('*.G', '*.g'), ()),
|
28
|
+
'AntlrPythonLexer': ('pygments.lexers.parsers', 'ANTLR With Python Target', ('antlr-python',), ('*.G', '*.g'), ()),
|
29
|
+
'AntlrRubyLexer': ('pygments.lexers.parsers', 'ANTLR With Ruby Target', ('antlr-ruby', 'antlr-rb'), ('*.G', '*.g'), ()),
|
30
|
+
'ApacheConfLexer': ('pygments.lexers.text', 'ApacheConf', ('apacheconf', 'aconf', 'apache'), ('.htaccess', 'apache.conf', 'apache2.conf'), ('text/x-apacheconf',)),
|
31
|
+
'AppleScriptLexer': ('pygments.lexers.other', 'AppleScript', ('applescript',), ('*.applescript',), ()),
|
32
|
+
'AsymptoteLexer': ('pygments.lexers.other', 'Asymptote', ('asy', 'asymptote'), ('*.asy',), ('text/x-asymptote',)),
|
33
|
+
'BBCodeLexer': ('pygments.lexers.text', 'BBCode', ('bbcode',), (), ('text/x-bbcode',)),
|
34
|
+
'BaseMakefileLexer': ('pygments.lexers.text', 'Makefile', ('basemake',), (), ()),
|
35
|
+
'BashLexer': ('pygments.lexers.other', 'Bash', ('bash', 'sh', 'ksh'), ('*.sh', '*.ksh', '*.bash', '*.ebuild', '*.eclass'), ('application/x-sh', 'application/x-shellscript')),
|
36
|
+
'BashSessionLexer': ('pygments.lexers.other', 'Bash Session', ('console',), ('*.sh-session',), ('application/x-shell-session',)),
|
37
|
+
'BatchLexer': ('pygments.lexers.other', 'Batchfile', ('bat',), ('*.bat', '*.cmd'), ('application/x-dos-batch',)),
|
38
|
+
'BefungeLexer': ('pygments.lexers.other', 'Befunge', ('befunge',), ('*.befunge',), ('application/x-befunge',)),
|
39
|
+
'BooLexer': ('pygments.lexers.dotnet', 'Boo', ('boo',), ('*.boo',), ('text/x-boo',)),
|
40
|
+
'BrainfuckLexer': ('pygments.lexers.other', 'Brainfuck', ('brainfuck', 'bf'), ('*.bf', '*.b'), ('application/x-brainfuck',)),
|
41
|
+
'CLexer': ('pygments.lexers.compiled', 'C', ('c',), ('*.c', '*.h'), ('text/x-chdr', 'text/x-csrc')),
|
42
|
+
'CMakeLexer': ('pygments.lexers.text', 'CMake', ('cmake',), ('*.cmake',), ('text/x-cmake',)),
|
43
|
+
'CObjdumpLexer': ('pygments.lexers.asm', 'c-objdump', ('c-objdump',), ('*.c-objdump',), ('text/x-c-objdump',)),
|
44
|
+
'CSharpAspxLexer': ('pygments.lexers.dotnet', 'aspx-cs', ('aspx-cs',), ('*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'), ()),
|
45
|
+
'CSharpLexer': ('pygments.lexers.dotnet', 'C#', ('csharp', 'c#'), ('*.cs',), ('text/x-csharp',)),
|
46
|
+
'CheetahHtmlLexer': ('pygments.lexers.templates', 'HTML+Cheetah', ('html+cheetah', 'html+spitfire'), (), ('text/html+cheetah', 'text/html+spitfire')),
|
47
|
+
'CheetahJavascriptLexer': ('pygments.lexers.templates', 'JavaScript+Cheetah', ('js+cheetah', 'javascript+cheetah', 'js+spitfire', 'javascript+spitfire'), (), ('application/x-javascript+cheetah', 'text/x-javascript+cheetah', 'text/javascript+cheetah', 'application/x-javascript+spitfire', 'text/x-javascript+spitfire', 'text/javascript+spitfire')),
|
48
|
+
'CheetahLexer': ('pygments.lexers.templates', 'Cheetah', ('cheetah', 'spitfire'), ('*.tmpl', '*.spt'), ('application/x-cheetah', 'application/x-spitfire')),
|
49
|
+
'CheetahXmlLexer': ('pygments.lexers.templates', 'XML+Cheetah', ('xml+cheetah', 'xml+spitfire'), (), ('application/xml+cheetah', 'application/xml+spitfire')),
|
50
|
+
'ClojureLexer': ('pygments.lexers.agile', 'Clojure', ('clojure', 'clj'), ('*.clj',), ('text/x-clojure', 'application/x-clojure')),
|
51
|
+
'CoffeeScriptLexer': ('pygments.lexers.web', 'CoffeeScript', ('coffee-script', 'coffeescript'), ('*.coffee',), ('text/coffeescript',)),
|
52
|
+
'ColdfusionHtmlLexer': ('pygments.lexers.templates', 'Coldufsion HTML', ('cfm',), ('*.cfm', '*.cfml', '*.cfc'), ('application/x-coldfusion',)),
|
53
|
+
'ColdfusionLexer': ('pygments.lexers.templates', 'cfstatement', ('cfs',), (), ()),
|
54
|
+
'CommonLispLexer': ('pygments.lexers.functional', 'Common Lisp', ('common-lisp', 'cl'), ('*.cl', '*.lisp', '*.el'), ('text/x-common-lisp',)),
|
55
|
+
'CppLexer': ('pygments.lexers.compiled', 'C++', ('cpp', 'c++'), ('*.cpp', '*.hpp', '*.c++', '*.h++', '*.cc', '*.hh', '*.cxx', '*.hxx'), ('text/x-c++hdr', 'text/x-c++src')),
|
56
|
+
'CppObjdumpLexer': ('pygments.lexers.asm', 'cpp-objdump', ('cpp-objdump', 'c++-objdumb', 'cxx-objdump'), ('*.cpp-objdump', '*.c++-objdump', '*.cxx-objdump'), ('text/x-cpp-objdump',)),
|
57
|
+
'CssDjangoLexer': ('pygments.lexers.templates', 'CSS+Django/Jinja', ('css+django', 'css+jinja'), (), ('text/css+django', 'text/css+jinja')),
|
58
|
+
'CssErbLexer': ('pygments.lexers.templates', 'CSS+Ruby', ('css+erb', 'css+ruby'), (), ('text/css+ruby',)),
|
59
|
+
'CssGenshiLexer': ('pygments.lexers.templates', 'CSS+Genshi Text', ('css+genshitext', 'css+genshi'), (), ('text/css+genshi',)),
|
60
|
+
'CssLexer': ('pygments.lexers.web', 'CSS', ('css',), ('*.css',), ('text/css',)),
|
61
|
+
'CssPhpLexer': ('pygments.lexers.templates', 'CSS+PHP', ('css+php',), (), ('text/css+php',)),
|
62
|
+
'CssSmartyLexer': ('pygments.lexers.templates', 'CSS+Smarty', ('css+smarty',), (), ('text/css+smarty',)),
|
63
|
+
'CythonLexer': ('pygments.lexers.compiled', 'Cython', ('cython', 'pyx'), ('*.pyx', '*.pxd', '*.pxi'), ('text/x-cython', 'application/x-cython')),
|
64
|
+
'DLexer': ('pygments.lexers.compiled', 'D', ('d',), ('*.d', '*.di'), ('text/x-dsrc',)),
|
65
|
+
'DObjdumpLexer': ('pygments.lexers.asm', 'd-objdump', ('d-objdump',), ('*.d-objdump',), ('text/x-d-objdump',)),
|
66
|
+
'DarcsPatchLexer': ('pygments.lexers.text', 'Darcs Patch', ('dpatch',), ('*.dpatch', '*.darcspatch'), ()),
|
67
|
+
'DebianControlLexer': ('pygments.lexers.text', 'Debian Control file', ('control',), ('control',), ()),
|
68
|
+
'DelphiLexer': ('pygments.lexers.compiled', 'Delphi', ('delphi', 'pas', 'pascal', 'objectpascal'), ('*.pas',), ('text/x-pascal',)),
|
69
|
+
'DiffLexer': ('pygments.lexers.text', 'Diff', ('diff', 'udiff'), ('*.diff', '*.patch'), ('text/x-diff', 'text/x-patch')),
|
70
|
+
'DjangoLexer': ('pygments.lexers.templates', 'Django/Jinja', ('django', 'jinja'), (), ('application/x-django-templating', 'application/x-jinja')),
|
71
|
+
'DylanLexer': ('pygments.lexers.compiled', 'Dylan', ('dylan',), ('*.dylan',), ('text/x-dylan',)),
|
72
|
+
'ErbLexer': ('pygments.lexers.templates', 'ERB', ('erb',), (), ('application/x-ruby-templating',)),
|
73
|
+
'ErlangLexer': ('pygments.lexers.functional', 'Erlang', ('erlang',), ('*.erl', '*.hrl'), ('text/x-erlang',)),
|
74
|
+
'ErlangShellLexer': ('pygments.lexers.functional', 'Erlang erl session', ('erl',), ('*.erl-sh',), ('text/x-erl-shellsession',)),
|
75
|
+
'EvoqueHtmlLexer': ('pygments.lexers.templates', 'HTML+Evoque', ('html+evoque',), ('*.html',), ('text/html+evoque',)),
|
76
|
+
'EvoqueLexer': ('pygments.lexers.templates', 'Evoque', ('evoque',), ('*.evoque',), ('application/x-evoque',)),
|
77
|
+
'EvoqueXmlLexer': ('pygments.lexers.templates', 'XML+Evoque', ('xml+evoque',), ('*.xml',), ('application/xml+evoque',)),
|
78
|
+
'FelixLexer': ('pygments.lexers.compiled', 'Felix', ('felix', 'flx'), ('*.flx', '*.flxh'), ('text/x-felix',)),
|
79
|
+
'FortranLexer': ('pygments.lexers.compiled', 'Fortran', ('fortran',), ('*.f', '*.f90'), ('text/x-fortran',)),
|
80
|
+
'GLShaderLexer': ('pygments.lexers.compiled', 'GLSL', ('glsl',), ('*.vert', '*.frag', '*.geo'), ('text/x-glslsrc',)),
|
81
|
+
'GasLexer': ('pygments.lexers.asm', 'GAS', ('gas',), ('*.s', '*.S'), ('text/x-gas',)),
|
82
|
+
'GenshiLexer': ('pygments.lexers.templates', 'Genshi', ('genshi', 'kid', 'xml+genshi', 'xml+kid'), ('*.kid',), ('application/x-genshi', 'application/x-kid')),
|
83
|
+
'GenshiTextLexer': ('pygments.lexers.templates', 'Genshi Text', ('genshitext',), (), ('application/x-genshi-text', 'text/x-genshi')),
|
84
|
+
'GettextLexer': ('pygments.lexers.text', 'Gettext Catalog', ('pot', 'po'), ('*.pot', '*.po'), ('application/x-gettext', 'text/x-gettext', 'text/gettext')),
|
85
|
+
'GherkinLexer': ('pygments.lexers.other', 'Gherkin', ('Cucumber', 'cucumber', 'Gherkin', 'gherkin'), ('*.feature',), ('text/x-gherkin',)),
|
86
|
+
'GnuplotLexer': ('pygments.lexers.other', 'Gnuplot', ('gnuplot',), ('*.plot', '*.plt'), ('text/x-gnuplot',)),
|
87
|
+
'GoLexer': ('pygments.lexers.compiled', 'Go', ('go',), ('*.go',), ('text/x-gosrc',)),
|
88
|
+
'GroffLexer': ('pygments.lexers.text', 'Groff', ('groff', 'nroff', 'man'), ('*.[1234567]', '*.man'), ('application/x-troff', 'text/troff')),
|
89
|
+
'HamlLexer': ('pygments.lexers.web', 'Haml', ('haml', 'HAML'), ('*.haml',), ('text/x-haml',)),
|
90
|
+
'HaskellLexer': ('pygments.lexers.functional', 'Haskell', ('haskell', 'hs'), ('*.hs',), ('text/x-haskell',)),
|
91
|
+
'HaxeLexer': ('pygments.lexers.web', 'haXe', ('hx', 'haXe'), ('*.hx',), ('text/haxe',)),
|
92
|
+
'HtmlDjangoLexer': ('pygments.lexers.templates', 'HTML+Django/Jinja', ('html+django', 'html+jinja'), (), ('text/html+django', 'text/html+jinja')),
|
93
|
+
'HtmlGenshiLexer': ('pygments.lexers.templates', 'HTML+Genshi', ('html+genshi', 'html+kid'), (), ('text/html+genshi',)),
|
94
|
+
'HtmlLexer': ('pygments.lexers.web', 'HTML', ('html',), ('*.html', '*.htm', '*.xhtml', '*.xslt'), ('text/html', 'application/xhtml+xml')),
|
95
|
+
'HtmlPhpLexer': ('pygments.lexers.templates', 'HTML+PHP', ('html+php',), ('*.phtml',), ('application/x-php', 'application/x-httpd-php', 'application/x-httpd-php3', 'application/x-httpd-php4', 'application/x-httpd-php5')),
|
96
|
+
'HtmlSmartyLexer': ('pygments.lexers.templates', 'HTML+Smarty', ('html+smarty',), (), ('text/html+smarty',)),
|
97
|
+
'IniLexer': ('pygments.lexers.text', 'INI', ('ini', 'cfg'), ('*.ini', '*.cfg', '*.properties'), ('text/x-ini',)),
|
98
|
+
'IoLexer': ('pygments.lexers.agile', 'Io', ('io',), ('*.io',), ('text/x-iosrc',)),
|
99
|
+
'IrcLogsLexer': ('pygments.lexers.text', 'IRC logs', ('irc',), ('*.weechatlog',), ('text/x-irclog',)),
|
100
|
+
'JavaLexer': ('pygments.lexers.compiled', 'Java', ('java',), ('*.java',), ('text/x-java',)),
|
101
|
+
'JavascriptDjangoLexer': ('pygments.lexers.templates', 'JavaScript+Django/Jinja', ('js+django', 'javascript+django', 'js+jinja', 'javascript+jinja'), (), ('application/x-javascript+django', 'application/x-javascript+jinja', 'text/x-javascript+django', 'text/x-javascript+jinja', 'text/javascript+django', 'text/javascript+jinja')),
|
102
|
+
'JavascriptErbLexer': ('pygments.lexers.templates', 'JavaScript+Ruby', ('js+erb', 'javascript+erb', 'js+ruby', 'javascript+ruby'), (), ('application/x-javascript+ruby', 'text/x-javascript+ruby', 'text/javascript+ruby')),
|
103
|
+
'JavascriptGenshiLexer': ('pygments.lexers.templates', 'JavaScript+Genshi Text', ('js+genshitext', 'js+genshi', 'javascript+genshitext', 'javascript+genshi'), (), ('application/x-javascript+genshi', 'text/x-javascript+genshi', 'text/javascript+genshi')),
|
104
|
+
'JavascriptLexer': ('pygments.lexers.web', 'JavaScript', ('js', 'javascript'), ('*.js',), ('application/x-javascript', 'text/x-javascript', 'text/javascript')),
|
105
|
+
'JavascriptPhpLexer': ('pygments.lexers.templates', 'JavaScript+PHP', ('js+php', 'javascript+php'), (), ('application/x-javascript+php', 'text/x-javascript+php', 'text/javascript+php')),
|
106
|
+
'JavascriptSmartyLexer': ('pygments.lexers.templates', 'JavaScript+Smarty', ('js+smarty', 'javascript+smarty'), (), ('application/x-javascript+smarty', 'text/x-javascript+smarty', 'text/javascript+smarty')),
|
107
|
+
'JspLexer': ('pygments.lexers.templates', 'Java Server Page', ('jsp',), ('*.jsp',), ('application/x-jsp',)),
|
108
|
+
'LighttpdConfLexer': ('pygments.lexers.text', 'Lighttpd configuration file', ('lighty', 'lighttpd'), (), ('text/x-lighttpd-conf',)),
|
109
|
+
'LiterateHaskellLexer': ('pygments.lexers.functional', 'Literate Haskell', ('lhs', 'literate-haskell'), ('*.lhs',), ('text/x-literate-haskell',)),
|
110
|
+
'LlvmLexer': ('pygments.lexers.asm', 'LLVM', ('llvm',), ('*.ll',), ('text/x-llvm',)),
|
111
|
+
'LogtalkLexer': ('pygments.lexers.other', 'Logtalk', ('logtalk',), ('*.lgt',), ('text/x-logtalk',)),
|
112
|
+
'LuaLexer': ('pygments.lexers.agile', 'Lua', ('lua',), ('*.lua',), ('text/x-lua', 'application/x-lua')),
|
113
|
+
'MOOCodeLexer': ('pygments.lexers.other', 'MOOCode', ('moocode',), ('*.moo',), ('text/x-moocode',)),
|
114
|
+
'MakefileLexer': ('pygments.lexers.text', 'Makefile', ('make', 'makefile', 'mf', 'bsdmake'), ('*.mak', 'Makefile', 'makefile', 'Makefile.*', 'GNUmakefile'), ('text/x-makefile',)),
|
115
|
+
'MakoCssLexer': ('pygments.lexers.templates', 'CSS+Mako', ('css+mako',), (), ('text/css+mako',)),
|
116
|
+
'MakoHtmlLexer': ('pygments.lexers.templates', 'HTML+Mako', ('html+mako',), (), ('text/html+mako',)),
|
117
|
+
'MakoJavascriptLexer': ('pygments.lexers.templates', 'JavaScript+Mako', ('js+mako', 'javascript+mako'), (), ('application/x-javascript+mako', 'text/x-javascript+mako', 'text/javascript+mako')),
|
118
|
+
'MakoLexer': ('pygments.lexers.templates', 'Mako', ('mako',), ('*.mao',), ('application/x-mako',)),
|
119
|
+
'MakoXmlLexer': ('pygments.lexers.templates', 'XML+Mako', ('xml+mako',), (), ('application/xml+mako',)),
|
120
|
+
'MatlabLexer': ('pygments.lexers.math', 'Matlab', ('matlab', 'octave'), ('*.m',), ('text/matlab',)),
|
121
|
+
'MatlabSessionLexer': ('pygments.lexers.math', 'Matlab session', ('matlabsession',), (), ()),
|
122
|
+
'MiniDLexer': ('pygments.lexers.agile', 'MiniD', ('minid',), ('*.md',), ('text/x-minidsrc',)),
|
123
|
+
'ModelicaLexer': ('pygments.lexers.other', 'Modelica', ('modelica',), ('*.mo',), ('text/x-modelica',)),
|
124
|
+
'Modula2Lexer': ('pygments.lexers.compiled', 'Modula-2', ('modula2', 'm2'), ('*.def', '*.mod'), ('text/x-modula2',)),
|
125
|
+
'MoinWikiLexer': ('pygments.lexers.text', 'MoinMoin/Trac Wiki markup', ('trac-wiki', 'moin'), (), ('text/x-trac-wiki',)),
|
126
|
+
'MuPADLexer': ('pygments.lexers.math', 'MuPAD', ('mupad',), ('*.mu',), ()),
|
127
|
+
'MxmlLexer': ('pygments.lexers.web', 'MXML', ('mxml',), ('*.mxml',), ()),
|
128
|
+
'MySqlLexer': ('pygments.lexers.other', 'MySQL', ('mysql',), (), ('text/x-mysql',)),
|
129
|
+
'MyghtyCssLexer': ('pygments.lexers.templates', 'CSS+Myghty', ('css+myghty',), (), ('text/css+myghty',)),
|
130
|
+
'MyghtyHtmlLexer': ('pygments.lexers.templates', 'HTML+Myghty', ('html+myghty',), (), ('text/html+myghty',)),
|
131
|
+
'MyghtyJavascriptLexer': ('pygments.lexers.templates', 'JavaScript+Myghty', ('js+myghty', 'javascript+myghty'), (), ('application/x-javascript+myghty', 'text/x-javascript+myghty', 'text/javascript+mygthy')),
|
132
|
+
'MyghtyLexer': ('pygments.lexers.templates', 'Myghty', ('myghty',), ('*.myt', 'autodelegate'), ('application/x-myghty',)),
|
133
|
+
'MyghtyXmlLexer': ('pygments.lexers.templates', 'XML+Myghty', ('xml+myghty',), (), ('application/xml+myghty',)),
|
134
|
+
'NasmLexer': ('pygments.lexers.asm', 'NASM', ('nasm',), ('*.asm', '*.ASM'), ('text/x-nasm',)),
|
135
|
+
'NewspeakLexer': ('pygments.lexers.other', 'Newspeak', ('newspeak',), ('*.ns2',), ('text/x-newspeak',)),
|
136
|
+
'NginxConfLexer': ('pygments.lexers.text', 'Nginx configuration file', ('nginx',), (), ('text/x-nginx-conf',)),
|
137
|
+
'NumPyLexer': ('pygments.lexers.math', 'NumPy', ('numpy',), (), ()),
|
138
|
+
'ObjdumpLexer': ('pygments.lexers.asm', 'objdump', ('objdump',), ('*.objdump',), ('text/x-objdump',)),
|
139
|
+
'ObjectiveCLexer': ('pygments.lexers.compiled', 'Objective-C', ('objective-c', 'objectivec', 'obj-c', 'objc'), ('*.m',), ('text/x-objective-c',)),
|
140
|
+
'ObjectiveJLexer': ('pygments.lexers.web', 'Objective-J', ('objective-j', 'objectivej', 'obj-j', 'objj'), ('*.j',), ('text/x-objective-j',)),
|
141
|
+
'OcamlLexer': ('pygments.lexers.compiled', 'OCaml', ('ocaml',), ('*.ml', '*.mli', '*.mll', '*.mly'), ('text/x-ocaml',)),
|
142
|
+
'OcamlLexer': ('pygments.lexers.functional', 'OCaml', ('ocaml',), ('*.ml', '*.mli', '*.mll', '*.mly'), ('text/x-ocaml',)),
|
143
|
+
'OocLexer': ('pygments.lexers.compiled', 'Ooc', ('ooc',), ('*.ooc',), ('text/x-ooc',)),
|
144
|
+
'PerlLexer': ('pygments.lexers.agile', 'Perl', ('perl', 'pl'), ('*.pl', '*.pm'), ('text/x-perl', 'application/x-perl')),
|
145
|
+
'PhpLexer': ('pygments.lexers.web', 'PHP', ('php', 'php3', 'php4', 'php5'), ('*.php', '*.php[345]'), ('text/x-php',)),
|
146
|
+
'PovrayLexer': ('pygments.lexers.other', 'POVRay', ('pov',), ('*.pov', '*.inc'), ('text/x-povray',)),
|
147
|
+
'PrologLexer': ('pygments.lexers.compiled', 'Prolog', ('prolog',), ('*.prolog', '*.pro', '*.pl'), ('text/x-prolog',)),
|
148
|
+
'Python3Lexer': ('pygments.lexers.agile', 'Python 3', ('python3', 'py3'), (), ('text/x-python3', 'application/x-python3')),
|
149
|
+
'Python3TracebackLexer': ('pygments.lexers.agile', 'Python 3.0 Traceback', ('py3tb',), ('*.py3tb',), ('text/x-python3-traceback',)),
|
150
|
+
'PythonConsoleLexer': ('pygments.lexers.agile', 'Python console session', ('pycon',), (), ('text/x-python-doctest',)),
|
151
|
+
'PythonLexer': ('pygments.lexers.agile', 'Python', ('python', 'py'), ('*.py', '*.pyw', '*.sc', 'SConstruct', 'SConscript', '*.tac'), ('text/x-python', 'application/x-python')),
|
152
|
+
'PythonTracebackLexer': ('pygments.lexers.agile', 'Python Traceback', ('pytb',), ('*.pytb',), ('text/x-python-traceback',)),
|
153
|
+
'RConsoleLexer': ('pygments.lexers.math', 'RConsole', ('rconsole', 'rout'), ('*.Rout',), ()),
|
154
|
+
'RagelCLexer': ('pygments.lexers.parsers', 'Ragel in C Host', ('ragel-c',), ('*.rl',), ()),
|
155
|
+
'RagelCppLexer': ('pygments.lexers.parsers', 'Ragel in CPP Host', ('ragel-cpp',), ('*.rl',), ()),
|
156
|
+
'RagelDLexer': ('pygments.lexers.parsers', 'Ragel in D Host', ('ragel-d',), ('*.rl',), ()),
|
157
|
+
'RagelEmbeddedLexer': ('pygments.lexers.parsers', 'Embedded Ragel', ('ragel-em',), ('*.rl',), ()),
|
158
|
+
'RagelJavaLexer': ('pygments.lexers.parsers', 'Ragel in Java Host', ('ragel-java',), ('*.rl',), ()),
|
159
|
+
'RagelLexer': ('pygments.lexers.parsers', 'Ragel', ('ragel',), (), ()),
|
160
|
+
'RagelObjectiveCLexer': ('pygments.lexers.parsers', 'Ragel in Objective C Host', ('ragel-objc',), ('*.rl',), ()),
|
161
|
+
'RagelRubyLexer': ('pygments.lexers.parsers', 'Ragel in Ruby Host', ('ragel-ruby', 'ragel-rb'), ('*.rl',), ()),
|
162
|
+
'RawTokenLexer': ('pygments.lexers.special', 'Raw token data', ('raw',), (), ('application/x-pygments-tokens',)),
|
163
|
+
'RebolLexer': ('pygments.lexers.other', 'REBOL', ('rebol',), ('*.r', '*.r3'), ('text/x-rebol',)),
|
164
|
+
'RedcodeLexer': ('pygments.lexers.other', 'Redcode', ('redcode',), ('*.cw',), ()),
|
165
|
+
'RhtmlLexer': ('pygments.lexers.templates', 'RHTML', ('rhtml', 'html+erb', 'html+ruby'), ('*.rhtml',), ('text/html+ruby',)),
|
166
|
+
'RstLexer': ('pygments.lexers.text', 'reStructuredText', ('rst', 'rest', 'restructuredtext'), ('*.rst', '*.rest'), ('text/x-rst', 'text/prs.fallenstein.rst')),
|
167
|
+
'RubyConsoleLexer': ('pygments.lexers.agile', 'Ruby irb session', ('rbcon', 'irb'), (), ('text/x-ruby-shellsession',)),
|
168
|
+
'RubyLexer': ('pygments.lexers.agile', 'Ruby', ('rb', 'ruby'), ('*.rb', '*.rbw', 'Rakefile', '*.rake', '*.gemspec', '*.rbx'), ('text/x-ruby', 'application/x-ruby')),
|
169
|
+
'SLexer': ('pygments.lexers.math', 'S', ('splus', 's', 'r'), ('*.S', '*.R'), ('text/S-plus', 'text/S', 'text/R')),
|
170
|
+
'SassLexer': ('pygments.lexers.web', 'Sass', ('sass', 'SASS'), ('*.sass',), ('text/x-sass',)),
|
171
|
+
'ScalaLexer': ('pygments.lexers.compiled', 'Scala', ('scala',), ('*.scala',), ('text/x-scala',)),
|
172
|
+
'SchemeLexer': ('pygments.lexers.functional', 'Scheme', ('scheme', 'scm'), ('*.scm',), ('text/x-scheme', 'application/x-scheme')),
|
173
|
+
'SmalltalkLexer': ('pygments.lexers.other', 'Smalltalk', ('smalltalk', 'squeak'), ('*.st',), ('text/x-smalltalk',)),
|
174
|
+
'SmartyLexer': ('pygments.lexers.templates', 'Smarty', ('smarty',), ('*.tpl',), ('application/x-smarty',)),
|
175
|
+
'SourcesListLexer': ('pygments.lexers.text', 'Debian Sourcelist', ('sourceslist', 'sources.list'), ('sources.list',), ()),
|
176
|
+
'SqlLexer': ('pygments.lexers.other', 'SQL', ('sql',), ('*.sql',), ('text/x-sql',)),
|
177
|
+
'SqliteConsoleLexer': ('pygments.lexers.other', 'sqlite3con', ('sqlite3',), ('*.sqlite3-console',), ('text/x-sqlite3-console',)),
|
178
|
+
'SquidConfLexer': ('pygments.lexers.text', 'SquidConf', ('squidconf', 'squid.conf', 'squid'), ('squid.conf',), ('text/x-squidconf',)),
|
179
|
+
'TclLexer': ('pygments.lexers.agile', 'Tcl', ('tcl',), ('*.tcl',), ('text/x-tcl', 'text/x-script.tcl', 'application/x-tcl')),
|
180
|
+
'TcshLexer': ('pygments.lexers.other', 'Tcsh', ('tcsh', 'csh'), ('*.tcsh', '*.csh'), ('application/x-csh',)),
|
181
|
+
'TexLexer': ('pygments.lexers.text', 'TeX', ('tex', 'latex'), ('*.tex', '*.aux', '*.toc'), ('text/x-tex', 'text/x-latex')),
|
182
|
+
'TextLexer': ('pygments.lexers.special', 'Text only', ('text',), ('*.txt',), ('text/plain',)),
|
183
|
+
'ValaLexer': ('pygments.lexers.compiled', 'Vala', ('vala', 'vapi'), ('*.vala', '*.vapi'), ('text/x-vala',)),
|
184
|
+
'VbNetAspxLexer': ('pygments.lexers.dotnet', 'aspx-vb', ('aspx-vb',), ('*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'), ()),
|
185
|
+
'VbNetLexer': ('pygments.lexers.dotnet', 'VB.net', ('vb.net', 'vbnet'), ('*.vb', '*.bas'), ('text/x-vbnet', 'text/x-vba')),
|
186
|
+
'VimLexer': ('pygments.lexers.text', 'VimL', ('vim',), ('*.vim', '.vimrc'), ('text/x-vim',)),
|
187
|
+
'XmlDjangoLexer': ('pygments.lexers.templates', 'XML+Django/Jinja', ('xml+django', 'xml+jinja'), (), ('application/xml+django', 'application/xml+jinja')),
|
188
|
+
'XmlErbLexer': ('pygments.lexers.templates', 'XML+Ruby', ('xml+erb', 'xml+ruby'), (), ('application/xml+ruby',)),
|
189
|
+
'XmlLexer': ('pygments.lexers.web', 'XML', ('xml',), ('*.xml', '*.xsl', '*.rss', '*.xslt', '*.xsd', '*.wsdl'), ('text/xml', 'application/xml', 'image/svg+xml', 'application/rss+xml', 'application/atom+xml', 'application/xsl+xml', 'application/xslt+xml')),
|
190
|
+
'XmlPhpLexer': ('pygments.lexers.templates', 'XML+PHP', ('xml+php',), (), ('application/xml+php',)),
|
191
|
+
'XmlSmartyLexer': ('pygments.lexers.templates', 'XML+Smarty', ('xml+smarty',), (), ('application/xml+smarty',)),
|
192
|
+
'XsltLexer': ('pygments.lexers.web', 'XSLT', ('xslt',), ('*.xsl', '*.xslt'), ('text/xml', 'application/xml', 'image/svg+xml', 'application/rss+xml', 'application/atom+xml', 'application/xsl+xml', 'application/xslt+xml')),
|
193
|
+
'YamlLexer': ('pygments.lexers.text', 'YAML', ('yaml',), ('*.yaml', '*.yml'), ('text/x-yaml',))
|
194
|
+
}
|
195
|
+
|
196
|
+
if __name__ == '__main__':
|
197
|
+
import sys
|
198
|
+
import os
|
199
|
+
|
200
|
+
# lookup lexers
|
201
|
+
found_lexers = []
|
202
|
+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..'))
|
203
|
+
for filename in os.listdir('.'):
|
204
|
+
if filename.endswith('.py') and not filename.startswith('_'):
|
205
|
+
module_name = 'pygments.lexers.%s' % filename[:-3]
|
206
|
+
print module_name
|
207
|
+
module = __import__(module_name, None, None, [''])
|
208
|
+
for lexer_name in module.__all__:
|
209
|
+
lexer = getattr(module, lexer_name)
|
210
|
+
found_lexers.append(
|
211
|
+
'%r: %r' % (lexer_name,
|
212
|
+
(module_name,
|
213
|
+
lexer.name,
|
214
|
+
tuple(lexer.aliases),
|
215
|
+
tuple(lexer.filenames),
|
216
|
+
tuple(lexer.mimetypes))))
|
217
|
+
# sort them, that should make the diff files for svn smaller
|
218
|
+
found_lexers.sort()
|
219
|
+
|
220
|
+
# extract useful sourcecode from this file
|
221
|
+
f = open(__file__)
|
222
|
+
try:
|
223
|
+
content = f.read()
|
224
|
+
finally:
|
225
|
+
f.close()
|
226
|
+
header = content[:content.find('LEXERS = {')]
|
227
|
+
footer = content[content.find("if __name__ == '__main__':"):]
|
228
|
+
|
229
|
+
# write new file
|
230
|
+
f = open(__file__, 'w')
|
231
|
+
f.write(header)
|
232
|
+
f.write('LEXERS = {\n %s\n}\n\n' % ',\n '.join(found_lexers))
|
233
|
+
f.write(footer)
|
234
|
+
f.close()
|
Binary file
|
@@ -0,0 +1,3389 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
"""
|
3
|
+
pygments.lexers._phpbuiltins
|
4
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
5
|
+
|
6
|
+
This file loads the function names and their modules from the
|
7
|
+
php webpage and generates itself.
|
8
|
+
|
9
|
+
Do not alter the MODULES dict by hand!
|
10
|
+
|
11
|
+
WARNING: the generation transfers quite much data over your
|
12
|
+
internet connection. don't run that at home, use
|
13
|
+
a server ;-)
|
14
|
+
|
15
|
+
:copyright: Copyright 2006-2010 by the Pygments team, see AUTHORS.
|
16
|
+
:license: BSD, see LICENSE for details.
|
17
|
+
"""
|
18
|
+
|
19
|
+
|
20
|
+
MODULES = {'.NET': ['dotnet_load'],
|
21
|
+
'APD': ['apd_breakpoint',
|
22
|
+
'apd_callstack',
|
23
|
+
'apd_clunk',
|
24
|
+
'apd_continue',
|
25
|
+
'apd_croak',
|
26
|
+
'apd_dump_function_table',
|
27
|
+
'apd_dump_persistent_resources',
|
28
|
+
'apd_dump_regular_resources',
|
29
|
+
'apd_echo',
|
30
|
+
'apd_get_active_symbols',
|
31
|
+
'apd_set_pprof_trace',
|
32
|
+
'apd_set_session',
|
33
|
+
'apd_set_session_trace',
|
34
|
+
'apd_set_socket_session_trace',
|
35
|
+
'override_function',
|
36
|
+
'rename_function'],
|
37
|
+
'Apache': ['apache_child_terminate',
|
38
|
+
'apache_get_modules',
|
39
|
+
'apache_get_version',
|
40
|
+
'apache_getenv',
|
41
|
+
'apache_lookup_uri',
|
42
|
+
'apache_note',
|
43
|
+
'apache_request_headers',
|
44
|
+
'apache_reset_timeout',
|
45
|
+
'apache_response_headers',
|
46
|
+
'apache_setenv',
|
47
|
+
'ascii2ebcdic',
|
48
|
+
'ebcdic2ascii',
|
49
|
+
'getallheaders',
|
50
|
+
'virtual'],
|
51
|
+
'Arrays': ['array',
|
52
|
+
'array_change_key_case',
|
53
|
+
'array_chunk',
|
54
|
+
'array_combine',
|
55
|
+
'array_count_values',
|
56
|
+
'array_diff',
|
57
|
+
'array_diff_assoc',
|
58
|
+
'array_diff_key',
|
59
|
+
'array_diff_uassoc',
|
60
|
+
'array_diff_ukey',
|
61
|
+
'array_fill',
|
62
|
+
'array_filter',
|
63
|
+
'array_flip',
|
64
|
+
'array_intersect',
|
65
|
+
'array_intersect_assoc',
|
66
|
+
'array_intersect_key',
|
67
|
+
'array_intersect_uassoc',
|
68
|
+
'array_intersect_ukey',
|
69
|
+
'array_key_exists',
|
70
|
+
'array_keys',
|
71
|
+
'array_map',
|
72
|
+
'array_merge',
|
73
|
+
'array_merge_recursive',
|
74
|
+
'array_multisort',
|
75
|
+
'array_pad',
|
76
|
+
'array_pop',
|
77
|
+
'array_push',
|
78
|
+
'array_rand',
|
79
|
+
'array_reduce',
|
80
|
+
'array_reverse',
|
81
|
+
'array_search',
|
82
|
+
'array_shift',
|
83
|
+
'array_slice',
|
84
|
+
'array_splice',
|
85
|
+
'array_sum',
|
86
|
+
'array_udiff',
|
87
|
+
'array_udiff_assoc',
|
88
|
+
'array_udiff_uassoc',
|
89
|
+
'array_uintersect',
|
90
|
+
'array_uintersect_assoc',
|
91
|
+
'array_uintersect_uassoc',
|
92
|
+
'array_unique',
|
93
|
+
'array_unshift',
|
94
|
+
'array_values',
|
95
|
+
'array_walk',
|
96
|
+
'array_walk_recursive',
|
97
|
+
'arsort',
|
98
|
+
'asort',
|
99
|
+
'compact',
|
100
|
+
'count',
|
101
|
+
'current',
|
102
|
+
'each',
|
103
|
+
'end',
|
104
|
+
'extract',
|
105
|
+
'in_array',
|
106
|
+
'key',
|
107
|
+
'krsort',
|
108
|
+
'ksort',
|
109
|
+
'list',
|
110
|
+
'natcasesort',
|
111
|
+
'natsort',
|
112
|
+
'next',
|
113
|
+
'pos',
|
114
|
+
'prev',
|
115
|
+
'range',
|
116
|
+
'reset',
|
117
|
+
'rsort',
|
118
|
+
'shuffle',
|
119
|
+
'sizeof',
|
120
|
+
'sort',
|
121
|
+
'uasort',
|
122
|
+
'uksort',
|
123
|
+
'usort'],
|
124
|
+
'Aspell': ['aspell_check',
|
125
|
+
'aspell_check_raw',
|
126
|
+
'aspell_new',
|
127
|
+
'aspell_suggest'],
|
128
|
+
'BC math': ['bcadd',
|
129
|
+
'bccomp',
|
130
|
+
'bcdiv',
|
131
|
+
'bcmod',
|
132
|
+
'bcmul',
|
133
|
+
'bcpow',
|
134
|
+
'bcpowmod',
|
135
|
+
'bcscale',
|
136
|
+
'bcsqrt',
|
137
|
+
'bcsub'],
|
138
|
+
'Bzip2': ['bzclose',
|
139
|
+
'bzcompress',
|
140
|
+
'bzdecompress',
|
141
|
+
'bzerrno',
|
142
|
+
'bzerror',
|
143
|
+
'bzerrstr',
|
144
|
+
'bzflush',
|
145
|
+
'bzopen',
|
146
|
+
'bzread',
|
147
|
+
'bzwrite'],
|
148
|
+
'CCVS': ['ccvs_add',
|
149
|
+
'ccvs_auth',
|
150
|
+
'ccvs_command',
|
151
|
+
'ccvs_count',
|
152
|
+
'ccvs_delete',
|
153
|
+
'ccvs_done',
|
154
|
+
'ccvs_init',
|
155
|
+
'ccvs_lookup',
|
156
|
+
'ccvs_new',
|
157
|
+
'ccvs_report',
|
158
|
+
'ccvs_return',
|
159
|
+
'ccvs_reverse',
|
160
|
+
'ccvs_sale',
|
161
|
+
'ccvs_status',
|
162
|
+
'ccvs_textvalue',
|
163
|
+
'ccvs_void'],
|
164
|
+
'COM': ['com_addref',
|
165
|
+
'com_create_guid',
|
166
|
+
'com_event_sink',
|
167
|
+
'com_get',
|
168
|
+
'com_get_active_object',
|
169
|
+
'com_invoke',
|
170
|
+
'com_isenum',
|
171
|
+
'com_load',
|
172
|
+
'com_load_typelib',
|
173
|
+
'com_message_pump',
|
174
|
+
'com_print_typeinfo',
|
175
|
+
'com_propget',
|
176
|
+
'com_propput',
|
177
|
+
'com_propset',
|
178
|
+
'com_release',
|
179
|
+
'com_set',
|
180
|
+
'variant_abs',
|
181
|
+
'variant_add',
|
182
|
+
'variant_and',
|
183
|
+
'variant_cast',
|
184
|
+
'variant_cat',
|
185
|
+
'variant_cmp',
|
186
|
+
'variant_date_from_timestamp',
|
187
|
+
'variant_date_to_timestamp',
|
188
|
+
'variant_div',
|
189
|
+
'variant_eqv',
|
190
|
+
'variant_fix',
|
191
|
+
'variant_get_type',
|
192
|
+
'variant_idiv',
|
193
|
+
'variant_imp',
|
194
|
+
'variant_int',
|
195
|
+
'variant_mod',
|
196
|
+
'variant_mul',
|
197
|
+
'variant_neg',
|
198
|
+
'variant_not',
|
199
|
+
'variant_or',
|
200
|
+
'variant_pow',
|
201
|
+
'variant_round',
|
202
|
+
'variant_set',
|
203
|
+
'variant_set_type',
|
204
|
+
'variant_sub',
|
205
|
+
'variant_xor'],
|
206
|
+
'CURL': ['curl_close',
|
207
|
+
'curl_copy_handle',
|
208
|
+
'curl_errno',
|
209
|
+
'curl_error',
|
210
|
+
'curl_exec',
|
211
|
+
'curl_getinfo',
|
212
|
+
'curl_init',
|
213
|
+
'curl_multi_add_handle',
|
214
|
+
'curl_multi_close',
|
215
|
+
'curl_multi_exec',
|
216
|
+
'curl_multi_getcontent',
|
217
|
+
'curl_multi_info_read',
|
218
|
+
'curl_multi_init',
|
219
|
+
'curl_multi_remove_handle',
|
220
|
+
'curl_multi_select',
|
221
|
+
'curl_setopt',
|
222
|
+
'curl_version'],
|
223
|
+
'Calendar': ['cal_days_in_month',
|
224
|
+
'cal_from_jd',
|
225
|
+
'cal_info',
|
226
|
+
'cal_to_jd',
|
227
|
+
'easter_date',
|
228
|
+
'easter_days',
|
229
|
+
'frenchtojd',
|
230
|
+
'gregoriantojd',
|
231
|
+
'jddayofweek',
|
232
|
+
'jdmonthname',
|
233
|
+
'jdtofrench',
|
234
|
+
'jdtogregorian',
|
235
|
+
'jdtojewish',
|
236
|
+
'jdtojulian',
|
237
|
+
'jdtounix',
|
238
|
+
'jewishtojd',
|
239
|
+
'juliantojd',
|
240
|
+
'unixtojd'],
|
241
|
+
'Classes/Objects': ['call_user_method',
|
242
|
+
'call_user_method_array',
|
243
|
+
'class_exists',
|
244
|
+
'get_class',
|
245
|
+
'get_class_methods',
|
246
|
+
'get_class_vars',
|
247
|
+
'get_declared_classes',
|
248
|
+
'get_declared_interfaces',
|
249
|
+
'get_object_vars',
|
250
|
+
'get_parent_class',
|
251
|
+
'interface_exists',
|
252
|
+
'is_a',
|
253
|
+
'is_subclass_of',
|
254
|
+
'method_exists'],
|
255
|
+
'Classkit': ['classkit_import',
|
256
|
+
'classkit_method_add',
|
257
|
+
'classkit_method_copy',
|
258
|
+
'classkit_method_redefine',
|
259
|
+
'classkit_method_remove',
|
260
|
+
'classkit_method_rename'],
|
261
|
+
'ClibPDF': ['cpdf_add_annotation',
|
262
|
+
'cpdf_add_outline',
|
263
|
+
'cpdf_arc',
|
264
|
+
'cpdf_begin_text',
|
265
|
+
'cpdf_circle',
|
266
|
+
'cpdf_clip',
|
267
|
+
'cpdf_close',
|
268
|
+
'cpdf_closepath',
|
269
|
+
'cpdf_closepath_fill_stroke',
|
270
|
+
'cpdf_closepath_stroke',
|
271
|
+
'cpdf_continue_text',
|
272
|
+
'cpdf_curveto',
|
273
|
+
'cpdf_end_text',
|
274
|
+
'cpdf_fill',
|
275
|
+
'cpdf_fill_stroke',
|
276
|
+
'cpdf_finalize',
|
277
|
+
'cpdf_finalize_page',
|
278
|
+
'cpdf_global_set_document_limits',
|
279
|
+
'cpdf_import_jpeg',
|
280
|
+
'cpdf_lineto',
|
281
|
+
'cpdf_moveto',
|
282
|
+
'cpdf_newpath',
|
283
|
+
'cpdf_open',
|
284
|
+
'cpdf_output_buffer',
|
285
|
+
'cpdf_page_init',
|
286
|
+
'cpdf_place_inline_image',
|
287
|
+
'cpdf_rect',
|
288
|
+
'cpdf_restore',
|
289
|
+
'cpdf_rlineto',
|
290
|
+
'cpdf_rmoveto',
|
291
|
+
'cpdf_rotate',
|
292
|
+
'cpdf_rotate_text',
|
293
|
+
'cpdf_save',
|
294
|
+
'cpdf_save_to_file',
|
295
|
+
'cpdf_scale',
|
296
|
+
'cpdf_set_action_url',
|
297
|
+
'cpdf_set_char_spacing',
|
298
|
+
'cpdf_set_creator',
|
299
|
+
'cpdf_set_current_page',
|
300
|
+
'cpdf_set_font',
|
301
|
+
'cpdf_set_font_directories',
|
302
|
+
'cpdf_set_font_map_file',
|
303
|
+
'cpdf_set_horiz_scaling',
|
304
|
+
'cpdf_set_keywords',
|
305
|
+
'cpdf_set_leading',
|
306
|
+
'cpdf_set_page_animation',
|
307
|
+
'cpdf_set_subject',
|
308
|
+
'cpdf_set_text_matrix',
|
309
|
+
'cpdf_set_text_pos',
|
310
|
+
'cpdf_set_text_rendering',
|
311
|
+
'cpdf_set_text_rise',
|
312
|
+
'cpdf_set_title',
|
313
|
+
'cpdf_set_viewer_preferences',
|
314
|
+
'cpdf_set_word_spacing',
|
315
|
+
'cpdf_setdash',
|
316
|
+
'cpdf_setflat',
|
317
|
+
'cpdf_setgray',
|
318
|
+
'cpdf_setgray_fill',
|
319
|
+
'cpdf_setgray_stroke',
|
320
|
+
'cpdf_setlinecap',
|
321
|
+
'cpdf_setlinejoin',
|
322
|
+
'cpdf_setlinewidth',
|
323
|
+
'cpdf_setmiterlimit',
|
324
|
+
'cpdf_setrgbcolor',
|
325
|
+
'cpdf_setrgbcolor_fill',
|
326
|
+
'cpdf_setrgbcolor_stroke',
|
327
|
+
'cpdf_show',
|
328
|
+
'cpdf_show_xy',
|
329
|
+
'cpdf_stringwidth',
|
330
|
+
'cpdf_stroke',
|
331
|
+
'cpdf_text',
|
332
|
+
'cpdf_translate'],
|
333
|
+
'Crack': ['crack_check',
|
334
|
+
'crack_closedict',
|
335
|
+
'crack_getlastmessage',
|
336
|
+
'crack_opendict'],
|
337
|
+
'Cybercash': ['cybercash_base64_decode',
|
338
|
+
'cybercash_base64_encode',
|
339
|
+
'cybercash_decr',
|
340
|
+
'cybercash_encr'],
|
341
|
+
'Cyrus IMAP': ['cyrus_authenticate',
|
342
|
+
'cyrus_bind',
|
343
|
+
'cyrus_close',
|
344
|
+
'cyrus_connect',
|
345
|
+
'cyrus_query',
|
346
|
+
'cyrus_unbind'],
|
347
|
+
'DB++': ['dbplus_add',
|
348
|
+
'dbplus_aql',
|
349
|
+
'dbplus_chdir',
|
350
|
+
'dbplus_close',
|
351
|
+
'dbplus_curr',
|
352
|
+
'dbplus_errcode',
|
353
|
+
'dbplus_errno',
|
354
|
+
'dbplus_find',
|
355
|
+
'dbplus_first',
|
356
|
+
'dbplus_flush',
|
357
|
+
'dbplus_freealllocks',
|
358
|
+
'dbplus_freelock',
|
359
|
+
'dbplus_freerlocks',
|
360
|
+
'dbplus_getlock',
|
361
|
+
'dbplus_getunique',
|
362
|
+
'dbplus_info',
|
363
|
+
'dbplus_last',
|
364
|
+
'dbplus_lockrel',
|
365
|
+
'dbplus_next',
|
366
|
+
'dbplus_open',
|
367
|
+
'dbplus_prev',
|
368
|
+
'dbplus_rchperm',
|
369
|
+
'dbplus_rcreate',
|
370
|
+
'dbplus_rcrtexact',
|
371
|
+
'dbplus_rcrtlike',
|
372
|
+
'dbplus_resolve',
|
373
|
+
'dbplus_restorepos',
|
374
|
+
'dbplus_rkeys',
|
375
|
+
'dbplus_ropen',
|
376
|
+
'dbplus_rquery',
|
377
|
+
'dbplus_rrename',
|
378
|
+
'dbplus_rsecindex',
|
379
|
+
'dbplus_runlink',
|
380
|
+
'dbplus_rzap',
|
381
|
+
'dbplus_savepos',
|
382
|
+
'dbplus_setindex',
|
383
|
+
'dbplus_setindexbynumber',
|
384
|
+
'dbplus_sql',
|
385
|
+
'dbplus_tcl',
|
386
|
+
'dbplus_tremove',
|
387
|
+
'dbplus_undo',
|
388
|
+
'dbplus_undoprepare',
|
389
|
+
'dbplus_unlockrel',
|
390
|
+
'dbplus_unselect',
|
391
|
+
'dbplus_update',
|
392
|
+
'dbplus_xlockrel',
|
393
|
+
'dbplus_xunlockrel'],
|
394
|
+
'DBM': ['dblist',
|
395
|
+
'dbmclose',
|
396
|
+
'dbmdelete',
|
397
|
+
'dbmexists',
|
398
|
+
'dbmfetch',
|
399
|
+
'dbmfirstkey',
|
400
|
+
'dbminsert',
|
401
|
+
'dbmnextkey',
|
402
|
+
'dbmopen',
|
403
|
+
'dbmreplace'],
|
404
|
+
'DOM': ['dom_import_simplexml'],
|
405
|
+
'DOM XML': ['domxml_new_doc',
|
406
|
+
'domxml_open_file',
|
407
|
+
'domxml_open_mem',
|
408
|
+
'domxml_version',
|
409
|
+
'domxml_xmltree',
|
410
|
+
'domxml_xslt_stylesheet',
|
411
|
+
'domxml_xslt_stylesheet_doc',
|
412
|
+
'domxml_xslt_stylesheet_file',
|
413
|
+
'xpath_eval',
|
414
|
+
'xpath_eval_expression',
|
415
|
+
'xpath_new_context',
|
416
|
+
'xptr_eval',
|
417
|
+
'xptr_new_context'],
|
418
|
+
'Date/Time': ['checkdate',
|
419
|
+
'date',
|
420
|
+
'date_sunrise',
|
421
|
+
'date_sunset',
|
422
|
+
'getdate',
|
423
|
+
'gettimeofday',
|
424
|
+
'gmdate',
|
425
|
+
'gmmktime',
|
426
|
+
'gmstrftime',
|
427
|
+
'idate',
|
428
|
+
'localtime',
|
429
|
+
'microtime',
|
430
|
+
'mktime',
|
431
|
+
'strftime',
|
432
|
+
'strptime',
|
433
|
+
'strtotime',
|
434
|
+
'time'],
|
435
|
+
'Direct IO': ['dio_close',
|
436
|
+
'dio_fcntl',
|
437
|
+
'dio_open',
|
438
|
+
'dio_read',
|
439
|
+
'dio_seek',
|
440
|
+
'dio_stat',
|
441
|
+
'dio_tcsetattr',
|
442
|
+
'dio_truncate',
|
443
|
+
'dio_write'],
|
444
|
+
'Directories': ['chdir',
|
445
|
+
'chroot',
|
446
|
+
'closedir',
|
447
|
+
'getcwd',
|
448
|
+
'opendir',
|
449
|
+
'readdir',
|
450
|
+
'rewinddir',
|
451
|
+
'scandir'],
|
452
|
+
'Errors and Logging': ['debug_backtrace',
|
453
|
+
'debug_print_backtrace',
|
454
|
+
'error_log',
|
455
|
+
'error_reporting',
|
456
|
+
'restore_error_handler',
|
457
|
+
'restore_exception_handler',
|
458
|
+
'set_error_handler',
|
459
|
+
'set_exception_handler',
|
460
|
+
'trigger_error',
|
461
|
+
'user_error'],
|
462
|
+
'Exif': ['exif_imagetype',
|
463
|
+
'exif_read_data',
|
464
|
+
'exif_tagname',
|
465
|
+
'exif_thumbnail',
|
466
|
+
'read_exif_data'],
|
467
|
+
'FDF': ['fdf_add_doc_javascript',
|
468
|
+
'fdf_add_template',
|
469
|
+
'fdf_close',
|
470
|
+
'fdf_create',
|
471
|
+
'fdf_enum_values',
|
472
|
+
'fdf_errno',
|
473
|
+
'fdf_error',
|
474
|
+
'fdf_get_ap',
|
475
|
+
'fdf_get_attachment',
|
476
|
+
'fdf_get_encoding',
|
477
|
+
'fdf_get_file',
|
478
|
+
'fdf_get_flags',
|
479
|
+
'fdf_get_opt',
|
480
|
+
'fdf_get_status',
|
481
|
+
'fdf_get_value',
|
482
|
+
'fdf_get_version',
|
483
|
+
'fdf_header',
|
484
|
+
'fdf_next_field_name',
|
485
|
+
'fdf_open',
|
486
|
+
'fdf_open_string',
|
487
|
+
'fdf_remove_item',
|
488
|
+
'fdf_save',
|
489
|
+
'fdf_save_string',
|
490
|
+
'fdf_set_ap',
|
491
|
+
'fdf_set_encoding',
|
492
|
+
'fdf_set_file',
|
493
|
+
'fdf_set_flags',
|
494
|
+
'fdf_set_javascript_action',
|
495
|
+
'fdf_set_on_import_javascript',
|
496
|
+
'fdf_set_opt',
|
497
|
+
'fdf_set_status',
|
498
|
+
'fdf_set_submit_form_action',
|
499
|
+
'fdf_set_target_frame',
|
500
|
+
'fdf_set_value',
|
501
|
+
'fdf_set_version'],
|
502
|
+
'FTP': ['ftp_alloc',
|
503
|
+
'ftp_cdup',
|
504
|
+
'ftp_chdir',
|
505
|
+
'ftp_chmod',
|
506
|
+
'ftp_close',
|
507
|
+
'ftp_connect',
|
508
|
+
'ftp_delete',
|
509
|
+
'ftp_exec',
|
510
|
+
'ftp_fget',
|
511
|
+
'ftp_fput',
|
512
|
+
'ftp_get',
|
513
|
+
'ftp_get_option',
|
514
|
+
'ftp_login',
|
515
|
+
'ftp_mdtm',
|
516
|
+
'ftp_mkdir',
|
517
|
+
'ftp_nb_continue',
|
518
|
+
'ftp_nb_fget',
|
519
|
+
'ftp_nb_fput',
|
520
|
+
'ftp_nb_get',
|
521
|
+
'ftp_nb_put',
|
522
|
+
'ftp_nlist',
|
523
|
+
'ftp_pasv',
|
524
|
+
'ftp_put',
|
525
|
+
'ftp_pwd',
|
526
|
+
'ftp_quit',
|
527
|
+
'ftp_raw',
|
528
|
+
'ftp_rawlist',
|
529
|
+
'ftp_rename',
|
530
|
+
'ftp_rmdir',
|
531
|
+
'ftp_set_option',
|
532
|
+
'ftp_site',
|
533
|
+
'ftp_size',
|
534
|
+
'ftp_ssl_connect',
|
535
|
+
'ftp_systype'],
|
536
|
+
'Filesystem': ['basename',
|
537
|
+
'chgrp',
|
538
|
+
'chmod',
|
539
|
+
'chown',
|
540
|
+
'clearstatcache',
|
541
|
+
'copy',
|
542
|
+
'delete',
|
543
|
+
'dirname',
|
544
|
+
'disk_free_space',
|
545
|
+
'disk_total_space',
|
546
|
+
'diskfreespace',
|
547
|
+
'fclose',
|
548
|
+
'feof',
|
549
|
+
'fflush',
|
550
|
+
'fgetc',
|
551
|
+
'fgetcsv',
|
552
|
+
'fgets',
|
553
|
+
'fgetss',
|
554
|
+
'file',
|
555
|
+
'file_exists',
|
556
|
+
'file_get_contents',
|
557
|
+
'file_put_contents',
|
558
|
+
'fileatime',
|
559
|
+
'filectime',
|
560
|
+
'filegroup',
|
561
|
+
'fileinode',
|
562
|
+
'filemtime',
|
563
|
+
'fileowner',
|
564
|
+
'fileperms',
|
565
|
+
'filesize',
|
566
|
+
'filetype',
|
567
|
+
'flock',
|
568
|
+
'fnmatch',
|
569
|
+
'fopen',
|
570
|
+
'fpassthru',
|
571
|
+
'fputcsv',
|
572
|
+
'fputs',
|
573
|
+
'fread',
|
574
|
+
'fscanf',
|
575
|
+
'fseek',
|
576
|
+
'fstat',
|
577
|
+
'ftell',
|
578
|
+
'ftruncate',
|
579
|
+
'fwrite',
|
580
|
+
'glob',
|
581
|
+
'is_dir',
|
582
|
+
'is_executable',
|
583
|
+
'is_file',
|
584
|
+
'is_link',
|
585
|
+
'is_readable',
|
586
|
+
'is_uploaded_file',
|
587
|
+
'is_writable',
|
588
|
+
'is_writeable',
|
589
|
+
'link',
|
590
|
+
'linkinfo',
|
591
|
+
'lstat',
|
592
|
+
'mkdir',
|
593
|
+
'move_uploaded_file',
|
594
|
+
'parse_ini_file',
|
595
|
+
'pathinfo',
|
596
|
+
'pclose',
|
597
|
+
'popen',
|
598
|
+
'readfile',
|
599
|
+
'readlink',
|
600
|
+
'realpath',
|
601
|
+
'rename',
|
602
|
+
'rewind',
|
603
|
+
'rmdir',
|
604
|
+
'set_file_buffer',
|
605
|
+
'stat',
|
606
|
+
'symlink',
|
607
|
+
'tempnam',
|
608
|
+
'tmpfile',
|
609
|
+
'touch',
|
610
|
+
'umask',
|
611
|
+
'unlink'],
|
612
|
+
'Firebird/InterBase': ['ibase_add_user',
|
613
|
+
'ibase_affected_rows',
|
614
|
+
'ibase_backup',
|
615
|
+
'ibase_blob_add',
|
616
|
+
'ibase_blob_cancel',
|
617
|
+
'ibase_blob_close',
|
618
|
+
'ibase_blob_create',
|
619
|
+
'ibase_blob_echo',
|
620
|
+
'ibase_blob_get',
|
621
|
+
'ibase_blob_import',
|
622
|
+
'ibase_blob_info',
|
623
|
+
'ibase_blob_open',
|
624
|
+
'ibase_close',
|
625
|
+
'ibase_commit',
|
626
|
+
'ibase_commit_ret',
|
627
|
+
'ibase_connect',
|
628
|
+
'ibase_db_info',
|
629
|
+
'ibase_delete_user',
|
630
|
+
'ibase_drop_db',
|
631
|
+
'ibase_errcode',
|
632
|
+
'ibase_errmsg',
|
633
|
+
'ibase_execute',
|
634
|
+
'ibase_fetch_assoc',
|
635
|
+
'ibase_fetch_object',
|
636
|
+
'ibase_fetch_row',
|
637
|
+
'ibase_field_info',
|
638
|
+
'ibase_free_event_handler',
|
639
|
+
'ibase_free_query',
|
640
|
+
'ibase_free_result',
|
641
|
+
'ibase_gen_id',
|
642
|
+
'ibase_maintain_db',
|
643
|
+
'ibase_modify_user',
|
644
|
+
'ibase_name_result',
|
645
|
+
'ibase_num_fields',
|
646
|
+
'ibase_num_params',
|
647
|
+
'ibase_param_info',
|
648
|
+
'ibase_pconnect',
|
649
|
+
'ibase_prepare',
|
650
|
+
'ibase_query',
|
651
|
+
'ibase_restore',
|
652
|
+
'ibase_rollback',
|
653
|
+
'ibase_rollback_ret',
|
654
|
+
'ibase_server_info',
|
655
|
+
'ibase_service_attach',
|
656
|
+
'ibase_service_detach',
|
657
|
+
'ibase_set_event_handler',
|
658
|
+
'ibase_timefmt',
|
659
|
+
'ibase_trans',
|
660
|
+
'ibase_wait_event'],
|
661
|
+
'FriBiDi': ['fribidi_log2vis'],
|
662
|
+
'FrontBase': ['fbsql_affected_rows',
|
663
|
+
'fbsql_autocommit',
|
664
|
+
'fbsql_blob_size',
|
665
|
+
'fbsql_change_user',
|
666
|
+
'fbsql_clob_size',
|
667
|
+
'fbsql_close',
|
668
|
+
'fbsql_commit',
|
669
|
+
'fbsql_connect',
|
670
|
+
'fbsql_create_blob',
|
671
|
+
'fbsql_create_clob',
|
672
|
+
'fbsql_create_db',
|
673
|
+
'fbsql_data_seek',
|
674
|
+
'fbsql_database',
|
675
|
+
'fbsql_database_password',
|
676
|
+
'fbsql_db_query',
|
677
|
+
'fbsql_db_status',
|
678
|
+
'fbsql_drop_db',
|
679
|
+
'fbsql_errno',
|
680
|
+
'fbsql_error',
|
681
|
+
'fbsql_fetch_array',
|
682
|
+
'fbsql_fetch_assoc',
|
683
|
+
'fbsql_fetch_field',
|
684
|
+
'fbsql_fetch_lengths',
|
685
|
+
'fbsql_fetch_object',
|
686
|
+
'fbsql_fetch_row',
|
687
|
+
'fbsql_field_flags',
|
688
|
+
'fbsql_field_len',
|
689
|
+
'fbsql_field_name',
|
690
|
+
'fbsql_field_seek',
|
691
|
+
'fbsql_field_table',
|
692
|
+
'fbsql_field_type',
|
693
|
+
'fbsql_free_result',
|
694
|
+
'fbsql_get_autostart_info',
|
695
|
+
'fbsql_hostname',
|
696
|
+
'fbsql_insert_id',
|
697
|
+
'fbsql_list_dbs',
|
698
|
+
'fbsql_list_fields',
|
699
|
+
'fbsql_list_tables',
|
700
|
+
'fbsql_next_result',
|
701
|
+
'fbsql_num_fields',
|
702
|
+
'fbsql_num_rows',
|
703
|
+
'fbsql_password',
|
704
|
+
'fbsql_pconnect',
|
705
|
+
'fbsql_query',
|
706
|
+
'fbsql_read_blob',
|
707
|
+
'fbsql_read_clob',
|
708
|
+
'fbsql_result',
|
709
|
+
'fbsql_rollback',
|
710
|
+
'fbsql_select_db',
|
711
|
+
'fbsql_set_lob_mode',
|
712
|
+
'fbsql_set_password',
|
713
|
+
'fbsql_set_transaction',
|
714
|
+
'fbsql_start_db',
|
715
|
+
'fbsql_stop_db',
|
716
|
+
'fbsql_tablename',
|
717
|
+
'fbsql_username',
|
718
|
+
'fbsql_warnings'],
|
719
|
+
'Function handling': ['call_user_func',
|
720
|
+
'call_user_func_array',
|
721
|
+
'create_function',
|
722
|
+
'func_get_arg',
|
723
|
+
'func_get_args',
|
724
|
+
'func_num_args',
|
725
|
+
'function_exists',
|
726
|
+
'get_defined_functions',
|
727
|
+
'register_shutdown_function',
|
728
|
+
'register_tick_function',
|
729
|
+
'unregister_tick_function'],
|
730
|
+
'GMP': ['gmp_abs',
|
731
|
+
'gmp_add',
|
732
|
+
'gmp_and',
|
733
|
+
'gmp_clrbit',
|
734
|
+
'gmp_cmp',
|
735
|
+
'gmp_com',
|
736
|
+
'gmp_div',
|
737
|
+
'gmp_div_q',
|
738
|
+
'gmp_div_qr',
|
739
|
+
'gmp_div_r',
|
740
|
+
'gmp_divexact',
|
741
|
+
'gmp_fact',
|
742
|
+
'gmp_gcd',
|
743
|
+
'gmp_gcdext',
|
744
|
+
'gmp_hamdist',
|
745
|
+
'gmp_init',
|
746
|
+
'gmp_intval',
|
747
|
+
'gmp_invert',
|
748
|
+
'gmp_jacobi',
|
749
|
+
'gmp_legendre',
|
750
|
+
'gmp_mod',
|
751
|
+
'gmp_mul',
|
752
|
+
'gmp_neg',
|
753
|
+
'gmp_or',
|
754
|
+
'gmp_perfect_square',
|
755
|
+
'gmp_popcount',
|
756
|
+
'gmp_pow',
|
757
|
+
'gmp_powm',
|
758
|
+
'gmp_prob_prime',
|
759
|
+
'gmp_random',
|
760
|
+
'gmp_scan0',
|
761
|
+
'gmp_scan1',
|
762
|
+
'gmp_setbit',
|
763
|
+
'gmp_sign',
|
764
|
+
'gmp_sqrt',
|
765
|
+
'gmp_sqrtrem',
|
766
|
+
'gmp_strval',
|
767
|
+
'gmp_sub',
|
768
|
+
'gmp_xor'],
|
769
|
+
'Hyperwave': ['hw_array2objrec',
|
770
|
+
'hw_changeobject',
|
771
|
+
'hw_children',
|
772
|
+
'hw_childrenobj',
|
773
|
+
'hw_close',
|
774
|
+
'hw_connect',
|
775
|
+
'hw_connection_info',
|
776
|
+
'hw_cp',
|
777
|
+
'hw_deleteobject',
|
778
|
+
'hw_docbyanchor',
|
779
|
+
'hw_docbyanchorobj',
|
780
|
+
'hw_document_attributes',
|
781
|
+
'hw_document_bodytag',
|
782
|
+
'hw_document_content',
|
783
|
+
'hw_document_setcontent',
|
784
|
+
'hw_document_size',
|
785
|
+
'hw_dummy',
|
786
|
+
'hw_edittext',
|
787
|
+
'hw_error',
|
788
|
+
'hw_errormsg',
|
789
|
+
'hw_free_document',
|
790
|
+
'hw_getanchors',
|
791
|
+
'hw_getanchorsobj',
|
792
|
+
'hw_getandlock',
|
793
|
+
'hw_getchildcoll',
|
794
|
+
'hw_getchildcollobj',
|
795
|
+
'hw_getchilddoccoll',
|
796
|
+
'hw_getchilddoccollobj',
|
797
|
+
'hw_getobject',
|
798
|
+
'hw_getobjectbyquery',
|
799
|
+
'hw_getobjectbyquerycoll',
|
800
|
+
'hw_getobjectbyquerycollobj',
|
801
|
+
'hw_getobjectbyqueryobj',
|
802
|
+
'hw_getparents',
|
803
|
+
'hw_getparentsobj',
|
804
|
+
'hw_getrellink',
|
805
|
+
'hw_getremote',
|
806
|
+
'hw_getremotechildren',
|
807
|
+
'hw_getsrcbydestobj',
|
808
|
+
'hw_gettext',
|
809
|
+
'hw_getusername',
|
810
|
+
'hw_identify',
|
811
|
+
'hw_incollections',
|
812
|
+
'hw_info',
|
813
|
+
'hw_inscoll',
|
814
|
+
'hw_insdoc',
|
815
|
+
'hw_insertanchors',
|
816
|
+
'hw_insertdocument',
|
817
|
+
'hw_insertobject',
|
818
|
+
'hw_mapid',
|
819
|
+
'hw_modifyobject',
|
820
|
+
'hw_mv',
|
821
|
+
'hw_new_document',
|
822
|
+
'hw_objrec2array',
|
823
|
+
'hw_output_document',
|
824
|
+
'hw_pconnect',
|
825
|
+
'hw_pipedocument',
|
826
|
+
'hw_root',
|
827
|
+
'hw_setlinkroot',
|
828
|
+
'hw_stat',
|
829
|
+
'hw_unlock',
|
830
|
+
'hw_who'],
|
831
|
+
'Hyperwave API': ['hwapi_hgcsp'],
|
832
|
+
'IMAP': ['imap_8bit',
|
833
|
+
'imap_alerts',
|
834
|
+
'imap_append',
|
835
|
+
'imap_base64',
|
836
|
+
'imap_binary',
|
837
|
+
'imap_body',
|
838
|
+
'imap_bodystruct',
|
839
|
+
'imap_check',
|
840
|
+
'imap_clearflag_full',
|
841
|
+
'imap_close',
|
842
|
+
'imap_createmailbox',
|
843
|
+
'imap_delete',
|
844
|
+
'imap_deletemailbox',
|
845
|
+
'imap_errors',
|
846
|
+
'imap_expunge',
|
847
|
+
'imap_fetch_overview',
|
848
|
+
'imap_fetchbody',
|
849
|
+
'imap_fetchheader',
|
850
|
+
'imap_fetchstructure',
|
851
|
+
'imap_get_quota',
|
852
|
+
'imap_get_quotaroot',
|
853
|
+
'imap_getacl',
|
854
|
+
'imap_getmailboxes',
|
855
|
+
'imap_getsubscribed',
|
856
|
+
'imap_header',
|
857
|
+
'imap_headerinfo',
|
858
|
+
'imap_headers',
|
859
|
+
'imap_last_error',
|
860
|
+
'imap_list',
|
861
|
+
'imap_listmailbox',
|
862
|
+
'imap_listscan',
|
863
|
+
'imap_listsubscribed',
|
864
|
+
'imap_lsub',
|
865
|
+
'imap_mail',
|
866
|
+
'imap_mail_compose',
|
867
|
+
'imap_mail_copy',
|
868
|
+
'imap_mail_move',
|
869
|
+
'imap_mailboxmsginfo',
|
870
|
+
'imap_mime_header_decode',
|
871
|
+
'imap_msgno',
|
872
|
+
'imap_num_msg',
|
873
|
+
'imap_num_recent',
|
874
|
+
'imap_open',
|
875
|
+
'imap_ping',
|
876
|
+
'imap_qprint',
|
877
|
+
'imap_renamemailbox',
|
878
|
+
'imap_reopen',
|
879
|
+
'imap_rfc822_parse_adrlist',
|
880
|
+
'imap_rfc822_parse_headers',
|
881
|
+
'imap_rfc822_write_address',
|
882
|
+
'imap_scanmailbox',
|
883
|
+
'imap_search',
|
884
|
+
'imap_set_quota',
|
885
|
+
'imap_setacl',
|
886
|
+
'imap_setflag_full',
|
887
|
+
'imap_sort',
|
888
|
+
'imap_status',
|
889
|
+
'imap_subscribe',
|
890
|
+
'imap_thread',
|
891
|
+
'imap_timeout',
|
892
|
+
'imap_uid',
|
893
|
+
'imap_undelete',
|
894
|
+
'imap_unsubscribe',
|
895
|
+
'imap_utf7_decode',
|
896
|
+
'imap_utf7_encode',
|
897
|
+
'imap_utf8'],
|
898
|
+
'IRC Gateway': ['ircg_channel_mode',
|
899
|
+
'ircg_disconnect',
|
900
|
+
'ircg_eval_ecmascript_params',
|
901
|
+
'ircg_fetch_error_msg',
|
902
|
+
'ircg_get_username',
|
903
|
+
'ircg_html_encode',
|
904
|
+
'ircg_ignore_add',
|
905
|
+
'ircg_ignore_del',
|
906
|
+
'ircg_invite',
|
907
|
+
'ircg_is_conn_alive',
|
908
|
+
'ircg_join',
|
909
|
+
'ircg_kick',
|
910
|
+
'ircg_list',
|
911
|
+
'ircg_lookup_format_messages',
|
912
|
+
'ircg_lusers',
|
913
|
+
'ircg_msg',
|
914
|
+
'ircg_names',
|
915
|
+
'ircg_nick',
|
916
|
+
'ircg_nickname_escape',
|
917
|
+
'ircg_nickname_unescape',
|
918
|
+
'ircg_notice',
|
919
|
+
'ircg_oper',
|
920
|
+
'ircg_part',
|
921
|
+
'ircg_pconnect',
|
922
|
+
'ircg_register_format_messages',
|
923
|
+
'ircg_set_current',
|
924
|
+
'ircg_set_file',
|
925
|
+
'ircg_set_on_die',
|
926
|
+
'ircg_topic',
|
927
|
+
'ircg_who',
|
928
|
+
'ircg_whois'],
|
929
|
+
'Image': ['gd_info',
|
930
|
+
'getimagesize',
|
931
|
+
'image2wbmp',
|
932
|
+
'image_type_to_extension',
|
933
|
+
'image_type_to_mime_type',
|
934
|
+
'imagealphablending',
|
935
|
+
'imageantialias',
|
936
|
+
'imagearc',
|
937
|
+
'imagechar',
|
938
|
+
'imagecharup',
|
939
|
+
'imagecolorallocate',
|
940
|
+
'imagecolorallocatealpha',
|
941
|
+
'imagecolorat',
|
942
|
+
'imagecolorclosest',
|
943
|
+
'imagecolorclosestalpha',
|
944
|
+
'imagecolorclosesthwb',
|
945
|
+
'imagecolordeallocate',
|
946
|
+
'imagecolorexact',
|
947
|
+
'imagecolorexactalpha',
|
948
|
+
'imagecolormatch',
|
949
|
+
'imagecolorresolve',
|
950
|
+
'imagecolorresolvealpha',
|
951
|
+
'imagecolorset',
|
952
|
+
'imagecolorsforindex',
|
953
|
+
'imagecolorstotal',
|
954
|
+
'imagecolortransparent',
|
955
|
+
'imagecopy',
|
956
|
+
'imagecopymerge',
|
957
|
+
'imagecopymergegray',
|
958
|
+
'imagecopyresampled',
|
959
|
+
'imagecopyresized',
|
960
|
+
'imagecreate',
|
961
|
+
'imagecreatefromgd',
|
962
|
+
'imagecreatefromgd2',
|
963
|
+
'imagecreatefromgd2part',
|
964
|
+
'imagecreatefromgif',
|
965
|
+
'imagecreatefromjpeg',
|
966
|
+
'imagecreatefrompng',
|
967
|
+
'imagecreatefromstring',
|
968
|
+
'imagecreatefromwbmp',
|
969
|
+
'imagecreatefromxbm',
|
970
|
+
'imagecreatefromxpm',
|
971
|
+
'imagecreatetruecolor',
|
972
|
+
'imagedashedline',
|
973
|
+
'imagedestroy',
|
974
|
+
'imageellipse',
|
975
|
+
'imagefill',
|
976
|
+
'imagefilledarc',
|
977
|
+
'imagefilledellipse',
|
978
|
+
'imagefilledpolygon',
|
979
|
+
'imagefilledrectangle',
|
980
|
+
'imagefilltoborder',
|
981
|
+
'imagefilter',
|
982
|
+
'imagefontheight',
|
983
|
+
'imagefontwidth',
|
984
|
+
'imageftbbox',
|
985
|
+
'imagefttext',
|
986
|
+
'imagegammacorrect',
|
987
|
+
'imagegd',
|
988
|
+
'imagegd2',
|
989
|
+
'imagegif',
|
990
|
+
'imageinterlace',
|
991
|
+
'imageistruecolor',
|
992
|
+
'imagejpeg',
|
993
|
+
'imagelayereffect',
|
994
|
+
'imageline',
|
995
|
+
'imageloadfont',
|
996
|
+
'imagepalettecopy',
|
997
|
+
'imagepng',
|
998
|
+
'imagepolygon',
|
999
|
+
'imagepsbbox',
|
1000
|
+
'imagepsencodefont',
|
1001
|
+
'imagepsextendfont',
|
1002
|
+
'imagepsfreefont',
|
1003
|
+
'imagepsloadfont',
|
1004
|
+
'imagepsslantfont',
|
1005
|
+
'imagepstext',
|
1006
|
+
'imagerectangle',
|
1007
|
+
'imagerotate',
|
1008
|
+
'imagesavealpha',
|
1009
|
+
'imagesetbrush',
|
1010
|
+
'imagesetpixel',
|
1011
|
+
'imagesetstyle',
|
1012
|
+
'imagesetthickness',
|
1013
|
+
'imagesettile',
|
1014
|
+
'imagestring',
|
1015
|
+
'imagestringup',
|
1016
|
+
'imagesx',
|
1017
|
+
'imagesy',
|
1018
|
+
'imagetruecolortopalette',
|
1019
|
+
'imagettfbbox',
|
1020
|
+
'imagettftext',
|
1021
|
+
'imagetypes',
|
1022
|
+
'imagewbmp',
|
1023
|
+
'imagexbm',
|
1024
|
+
'iptcembed',
|
1025
|
+
'iptcparse',
|
1026
|
+
'jpeg2wbmp',
|
1027
|
+
'png2wbmp'],
|
1028
|
+
'Informix': ['ifx_affected_rows',
|
1029
|
+
'ifx_blobinfile_mode',
|
1030
|
+
'ifx_byteasvarchar',
|
1031
|
+
'ifx_close',
|
1032
|
+
'ifx_connect',
|
1033
|
+
'ifx_copy_blob',
|
1034
|
+
'ifx_create_blob',
|
1035
|
+
'ifx_create_char',
|
1036
|
+
'ifx_do',
|
1037
|
+
'ifx_error',
|
1038
|
+
'ifx_errormsg',
|
1039
|
+
'ifx_fetch_row',
|
1040
|
+
'ifx_fieldproperties',
|
1041
|
+
'ifx_fieldtypes',
|
1042
|
+
'ifx_free_blob',
|
1043
|
+
'ifx_free_char',
|
1044
|
+
'ifx_free_result',
|
1045
|
+
'ifx_get_blob',
|
1046
|
+
'ifx_get_char',
|
1047
|
+
'ifx_getsqlca',
|
1048
|
+
'ifx_htmltbl_result',
|
1049
|
+
'ifx_nullformat',
|
1050
|
+
'ifx_num_fields',
|
1051
|
+
'ifx_num_rows',
|
1052
|
+
'ifx_pconnect',
|
1053
|
+
'ifx_prepare',
|
1054
|
+
'ifx_query',
|
1055
|
+
'ifx_textasvarchar',
|
1056
|
+
'ifx_update_blob',
|
1057
|
+
'ifx_update_char',
|
1058
|
+
'ifxus_close_slob',
|
1059
|
+
'ifxus_create_slob',
|
1060
|
+
'ifxus_free_slob',
|
1061
|
+
'ifxus_open_slob',
|
1062
|
+
'ifxus_read_slob',
|
1063
|
+
'ifxus_seek_slob',
|
1064
|
+
'ifxus_tell_slob',
|
1065
|
+
'ifxus_write_slob'],
|
1066
|
+
'Ingres II': ['ingres_autocommit',
|
1067
|
+
'ingres_close',
|
1068
|
+
'ingres_commit',
|
1069
|
+
'ingres_connect',
|
1070
|
+
'ingres_fetch_array',
|
1071
|
+
'ingres_fetch_object',
|
1072
|
+
'ingres_fetch_row',
|
1073
|
+
'ingres_field_length',
|
1074
|
+
'ingres_field_name',
|
1075
|
+
'ingres_field_nullable',
|
1076
|
+
'ingres_field_precision',
|
1077
|
+
'ingres_field_scale',
|
1078
|
+
'ingres_field_type',
|
1079
|
+
'ingres_num_fields',
|
1080
|
+
'ingres_num_rows',
|
1081
|
+
'ingres_pconnect',
|
1082
|
+
'ingres_query',
|
1083
|
+
'ingres_rollback'],
|
1084
|
+
'Java': ['java_last_exception_clear', 'java_last_exception_get'],
|
1085
|
+
'LDAP': ['ldap_8859_to_t61',
|
1086
|
+
'ldap_add',
|
1087
|
+
'ldap_bind',
|
1088
|
+
'ldap_close',
|
1089
|
+
'ldap_compare',
|
1090
|
+
'ldap_connect',
|
1091
|
+
'ldap_count_entries',
|
1092
|
+
'ldap_delete',
|
1093
|
+
'ldap_dn2ufn',
|
1094
|
+
'ldap_err2str',
|
1095
|
+
'ldap_errno',
|
1096
|
+
'ldap_error',
|
1097
|
+
'ldap_explode_dn',
|
1098
|
+
'ldap_first_attribute',
|
1099
|
+
'ldap_first_entry',
|
1100
|
+
'ldap_first_reference',
|
1101
|
+
'ldap_free_result',
|
1102
|
+
'ldap_get_attributes',
|
1103
|
+
'ldap_get_dn',
|
1104
|
+
'ldap_get_entries',
|
1105
|
+
'ldap_get_option',
|
1106
|
+
'ldap_get_values',
|
1107
|
+
'ldap_get_values_len',
|
1108
|
+
'ldap_list',
|
1109
|
+
'ldap_mod_add',
|
1110
|
+
'ldap_mod_del',
|
1111
|
+
'ldap_mod_replace',
|
1112
|
+
'ldap_modify',
|
1113
|
+
'ldap_next_attribute',
|
1114
|
+
'ldap_next_entry',
|
1115
|
+
'ldap_next_reference',
|
1116
|
+
'ldap_parse_reference',
|
1117
|
+
'ldap_parse_result',
|
1118
|
+
'ldap_read',
|
1119
|
+
'ldap_rename',
|
1120
|
+
'ldap_sasl_bind',
|
1121
|
+
'ldap_search',
|
1122
|
+
'ldap_set_option',
|
1123
|
+
'ldap_set_rebind_proc',
|
1124
|
+
'ldap_sort',
|
1125
|
+
'ldap_start_tls',
|
1126
|
+
'ldap_t61_to_8859',
|
1127
|
+
'ldap_unbind'],
|
1128
|
+
'LZF': ['lzf_compress', 'lzf_decompress', 'lzf_optimized_for'],
|
1129
|
+
'Lotus Notes': ['notes_body',
|
1130
|
+
'notes_copy_db',
|
1131
|
+
'notes_create_db',
|
1132
|
+
'notes_create_note',
|
1133
|
+
'notes_drop_db',
|
1134
|
+
'notes_find_note',
|
1135
|
+
'notes_header_info',
|
1136
|
+
'notes_list_msgs',
|
1137
|
+
'notes_mark_read',
|
1138
|
+
'notes_mark_unread',
|
1139
|
+
'notes_nav_create',
|
1140
|
+
'notes_search',
|
1141
|
+
'notes_unread',
|
1142
|
+
'notes_version'],
|
1143
|
+
'MCAL': ['mcal_append_event',
|
1144
|
+
'mcal_close',
|
1145
|
+
'mcal_create_calendar',
|
1146
|
+
'mcal_date_compare',
|
1147
|
+
'mcal_date_valid',
|
1148
|
+
'mcal_day_of_week',
|
1149
|
+
'mcal_day_of_year',
|
1150
|
+
'mcal_days_in_month',
|
1151
|
+
'mcal_delete_calendar',
|
1152
|
+
'mcal_delete_event',
|
1153
|
+
'mcal_event_add_attribute',
|
1154
|
+
'mcal_event_init',
|
1155
|
+
'mcal_event_set_alarm',
|
1156
|
+
'mcal_event_set_category',
|
1157
|
+
'mcal_event_set_class',
|
1158
|
+
'mcal_event_set_description',
|
1159
|
+
'mcal_event_set_end',
|
1160
|
+
'mcal_event_set_recur_daily',
|
1161
|
+
'mcal_event_set_recur_monthly_mday',
|
1162
|
+
'mcal_event_set_recur_monthly_wday',
|
1163
|
+
'mcal_event_set_recur_none',
|
1164
|
+
'mcal_event_set_recur_weekly',
|
1165
|
+
'mcal_event_set_recur_yearly',
|
1166
|
+
'mcal_event_set_start',
|
1167
|
+
'mcal_event_set_title',
|
1168
|
+
'mcal_expunge',
|
1169
|
+
'mcal_fetch_current_stream_event',
|
1170
|
+
'mcal_fetch_event',
|
1171
|
+
'mcal_is_leap_year',
|
1172
|
+
'mcal_list_alarms',
|
1173
|
+
'mcal_list_events',
|
1174
|
+
'mcal_next_recurrence',
|
1175
|
+
'mcal_open',
|
1176
|
+
'mcal_popen',
|
1177
|
+
'mcal_rename_calendar',
|
1178
|
+
'mcal_reopen',
|
1179
|
+
'mcal_snooze',
|
1180
|
+
'mcal_store_event',
|
1181
|
+
'mcal_time_valid',
|
1182
|
+
'mcal_week_of_year'],
|
1183
|
+
'MS SQL Server': ['mssql_bind',
|
1184
|
+
'mssql_close',
|
1185
|
+
'mssql_connect',
|
1186
|
+
'mssql_data_seek',
|
1187
|
+
'mssql_execute',
|
1188
|
+
'mssql_fetch_array',
|
1189
|
+
'mssql_fetch_assoc',
|
1190
|
+
'mssql_fetch_batch',
|
1191
|
+
'mssql_fetch_field',
|
1192
|
+
'mssql_fetch_object',
|
1193
|
+
'mssql_fetch_row',
|
1194
|
+
'mssql_field_length',
|
1195
|
+
'mssql_field_name',
|
1196
|
+
'mssql_field_seek',
|
1197
|
+
'mssql_field_type',
|
1198
|
+
'mssql_free_result',
|
1199
|
+
'mssql_free_statement',
|
1200
|
+
'mssql_get_last_message',
|
1201
|
+
'mssql_guid_string',
|
1202
|
+
'mssql_init',
|
1203
|
+
'mssql_min_error_severity',
|
1204
|
+
'mssql_min_message_severity',
|
1205
|
+
'mssql_next_result',
|
1206
|
+
'mssql_num_fields',
|
1207
|
+
'mssql_num_rows',
|
1208
|
+
'mssql_pconnect',
|
1209
|
+
'mssql_query',
|
1210
|
+
'mssql_result',
|
1211
|
+
'mssql_rows_affected',
|
1212
|
+
'mssql_select_db'],
|
1213
|
+
'Mail': ['ezmlm_hash', 'mail'],
|
1214
|
+
'Math': ['abs',
|
1215
|
+
'acos',
|
1216
|
+
'acosh',
|
1217
|
+
'asin',
|
1218
|
+
'asinh',
|
1219
|
+
'atan',
|
1220
|
+
'atan2',
|
1221
|
+
'atanh',
|
1222
|
+
'base_convert',
|
1223
|
+
'bindec',
|
1224
|
+
'ceil',
|
1225
|
+
'cos',
|
1226
|
+
'cosh',
|
1227
|
+
'decbin',
|
1228
|
+
'dechex',
|
1229
|
+
'decoct',
|
1230
|
+
'deg2rad',
|
1231
|
+
'exp',
|
1232
|
+
'expm1',
|
1233
|
+
'floor',
|
1234
|
+
'fmod',
|
1235
|
+
'getrandmax',
|
1236
|
+
'hexdec',
|
1237
|
+
'hypot',
|
1238
|
+
'is_finite',
|
1239
|
+
'is_infinite',
|
1240
|
+
'is_nan',
|
1241
|
+
'lcg_value',
|
1242
|
+
'log',
|
1243
|
+
'log10',
|
1244
|
+
'log1p',
|
1245
|
+
'max',
|
1246
|
+
'min',
|
1247
|
+
'mt_getrandmax',
|
1248
|
+
'mt_rand',
|
1249
|
+
'mt_srand',
|
1250
|
+
'octdec',
|
1251
|
+
'pi',
|
1252
|
+
'pow',
|
1253
|
+
'rad2deg',
|
1254
|
+
'rand',
|
1255
|
+
'round',
|
1256
|
+
'sin',
|
1257
|
+
'sinh',
|
1258
|
+
'sqrt',
|
1259
|
+
'srand',
|
1260
|
+
'tan',
|
1261
|
+
'tanh'],
|
1262
|
+
'Memcache': ['memcache_debug'],
|
1263
|
+
'Mimetype': ['mime_content_type'],
|
1264
|
+
'Ming (flash)': ['ming_setcubicthreshold',
|
1265
|
+
'ming_setscale',
|
1266
|
+
'ming_useswfversion',
|
1267
|
+
'swfaction',
|
1268
|
+
'swfbitmap',
|
1269
|
+
'swfbutton',
|
1270
|
+
'swffill',
|
1271
|
+
'swffont',
|
1272
|
+
'swfgradient',
|
1273
|
+
'swfmorph',
|
1274
|
+
'swfmovie',
|
1275
|
+
'swfshape',
|
1276
|
+
'swfsprite',
|
1277
|
+
'swftext',
|
1278
|
+
'swftextfield'],
|
1279
|
+
'Misc.': ['connection_aborted',
|
1280
|
+
'connection_status',
|
1281
|
+
'connection_timeout',
|
1282
|
+
'constant',
|
1283
|
+
'define',
|
1284
|
+
'defined',
|
1285
|
+
'die',
|
1286
|
+
'eval',
|
1287
|
+
'exit',
|
1288
|
+
'get_browser',
|
1289
|
+
'highlight_file',
|
1290
|
+
'highlight_string',
|
1291
|
+
'ignore_user_abort',
|
1292
|
+
'pack',
|
1293
|
+
'php_check_syntax',
|
1294
|
+
'php_strip_whitespace',
|
1295
|
+
'show_source',
|
1296
|
+
'sleep',
|
1297
|
+
'time_nanosleep',
|
1298
|
+
'uniqid',
|
1299
|
+
'unpack',
|
1300
|
+
'usleep'],
|
1301
|
+
'Msession': ['msession_connect',
|
1302
|
+
'msession_count',
|
1303
|
+
'msession_create',
|
1304
|
+
'msession_destroy',
|
1305
|
+
'msession_disconnect',
|
1306
|
+
'msession_find',
|
1307
|
+
'msession_get',
|
1308
|
+
'msession_get_array',
|
1309
|
+
'msession_get_data',
|
1310
|
+
'msession_inc',
|
1311
|
+
'msession_list',
|
1312
|
+
'msession_listvar',
|
1313
|
+
'msession_lock',
|
1314
|
+
'msession_plugin',
|
1315
|
+
'msession_randstr',
|
1316
|
+
'msession_set',
|
1317
|
+
'msession_set_array',
|
1318
|
+
'msession_set_data',
|
1319
|
+
'msession_timeout',
|
1320
|
+
'msession_uniq',
|
1321
|
+
'msession_unlock'],
|
1322
|
+
'Multibyte String': ['mb_convert_case',
|
1323
|
+
'mb_convert_encoding',
|
1324
|
+
'mb_convert_kana',
|
1325
|
+
'mb_convert_variables',
|
1326
|
+
'mb_decode_mimeheader',
|
1327
|
+
'mb_decode_numericentity',
|
1328
|
+
'mb_detect_encoding',
|
1329
|
+
'mb_detect_order',
|
1330
|
+
'mb_encode_mimeheader',
|
1331
|
+
'mb_encode_numericentity',
|
1332
|
+
'mb_ereg',
|
1333
|
+
'mb_ereg_match',
|
1334
|
+
'mb_ereg_replace',
|
1335
|
+
'mb_ereg_search',
|
1336
|
+
'mb_ereg_search_getpos',
|
1337
|
+
'mb_ereg_search_getregs',
|
1338
|
+
'mb_ereg_search_init',
|
1339
|
+
'mb_ereg_search_pos',
|
1340
|
+
'mb_ereg_search_regs',
|
1341
|
+
'mb_ereg_search_setpos',
|
1342
|
+
'mb_eregi',
|
1343
|
+
'mb_eregi_replace',
|
1344
|
+
'mb_get_info',
|
1345
|
+
'mb_http_input',
|
1346
|
+
'mb_http_output',
|
1347
|
+
'mb_internal_encoding',
|
1348
|
+
'mb_language',
|
1349
|
+
'mb_list_encodings',
|
1350
|
+
'mb_output_handler',
|
1351
|
+
'mb_parse_str',
|
1352
|
+
'mb_preferred_mime_name',
|
1353
|
+
'mb_regex_encoding',
|
1354
|
+
'mb_regex_set_options',
|
1355
|
+
'mb_send_mail',
|
1356
|
+
'mb_split',
|
1357
|
+
'mb_strcut',
|
1358
|
+
'mb_strimwidth',
|
1359
|
+
'mb_strlen',
|
1360
|
+
'mb_strpos',
|
1361
|
+
'mb_strrpos',
|
1362
|
+
'mb_strtolower',
|
1363
|
+
'mb_strtoupper',
|
1364
|
+
'mb_strwidth',
|
1365
|
+
'mb_substitute_character',
|
1366
|
+
'mb_substr',
|
1367
|
+
'mb_substr_count'],
|
1368
|
+
'MySQL': ['mysql_affected_rows',
|
1369
|
+
'mysql_change_user',
|
1370
|
+
'mysql_client_encoding',
|
1371
|
+
'mysql_close',
|
1372
|
+
'mysql_connect',
|
1373
|
+
'mysql_create_db',
|
1374
|
+
'mysql_data_seek',
|
1375
|
+
'mysql_db_name',
|
1376
|
+
'mysql_db_query',
|
1377
|
+
'mysql_drop_db',
|
1378
|
+
'mysql_errno',
|
1379
|
+
'mysql_error',
|
1380
|
+
'mysql_escape_string',
|
1381
|
+
'mysql_fetch_array',
|
1382
|
+
'mysql_fetch_assoc',
|
1383
|
+
'mysql_fetch_field',
|
1384
|
+
'mysql_fetch_lengths',
|
1385
|
+
'mysql_fetch_object',
|
1386
|
+
'mysql_fetch_row',
|
1387
|
+
'mysql_field_flags',
|
1388
|
+
'mysql_field_len',
|
1389
|
+
'mysql_field_name',
|
1390
|
+
'mysql_field_seek',
|
1391
|
+
'mysql_field_table',
|
1392
|
+
'mysql_field_type',
|
1393
|
+
'mysql_free_result',
|
1394
|
+
'mysql_get_client_info',
|
1395
|
+
'mysql_get_host_info',
|
1396
|
+
'mysql_get_proto_info',
|
1397
|
+
'mysql_get_server_info',
|
1398
|
+
'mysql_info',
|
1399
|
+
'mysql_insert_id',
|
1400
|
+
'mysql_list_dbs',
|
1401
|
+
'mysql_list_fields',
|
1402
|
+
'mysql_list_processes',
|
1403
|
+
'mysql_list_tables',
|
1404
|
+
'mysql_num_fields',
|
1405
|
+
'mysql_num_rows',
|
1406
|
+
'mysql_pconnect',
|
1407
|
+
'mysql_ping',
|
1408
|
+
'mysql_query',
|
1409
|
+
'mysql_real_escape_string',
|
1410
|
+
'mysql_result',
|
1411
|
+
'mysql_select_db',
|
1412
|
+
'mysql_stat',
|
1413
|
+
'mysql_tablename',
|
1414
|
+
'mysql_thread_id',
|
1415
|
+
'mysql_unbuffered_query'],
|
1416
|
+
'NSAPI': ['nsapi_request_headers', 'nsapi_response_headers', 'nsapi_virtual'],
|
1417
|
+
'Ncurses': ['ncurses_addch',
|
1418
|
+
'ncurses_addchnstr',
|
1419
|
+
'ncurses_addchstr',
|
1420
|
+
'ncurses_addnstr',
|
1421
|
+
'ncurses_addstr',
|
1422
|
+
'ncurses_assume_default_colors',
|
1423
|
+
'ncurses_attroff',
|
1424
|
+
'ncurses_attron',
|
1425
|
+
'ncurses_attrset',
|
1426
|
+
'ncurses_baudrate',
|
1427
|
+
'ncurses_beep',
|
1428
|
+
'ncurses_bkgd',
|
1429
|
+
'ncurses_bkgdset',
|
1430
|
+
'ncurses_border',
|
1431
|
+
'ncurses_bottom_panel',
|
1432
|
+
'ncurses_can_change_color',
|
1433
|
+
'ncurses_cbreak',
|
1434
|
+
'ncurses_clear',
|
1435
|
+
'ncurses_clrtobot',
|
1436
|
+
'ncurses_clrtoeol',
|
1437
|
+
'ncurses_color_content',
|
1438
|
+
'ncurses_color_set',
|
1439
|
+
'ncurses_curs_set',
|
1440
|
+
'ncurses_def_prog_mode',
|
1441
|
+
'ncurses_def_shell_mode',
|
1442
|
+
'ncurses_define_key',
|
1443
|
+
'ncurses_del_panel',
|
1444
|
+
'ncurses_delay_output',
|
1445
|
+
'ncurses_delch',
|
1446
|
+
'ncurses_deleteln',
|
1447
|
+
'ncurses_delwin',
|
1448
|
+
'ncurses_doupdate',
|
1449
|
+
'ncurses_echo',
|
1450
|
+
'ncurses_echochar',
|
1451
|
+
'ncurses_end',
|
1452
|
+
'ncurses_erase',
|
1453
|
+
'ncurses_erasechar',
|
1454
|
+
'ncurses_filter',
|
1455
|
+
'ncurses_flash',
|
1456
|
+
'ncurses_flushinp',
|
1457
|
+
'ncurses_getch',
|
1458
|
+
'ncurses_getmaxyx',
|
1459
|
+
'ncurses_getmouse',
|
1460
|
+
'ncurses_getyx',
|
1461
|
+
'ncurses_halfdelay',
|
1462
|
+
'ncurses_has_colors',
|
1463
|
+
'ncurses_has_ic',
|
1464
|
+
'ncurses_has_il',
|
1465
|
+
'ncurses_has_key',
|
1466
|
+
'ncurses_hide_panel',
|
1467
|
+
'ncurses_hline',
|
1468
|
+
'ncurses_inch',
|
1469
|
+
'ncurses_init',
|
1470
|
+
'ncurses_init_color',
|
1471
|
+
'ncurses_init_pair',
|
1472
|
+
'ncurses_insch',
|
1473
|
+
'ncurses_insdelln',
|
1474
|
+
'ncurses_insertln',
|
1475
|
+
'ncurses_insstr',
|
1476
|
+
'ncurses_instr',
|
1477
|
+
'ncurses_isendwin',
|
1478
|
+
'ncurses_keyok',
|
1479
|
+
'ncurses_keypad',
|
1480
|
+
'ncurses_killchar',
|
1481
|
+
'ncurses_longname',
|
1482
|
+
'ncurses_meta',
|
1483
|
+
'ncurses_mouse_trafo',
|
1484
|
+
'ncurses_mouseinterval',
|
1485
|
+
'ncurses_mousemask',
|
1486
|
+
'ncurses_move',
|
1487
|
+
'ncurses_move_panel',
|
1488
|
+
'ncurses_mvaddch',
|
1489
|
+
'ncurses_mvaddchnstr',
|
1490
|
+
'ncurses_mvaddchstr',
|
1491
|
+
'ncurses_mvaddnstr',
|
1492
|
+
'ncurses_mvaddstr',
|
1493
|
+
'ncurses_mvcur',
|
1494
|
+
'ncurses_mvdelch',
|
1495
|
+
'ncurses_mvgetch',
|
1496
|
+
'ncurses_mvhline',
|
1497
|
+
'ncurses_mvinch',
|
1498
|
+
'ncurses_mvvline',
|
1499
|
+
'ncurses_mvwaddstr',
|
1500
|
+
'ncurses_napms',
|
1501
|
+
'ncurses_new_panel',
|
1502
|
+
'ncurses_newpad',
|
1503
|
+
'ncurses_newwin',
|
1504
|
+
'ncurses_nl',
|
1505
|
+
'ncurses_nocbreak',
|
1506
|
+
'ncurses_noecho',
|
1507
|
+
'ncurses_nonl',
|
1508
|
+
'ncurses_noqiflush',
|
1509
|
+
'ncurses_noraw',
|
1510
|
+
'ncurses_pair_content',
|
1511
|
+
'ncurses_panel_above',
|
1512
|
+
'ncurses_panel_below',
|
1513
|
+
'ncurses_panel_window',
|
1514
|
+
'ncurses_pnoutrefresh',
|
1515
|
+
'ncurses_prefresh',
|
1516
|
+
'ncurses_putp',
|
1517
|
+
'ncurses_qiflush',
|
1518
|
+
'ncurses_raw',
|
1519
|
+
'ncurses_refresh',
|
1520
|
+
'ncurses_replace_panel',
|
1521
|
+
'ncurses_reset_prog_mode',
|
1522
|
+
'ncurses_reset_shell_mode',
|
1523
|
+
'ncurses_resetty',
|
1524
|
+
'ncurses_savetty',
|
1525
|
+
'ncurses_scr_dump',
|
1526
|
+
'ncurses_scr_init',
|
1527
|
+
'ncurses_scr_restore',
|
1528
|
+
'ncurses_scr_set',
|
1529
|
+
'ncurses_scrl',
|
1530
|
+
'ncurses_show_panel',
|
1531
|
+
'ncurses_slk_attr',
|
1532
|
+
'ncurses_slk_attroff',
|
1533
|
+
'ncurses_slk_attron',
|
1534
|
+
'ncurses_slk_attrset',
|
1535
|
+
'ncurses_slk_clear',
|
1536
|
+
'ncurses_slk_color',
|
1537
|
+
'ncurses_slk_init',
|
1538
|
+
'ncurses_slk_noutrefresh',
|
1539
|
+
'ncurses_slk_refresh',
|
1540
|
+
'ncurses_slk_restore',
|
1541
|
+
'ncurses_slk_set',
|
1542
|
+
'ncurses_slk_touch',
|
1543
|
+
'ncurses_standend',
|
1544
|
+
'ncurses_standout',
|
1545
|
+
'ncurses_start_color',
|
1546
|
+
'ncurses_termattrs',
|
1547
|
+
'ncurses_termname',
|
1548
|
+
'ncurses_timeout',
|
1549
|
+
'ncurses_top_panel',
|
1550
|
+
'ncurses_typeahead',
|
1551
|
+
'ncurses_ungetch',
|
1552
|
+
'ncurses_ungetmouse',
|
1553
|
+
'ncurses_update_panels',
|
1554
|
+
'ncurses_use_default_colors',
|
1555
|
+
'ncurses_use_env',
|
1556
|
+
'ncurses_use_extended_names',
|
1557
|
+
'ncurses_vidattr',
|
1558
|
+
'ncurses_vline',
|
1559
|
+
'ncurses_waddch',
|
1560
|
+
'ncurses_waddstr',
|
1561
|
+
'ncurses_wattroff',
|
1562
|
+
'ncurses_wattron',
|
1563
|
+
'ncurses_wattrset',
|
1564
|
+
'ncurses_wborder',
|
1565
|
+
'ncurses_wclear',
|
1566
|
+
'ncurses_wcolor_set',
|
1567
|
+
'ncurses_werase',
|
1568
|
+
'ncurses_wgetch',
|
1569
|
+
'ncurses_whline',
|
1570
|
+
'ncurses_wmouse_trafo',
|
1571
|
+
'ncurses_wmove',
|
1572
|
+
'ncurses_wnoutrefresh',
|
1573
|
+
'ncurses_wrefresh',
|
1574
|
+
'ncurses_wstandend',
|
1575
|
+
'ncurses_wstandout',
|
1576
|
+
'ncurses_wvline'],
|
1577
|
+
'Network': ['checkdnsrr',
|
1578
|
+
'closelog',
|
1579
|
+
'debugger_off',
|
1580
|
+
'debugger_on',
|
1581
|
+
'define_syslog_variables',
|
1582
|
+
'dns_check_record',
|
1583
|
+
'dns_get_mx',
|
1584
|
+
'dns_get_record',
|
1585
|
+
'fsockopen',
|
1586
|
+
'gethostbyaddr',
|
1587
|
+
'gethostbyname',
|
1588
|
+
'gethostbynamel',
|
1589
|
+
'getmxrr',
|
1590
|
+
'getprotobyname',
|
1591
|
+
'getprotobynumber',
|
1592
|
+
'getservbyname',
|
1593
|
+
'getservbyport',
|
1594
|
+
'header',
|
1595
|
+
'headers_list',
|
1596
|
+
'headers_sent',
|
1597
|
+
'inet_ntop',
|
1598
|
+
'inet_pton',
|
1599
|
+
'ip2long',
|
1600
|
+
'long2ip',
|
1601
|
+
'openlog',
|
1602
|
+
'pfsockopen',
|
1603
|
+
'setcookie',
|
1604
|
+
'setrawcookie',
|
1605
|
+
'socket_get_status',
|
1606
|
+
'socket_set_blocking',
|
1607
|
+
'socket_set_timeout',
|
1608
|
+
'syslog'],
|
1609
|
+
'OCI8': ['oci_bind_by_name',
|
1610
|
+
'oci_cancel',
|
1611
|
+
'oci_close',
|
1612
|
+
'oci_commit',
|
1613
|
+
'oci_connect',
|
1614
|
+
'oci_define_by_name',
|
1615
|
+
'oci_error',
|
1616
|
+
'oci_execute',
|
1617
|
+
'oci_fetch',
|
1618
|
+
'oci_fetch_all',
|
1619
|
+
'oci_fetch_array',
|
1620
|
+
'oci_fetch_assoc',
|
1621
|
+
'oci_fetch_object',
|
1622
|
+
'oci_fetch_row',
|
1623
|
+
'oci_field_is_null',
|
1624
|
+
'oci_field_name',
|
1625
|
+
'oci_field_precision',
|
1626
|
+
'oci_field_scale',
|
1627
|
+
'oci_field_size',
|
1628
|
+
'oci_field_type',
|
1629
|
+
'oci_field_type_raw',
|
1630
|
+
'oci_free_statement',
|
1631
|
+
'oci_internal_debug',
|
1632
|
+
'oci_lob_copy',
|
1633
|
+
'oci_lob_is_equal',
|
1634
|
+
'oci_new_collection',
|
1635
|
+
'oci_new_connect',
|
1636
|
+
'oci_new_cursor',
|
1637
|
+
'oci_new_descriptor',
|
1638
|
+
'oci_num_fields',
|
1639
|
+
'oci_num_rows',
|
1640
|
+
'oci_parse',
|
1641
|
+
'oci_password_change',
|
1642
|
+
'oci_pconnect',
|
1643
|
+
'oci_result',
|
1644
|
+
'oci_rollback',
|
1645
|
+
'oci_server_version',
|
1646
|
+
'oci_set_prefetch',
|
1647
|
+
'oci_statement_type',
|
1648
|
+
'ocibindbyname',
|
1649
|
+
'ocicancel',
|
1650
|
+
'ocicloselob',
|
1651
|
+
'ocicollappend',
|
1652
|
+
'ocicollassign',
|
1653
|
+
'ocicollassignelem',
|
1654
|
+
'ocicollgetelem',
|
1655
|
+
'ocicollmax',
|
1656
|
+
'ocicollsize',
|
1657
|
+
'ocicolltrim',
|
1658
|
+
'ocicolumnisnull',
|
1659
|
+
'ocicolumnname',
|
1660
|
+
'ocicolumnprecision',
|
1661
|
+
'ocicolumnscale',
|
1662
|
+
'ocicolumnsize',
|
1663
|
+
'ocicolumntype',
|
1664
|
+
'ocicolumntyperaw',
|
1665
|
+
'ocicommit',
|
1666
|
+
'ocidefinebyname',
|
1667
|
+
'ocierror',
|
1668
|
+
'ociexecute',
|
1669
|
+
'ocifetch',
|
1670
|
+
'ocifetchinto',
|
1671
|
+
'ocifetchstatement',
|
1672
|
+
'ocifreecollection',
|
1673
|
+
'ocifreecursor',
|
1674
|
+
'ocifreedesc',
|
1675
|
+
'ocifreestatement',
|
1676
|
+
'ociinternaldebug',
|
1677
|
+
'ociloadlob',
|
1678
|
+
'ocilogoff',
|
1679
|
+
'ocilogon',
|
1680
|
+
'ocinewcollection',
|
1681
|
+
'ocinewcursor',
|
1682
|
+
'ocinewdescriptor',
|
1683
|
+
'ocinlogon',
|
1684
|
+
'ocinumcols',
|
1685
|
+
'ociparse',
|
1686
|
+
'ociplogon',
|
1687
|
+
'ociresult',
|
1688
|
+
'ocirollback',
|
1689
|
+
'ocirowcount',
|
1690
|
+
'ocisavelob',
|
1691
|
+
'ocisavelobfile',
|
1692
|
+
'ociserverversion',
|
1693
|
+
'ocisetprefetch',
|
1694
|
+
'ocistatementtype',
|
1695
|
+
'ociwritelobtofile',
|
1696
|
+
'ociwritetemporarylob'],
|
1697
|
+
'ODBC': ['odbc_autocommit',
|
1698
|
+
'odbc_binmode',
|
1699
|
+
'odbc_close',
|
1700
|
+
'odbc_close_all',
|
1701
|
+
'odbc_columnprivileges',
|
1702
|
+
'odbc_columns',
|
1703
|
+
'odbc_commit',
|
1704
|
+
'odbc_connect',
|
1705
|
+
'odbc_cursor',
|
1706
|
+
'odbc_data_source',
|
1707
|
+
'odbc_do',
|
1708
|
+
'odbc_error',
|
1709
|
+
'odbc_errormsg',
|
1710
|
+
'odbc_exec',
|
1711
|
+
'odbc_execute',
|
1712
|
+
'odbc_fetch_array',
|
1713
|
+
'odbc_fetch_into',
|
1714
|
+
'odbc_fetch_object',
|
1715
|
+
'odbc_fetch_row',
|
1716
|
+
'odbc_field_len',
|
1717
|
+
'odbc_field_name',
|
1718
|
+
'odbc_field_num',
|
1719
|
+
'odbc_field_precision',
|
1720
|
+
'odbc_field_scale',
|
1721
|
+
'odbc_field_type',
|
1722
|
+
'odbc_foreignkeys',
|
1723
|
+
'odbc_free_result',
|
1724
|
+
'odbc_gettypeinfo',
|
1725
|
+
'odbc_longreadlen',
|
1726
|
+
'odbc_next_result',
|
1727
|
+
'odbc_num_fields',
|
1728
|
+
'odbc_num_rows',
|
1729
|
+
'odbc_pconnect',
|
1730
|
+
'odbc_prepare',
|
1731
|
+
'odbc_primarykeys',
|
1732
|
+
'odbc_procedurecolumns',
|
1733
|
+
'odbc_procedures',
|
1734
|
+
'odbc_result',
|
1735
|
+
'odbc_result_all',
|
1736
|
+
'odbc_rollback',
|
1737
|
+
'odbc_setoption',
|
1738
|
+
'odbc_specialcolumns',
|
1739
|
+
'odbc_statistics',
|
1740
|
+
'odbc_tableprivileges',
|
1741
|
+
'odbc_tables'],
|
1742
|
+
'Object Aggregation': ['aggregate',
|
1743
|
+
'aggregate_info',
|
1744
|
+
'aggregate_methods',
|
1745
|
+
'aggregate_methods_by_list',
|
1746
|
+
'aggregate_methods_by_regexp',
|
1747
|
+
'aggregate_properties',
|
1748
|
+
'aggregate_properties_by_list',
|
1749
|
+
'aggregate_properties_by_regexp',
|
1750
|
+
'aggregation_info',
|
1751
|
+
'deaggregate'],
|
1752
|
+
'Object overloading': ['overload'],
|
1753
|
+
'OpenSSL': ['openssl_csr_export',
|
1754
|
+
'openssl_csr_export_to_file',
|
1755
|
+
'openssl_csr_new',
|
1756
|
+
'openssl_csr_sign',
|
1757
|
+
'openssl_error_string',
|
1758
|
+
'openssl_free_key',
|
1759
|
+
'openssl_get_privatekey',
|
1760
|
+
'openssl_get_publickey',
|
1761
|
+
'openssl_open',
|
1762
|
+
'openssl_pkcs7_decrypt',
|
1763
|
+
'openssl_pkcs7_encrypt',
|
1764
|
+
'openssl_pkcs7_sign',
|
1765
|
+
'openssl_pkcs7_verify',
|
1766
|
+
'openssl_pkey_export',
|
1767
|
+
'openssl_pkey_export_to_file',
|
1768
|
+
'openssl_pkey_get_private',
|
1769
|
+
'openssl_pkey_get_public',
|
1770
|
+
'openssl_pkey_new',
|
1771
|
+
'openssl_private_decrypt',
|
1772
|
+
'openssl_private_encrypt',
|
1773
|
+
'openssl_public_decrypt',
|
1774
|
+
'openssl_public_encrypt',
|
1775
|
+
'openssl_seal',
|
1776
|
+
'openssl_sign',
|
1777
|
+
'openssl_verify',
|
1778
|
+
'openssl_x509_check_private_key',
|
1779
|
+
'openssl_x509_checkpurpose',
|
1780
|
+
'openssl_x509_export',
|
1781
|
+
'openssl_x509_export_to_file',
|
1782
|
+
'openssl_x509_free',
|
1783
|
+
'openssl_x509_parse',
|
1784
|
+
'openssl_x509_read'],
|
1785
|
+
'Oracle': ['ora_bind',
|
1786
|
+
'ora_close',
|
1787
|
+
'ora_columnname',
|
1788
|
+
'ora_columnsize',
|
1789
|
+
'ora_columntype',
|
1790
|
+
'ora_commit',
|
1791
|
+
'ora_commitoff',
|
1792
|
+
'ora_commiton',
|
1793
|
+
'ora_do',
|
1794
|
+
'ora_error',
|
1795
|
+
'ora_errorcode',
|
1796
|
+
'ora_exec',
|
1797
|
+
'ora_fetch',
|
1798
|
+
'ora_fetch_into',
|
1799
|
+
'ora_getcolumn',
|
1800
|
+
'ora_logoff',
|
1801
|
+
'ora_logon',
|
1802
|
+
'ora_numcols',
|
1803
|
+
'ora_numrows',
|
1804
|
+
'ora_open',
|
1805
|
+
'ora_parse',
|
1806
|
+
'ora_plogon',
|
1807
|
+
'ora_rollback'],
|
1808
|
+
'Output Control': ['flush',
|
1809
|
+
'ob_clean',
|
1810
|
+
'ob_end_clean',
|
1811
|
+
'ob_end_flush',
|
1812
|
+
'ob_flush',
|
1813
|
+
'ob_get_clean',
|
1814
|
+
'ob_get_contents',
|
1815
|
+
'ob_get_flush',
|
1816
|
+
'ob_get_length',
|
1817
|
+
'ob_get_level',
|
1818
|
+
'ob_get_status',
|
1819
|
+
'ob_gzhandler',
|
1820
|
+
'ob_implicit_flush',
|
1821
|
+
'ob_list_handlers',
|
1822
|
+
'ob_start',
|
1823
|
+
'output_add_rewrite_var',
|
1824
|
+
'output_reset_rewrite_vars'],
|
1825
|
+
'OvrimosSQL': ['ovrimos_close',
|
1826
|
+
'ovrimos_commit',
|
1827
|
+
'ovrimos_connect',
|
1828
|
+
'ovrimos_cursor',
|
1829
|
+
'ovrimos_exec',
|
1830
|
+
'ovrimos_execute',
|
1831
|
+
'ovrimos_fetch_into',
|
1832
|
+
'ovrimos_fetch_row',
|
1833
|
+
'ovrimos_field_len',
|
1834
|
+
'ovrimos_field_name',
|
1835
|
+
'ovrimos_field_num',
|
1836
|
+
'ovrimos_field_type',
|
1837
|
+
'ovrimos_free_result',
|
1838
|
+
'ovrimos_longreadlen',
|
1839
|
+
'ovrimos_num_fields',
|
1840
|
+
'ovrimos_num_rows',
|
1841
|
+
'ovrimos_prepare',
|
1842
|
+
'ovrimos_result',
|
1843
|
+
'ovrimos_result_all',
|
1844
|
+
'ovrimos_rollback'],
|
1845
|
+
'PCNTL': ['pcntl_alarm',
|
1846
|
+
'pcntl_exec',
|
1847
|
+
'pcntl_fork',
|
1848
|
+
'pcntl_getpriority',
|
1849
|
+
'pcntl_setpriority',
|
1850
|
+
'pcntl_signal',
|
1851
|
+
'pcntl_wait',
|
1852
|
+
'pcntl_waitpid',
|
1853
|
+
'pcntl_wexitstatus',
|
1854
|
+
'pcntl_wifexited',
|
1855
|
+
'pcntl_wifsignaled',
|
1856
|
+
'pcntl_wifstopped',
|
1857
|
+
'pcntl_wstopsig',
|
1858
|
+
'pcntl_wtermsig'],
|
1859
|
+
'PCRE': ['preg_grep',
|
1860
|
+
'preg_match',
|
1861
|
+
'preg_match_all',
|
1862
|
+
'preg_quote',
|
1863
|
+
'preg_replace',
|
1864
|
+
'preg_replace_callback',
|
1865
|
+
'preg_split'],
|
1866
|
+
'PDF': ['pdf_add_annotation',
|
1867
|
+
'pdf_add_bookmark',
|
1868
|
+
'pdf_add_launchlink',
|
1869
|
+
'pdf_add_locallink',
|
1870
|
+
'pdf_add_note',
|
1871
|
+
'pdf_add_outline',
|
1872
|
+
'pdf_add_pdflink',
|
1873
|
+
'pdf_add_thumbnail',
|
1874
|
+
'pdf_add_weblink',
|
1875
|
+
'pdf_arc',
|
1876
|
+
'pdf_arcn',
|
1877
|
+
'pdf_attach_file',
|
1878
|
+
'pdf_begin_page',
|
1879
|
+
'pdf_begin_pattern',
|
1880
|
+
'pdf_begin_template',
|
1881
|
+
'pdf_circle',
|
1882
|
+
'pdf_clip',
|
1883
|
+
'pdf_close',
|
1884
|
+
'pdf_close_image',
|
1885
|
+
'pdf_close_pdi',
|
1886
|
+
'pdf_close_pdi_page',
|
1887
|
+
'pdf_closepath',
|
1888
|
+
'pdf_closepath_fill_stroke',
|
1889
|
+
'pdf_closepath_stroke',
|
1890
|
+
'pdf_concat',
|
1891
|
+
'pdf_continue_text',
|
1892
|
+
'pdf_curveto',
|
1893
|
+
'pdf_delete',
|
1894
|
+
'pdf_end_page',
|
1895
|
+
'pdf_end_pattern',
|
1896
|
+
'pdf_end_template',
|
1897
|
+
'pdf_endpath',
|
1898
|
+
'pdf_fill',
|
1899
|
+
'pdf_fill_stroke',
|
1900
|
+
'pdf_findfont',
|
1901
|
+
'pdf_get_buffer',
|
1902
|
+
'pdf_get_font',
|
1903
|
+
'pdf_get_fontname',
|
1904
|
+
'pdf_get_fontsize',
|
1905
|
+
'pdf_get_image_height',
|
1906
|
+
'pdf_get_image_width',
|
1907
|
+
'pdf_get_majorversion',
|
1908
|
+
'pdf_get_minorversion',
|
1909
|
+
'pdf_get_parameter',
|
1910
|
+
'pdf_get_pdi_parameter',
|
1911
|
+
'pdf_get_pdi_value',
|
1912
|
+
'pdf_get_value',
|
1913
|
+
'pdf_initgraphics',
|
1914
|
+
'pdf_lineto',
|
1915
|
+
'pdf_makespotcolor',
|
1916
|
+
'pdf_moveto',
|
1917
|
+
'pdf_new',
|
1918
|
+
'pdf_open_ccitt',
|
1919
|
+
'pdf_open_file',
|
1920
|
+
'pdf_open_gif',
|
1921
|
+
'pdf_open_image',
|
1922
|
+
'pdf_open_image_file',
|
1923
|
+
'pdf_open_jpeg',
|
1924
|
+
'pdf_open_memory_image',
|
1925
|
+
'pdf_open_pdi',
|
1926
|
+
'pdf_open_pdi_page',
|
1927
|
+
'pdf_open_tiff',
|
1928
|
+
'pdf_place_image',
|
1929
|
+
'pdf_place_pdi_page',
|
1930
|
+
'pdf_rect',
|
1931
|
+
'pdf_restore',
|
1932
|
+
'pdf_rotate',
|
1933
|
+
'pdf_save',
|
1934
|
+
'pdf_scale',
|
1935
|
+
'pdf_set_border_color',
|
1936
|
+
'pdf_set_border_dash',
|
1937
|
+
'pdf_set_border_style',
|
1938
|
+
'pdf_set_char_spacing',
|
1939
|
+
'pdf_set_duration',
|
1940
|
+
'pdf_set_horiz_scaling',
|
1941
|
+
'pdf_set_info',
|
1942
|
+
'pdf_set_info_author',
|
1943
|
+
'pdf_set_info_creator',
|
1944
|
+
'pdf_set_info_keywords',
|
1945
|
+
'pdf_set_info_subject',
|
1946
|
+
'pdf_set_info_title',
|
1947
|
+
'pdf_set_leading',
|
1948
|
+
'pdf_set_parameter',
|
1949
|
+
'pdf_set_text_matrix',
|
1950
|
+
'pdf_set_text_pos',
|
1951
|
+
'pdf_set_text_rendering',
|
1952
|
+
'pdf_set_text_rise',
|
1953
|
+
'pdf_set_value',
|
1954
|
+
'pdf_set_word_spacing',
|
1955
|
+
'pdf_setcolor',
|
1956
|
+
'pdf_setdash',
|
1957
|
+
'pdf_setflat',
|
1958
|
+
'pdf_setfont',
|
1959
|
+
'pdf_setgray',
|
1960
|
+
'pdf_setgray_fill',
|
1961
|
+
'pdf_setgray_stroke',
|
1962
|
+
'pdf_setlinecap',
|
1963
|
+
'pdf_setlinejoin',
|
1964
|
+
'pdf_setlinewidth',
|
1965
|
+
'pdf_setmatrix',
|
1966
|
+
'pdf_setmiterlimit',
|
1967
|
+
'pdf_setpolydash',
|
1968
|
+
'pdf_setrgbcolor',
|
1969
|
+
'pdf_setrgbcolor_fill',
|
1970
|
+
'pdf_setrgbcolor_stroke',
|
1971
|
+
'pdf_show',
|
1972
|
+
'pdf_show_boxed',
|
1973
|
+
'pdf_show_xy',
|
1974
|
+
'pdf_skew',
|
1975
|
+
'pdf_stringwidth',
|
1976
|
+
'pdf_stroke',
|
1977
|
+
'pdf_translate'],
|
1978
|
+
'PHP Options/Info': ['assert',
|
1979
|
+
'assert_options',
|
1980
|
+
'dl',
|
1981
|
+
'extension_loaded',
|
1982
|
+
'get_cfg_var',
|
1983
|
+
'get_current_user',
|
1984
|
+
'get_defined_constants',
|
1985
|
+
'get_extension_funcs',
|
1986
|
+
'get_include_path',
|
1987
|
+
'get_included_files',
|
1988
|
+
'get_loaded_extensions',
|
1989
|
+
'get_magic_quotes_gpc',
|
1990
|
+
'get_magic_quotes_runtime',
|
1991
|
+
'get_required_files',
|
1992
|
+
'getenv',
|
1993
|
+
'getlastmod',
|
1994
|
+
'getmygid',
|
1995
|
+
'getmyinode',
|
1996
|
+
'getmypid',
|
1997
|
+
'getmyuid',
|
1998
|
+
'getopt',
|
1999
|
+
'getrusage',
|
2000
|
+
'ini_alter',
|
2001
|
+
'ini_get',
|
2002
|
+
'ini_get_all',
|
2003
|
+
'ini_restore',
|
2004
|
+
'ini_set',
|
2005
|
+
'main',
|
2006
|
+
'memory_get_usage',
|
2007
|
+
'php_ini_scanned_files',
|
2008
|
+
'php_logo_guid',
|
2009
|
+
'php_sapi_name',
|
2010
|
+
'php_uname',
|
2011
|
+
'phpcredits',
|
2012
|
+
'phpinfo',
|
2013
|
+
'phpversion',
|
2014
|
+
'putenv',
|
2015
|
+
'restore_include_path',
|
2016
|
+
'set_include_path',
|
2017
|
+
'set_magic_quotes_runtime',
|
2018
|
+
'set_time_limit',
|
2019
|
+
'version_compare',
|
2020
|
+
'zend_logo_guid',
|
2021
|
+
'zend_version'],
|
2022
|
+
'POSIX': ['posix_ctermid',
|
2023
|
+
'posix_get_last_error',
|
2024
|
+
'posix_getcwd',
|
2025
|
+
'posix_getegid',
|
2026
|
+
'posix_geteuid',
|
2027
|
+
'posix_getgid',
|
2028
|
+
'posix_getgrgid',
|
2029
|
+
'posix_getgrnam',
|
2030
|
+
'posix_getgroups',
|
2031
|
+
'posix_getlogin',
|
2032
|
+
'posix_getpgid',
|
2033
|
+
'posix_getpgrp',
|
2034
|
+
'posix_getpid',
|
2035
|
+
'posix_getppid',
|
2036
|
+
'posix_getpwnam',
|
2037
|
+
'posix_getpwuid',
|
2038
|
+
'posix_getrlimit',
|
2039
|
+
'posix_getsid',
|
2040
|
+
'posix_getuid',
|
2041
|
+
'posix_isatty',
|
2042
|
+
'posix_kill',
|
2043
|
+
'posix_mkfifo',
|
2044
|
+
'posix_setegid',
|
2045
|
+
'posix_seteuid',
|
2046
|
+
'posix_setgid',
|
2047
|
+
'posix_setpgid',
|
2048
|
+
'posix_setsid',
|
2049
|
+
'posix_setuid',
|
2050
|
+
'posix_strerror',
|
2051
|
+
'posix_times',
|
2052
|
+
'posix_ttyname',
|
2053
|
+
'posix_uname'],
|
2054
|
+
'POSIX Regex': ['ereg',
|
2055
|
+
'ereg_replace',
|
2056
|
+
'eregi',
|
2057
|
+
'eregi_replace',
|
2058
|
+
'split',
|
2059
|
+
'spliti',
|
2060
|
+
'sql_regcase'],
|
2061
|
+
'Parsekit': ['parsekit_compile_file',
|
2062
|
+
'parsekit_compile_string',
|
2063
|
+
'parsekit_func_arginfo'],
|
2064
|
+
'PostgreSQL': ['pg_affected_rows',
|
2065
|
+
'pg_cancel_query',
|
2066
|
+
'pg_client_encoding',
|
2067
|
+
'pg_close',
|
2068
|
+
'pg_connect',
|
2069
|
+
'pg_connection_busy',
|
2070
|
+
'pg_connection_reset',
|
2071
|
+
'pg_connection_status',
|
2072
|
+
'pg_convert',
|
2073
|
+
'pg_copy_from',
|
2074
|
+
'pg_copy_to',
|
2075
|
+
'pg_dbname',
|
2076
|
+
'pg_delete',
|
2077
|
+
'pg_end_copy',
|
2078
|
+
'pg_escape_bytea',
|
2079
|
+
'pg_escape_string',
|
2080
|
+
'pg_fetch_all',
|
2081
|
+
'pg_fetch_array',
|
2082
|
+
'pg_fetch_assoc',
|
2083
|
+
'pg_fetch_object',
|
2084
|
+
'pg_fetch_result',
|
2085
|
+
'pg_fetch_row',
|
2086
|
+
'pg_field_is_null',
|
2087
|
+
'pg_field_name',
|
2088
|
+
'pg_field_num',
|
2089
|
+
'pg_field_prtlen',
|
2090
|
+
'pg_field_size',
|
2091
|
+
'pg_field_type',
|
2092
|
+
'pg_free_result',
|
2093
|
+
'pg_get_notify',
|
2094
|
+
'pg_get_pid',
|
2095
|
+
'pg_get_result',
|
2096
|
+
'pg_host',
|
2097
|
+
'pg_insert',
|
2098
|
+
'pg_last_error',
|
2099
|
+
'pg_last_notice',
|
2100
|
+
'pg_last_oid',
|
2101
|
+
'pg_lo_close',
|
2102
|
+
'pg_lo_create',
|
2103
|
+
'pg_lo_export',
|
2104
|
+
'pg_lo_import',
|
2105
|
+
'pg_lo_open',
|
2106
|
+
'pg_lo_read',
|
2107
|
+
'pg_lo_read_all',
|
2108
|
+
'pg_lo_seek',
|
2109
|
+
'pg_lo_tell',
|
2110
|
+
'pg_lo_unlink',
|
2111
|
+
'pg_lo_write',
|
2112
|
+
'pg_meta_data',
|
2113
|
+
'pg_num_fields',
|
2114
|
+
'pg_num_rows',
|
2115
|
+
'pg_options',
|
2116
|
+
'pg_parameter_status',
|
2117
|
+
'pg_pconnect',
|
2118
|
+
'pg_ping',
|
2119
|
+
'pg_port',
|
2120
|
+
'pg_put_line',
|
2121
|
+
'pg_query',
|
2122
|
+
'pg_result_error',
|
2123
|
+
'pg_result_seek',
|
2124
|
+
'pg_result_status',
|
2125
|
+
'pg_select',
|
2126
|
+
'pg_send_query',
|
2127
|
+
'pg_set_client_encoding',
|
2128
|
+
'pg_trace',
|
2129
|
+
'pg_tty',
|
2130
|
+
'pg_unescape_bytea',
|
2131
|
+
'pg_untrace',
|
2132
|
+
'pg_update',
|
2133
|
+
'pg_version'],
|
2134
|
+
'Printer': ['printer_abort',
|
2135
|
+
'printer_close',
|
2136
|
+
'printer_create_brush',
|
2137
|
+
'printer_create_dc',
|
2138
|
+
'printer_create_font',
|
2139
|
+
'printer_create_pen',
|
2140
|
+
'printer_delete_brush',
|
2141
|
+
'printer_delete_dc',
|
2142
|
+
'printer_delete_font',
|
2143
|
+
'printer_delete_pen',
|
2144
|
+
'printer_draw_bmp',
|
2145
|
+
'printer_draw_chord',
|
2146
|
+
'printer_draw_elipse',
|
2147
|
+
'printer_draw_line',
|
2148
|
+
'printer_draw_pie',
|
2149
|
+
'printer_draw_rectangle',
|
2150
|
+
'printer_draw_roundrect',
|
2151
|
+
'printer_draw_text',
|
2152
|
+
'printer_end_doc',
|
2153
|
+
'printer_end_page',
|
2154
|
+
'printer_get_option',
|
2155
|
+
'printer_list',
|
2156
|
+
'printer_logical_fontheight',
|
2157
|
+
'printer_open',
|
2158
|
+
'printer_select_brush',
|
2159
|
+
'printer_select_font',
|
2160
|
+
'printer_select_pen',
|
2161
|
+
'printer_set_option',
|
2162
|
+
'printer_start_doc',
|
2163
|
+
'printer_start_page',
|
2164
|
+
'printer_write'],
|
2165
|
+
'Program Execution': ['escapeshellarg',
|
2166
|
+
'escapeshellcmd',
|
2167
|
+
'exec',
|
2168
|
+
'passthru',
|
2169
|
+
'proc_close',
|
2170
|
+
'proc_get_status',
|
2171
|
+
'proc_nice',
|
2172
|
+
'proc_open',
|
2173
|
+
'proc_terminate',
|
2174
|
+
'shell_exec',
|
2175
|
+
'system'],
|
2176
|
+
'Pspell': ['pspell_add_to_personal',
|
2177
|
+
'pspell_add_to_session',
|
2178
|
+
'pspell_check',
|
2179
|
+
'pspell_clear_session',
|
2180
|
+
'pspell_config_create',
|
2181
|
+
'pspell_config_data_dir',
|
2182
|
+
'pspell_config_dict_dir',
|
2183
|
+
'pspell_config_ignore',
|
2184
|
+
'pspell_config_mode',
|
2185
|
+
'pspell_config_personal',
|
2186
|
+
'pspell_config_repl',
|
2187
|
+
'pspell_config_runtogether',
|
2188
|
+
'pspell_config_save_repl',
|
2189
|
+
'pspell_new',
|
2190
|
+
'pspell_new_config',
|
2191
|
+
'pspell_new_personal',
|
2192
|
+
'pspell_save_wordlist',
|
2193
|
+
'pspell_store_replacement',
|
2194
|
+
'pspell_suggest'],
|
2195
|
+
'Rar': ['rar_close', 'rar_entry_get', 'rar_list', 'rar_open'],
|
2196
|
+
'Readline': ['readline',
|
2197
|
+
'readline_add_history',
|
2198
|
+
'readline_callback_handler_install',
|
2199
|
+
'readline_callback_handler_remove',
|
2200
|
+
'readline_callback_read_char',
|
2201
|
+
'readline_clear_history',
|
2202
|
+
'readline_completion_function',
|
2203
|
+
'readline_info',
|
2204
|
+
'readline_list_history',
|
2205
|
+
'readline_on_new_line',
|
2206
|
+
'readline_read_history',
|
2207
|
+
'readline_redisplay',
|
2208
|
+
'readline_write_history'],
|
2209
|
+
'Recode': ['recode', 'recode_file', 'recode_string'],
|
2210
|
+
'SESAM': ['sesam_affected_rows',
|
2211
|
+
'sesam_commit',
|
2212
|
+
'sesam_connect',
|
2213
|
+
'sesam_diagnostic',
|
2214
|
+
'sesam_disconnect',
|
2215
|
+
'sesam_errormsg',
|
2216
|
+
'sesam_execimm',
|
2217
|
+
'sesam_fetch_array',
|
2218
|
+
'sesam_fetch_result',
|
2219
|
+
'sesam_fetch_row',
|
2220
|
+
'sesam_field_array',
|
2221
|
+
'sesam_field_name',
|
2222
|
+
'sesam_free_result',
|
2223
|
+
'sesam_num_fields',
|
2224
|
+
'sesam_query',
|
2225
|
+
'sesam_rollback',
|
2226
|
+
'sesam_seek_row',
|
2227
|
+
'sesam_settransaction'],
|
2228
|
+
'SNMP': ['snmp_get_quick_print',
|
2229
|
+
'snmp_get_valueretrieval',
|
2230
|
+
'snmp_read_mib',
|
2231
|
+
'snmp_set_enum_print',
|
2232
|
+
'snmp_set_oid_numeric_print',
|
2233
|
+
'snmp_set_quick_print',
|
2234
|
+
'snmp_set_valueretrieval',
|
2235
|
+
'snmpget',
|
2236
|
+
'snmpgetnext',
|
2237
|
+
'snmprealwalk',
|
2238
|
+
'snmpset',
|
2239
|
+
'snmpwalk',
|
2240
|
+
'snmpwalkoid'],
|
2241
|
+
'SOAP': ['is_soap_fault'],
|
2242
|
+
'SQLite': ['sqlite_array_query',
|
2243
|
+
'sqlite_busy_timeout',
|
2244
|
+
'sqlite_changes',
|
2245
|
+
'sqlite_close',
|
2246
|
+
'sqlite_column',
|
2247
|
+
'sqlite_create_aggregate',
|
2248
|
+
'sqlite_create_function',
|
2249
|
+
'sqlite_current',
|
2250
|
+
'sqlite_error_string',
|
2251
|
+
'sqlite_escape_string',
|
2252
|
+
'sqlite_exec',
|
2253
|
+
'sqlite_factory',
|
2254
|
+
'sqlite_fetch_all',
|
2255
|
+
'sqlite_fetch_array',
|
2256
|
+
'sqlite_fetch_column_types',
|
2257
|
+
'sqlite_fetch_object',
|
2258
|
+
'sqlite_fetch_single',
|
2259
|
+
'sqlite_fetch_string',
|
2260
|
+
'sqlite_field_name',
|
2261
|
+
'sqlite_has_more',
|
2262
|
+
'sqlite_has_prev',
|
2263
|
+
'sqlite_last_error',
|
2264
|
+
'sqlite_last_insert_rowid',
|
2265
|
+
'sqlite_libencoding',
|
2266
|
+
'sqlite_libversion',
|
2267
|
+
'sqlite_next',
|
2268
|
+
'sqlite_num_fields',
|
2269
|
+
'sqlite_num_rows',
|
2270
|
+
'sqlite_open',
|
2271
|
+
'sqlite_popen',
|
2272
|
+
'sqlite_prev',
|
2273
|
+
'sqlite_query',
|
2274
|
+
'sqlite_rewind',
|
2275
|
+
'sqlite_seek',
|
2276
|
+
'sqlite_single_query',
|
2277
|
+
'sqlite_udf_decode_binary',
|
2278
|
+
'sqlite_udf_encode_binary',
|
2279
|
+
'sqlite_unbuffered_query'],
|
2280
|
+
'SWF': ['swf_actiongeturl',
|
2281
|
+
'swf_actiongotoframe',
|
2282
|
+
'swf_actiongotolabel',
|
2283
|
+
'swf_actionnextframe',
|
2284
|
+
'swf_actionplay',
|
2285
|
+
'swf_actionprevframe',
|
2286
|
+
'swf_actionsettarget',
|
2287
|
+
'swf_actionstop',
|
2288
|
+
'swf_actiontogglequality',
|
2289
|
+
'swf_actionwaitforframe',
|
2290
|
+
'swf_addbuttonrecord',
|
2291
|
+
'swf_addcolor',
|
2292
|
+
'swf_closefile',
|
2293
|
+
'swf_definebitmap',
|
2294
|
+
'swf_definefont',
|
2295
|
+
'swf_defineline',
|
2296
|
+
'swf_definepoly',
|
2297
|
+
'swf_definerect',
|
2298
|
+
'swf_definetext',
|
2299
|
+
'swf_endbutton',
|
2300
|
+
'swf_enddoaction',
|
2301
|
+
'swf_endshape',
|
2302
|
+
'swf_endsymbol',
|
2303
|
+
'swf_fontsize',
|
2304
|
+
'swf_fontslant',
|
2305
|
+
'swf_fonttracking',
|
2306
|
+
'swf_getbitmapinfo',
|
2307
|
+
'swf_getfontinfo',
|
2308
|
+
'swf_getframe',
|
2309
|
+
'swf_labelframe',
|
2310
|
+
'swf_lookat',
|
2311
|
+
'swf_modifyobject',
|
2312
|
+
'swf_mulcolor',
|
2313
|
+
'swf_nextid',
|
2314
|
+
'swf_oncondition',
|
2315
|
+
'swf_openfile',
|
2316
|
+
'swf_ortho',
|
2317
|
+
'swf_ortho2',
|
2318
|
+
'swf_perspective',
|
2319
|
+
'swf_placeobject',
|
2320
|
+
'swf_polarview',
|
2321
|
+
'swf_popmatrix',
|
2322
|
+
'swf_posround',
|
2323
|
+
'swf_pushmatrix',
|
2324
|
+
'swf_removeobject',
|
2325
|
+
'swf_rotate',
|
2326
|
+
'swf_scale',
|
2327
|
+
'swf_setfont',
|
2328
|
+
'swf_setframe',
|
2329
|
+
'swf_shapearc',
|
2330
|
+
'swf_shapecurveto',
|
2331
|
+
'swf_shapecurveto3',
|
2332
|
+
'swf_shapefillbitmapclip',
|
2333
|
+
'swf_shapefillbitmaptile',
|
2334
|
+
'swf_shapefilloff',
|
2335
|
+
'swf_shapefillsolid',
|
2336
|
+
'swf_shapelinesolid',
|
2337
|
+
'swf_shapelineto',
|
2338
|
+
'swf_shapemoveto',
|
2339
|
+
'swf_showframe',
|
2340
|
+
'swf_startbutton',
|
2341
|
+
'swf_startdoaction',
|
2342
|
+
'swf_startshape',
|
2343
|
+
'swf_startsymbol',
|
2344
|
+
'swf_textwidth',
|
2345
|
+
'swf_translate',
|
2346
|
+
'swf_viewport'],
|
2347
|
+
'Semaphore': ['ftok',
|
2348
|
+
'msg_get_queue',
|
2349
|
+
'msg_receive',
|
2350
|
+
'msg_remove_queue',
|
2351
|
+
'msg_send',
|
2352
|
+
'msg_set_queue',
|
2353
|
+
'msg_stat_queue',
|
2354
|
+
'sem_acquire',
|
2355
|
+
'sem_get',
|
2356
|
+
'sem_release',
|
2357
|
+
'sem_remove',
|
2358
|
+
'shm_attach',
|
2359
|
+
'shm_detach',
|
2360
|
+
'shm_get_var',
|
2361
|
+
'shm_put_var',
|
2362
|
+
'shm_remove',
|
2363
|
+
'shm_remove_var'],
|
2364
|
+
'Sessions': ['session_cache_expire',
|
2365
|
+
'session_cache_limiter',
|
2366
|
+
'session_commit',
|
2367
|
+
'session_decode',
|
2368
|
+
'session_destroy',
|
2369
|
+
'session_encode',
|
2370
|
+
'session_get_cookie_params',
|
2371
|
+
'session_id',
|
2372
|
+
'session_is_registered',
|
2373
|
+
'session_module_name',
|
2374
|
+
'session_name',
|
2375
|
+
'session_regenerate_id',
|
2376
|
+
'session_register',
|
2377
|
+
'session_save_path',
|
2378
|
+
'session_set_cookie_params',
|
2379
|
+
'session_set_save_handler',
|
2380
|
+
'session_start',
|
2381
|
+
'session_unregister',
|
2382
|
+
'session_unset',
|
2383
|
+
'session_write_close'],
|
2384
|
+
'SimpleXML': ['simplexml_import_dom',
|
2385
|
+
'simplexml_load_file',
|
2386
|
+
'simplexml_load_string'],
|
2387
|
+
'Sockets': ['socket_accept',
|
2388
|
+
'socket_bind',
|
2389
|
+
'socket_clear_error',
|
2390
|
+
'socket_close',
|
2391
|
+
'socket_connect',
|
2392
|
+
'socket_create',
|
2393
|
+
'socket_create_listen',
|
2394
|
+
'socket_create_pair',
|
2395
|
+
'socket_get_option',
|
2396
|
+
'socket_getpeername',
|
2397
|
+
'socket_getsockname',
|
2398
|
+
'socket_last_error',
|
2399
|
+
'socket_listen',
|
2400
|
+
'socket_read',
|
2401
|
+
'socket_recv',
|
2402
|
+
'socket_recvfrom',
|
2403
|
+
'socket_select',
|
2404
|
+
'socket_send',
|
2405
|
+
'socket_sendto',
|
2406
|
+
'socket_set_block',
|
2407
|
+
'socket_set_nonblock',
|
2408
|
+
'socket_set_option',
|
2409
|
+
'socket_shutdown',
|
2410
|
+
'socket_strerror',
|
2411
|
+
'socket_write'],
|
2412
|
+
'Streams': ['stream_context_create',
|
2413
|
+
'stream_context_get_default',
|
2414
|
+
'stream_context_get_options',
|
2415
|
+
'stream_context_set_option',
|
2416
|
+
'stream_context_set_params',
|
2417
|
+
'stream_copy_to_stream',
|
2418
|
+
'stream_filter_append',
|
2419
|
+
'stream_filter_prepend',
|
2420
|
+
'stream_filter_register',
|
2421
|
+
'stream_filter_remove',
|
2422
|
+
'stream_get_contents',
|
2423
|
+
'stream_get_filters',
|
2424
|
+
'stream_get_line',
|
2425
|
+
'stream_get_meta_data',
|
2426
|
+
'stream_get_transports',
|
2427
|
+
'stream_get_wrappers',
|
2428
|
+
'stream_register_wrapper',
|
2429
|
+
'stream_select',
|
2430
|
+
'stream_set_blocking',
|
2431
|
+
'stream_set_timeout',
|
2432
|
+
'stream_set_write_buffer',
|
2433
|
+
'stream_socket_accept',
|
2434
|
+
'stream_socket_client',
|
2435
|
+
'stream_socket_enable_crypto',
|
2436
|
+
'stream_socket_get_name',
|
2437
|
+
'stream_socket_pair',
|
2438
|
+
'stream_socket_recvfrom',
|
2439
|
+
'stream_socket_sendto',
|
2440
|
+
'stream_socket_server',
|
2441
|
+
'stream_wrapper_register',
|
2442
|
+
'stream_wrapper_restore',
|
2443
|
+
'stream_wrapper_unregister'],
|
2444
|
+
'Strings': ['addcslashes',
|
2445
|
+
'addslashes',
|
2446
|
+
'bin2hex',
|
2447
|
+
'chop',
|
2448
|
+
'chr',
|
2449
|
+
'chunk_split',
|
2450
|
+
'convert_cyr_string',
|
2451
|
+
'convert_uudecode',
|
2452
|
+
'convert_uuencode',
|
2453
|
+
'count_chars',
|
2454
|
+
'crc32',
|
2455
|
+
'crypt',
|
2456
|
+
'echo',
|
2457
|
+
'explode',
|
2458
|
+
'fprintf',
|
2459
|
+
'get_html_translation_table',
|
2460
|
+
'hebrev',
|
2461
|
+
'hebrevc',
|
2462
|
+
'html_entity_decode',
|
2463
|
+
'htmlentities',
|
2464
|
+
'htmlspecialchars',
|
2465
|
+
'implode',
|
2466
|
+
'join',
|
2467
|
+
'levenshtein',
|
2468
|
+
'localeconv',
|
2469
|
+
'ltrim',
|
2470
|
+
'md5',
|
2471
|
+
'md5_file',
|
2472
|
+
'metaphone',
|
2473
|
+
'money_format',
|
2474
|
+
'nl2br',
|
2475
|
+
'nl_langinfo',
|
2476
|
+
'number_format',
|
2477
|
+
'ord',
|
2478
|
+
'parse_str',
|
2479
|
+
'print',
|
2480
|
+
'printf',
|
2481
|
+
'quoted_printable_decode',
|
2482
|
+
'quotemeta',
|
2483
|
+
'rtrim',
|
2484
|
+
'setlocale',
|
2485
|
+
'sha1',
|
2486
|
+
'sha1_file',
|
2487
|
+
'similar_text',
|
2488
|
+
'soundex',
|
2489
|
+
'sprintf',
|
2490
|
+
'sscanf',
|
2491
|
+
'str_ireplace',
|
2492
|
+
'str_pad',
|
2493
|
+
'str_repeat',
|
2494
|
+
'str_replace',
|
2495
|
+
'str_rot13',
|
2496
|
+
'str_shuffle',
|
2497
|
+
'str_split',
|
2498
|
+
'str_word_count',
|
2499
|
+
'strcasecmp',
|
2500
|
+
'strchr',
|
2501
|
+
'strcmp',
|
2502
|
+
'strcoll',
|
2503
|
+
'strcspn',
|
2504
|
+
'strip_tags',
|
2505
|
+
'stripcslashes',
|
2506
|
+
'stripos',
|
2507
|
+
'stripslashes',
|
2508
|
+
'stristr',
|
2509
|
+
'strlen',
|
2510
|
+
'strnatcasecmp',
|
2511
|
+
'strnatcmp',
|
2512
|
+
'strncasecmp',
|
2513
|
+
'strncmp',
|
2514
|
+
'strpbrk',
|
2515
|
+
'strpos',
|
2516
|
+
'strrchr',
|
2517
|
+
'strrev',
|
2518
|
+
'strripos',
|
2519
|
+
'strrpos',
|
2520
|
+
'strspn',
|
2521
|
+
'strstr',
|
2522
|
+
'strtok',
|
2523
|
+
'strtolower',
|
2524
|
+
'strtoupper',
|
2525
|
+
'strtr',
|
2526
|
+
'substr',
|
2527
|
+
'substr_compare',
|
2528
|
+
'substr_count',
|
2529
|
+
'substr_replace',
|
2530
|
+
'trim',
|
2531
|
+
'ucfirst',
|
2532
|
+
'ucwords',
|
2533
|
+
'vfprintf',
|
2534
|
+
'vprintf',
|
2535
|
+
'vsprintf',
|
2536
|
+
'wordwrap'],
|
2537
|
+
'Sybase': ['sybase_affected_rows',
|
2538
|
+
'sybase_close',
|
2539
|
+
'sybase_connect',
|
2540
|
+
'sybase_data_seek',
|
2541
|
+
'sybase_deadlock_retry_count',
|
2542
|
+
'sybase_fetch_array',
|
2543
|
+
'sybase_fetch_assoc',
|
2544
|
+
'sybase_fetch_field',
|
2545
|
+
'sybase_fetch_object',
|
2546
|
+
'sybase_fetch_row',
|
2547
|
+
'sybase_field_seek',
|
2548
|
+
'sybase_free_result',
|
2549
|
+
'sybase_get_last_message',
|
2550
|
+
'sybase_min_client_severity',
|
2551
|
+
'sybase_min_error_severity',
|
2552
|
+
'sybase_min_message_severity',
|
2553
|
+
'sybase_min_server_severity',
|
2554
|
+
'sybase_num_fields',
|
2555
|
+
'sybase_num_rows',
|
2556
|
+
'sybase_pconnect',
|
2557
|
+
'sybase_query',
|
2558
|
+
'sybase_result',
|
2559
|
+
'sybase_select_db',
|
2560
|
+
'sybase_set_message_handler',
|
2561
|
+
'sybase_unbuffered_query'],
|
2562
|
+
'TCP Wrappers': ['tcpwrap_check'],
|
2563
|
+
'Tokenizer': ['token_get_all', 'token_name'],
|
2564
|
+
'URLs': ['base64_decode',
|
2565
|
+
'base64_encode',
|
2566
|
+
'get_headers',
|
2567
|
+
'get_meta_tags',
|
2568
|
+
'http_build_query',
|
2569
|
+
'parse_url',
|
2570
|
+
'rawurldecode',
|
2571
|
+
'rawurlencode',
|
2572
|
+
'urldecode',
|
2573
|
+
'urlencode'],
|
2574
|
+
'Variables handling': ['debug_zval_dump',
|
2575
|
+
'doubleval',
|
2576
|
+
'empty',
|
2577
|
+
'floatval',
|
2578
|
+
'get_defined_vars',
|
2579
|
+
'get_resource_type',
|
2580
|
+
'gettype',
|
2581
|
+
'import_request_variables',
|
2582
|
+
'intval',
|
2583
|
+
'is_array',
|
2584
|
+
'is_bool',
|
2585
|
+
'is_callable',
|
2586
|
+
'is_double',
|
2587
|
+
'is_float',
|
2588
|
+
'is_int',
|
2589
|
+
'is_integer',
|
2590
|
+
'is_long',
|
2591
|
+
'is_null',
|
2592
|
+
'is_numeric',
|
2593
|
+
'is_object',
|
2594
|
+
'is_real',
|
2595
|
+
'is_resource',
|
2596
|
+
'is_scalar',
|
2597
|
+
'is_string',
|
2598
|
+
'isset',
|
2599
|
+
'print_r',
|
2600
|
+
'serialize',
|
2601
|
+
'settype',
|
2602
|
+
'strval',
|
2603
|
+
'unserialize',
|
2604
|
+
'unset',
|
2605
|
+
'var_dump',
|
2606
|
+
'var_export'],
|
2607
|
+
'Verisign Payflow Pro': ['pfpro_cleanup',
|
2608
|
+
'pfpro_init',
|
2609
|
+
'pfpro_process',
|
2610
|
+
'pfpro_process_raw',
|
2611
|
+
'pfpro_version'],
|
2612
|
+
'W32api': ['w32api_deftype',
|
2613
|
+
'w32api_init_dtype',
|
2614
|
+
'w32api_invoke_function',
|
2615
|
+
'w32api_register_function',
|
2616
|
+
'w32api_set_call_method'],
|
2617
|
+
'WDDX': ['wddx_add_vars',
|
2618
|
+
'wddx_deserialize',
|
2619
|
+
'wddx_packet_end',
|
2620
|
+
'wddx_packet_start',
|
2621
|
+
'wddx_serialize_value',
|
2622
|
+
'wddx_serialize_vars'],
|
2623
|
+
'XML': ['utf8_decode',
|
2624
|
+
'utf8_encode',
|
2625
|
+
'xml_error_string',
|
2626
|
+
'xml_get_current_byte_index',
|
2627
|
+
'xml_get_current_column_number',
|
2628
|
+
'xml_get_current_line_number',
|
2629
|
+
'xml_get_error_code',
|
2630
|
+
'xml_parse',
|
2631
|
+
'xml_parse_into_struct',
|
2632
|
+
'xml_parser_create',
|
2633
|
+
'xml_parser_create_ns',
|
2634
|
+
'xml_parser_free',
|
2635
|
+
'xml_parser_get_option',
|
2636
|
+
'xml_parser_set_option',
|
2637
|
+
'xml_set_character_data_handler',
|
2638
|
+
'xml_set_default_handler',
|
2639
|
+
'xml_set_element_handler',
|
2640
|
+
'xml_set_end_namespace_decl_handler',
|
2641
|
+
'xml_set_external_entity_ref_handler',
|
2642
|
+
'xml_set_notation_decl_handler',
|
2643
|
+
'xml_set_object',
|
2644
|
+
'xml_set_processing_instruction_handler',
|
2645
|
+
'xml_set_start_namespace_decl_handler',
|
2646
|
+
'xml_set_unparsed_entity_decl_handler'],
|
2647
|
+
'XML-RPC': ['xmlrpc_decode',
|
2648
|
+
'xmlrpc_decode_request',
|
2649
|
+
'xmlrpc_encode',
|
2650
|
+
'xmlrpc_encode_request',
|
2651
|
+
'xmlrpc_get_type',
|
2652
|
+
'xmlrpc_is_fault',
|
2653
|
+
'xmlrpc_parse_method_descriptions',
|
2654
|
+
'xmlrpc_server_add_introspection_data',
|
2655
|
+
'xmlrpc_server_call_method',
|
2656
|
+
'xmlrpc_server_create',
|
2657
|
+
'xmlrpc_server_destroy',
|
2658
|
+
'xmlrpc_server_register_introspection_callback',
|
2659
|
+
'xmlrpc_server_register_method',
|
2660
|
+
'xmlrpc_set_type'],
|
2661
|
+
'XSL': ['xsl_xsltprocessor_get_parameter',
|
2662
|
+
'xsl_xsltprocessor_has_exslt_support',
|
2663
|
+
'xsl_xsltprocessor_import_stylesheet',
|
2664
|
+
'xsl_xsltprocessor_register_php_functions',
|
2665
|
+
'xsl_xsltprocessor_remove_parameter',
|
2666
|
+
'xsl_xsltprocessor_set_parameter',
|
2667
|
+
'xsl_xsltprocessor_transform_to_doc',
|
2668
|
+
'xsl_xsltprocessor_transform_to_uri',
|
2669
|
+
'xsl_xsltprocessor_transform_to_xml'],
|
2670
|
+
'XSLT': ['xslt_backend_info',
|
2671
|
+
'xslt_backend_name',
|
2672
|
+
'xslt_backend_version',
|
2673
|
+
'xslt_create',
|
2674
|
+
'xslt_errno',
|
2675
|
+
'xslt_error',
|
2676
|
+
'xslt_free',
|
2677
|
+
'xslt_getopt',
|
2678
|
+
'xslt_process',
|
2679
|
+
'xslt_set_base',
|
2680
|
+
'xslt_set_encoding',
|
2681
|
+
'xslt_set_error_handler',
|
2682
|
+
'xslt_set_log',
|
2683
|
+
'xslt_set_object',
|
2684
|
+
'xslt_set_sax_handler',
|
2685
|
+
'xslt_set_sax_handlers',
|
2686
|
+
'xslt_set_scheme_handler',
|
2687
|
+
'xslt_set_scheme_handlers',
|
2688
|
+
'xslt_setopt'],
|
2689
|
+
'YAZ': ['yaz_addinfo',
|
2690
|
+
'yaz_ccl_conf',
|
2691
|
+
'yaz_ccl_parse',
|
2692
|
+
'yaz_close',
|
2693
|
+
'yaz_connect',
|
2694
|
+
'yaz_database',
|
2695
|
+
'yaz_element',
|
2696
|
+
'yaz_errno',
|
2697
|
+
'yaz_error',
|
2698
|
+
'yaz_es_result',
|
2699
|
+
'yaz_get_option',
|
2700
|
+
'yaz_hits',
|
2701
|
+
'yaz_itemorder',
|
2702
|
+
'yaz_present',
|
2703
|
+
'yaz_range',
|
2704
|
+
'yaz_record',
|
2705
|
+
'yaz_scan',
|
2706
|
+
'yaz_scan_result',
|
2707
|
+
'yaz_schema',
|
2708
|
+
'yaz_search',
|
2709
|
+
'yaz_set_option',
|
2710
|
+
'yaz_sort',
|
2711
|
+
'yaz_syntax',
|
2712
|
+
'yaz_wait'],
|
2713
|
+
'YP/NIS': ['yp_all',
|
2714
|
+
'yp_cat',
|
2715
|
+
'yp_err_string',
|
2716
|
+
'yp_errno',
|
2717
|
+
'yp_first',
|
2718
|
+
'yp_get_default_domain',
|
2719
|
+
'yp_master',
|
2720
|
+
'yp_match',
|
2721
|
+
'yp_next',
|
2722
|
+
'yp_order'],
|
2723
|
+
'Zip': ['zip_close',
|
2724
|
+
'zip_entry_close',
|
2725
|
+
'zip_entry_compressedsize',
|
2726
|
+
'zip_entry_compressionmethod',
|
2727
|
+
'zip_entry_filesize',
|
2728
|
+
'zip_entry_name',
|
2729
|
+
'zip_entry_open',
|
2730
|
+
'zip_entry_read',
|
2731
|
+
'zip_open',
|
2732
|
+
'zip_read'],
|
2733
|
+
'Zlib': ['gzclose',
|
2734
|
+
'gzcompress',
|
2735
|
+
'gzdeflate',
|
2736
|
+
'gzencode',
|
2737
|
+
'gzeof',
|
2738
|
+
'gzfile',
|
2739
|
+
'gzgetc',
|
2740
|
+
'gzgets',
|
2741
|
+
'gzgetss',
|
2742
|
+
'gzinflate',
|
2743
|
+
'gzopen',
|
2744
|
+
'gzpassthru',
|
2745
|
+
'gzputs',
|
2746
|
+
'gzread',
|
2747
|
+
'gzrewind',
|
2748
|
+
'gzseek',
|
2749
|
+
'gztell',
|
2750
|
+
'gzuncompress',
|
2751
|
+
'gzwrite',
|
2752
|
+
'readgzfile',
|
2753
|
+
'zlib_get_coding_type'],
|
2754
|
+
'bcompiler': ['bcompiler_load',
|
2755
|
+
'bcompiler_load_exe',
|
2756
|
+
'bcompiler_parse_class',
|
2757
|
+
'bcompiler_read',
|
2758
|
+
'bcompiler_write_class',
|
2759
|
+
'bcompiler_write_constant',
|
2760
|
+
'bcompiler_write_exe_footer',
|
2761
|
+
'bcompiler_write_footer',
|
2762
|
+
'bcompiler_write_function',
|
2763
|
+
'bcompiler_write_functions_from_file',
|
2764
|
+
'bcompiler_write_header'],
|
2765
|
+
'ctype': ['ctype_alnum',
|
2766
|
+
'ctype_alpha',
|
2767
|
+
'ctype_cntrl',
|
2768
|
+
'ctype_digit',
|
2769
|
+
'ctype_graph',
|
2770
|
+
'ctype_lower',
|
2771
|
+
'ctype_print',
|
2772
|
+
'ctype_punct',
|
2773
|
+
'ctype_space',
|
2774
|
+
'ctype_upper',
|
2775
|
+
'ctype_xdigit'],
|
2776
|
+
'dBase': ['dbase_add_record',
|
2777
|
+
'dbase_close',
|
2778
|
+
'dbase_create',
|
2779
|
+
'dbase_delete_record',
|
2780
|
+
'dbase_get_header_info',
|
2781
|
+
'dbase_get_record',
|
2782
|
+
'dbase_get_record_with_names',
|
2783
|
+
'dbase_numfields',
|
2784
|
+
'dbase_numrecords',
|
2785
|
+
'dbase_open',
|
2786
|
+
'dbase_pack',
|
2787
|
+
'dbase_replace_record'],
|
2788
|
+
'dba': ['dba_close',
|
2789
|
+
'dba_delete',
|
2790
|
+
'dba_exists',
|
2791
|
+
'dba_fetch',
|
2792
|
+
'dba_firstkey',
|
2793
|
+
'dba_handlers',
|
2794
|
+
'dba_insert',
|
2795
|
+
'dba_key_split',
|
2796
|
+
'dba_list',
|
2797
|
+
'dba_nextkey',
|
2798
|
+
'dba_open',
|
2799
|
+
'dba_optimize',
|
2800
|
+
'dba_popen',
|
2801
|
+
'dba_replace',
|
2802
|
+
'dba_sync'],
|
2803
|
+
'dbx': ['dbx_close',
|
2804
|
+
'dbx_compare',
|
2805
|
+
'dbx_connect',
|
2806
|
+
'dbx_error',
|
2807
|
+
'dbx_escape_string',
|
2808
|
+
'dbx_fetch_row',
|
2809
|
+
'dbx_query',
|
2810
|
+
'dbx_sort'],
|
2811
|
+
'fam': ['fam_cancel_monitor',
|
2812
|
+
'fam_close',
|
2813
|
+
'fam_monitor_collection',
|
2814
|
+
'fam_monitor_directory',
|
2815
|
+
'fam_monitor_file',
|
2816
|
+
'fam_next_event',
|
2817
|
+
'fam_open',
|
2818
|
+
'fam_pending',
|
2819
|
+
'fam_resume_monitor',
|
2820
|
+
'fam_suspend_monitor'],
|
2821
|
+
'filePro': ['filepro',
|
2822
|
+
'filepro_fieldcount',
|
2823
|
+
'filepro_fieldname',
|
2824
|
+
'filepro_fieldtype',
|
2825
|
+
'filepro_fieldwidth',
|
2826
|
+
'filepro_retrieve',
|
2827
|
+
'filepro_rowcount'],
|
2828
|
+
'gettext': ['bind_textdomain_codeset',
|
2829
|
+
'bindtextdomain',
|
2830
|
+
'dcgettext',
|
2831
|
+
'dcngettext',
|
2832
|
+
'dgettext',
|
2833
|
+
'dngettext',
|
2834
|
+
'gettext',
|
2835
|
+
'ngettext',
|
2836
|
+
'textdomain'],
|
2837
|
+
'iconv': ['iconv',
|
2838
|
+
'iconv_get_encoding',
|
2839
|
+
'iconv_mime_decode',
|
2840
|
+
'iconv_mime_decode_headers',
|
2841
|
+
'iconv_mime_encode',
|
2842
|
+
'iconv_set_encoding',
|
2843
|
+
'iconv_strlen',
|
2844
|
+
'iconv_strpos',
|
2845
|
+
'iconv_strrpos',
|
2846
|
+
'iconv_substr',
|
2847
|
+
'ob_iconv_handler'],
|
2848
|
+
'id3': ['id3_get_frame_long_name',
|
2849
|
+
'id3_get_frame_short_name',
|
2850
|
+
'id3_get_genre_id',
|
2851
|
+
'id3_get_genre_list',
|
2852
|
+
'id3_get_genre_name',
|
2853
|
+
'id3_get_tag',
|
2854
|
+
'id3_get_version',
|
2855
|
+
'id3_remove_tag',
|
2856
|
+
'id3_set_tag'],
|
2857
|
+
'mSQL': ['msql',
|
2858
|
+
'msql_affected_rows',
|
2859
|
+
'msql_close',
|
2860
|
+
'msql_connect',
|
2861
|
+
'msql_create_db',
|
2862
|
+
'msql_createdb',
|
2863
|
+
'msql_data_seek',
|
2864
|
+
'msql_db_query',
|
2865
|
+
'msql_dbname',
|
2866
|
+
'msql_drop_db',
|
2867
|
+
'msql_error',
|
2868
|
+
'msql_fetch_array',
|
2869
|
+
'msql_fetch_field',
|
2870
|
+
'msql_fetch_object',
|
2871
|
+
'msql_fetch_row',
|
2872
|
+
'msql_field_flags',
|
2873
|
+
'msql_field_len',
|
2874
|
+
'msql_field_name',
|
2875
|
+
'msql_field_seek',
|
2876
|
+
'msql_field_table',
|
2877
|
+
'msql_field_type',
|
2878
|
+
'msql_fieldflags',
|
2879
|
+
'msql_fieldlen',
|
2880
|
+
'msql_fieldname',
|
2881
|
+
'msql_fieldtable',
|
2882
|
+
'msql_fieldtype',
|
2883
|
+
'msql_free_result',
|
2884
|
+
'msql_list_dbs',
|
2885
|
+
'msql_list_fields',
|
2886
|
+
'msql_list_tables',
|
2887
|
+
'msql_num_fields',
|
2888
|
+
'msql_num_rows',
|
2889
|
+
'msql_numfields',
|
2890
|
+
'msql_numrows',
|
2891
|
+
'msql_pconnect',
|
2892
|
+
'msql_query',
|
2893
|
+
'msql_regcase',
|
2894
|
+
'msql_result',
|
2895
|
+
'msql_select_db',
|
2896
|
+
'msql_tablename'],
|
2897
|
+
'mailparse': ['mailparse_determine_best_xfer_encoding',
|
2898
|
+
'mailparse_msg_create',
|
2899
|
+
'mailparse_msg_extract_part',
|
2900
|
+
'mailparse_msg_extract_part_file',
|
2901
|
+
'mailparse_msg_free',
|
2902
|
+
'mailparse_msg_get_part',
|
2903
|
+
'mailparse_msg_get_part_data',
|
2904
|
+
'mailparse_msg_get_structure',
|
2905
|
+
'mailparse_msg_parse',
|
2906
|
+
'mailparse_msg_parse_file',
|
2907
|
+
'mailparse_rfc822_parse_addresses',
|
2908
|
+
'mailparse_stream_encode',
|
2909
|
+
'mailparse_uudecode_all'],
|
2910
|
+
'mcrypt': ['mcrypt_cbc',
|
2911
|
+
'mcrypt_cfb',
|
2912
|
+
'mcrypt_create_iv',
|
2913
|
+
'mcrypt_decrypt',
|
2914
|
+
'mcrypt_ecb',
|
2915
|
+
'mcrypt_enc_get_algorithms_name',
|
2916
|
+
'mcrypt_enc_get_block_size',
|
2917
|
+
'mcrypt_enc_get_iv_size',
|
2918
|
+
'mcrypt_enc_get_key_size',
|
2919
|
+
'mcrypt_enc_get_modes_name',
|
2920
|
+
'mcrypt_enc_get_supported_key_sizes',
|
2921
|
+
'mcrypt_enc_is_block_algorithm',
|
2922
|
+
'mcrypt_enc_is_block_algorithm_mode',
|
2923
|
+
'mcrypt_enc_is_block_mode',
|
2924
|
+
'mcrypt_enc_self_test',
|
2925
|
+
'mcrypt_encrypt',
|
2926
|
+
'mcrypt_generic',
|
2927
|
+
'mcrypt_generic_deinit',
|
2928
|
+
'mcrypt_generic_end',
|
2929
|
+
'mcrypt_generic_init',
|
2930
|
+
'mcrypt_get_block_size',
|
2931
|
+
'mcrypt_get_cipher_name',
|
2932
|
+
'mcrypt_get_iv_size',
|
2933
|
+
'mcrypt_get_key_size',
|
2934
|
+
'mcrypt_list_algorithms',
|
2935
|
+
'mcrypt_list_modes',
|
2936
|
+
'mcrypt_module_close',
|
2937
|
+
'mcrypt_module_get_algo_block_size',
|
2938
|
+
'mcrypt_module_get_algo_key_size',
|
2939
|
+
'mcrypt_module_get_supported_key_sizes',
|
2940
|
+
'mcrypt_module_is_block_algorithm',
|
2941
|
+
'mcrypt_module_is_block_algorithm_mode',
|
2942
|
+
'mcrypt_module_is_block_mode',
|
2943
|
+
'mcrypt_module_open',
|
2944
|
+
'mcrypt_module_self_test',
|
2945
|
+
'mcrypt_ofb',
|
2946
|
+
'mdecrypt_generic'],
|
2947
|
+
'mhash': ['mhash',
|
2948
|
+
'mhash_count',
|
2949
|
+
'mhash_get_block_size',
|
2950
|
+
'mhash_get_hash_name',
|
2951
|
+
'mhash_keygen_s2k'],
|
2952
|
+
'mnoGoSearch': ['udm_add_search_limit',
|
2953
|
+
'udm_alloc_agent',
|
2954
|
+
'udm_alloc_agent_array',
|
2955
|
+
'udm_api_version',
|
2956
|
+
'udm_cat_list',
|
2957
|
+
'udm_cat_path',
|
2958
|
+
'udm_check_charset',
|
2959
|
+
'udm_check_stored',
|
2960
|
+
'udm_clear_search_limits',
|
2961
|
+
'udm_close_stored',
|
2962
|
+
'udm_crc32',
|
2963
|
+
'udm_errno',
|
2964
|
+
'udm_error',
|
2965
|
+
'udm_find',
|
2966
|
+
'udm_free_agent',
|
2967
|
+
'udm_free_ispell_data',
|
2968
|
+
'udm_free_res',
|
2969
|
+
'udm_get_doc_count',
|
2970
|
+
'udm_get_res_field',
|
2971
|
+
'udm_get_res_param',
|
2972
|
+
'udm_hash32',
|
2973
|
+
'udm_load_ispell_data',
|
2974
|
+
'udm_open_stored',
|
2975
|
+
'udm_set_agent_param'],
|
2976
|
+
'muscat': ['muscat_close',
|
2977
|
+
'muscat_get',
|
2978
|
+
'muscat_give',
|
2979
|
+
'muscat_setup',
|
2980
|
+
'muscat_setup_net'],
|
2981
|
+
'mysqli': ['mysqli_affected_rows',
|
2982
|
+
'mysqli_autocommit',
|
2983
|
+
'mysqli_bind_param',
|
2984
|
+
'mysqli_bind_result',
|
2985
|
+
'mysqli_change_user',
|
2986
|
+
'mysqli_character_set_name',
|
2987
|
+
'mysqli_client_encoding',
|
2988
|
+
'mysqli_close',
|
2989
|
+
'mysqli_commit',
|
2990
|
+
'mysqli_connect',
|
2991
|
+
'mysqli_connect_errno',
|
2992
|
+
'mysqli_connect_error',
|
2993
|
+
'mysqli_data_seek',
|
2994
|
+
'mysqli_debug',
|
2995
|
+
'mysqli_disable_reads_from_master',
|
2996
|
+
'mysqli_disable_rpl_parse',
|
2997
|
+
'mysqli_dump_debug_info',
|
2998
|
+
'mysqli_embedded_connect',
|
2999
|
+
'mysqli_enable_reads_from_master',
|
3000
|
+
'mysqli_enable_rpl_parse',
|
3001
|
+
'mysqli_errno',
|
3002
|
+
'mysqli_error',
|
3003
|
+
'mysqli_escape_string',
|
3004
|
+
'mysqli_execute',
|
3005
|
+
'mysqli_fetch',
|
3006
|
+
'mysqli_fetch_array',
|
3007
|
+
'mysqli_fetch_assoc',
|
3008
|
+
'mysqli_fetch_field',
|
3009
|
+
'mysqli_fetch_field_direct',
|
3010
|
+
'mysqli_fetch_fields',
|
3011
|
+
'mysqli_fetch_lengths',
|
3012
|
+
'mysqli_fetch_object',
|
3013
|
+
'mysqli_fetch_row',
|
3014
|
+
'mysqli_field_count',
|
3015
|
+
'mysqli_field_seek',
|
3016
|
+
'mysqli_field_tell',
|
3017
|
+
'mysqli_free_result',
|
3018
|
+
'mysqli_get_client_info',
|
3019
|
+
'mysqli_get_client_version',
|
3020
|
+
'mysqli_get_host_info',
|
3021
|
+
'mysqli_get_metadata',
|
3022
|
+
'mysqli_get_proto_info',
|
3023
|
+
'mysqli_get_server_info',
|
3024
|
+
'mysqli_get_server_version',
|
3025
|
+
'mysqli_info',
|
3026
|
+
'mysqli_init',
|
3027
|
+
'mysqli_insert_id',
|
3028
|
+
'mysqli_kill',
|
3029
|
+
'mysqli_master_query',
|
3030
|
+
'mysqli_more_results',
|
3031
|
+
'mysqli_multi_query',
|
3032
|
+
'mysqli_next_result',
|
3033
|
+
'mysqli_num_fields',
|
3034
|
+
'mysqli_num_rows',
|
3035
|
+
'mysqli_options',
|
3036
|
+
'mysqli_param_count',
|
3037
|
+
'mysqli_ping',
|
3038
|
+
'mysqli_prepare',
|
3039
|
+
'mysqli_query',
|
3040
|
+
'mysqli_real_connect',
|
3041
|
+
'mysqli_real_escape_string',
|
3042
|
+
'mysqli_real_query',
|
3043
|
+
'mysqli_report',
|
3044
|
+
'mysqli_rollback',
|
3045
|
+
'mysqli_rpl_parse_enabled',
|
3046
|
+
'mysqli_rpl_probe',
|
3047
|
+
'mysqli_rpl_query_type',
|
3048
|
+
'mysqli_select_db',
|
3049
|
+
'mysqli_send_long_data',
|
3050
|
+
'mysqli_send_query',
|
3051
|
+
'mysqli_server_end',
|
3052
|
+
'mysqli_server_init',
|
3053
|
+
'mysqli_set_opt',
|
3054
|
+
'mysqli_sqlstate',
|
3055
|
+
'mysqli_ssl_set',
|
3056
|
+
'mysqli_stat',
|
3057
|
+
'mysqli_stmt_affected_rows',
|
3058
|
+
'mysqli_stmt_bind_param',
|
3059
|
+
'mysqli_stmt_bind_result',
|
3060
|
+
'mysqli_stmt_close',
|
3061
|
+
'mysqli_stmt_data_seek',
|
3062
|
+
'mysqli_stmt_errno',
|
3063
|
+
'mysqli_stmt_error',
|
3064
|
+
'mysqli_stmt_execute',
|
3065
|
+
'mysqli_stmt_fetch',
|
3066
|
+
'mysqli_stmt_free_result',
|
3067
|
+
'mysqli_stmt_init',
|
3068
|
+
'mysqli_stmt_num_rows',
|
3069
|
+
'mysqli_stmt_param_count',
|
3070
|
+
'mysqli_stmt_prepare',
|
3071
|
+
'mysqli_stmt_reset',
|
3072
|
+
'mysqli_stmt_result_metadata',
|
3073
|
+
'mysqli_stmt_send_long_data',
|
3074
|
+
'mysqli_stmt_sqlstate',
|
3075
|
+
'mysqli_stmt_store_result',
|
3076
|
+
'mysqli_store_result',
|
3077
|
+
'mysqli_thread_id',
|
3078
|
+
'mysqli_thread_safe',
|
3079
|
+
'mysqli_use_result',
|
3080
|
+
'mysqli_warning_count'],
|
3081
|
+
'openal': ['openal_buffer_create',
|
3082
|
+
'openal_buffer_data',
|
3083
|
+
'openal_buffer_destroy',
|
3084
|
+
'openal_buffer_get',
|
3085
|
+
'openal_buffer_loadwav',
|
3086
|
+
'openal_context_create',
|
3087
|
+
'openal_context_current',
|
3088
|
+
'openal_context_destroy',
|
3089
|
+
'openal_context_process',
|
3090
|
+
'openal_context_suspend',
|
3091
|
+
'openal_device_close',
|
3092
|
+
'openal_device_open',
|
3093
|
+
'openal_listener_get',
|
3094
|
+
'openal_listener_set',
|
3095
|
+
'openal_source_create',
|
3096
|
+
'openal_source_destroy',
|
3097
|
+
'openal_source_get',
|
3098
|
+
'openal_source_pause',
|
3099
|
+
'openal_source_play',
|
3100
|
+
'openal_source_rewind',
|
3101
|
+
'openal_source_set',
|
3102
|
+
'openal_source_stop',
|
3103
|
+
'openal_stream'],
|
3104
|
+
'qtdom': ['qdom_error', 'qdom_tree'],
|
3105
|
+
'shmop': ['shmop_close',
|
3106
|
+
'shmop_delete',
|
3107
|
+
'shmop_open',
|
3108
|
+
'shmop_read',
|
3109
|
+
'shmop_size',
|
3110
|
+
'shmop_write'],
|
3111
|
+
'spl': ['class_implements',
|
3112
|
+
'class_parents',
|
3113
|
+
'iterator-to-array',
|
3114
|
+
'iterator_count',
|
3115
|
+
'spl_classes'],
|
3116
|
+
'ssh2': ['ssh2_auth_none',
|
3117
|
+
'ssh2_auth_password',
|
3118
|
+
'ssh2_auth_pubkey_file',
|
3119
|
+
'ssh2_connect',
|
3120
|
+
'ssh2_exec',
|
3121
|
+
'ssh2_fetch_stream',
|
3122
|
+
'ssh2_fingerprint',
|
3123
|
+
'ssh2_methods_negotiated',
|
3124
|
+
'ssh2_scp_recv',
|
3125
|
+
'ssh2_scp_send',
|
3126
|
+
'ssh2_sftp',
|
3127
|
+
'ssh2_sftp_lstat',
|
3128
|
+
'ssh2_sftp_mkdir',
|
3129
|
+
'ssh2_sftp_readlink',
|
3130
|
+
'ssh2_sftp_realpath',
|
3131
|
+
'ssh2_sftp_rename',
|
3132
|
+
'ssh2_sftp_rmdir',
|
3133
|
+
'ssh2_sftp_stat',
|
3134
|
+
'ssh2_sftp_symlink',
|
3135
|
+
'ssh2_sftp_unlink',
|
3136
|
+
'ssh2_shell',
|
3137
|
+
'ssh2_tunnel'],
|
3138
|
+
'tidy': ['ob_tidyhandler',
|
3139
|
+
'tidy_access_count',
|
3140
|
+
'tidy_clean_repair',
|
3141
|
+
'tidy_config_count',
|
3142
|
+
'tidy_diagnose',
|
3143
|
+
'tidy_error_count',
|
3144
|
+
'tidy_get_body',
|
3145
|
+
'tidy_get_config',
|
3146
|
+
'tidy_get_error_buffer',
|
3147
|
+
'tidy_get_head',
|
3148
|
+
'tidy_get_html',
|
3149
|
+
'tidy_get_html_ver',
|
3150
|
+
'tidy_get_output',
|
3151
|
+
'tidy_get_release',
|
3152
|
+
'tidy_get_root',
|
3153
|
+
'tidy_get_status',
|
3154
|
+
'tidy_getopt',
|
3155
|
+
'tidy_is_xhtml',
|
3156
|
+
'tidy_is_xml',
|
3157
|
+
'tidy_load_config',
|
3158
|
+
'tidy_parse_file',
|
3159
|
+
'tidy_parse_string',
|
3160
|
+
'tidy_repair_file',
|
3161
|
+
'tidy_repair_string',
|
3162
|
+
'tidy_reset_config',
|
3163
|
+
'tidy_save_config',
|
3164
|
+
'tidy_set_encoding',
|
3165
|
+
'tidy_setopt',
|
3166
|
+
'tidy_warning_count'],
|
3167
|
+
'unknown': ['bcompile_write_file',
|
3168
|
+
'com',
|
3169
|
+
'dir',
|
3170
|
+
'dotnet',
|
3171
|
+
'hw_api_attribute',
|
3172
|
+
'hw_api_content',
|
3173
|
+
'hw_api_object',
|
3174
|
+
'imagepscopyfont',
|
3175
|
+
'mcve_adduser',
|
3176
|
+
'mcve_adduserarg',
|
3177
|
+
'mcve_bt',
|
3178
|
+
'mcve_checkstatus',
|
3179
|
+
'mcve_chkpwd',
|
3180
|
+
'mcve_chngpwd',
|
3181
|
+
'mcve_completeauthorizations',
|
3182
|
+
'mcve_connect',
|
3183
|
+
'mcve_connectionerror',
|
3184
|
+
'mcve_deleteresponse',
|
3185
|
+
'mcve_deletetrans',
|
3186
|
+
'mcve_deleteusersetup',
|
3187
|
+
'mcve_deluser',
|
3188
|
+
'mcve_destroyconn',
|
3189
|
+
'mcve_destroyengine',
|
3190
|
+
'mcve_disableuser',
|
3191
|
+
'mcve_edituser',
|
3192
|
+
'mcve_enableuser',
|
3193
|
+
'mcve_force',
|
3194
|
+
'mcve_getcell',
|
3195
|
+
'mcve_getcellbynum',
|
3196
|
+
'mcve_getcommadelimited',
|
3197
|
+
'mcve_getheader',
|
3198
|
+
'mcve_getuserarg',
|
3199
|
+
'mcve_getuserparam',
|
3200
|
+
'mcve_gft',
|
3201
|
+
'mcve_gl',
|
3202
|
+
'mcve_gut',
|
3203
|
+
'mcve_initconn',
|
3204
|
+
'mcve_initengine',
|
3205
|
+
'mcve_initusersetup',
|
3206
|
+
'mcve_iscommadelimited',
|
3207
|
+
'mcve_liststats',
|
3208
|
+
'mcve_listusers',
|
3209
|
+
'mcve_maxconntimeout',
|
3210
|
+
'mcve_monitor',
|
3211
|
+
'mcve_numcolumns',
|
3212
|
+
'mcve_numrows',
|
3213
|
+
'mcve_override',
|
3214
|
+
'mcve_parsecommadelimited',
|
3215
|
+
'mcve_ping',
|
3216
|
+
'mcve_preauth',
|
3217
|
+
'mcve_preauthcompletion',
|
3218
|
+
'mcve_qc',
|
3219
|
+
'mcve_responseparam',
|
3220
|
+
'mcve_return',
|
3221
|
+
'mcve_returncode',
|
3222
|
+
'mcve_returnstatus',
|
3223
|
+
'mcve_sale',
|
3224
|
+
'mcve_setblocking',
|
3225
|
+
'mcve_setdropfile',
|
3226
|
+
'mcve_setip',
|
3227
|
+
'mcve_setssl',
|
3228
|
+
'mcve_setssl_files',
|
3229
|
+
'mcve_settimeout',
|
3230
|
+
'mcve_settle',
|
3231
|
+
'mcve_text_avs',
|
3232
|
+
'mcve_text_code',
|
3233
|
+
'mcve_text_cv',
|
3234
|
+
'mcve_transactionauth',
|
3235
|
+
'mcve_transactionavs',
|
3236
|
+
'mcve_transactionbatch',
|
3237
|
+
'mcve_transactioncv',
|
3238
|
+
'mcve_transactionid',
|
3239
|
+
'mcve_transactionitem',
|
3240
|
+
'mcve_transactionssent',
|
3241
|
+
'mcve_transactiontext',
|
3242
|
+
'mcve_transinqueue',
|
3243
|
+
'mcve_transnew',
|
3244
|
+
'mcve_transparam',
|
3245
|
+
'mcve_transsend',
|
3246
|
+
'mcve_ub',
|
3247
|
+
'mcve_uwait',
|
3248
|
+
'mcve_verifyconnection',
|
3249
|
+
'mcve_verifysslcert',
|
3250
|
+
'mcve_void',
|
3251
|
+
'mysqli()',
|
3252
|
+
'pdf_open',
|
3253
|
+
'pdf_open_png',
|
3254
|
+
'pdf_set_font',
|
3255
|
+
'php_register_url_stream_wrapper',
|
3256
|
+
'php_stream_can_cast',
|
3257
|
+
'php_stream_cast',
|
3258
|
+
'php_stream_close',
|
3259
|
+
'php_stream_closedir',
|
3260
|
+
'php_stream_copy_to_mem',
|
3261
|
+
'php_stream_copy_to_stream',
|
3262
|
+
'php_stream_eof',
|
3263
|
+
'php_stream_filter_register_factory',
|
3264
|
+
'php_stream_filter_unregister_factory',
|
3265
|
+
'php_stream_flush',
|
3266
|
+
'php_stream_fopen_from_file',
|
3267
|
+
'php_stream_fopen_temporary_file',
|
3268
|
+
'php_stream_fopen_tmpfile',
|
3269
|
+
'php_stream_getc',
|
3270
|
+
'php_stream_gets',
|
3271
|
+
'php_stream_is',
|
3272
|
+
'php_stream_is_persistent',
|
3273
|
+
'php_stream_make_seekable',
|
3274
|
+
'php_stream_open_wrapper',
|
3275
|
+
'php_stream_open_wrapper_as_file',
|
3276
|
+
'php_stream_open_wrapper_ex',
|
3277
|
+
'php_stream_opendir',
|
3278
|
+
'php_stream_passthru',
|
3279
|
+
'php_stream_read',
|
3280
|
+
'php_stream_readdir',
|
3281
|
+
'php_stream_rewinddir',
|
3282
|
+
'php_stream_seek',
|
3283
|
+
'php_stream_sock_open_from_socket',
|
3284
|
+
'php_stream_sock_open_host',
|
3285
|
+
'php_stream_sock_open_unix',
|
3286
|
+
'php_stream_stat',
|
3287
|
+
'php_stream_stat_path',
|
3288
|
+
'php_stream_tell',
|
3289
|
+
'php_stream_write',
|
3290
|
+
'php_unregister_url_stream_wrapper',
|
3291
|
+
'swfbutton_keypress',
|
3292
|
+
'swfdisplayitem',
|
3293
|
+
'variant'],
|
3294
|
+
'vpopmail': ['vpopmail_add_alias_domain',
|
3295
|
+
'vpopmail_add_alias_domain_ex',
|
3296
|
+
'vpopmail_add_domain',
|
3297
|
+
'vpopmail_add_domain_ex',
|
3298
|
+
'vpopmail_add_user',
|
3299
|
+
'vpopmail_alias_add',
|
3300
|
+
'vpopmail_alias_del',
|
3301
|
+
'vpopmail_alias_del_domain',
|
3302
|
+
'vpopmail_alias_get',
|
3303
|
+
'vpopmail_alias_get_all',
|
3304
|
+
'vpopmail_auth_user',
|
3305
|
+
'vpopmail_del_domain',
|
3306
|
+
'vpopmail_del_domain_ex',
|
3307
|
+
'vpopmail_del_user',
|
3308
|
+
'vpopmail_error',
|
3309
|
+
'vpopmail_passwd',
|
3310
|
+
'vpopmail_set_user_quota'],
|
3311
|
+
'xattr': ['xattr_get',
|
3312
|
+
'xattr_list',
|
3313
|
+
'xattr_remove',
|
3314
|
+
'xattr_set',
|
3315
|
+
'xattr_supported'],
|
3316
|
+
'xdiff': ['xdiff_file_diff',
|
3317
|
+
'xdiff_file_diff_binary',
|
3318
|
+
'xdiff_file_merge3',
|
3319
|
+
'xdiff_file_patch',
|
3320
|
+
'xdiff_file_patch_binary',
|
3321
|
+
'xdiff_string_diff',
|
3322
|
+
'xdiff_string_diff_binary',
|
3323
|
+
'xdiff_string_merge3',
|
3324
|
+
'xdiff_string_patch',
|
3325
|
+
'xdiff_string_patch_binary']}
|
3326
|
+
|
3327
|
+
|
3328
|
+
if __name__ == '__main__':
|
3329
|
+
import pprint
|
3330
|
+
import re
|
3331
|
+
import urllib
|
3332
|
+
_function_re = re.compile('<B\s+CLASS="function"\s*>(.*?)\(\)</B\s*>(?uism)')
|
3333
|
+
|
3334
|
+
def get_php_functions():
|
3335
|
+
uf = urllib.urlopen('http://de.php.net/manual/en/index.functions.php')
|
3336
|
+
data = uf.read()
|
3337
|
+
uf.close()
|
3338
|
+
results = set()
|
3339
|
+
for match in _function_re.finditer(data):
|
3340
|
+
fn = match.group(1)
|
3341
|
+
if '->' not in fn and '::' not in fn:
|
3342
|
+
results.add(fn)
|
3343
|
+
# PY24: use sorted()
|
3344
|
+
results = list(results)
|
3345
|
+
results.sort()
|
3346
|
+
return results
|
3347
|
+
|
3348
|
+
def get_function_module(func_name):
|
3349
|
+
fn = func_name.replace('_', '-')
|
3350
|
+
uf = urllib.urlopen('http://de.php.net/manual/en/function.%s.php' % fn)
|
3351
|
+
regex = re.compile('<li class="header up">'
|
3352
|
+
'<a href="ref\..*?\.php">([a-zA-Z0-9\s]+)</a></li>')
|
3353
|
+
for line in uf:
|
3354
|
+
match = regex.search(line)
|
3355
|
+
if match:
|
3356
|
+
return match.group(1)
|
3357
|
+
|
3358
|
+
print '>> Downloading Function Index'
|
3359
|
+
functions = get_php_functions()
|
3360
|
+
total = len(functions)
|
3361
|
+
print '%d functions found' % total
|
3362
|
+
modules = {}
|
3363
|
+
idx = 1
|
3364
|
+
for function_name in get_php_functions():
|
3365
|
+
print '>> %r (%d/%d)' % (function_name, idx, total)
|
3366
|
+
m = get_function_module(function_name)
|
3367
|
+
if m is None:
|
3368
|
+
print 'NOT_FOUND'
|
3369
|
+
m = 'unknown'
|
3370
|
+
else:
|
3371
|
+
print repr(m)
|
3372
|
+
modules.setdefault(m, []).append(function_name)
|
3373
|
+
idx += 1
|
3374
|
+
|
3375
|
+
# extract useful sourcecode from this file
|
3376
|
+
f = open(__file__)
|
3377
|
+
try:
|
3378
|
+
content = f.read()
|
3379
|
+
finally:
|
3380
|
+
f.close()
|
3381
|
+
header = content[:content.find('MODULES = {')]
|
3382
|
+
footer = content[content.find("if __name__ == '__main__':"):]
|
3383
|
+
|
3384
|
+
# write new file
|
3385
|
+
f = open(__file__, 'w')
|
3386
|
+
f.write(header)
|
3387
|
+
f.write('MODULES = %s\n\n' % pprint.pformat(modules))
|
3388
|
+
f.write(footer)
|
3389
|
+
f.close()
|