php中变量及部分适用方法
程序员文章站
2022-10-27 16:21:54
变量:$_server, 在 p...
变量:$_server, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_server_vars
变量:$_env, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_env_vars
变量:$_cookie, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_cookie_vars
变量:$_get, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_get_vars
变量:$_post, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_post_vars
变量:$_files, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_post_files
变量:$_request, 在 php 4.1.0 及以后版本使用。之前的版本,没有等价的数组
变量:$_session, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_session_vars
变量:$globals $globals 在 php 3.0.0 及以后版本中适用
php中$_server的详细用法:
$_server['php_self'] #当前正在执行脚本的文件名,与 document root相关。
$_server['argv'] #传递给该脚本的参数。
$_server['argc'] #包含传递给程序的命令行参数的个数(如果运行在命令行模式)。
$_server['gateway_interface'] #服务器使用的 cgi 规范的版本。例如,“cgi/1.1”。
$_server['server_name'] #当前运行脚本所在服务器主机的名称。
$_server['server_software'] #服务器标识的字串,在响应请求时的头部中给出。
$_server['server_protocol'] #请求页面时通信协议的名称和版本。例如,“http/1.0”。
$_server['request_method'] #访问页面时的请求方法。例如:“get”、“head”,“post”,“put”。
$_server['query_string'] #查询(query)的字符串。
$_server['document_root'] #当前运行脚本所在的文档根目录。在服务器配置文件中定义。
$_server['http_accept'] #当前请求的 accept: 头部的内容。
$_server['http_accept_charset'] #当前请求的 accept-charset: 头部的内容。例如:“iso-8859-1,*,utf-8”。
$_server['http_accept_encoding'] #当前请求的 accept-encoding: 头部的内容。例如:“gzip”。
$_server['http_accept_language']#当前请求的 accept-language: 头部的内容。例如:“en”。
$_server['http_connection'] #当前请求的 connection: 头部的内容。例如:“keep-alive”。
$_server['http_host'] #当前请求的 host: 头部的内容。
$_server['http_referer'] #链接到当前页面的前一页面的 url 地址。
$_server['http_user_agent'] #当前请求的 user_agent: 头部的内容。
$_server['remote_addr'] #正在浏览当前页面用户的 ip 地址。
$_server['remote_host'] #正在浏览当前页面用户的主机名。
$_server['remote_port'] #用户连接到服务器时所使用的端口。
$_server['script_filename'] #当前执行脚本的绝对路径名。
$_server['server_admin'] #管理员信息
$_server['server_port'] #服务器所使用的端口
$_server['server_signature'] #包含服务器版本和虚拟主机名的字符串。
$_server['path_translated'] #当前脚本所在文件系统(不是文档根目录)的基本路径。
$_server['script_name'] #包含当前脚本的路径。这在页面需要指向自己时非常有用。
$_server['request_uri'] #访问此页面所需的 uri。例如,“/index.html”。
$_server['php_auth_user'] #当 php 运行在 apache 模块方式下,并且正在使用 http 认证功能,这个变量便是用户输入的用户名。
$_server['php_auth_pw'] #当 php 运行在 apache 模块方式下,并且正在使用 http 认证功能,这个变量便是用户输入的密码。
$_server['auth_type'] #当 php 运行在 apache 模块方式下,并且正在使用 http 认证功能,这个变量便是认证的类型。
变量:$_env, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_env_vars
变量:$_cookie, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_cookie_vars
变量:$_get, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_get_vars
变量:$_post, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_post_vars
变量:$_files, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_post_files
变量:$_request, 在 php 4.1.0 及以后版本使用。之前的版本,没有等价的数组
变量:$_session, 在 php 4.1.0 及以后版本使用。之前的版本,使用 $http_session_vars
变量:$globals $globals 在 php 3.0.0 及以后版本中适用
php中$_server的详细用法:
$_server['php_self'] #当前正在执行脚本的文件名,与 document root相关。
$_server['argv'] #传递给该脚本的参数。
$_server['argc'] #包含传递给程序的命令行参数的个数(如果运行在命令行模式)。
$_server['gateway_interface'] #服务器使用的 cgi 规范的版本。例如,“cgi/1.1”。
$_server['server_name'] #当前运行脚本所在服务器主机的名称。
$_server['server_software'] #服务器标识的字串,在响应请求时的头部中给出。
$_server['server_protocol'] #请求页面时通信协议的名称和版本。例如,“http/1.0”。
$_server['request_method'] #访问页面时的请求方法。例如:“get”、“head”,“post”,“put”。
$_server['query_string'] #查询(query)的字符串。
$_server['document_root'] #当前运行脚本所在的文档根目录。在服务器配置文件中定义。
$_server['http_accept'] #当前请求的 accept: 头部的内容。
$_server['http_accept_charset'] #当前请求的 accept-charset: 头部的内容。例如:“iso-8859-1,*,utf-8”。
$_server['http_accept_encoding'] #当前请求的 accept-encoding: 头部的内容。例如:“gzip”。
$_server['http_accept_language']#当前请求的 accept-language: 头部的内容。例如:“en”。
$_server['http_connection'] #当前请求的 connection: 头部的内容。例如:“keep-alive”。
$_server['http_host'] #当前请求的 host: 头部的内容。
$_server['http_referer'] #链接到当前页面的前一页面的 url 地址。
$_server['http_user_agent'] #当前请求的 user_agent: 头部的内容。
$_server['remote_addr'] #正在浏览当前页面用户的 ip 地址。
$_server['remote_host'] #正在浏览当前页面用户的主机名。
$_server['remote_port'] #用户连接到服务器时所使用的端口。
$_server['script_filename'] #当前执行脚本的绝对路径名。
$_server['server_admin'] #管理员信息
$_server['server_port'] #服务器所使用的端口
$_server['server_signature'] #包含服务器版本和虚拟主机名的字符串。
$_server['path_translated'] #当前脚本所在文件系统(不是文档根目录)的基本路径。
$_server['script_name'] #包含当前脚本的路径。这在页面需要指向自己时非常有用。
$_server['request_uri'] #访问此页面所需的 uri。例如,“/index.html”。
$_server['php_auth_user'] #当 php 运行在 apache 模块方式下,并且正在使用 http 认证功能,这个变量便是用户输入的用户名。
$_server['php_auth_pw'] #当 php 运行在 apache 模块方式下,并且正在使用 http 认证功能,这个变量便是用户输入的密码。
$_server['auth_type'] #当 php 运行在 apache 模块方式下,并且正在使用 http 认证功能,这个变量便是认证的类型。