Home > php教程 > php手册 > phpinfo 系统查看参数函数代码

phpinfo 系统查看参数函数代码

WBOY
Release: 2016-06-13 12:23:10
Original
801 people have browsed it

复制代码 代码如下:


/*
+--------------------------------------------------------------------------
| B-Check v0.05
| ========================================
| 南方第三制作
| http://www.zndown.com
| ========================================
| 探针官方:http://my.zndown.com/bugs/xuhao.php
| 最后更新: 2009.2.2 ?11:01
| QQ:307292967
+---------------------------------------------------------------------------

| 在编写过程中,学习借鉴了很多其他优秀的探针
| 并根据自身的理解做了很多修改和优化,就当前而言,这是探测信息最全面的PHP探针了!
| 整个执行框架,我是想到哪就写到哪,并没有进行合理的规划,我想,在以后我有时间的时候会近一步更新

+--------------------------------------------------------------------------
*/
//抑制所有的错误信息
//session_start();
ini_set('display_errors', 'off');
//计算页面运行时间函数
function getmicrotime(){
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
$pagestartime=getmicrotime();
//使用通知
$messagex="来自:http://".$_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF']."\n\n版本:".version;
$tox="307292967@qq.com";
$subjectx="B-check User";
if(isset($_SESSION['user']))
{
mail($tox, $subjectx, $messagex);
}
//重新初始化SESSION
$_SESSION['user']='lovehaoge';
//显示常量
define("on", "");
define("off", "×");
define("version", "v0.05");//版本号
//显示开关
$mysqlReShow = "none";
//性能信息结果刷新
$ts_int = (false == empty($_POST['tsint']))?$_POST['tsint']:test_int();
$ts_float = (false == empty($_POST['tsfloat']))?$_POST['tsfloat']:test_float();
$ts_io = (false == empty($_POST['tsio']))?$_POST['tsio']:test_io();
if(isset($_POST['speed']))
{
$speed=round(100/($_POST['speed']/1000),2);
}
elseif($_GET['speed']=="0")
{
$speed=6666.67;
}
elseif(isset($_GET['speed']) and $_GET['speed']>0)
{
$speed=round(100/($_GET['speed']/1000),2);
}
else
{
$speed=" 未探测 ";
}


php探针 B-check 官方最新版
http://www.jb51.net/codes/10292.html
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template