Blogger Information
Blog 91
fans 0
comment 0
visits 203484
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php获取服务器操作系统等信息
何澤小生的博客
Original
3402 people have browsed it

php 常用获取系统信息

$_SERVER
查看php版本:echo PHP_VERSION;
服务器操作系统:echo PHP_OS;
服务器端信息:echo $_SERVER ['SERVER_SOFTWARE'];
最大上传限制:echo get_cfg_var ("upload_max_filesize")?get_cfg_var ("upload_max_filesize"):"不允许上传附件";
最大执行时间:echo get_cfg_var("max_execution_time")."秒 ";
脚本运行占用最大内存:echo get_cfg_var ("memory_limit")?get_cfg_var("memory_limit"):"无";

MySQL最大连接数:echo @get_cfg_var("mysql.max_links")==-1 ? "不限" : @get_cfg_var("mysql.max_links");
MySQL版本:mysql_get_server_info();
获得服务器系统时间:date_default_timezone_set (PRC); echo date("Y-m-d G:i:s");


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post