利用函数进行数据的收集
参考
函数列表
get_extension_funcs($module_name) 该函数根据module_name返回模块内定义的所有函数的名称。
get_html_translation_table() 返回 htmlspecialchars() 和 htmlentities() 处理后的转换表。
get_parent_class($obj) 如果 obj 是对象,则返回对象实例 obj 所属类的父类名,如果 obj 是字符串,则返回以此字符串为名的类的父类名
get_browser() 通过查找 browscap.ini 文件中的浏览器信息,尝试检测用户的浏览器所具有的功能
get_magic_quotes_gpc() 获取当前 magic_quotes_gpc 的配置选项设置
get_declared_classes() 返回由当前脚本中已定义类的名字组成的数组。
get_include_path() 获取当前 include_path 配置选项的值。
get_object_vars($obj) 返回由 obj 指定的对象中定义的属性组成的关联数组
get_class($obj) 返回对象的类名,要测试的对象。如果在类里,此参数可以省略
get_meta_tags() 从一个文件中提取所有的 meta 标签 content 属性,返回一个数组
get_declared_traits() 返回一个数组,其值包含了所有已定义的 traits 的名称。 在失败的情况下返回 NULL。
get_resource_type() 返回资源(resource)类型
get_defined_vars() 返回由所有已定义变量所组成的数组
get_defined_functions() 返回所有已定义函数的数组
get_class_methods() 返回由类的方法名组成的数组
get_required_files() 别名 get_included_files()
get_magic_quotes_runtime() 获取当前 magic_quotes_runtime 配置选项的激活状态
get_included_files() 返回被 include 和 require 文件名的 array
get_class_vars($class_name) 返回由类的方法名组成的数组。
get_defined_constants() 返回所有常量的关联数组,键是常量名,值是常量值
get_loaded_extensions() 返回所有编译并加载模块名的 array
get_resources() Returns an array of all currently active resources, optionally filtered by resource type.
get_current_user() 返回当前 PHP 脚本所有者名称。
get_declared_interfaces() 返回一个数组包含所有已声明的接口。
get_cfg_var() 获取 PHP 配置选项的值
get_called_class() 返回类的名称,如果不是在类中调用则返回 FALSE。
get_headers($url) 返回一个数组,包含有服务器响应一个 HTTP 请求所发送的标头。
pg_get_pid() 取得后端(数据库服务器进程)的 PID。PID 用来检查其它进程是否发送了 NOTIFY 消息。