赛派号

一百瓦的节能灯一小时耗电多少 phpinfo

phpinfo PHP 4, PHP 5, PHP 7, PHP 8 phpinfo - Outputs information about PHP's configuration Manual Code Examples phpinfo( [int$flags = INFO_ALL] ): bool

Outputs a large amount of information about the current state of PHP. This includes information about PHP compilation options and extensions, the PHP version, server information and environment (if compiled as a module), the PHP environment, OS version information, paths, master and local values of configuration options, HTTP headers, and the PHP License.

Because every system is setup differently, phpinfo is commonly used to check configuration settings and for ailable predefined variables on a given system.

phpinfo is also a valuable debugging tool as it contains all EGPCS (Environment, GET, POST, Cookie, Server) data.

Parameters

flags

The output may be customized by passing one or more of the following constants bitwise values summed together in the optional flags parameter. One can also combine the respective constants or bitwise values together with the bitwise or operator.

phpinfo options Name (constant) Value Description INFO_GENERAL 1 The configuration line, php.ini location, build date, Web Server, System and more. INFO_CREDITS 2 PHP Credits. See also phpcredits. INFO_CONFIGURATION 4 Current Local and Master values for PHP directives. See also ini_get. INFO_MODULES 8 Loaded modules and their respective settings. See also get_loaded_extensions. INFO_ENVIRONMENT 16 Environment Variable information that's also ailable in $_ENV. INFO_VARIABLES 32 Shows all predefined variables from EGPCS (Environment, GET, POST, Cookie, Server). INFO_LICENSE 64 PHP License information. See also the license FAQ. INFO_ALL -1 Shows all of the above. Return Values

Returns true on success or false on failure.

Notes Note:

In versions of PHP before 5.5, parts of the information displayed are disabled when the expose_php configuration setting is set to off. This includes the PHP and Zend logos, and the credits.

Note:

phpinfo outputs plain text instead of HTML when using the CLI mode.

Related Functions get_loaded_extensions - Returns an array with the names of all modules compiled and loaded ini_get - Gets the value of a configuration option ini_set - Sets the value of a configuration option phpcredits - Prints out the credits for PHP phpversion - Gets the current PHP version Example of phpinfo Show all examples for phpinfo

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至lsinopec@gmail.com举报,一经查实,本站将立刻删除。

上一篇 没有了

下一篇没有了