看过我们之前的文章的小伙伴相信对php探针有所了解,但是有人说那都是一些理论写东西,想看一些php探针的代码,借此,今天就给分享一款前台基于HTML5技术的PHP探针,在支持HTML5的浏览器中查看效果最佳。
本代码可检测PHP服务器各个变量信息,比如PHP服务器的操作系统、PHP版本、上传文件的大小限制、当前时间、脚本解释引擎、已编译模块监测、高精度数学运算等,还可检测服务器组件及数据库支持监测、压缩文件支持、IMAP电子邮件系统函数库等,
下面是完整的探针代码:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>简洁实用PHP探针</title> <style type="text/css" > * { padding:0px; margin:0px;} li { list-style-type:none} a { color:#333;} body { background:#f2efe8; font-size:12px; color:#666; padding-top:30px; } .box { background:#FFF; border:1px solid #e1e1e1; -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); -moz-box-shadow:0 2px 2px rgba(0, 0, 0, 0.3)); box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); width:90%; margin:0px auto; border-radius:10px; line-height:30px; padding-bottom:10px; margin-bottom:20px;} .title { background:#f5f5f5; line-height:40px; padding-left:20px; font-size:14px; color:#333; height:40px; border-bottom:1px solid #e5e5e5; border-radius:10px; border-bottom-right-radius:0px;border-bottom-left-radius:0px; } ul li { padding:0px 20px; border-bottom:1px solid #e5e5e5; margin:0px 5px; } span { margin-left:10px;} .sudu {padding: 0; background:#5dafd1; } .suduk { margin:0px; padding:0;} </style> <?php error_reporting(0); phpversion() >= '5.1.0' && date_default_timezone_set('UTC'); @header("content-Type: text/html; charset=utf-8"); $stime = date("Y-n-j H:i:s"); function check_os() { $uname=php_uname(); $uname=explode(" ",$uname); return $uname[0]; } function check_extension() { $os=get_loaded_extensions(); for($i=0;$i<count($os);$i++) { echo $os[$i]; if(($i+1)>=15 and ($i+1)%15==0) { echo '<br />'; } else { echo ' | '; } } } function ini($ini) { if(preg_match('/0|off/i',$x=ini_get($ini))) { return 'OFF'; } elseif($x == null) { return 'NONE'; } else { return $x == 1 ? 'ON' : $x; } } function isfun($funName = '') { if (!$funName || trim($funName) == '' || preg_match('~[^a-z0-9\_]+~i', $funName, $tmp)) return '错误'; return (false !== function_exists($funName)) ? '<b>√</b>' : '<em>×</em>'; } header("content-type:text/html;charset=UTF-8"); if(isset($_GET[page])) { if($_GET['page']=="date") { echo date("Y-m-d H:i:s"); } elseif($_GET['page']=="phpinfo") { phpinfo(); } elseif($_GET['page']=="cpuinfo") { check_cpu(); } elseif($_GET['page']=="meminfo") { check_mem(); } elseif($_GET['page']=="diskinfo"){ check_disk(); } elseif($_GET['page']=="uptime") { check_uptime(); } elseif($_GET['page']=="download") { Header('Content-Type:application/octet-stream'); header('accept-length:'.filesize($path)); Header('Content-Disposition:attachment;filename=check.php'); echo file_get_contents(FILE); } exit(); } if ($_POST['act'] == "开始测试") { ?> <script language="javascript" type="text/javascript"> var acd1; acd1 = new Date(); acd1ok=acd1.getTime(); </script> <?php for ($i = 1; $i <= 100000; $i++) { echo "<!--567890#########0#########0#########0#########0#########0#########0#########0######### 012345-->"; } ?> <script language="javascript" type="text/javascript"> var acd2; acd2 = new Date(); acd2ok=acd2.getTime(); window.location = '?speed=' +(acd2ok-acd1ok); </script> <?php } //网速测试-结束 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); //下载速度:$speed kb/s } else { $speed = "<font color=\"red\"> 未探测 </font>"; } function check_mysql($host,$user,$pass) { if(@mysql_connect($host,$user,$pass)) { return '<script type="text/javascript">alert("成功连接到MysqL数据库!");</script>'; } else { return '<script type="text/javascript">alert("无法连接到MysqL数据库!");</script>'; } } ?> </head> <body> <div class="box"> <div class="title">实用探针v1.0</div> </div> <div class="box"> <div class="title">服务器参数</div> <ul> <li>服务器系统:<?php echo check_os(); ?></li> <li>PHP版本:<?php echo phpversion(); ?><a href="?page=phpinfo">PHPINFO</a></li> <li>服务器IP:<?php echo @$_SERVER['REMOTE_ADDR'];?><span>服务器端口:<?php echo $_SERVER['SERVER_PORT'];?> </span></li> <li>服务器解释引擎:<?php echo $_SERVER['SERVER_SOFTWARE'];?></li> <li>服务器当前时间:<?php echo $stime;?></li> <li>探针真实地址:<?php echo $_SERVER['DOCUMENT_ROOT']?str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']): str_replace('\\','/',dirname(FILE));?></li> <li>上传文件的大小限制:<?php echo ini('upload_max_filesize'); ?></li> </ul> </div> <div class="box"> <form action="<?php echo $_SERVER[PHP_SELF];?>" method="post"> <div class="title">网络速度测试<span><input name="act" type="submit" class="btn" value="开始测试" /> </span></div> <ul> <li style="content:"> <table align="center" width="550" border="0" cellspacing="0" cellpadding="0" > <tr > <td height="15" width="50">带宽</td> <td height="15" width="50">1M</td> <td height="15" width="50">2M</td> <td height="15" width="50">3M</td> <td height="15" width="50">4M</td> <td height="15" width="50">5M</td> <td height="15" width="50">6M</td> <td height="15" width="50">7M</td> <td height="15" width="50">8M</td> <td height="15" width="50">9M</td> <td height="15" width="50">10M</td> </tr> <tr> <td colspan="11" class="suduk" ><table align="center" width="550" border="0" cellspacing="0" cellpadding="0" height="8" class="suduk"> <tr> <td class="sudu" width="<?php if(preg_match("/[^\d-., ]/",$speed)) { echo "0"; } else{ echo 550*($speed/11000); } ?>"></td> <td class="suduk" width="<?php if(preg_match("/[^\d-., ]/",$speed)) { echo "550"; } else{ echo 550-550*($speed/11000); } ?>"></td> </tr> </table> </td> </tr> </table> <?php echo (isset($_GET['speed']))?"下载 1000 KB 数据用时 <b>".$_GET['speed']."</b> 毫秒,下载速度: <b>".$speed." KB/s</b>,需测试多次取平均值,超过10M直接看下载速度": "<em> 未探测 </em>" ?> </li> </ul> </form> </div> <!--测速结束--> <div class="box"> <div class="title">已编译模块监测</div> <ul> <li><?php echo check_extension(); ?></li> </ul> </div> <!--模块监测结束--> <div class="box"> <div class="title">组件及数据库支持监测</div> <ul> <li><table width="100%" cellpadding="3" cellspacing="0" align="center"> <tr> <td width="32%">FTP支持:</td> <td width="18%"><?php echo isfun("ftp_login");?></td> <td width="32%">XML解析支持:</td> <td width="18%"><?php echo isfun("xml_set_object");?></td> </tr> <tr> <td>Session支持:</td> <td><?php echo isfun("session_start");?></td> <td>Socket支持:</td> <td><?php echo isfun("socket_accept");?></td> </tr> <tr> <td>GD库支持:</td> <td> <?php if(function_exists(gd_info)) { $gd_info = @gd_info(); echo $gd_info["GD Version"]; }else{echo '<em>×</em>';} ?></td> <td>压缩文件支持(Zlib):</td> <td><?php echo isfun("gzclose");?></td> </tr> <tr> <td>IMAP电子邮件系统函数库:</td> <td><?php echo isfun("imap_close");?></td> <td>历法运算函数库:</td> <td><?php echo isfun("JDToGregorian");?></td> </tr> <tr> <td>正则表达式函数库:</td> <td><?php echo isfun("preg_match");?></td> <td>WDDX支持:</td> <td><?php echo isfun("wddx_add_vars");?></td> </tr> <tr> <td>高精度数学运算:</td> <td><?php echo isfun("bcadd");?></td> <td>LDAP目录协议:</td> <td><?php echo isfun("ldap_close");?></td> </tr> <tr> <td>MCrypt加密处理:</td> <td><?php echo isfun("mcrypt_cbc");?></td> <td>哈稀计算:</td> <td><?php echo isfun("mhash_count");?></td> </tr> <tr> <td>MCrypt加密处理:</td> <td><?php echo isfun("mcrypt_cbc");?></td> <td>哈稀计算:</td> <td><?php echo isfun("mhash_count");?></td> </tr> </table> </li> <li> <table width="100%" cellpadding="3" cellspacing="0" align="center"> <tr> <td width="32%">MySQL 数据库:</td> <td width="18%"><?php echo isfun("mysql_close");?> <?php if(function_exists("mysql_get_server_info")) { $s = @mysql_get_server_info(); $s = $s ? ' mysql_server 版本:'.$s : ''; $c = ' mysql_client 版本:'.@mysql_get_client_info(); echo $s ? $s : $c; } ?> </td> <td width="32%">ODBC 数据库:</td> <td width="18%"><?php echo isfun("odbc_close");?></td> </tr> <tr> <td>Oracle 数据库:</td> <td><?php echo isfun("ora_close");?></td> <td>SQL Server 数据库:</td> <td><?php echo isfun("mssql_close");?></td> </tr> <tr> <td>dBASE 数据库:</td> <td><?php echo isfun("dbase_close");?></td> <td>mSQL 数据库:</td> <td><?php echo isfun("msql_close");?></td> </tr> <tr> <td>SQLite 数据库:</td> <td><?php echo isfun("sqlite_close"); if(isfun("sqlite_close") == '<b>√</b>'){echo " 版本: ".@sqlite_libversion();}?></td> <td>Hyperwave 数据库:</td> <td><?php echo isfun("hw_close");?></td> </tr> </table> </li> </ul> </div> <!--组件支持--> <div class="box"> <div class="title">数据库连接测试</div> <ul> <li><?php if(function_exists('mysql_connect')) { ?> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <p>主机:<span><input type="text" name="host" value="127.0.0.1:3306" /></span></p> <p>用户:<span><input type="text" name="user" /></span></p> <p>密码:<span><input type="password" name="pass" /></span></p> <p><input type="submit" value="检测MYSQL" /><?php if(isset($_POST['host']) and isset($_POST['user']) and isset($_POST['pass'])) { echo '<span style="background-color:#663399">'.check_mysql($_POST['host'], $_POST['user'],$_POST['pass']).'</span>'; } ?></p> </form> <?php } else { echo '<span style="color:#60def0">未找到Mysql扩展!</span>'; } ?></li> </ul> </div> </body> </html>
本探针运行截图如下:
您可直接保存成phpinfo.php文件,在PHP环境下测试运行。
总结:
本款代码还有一个实用的PHP与MYSQL数据库连接测试模块,HTML5技术的加入,使得本款php探针的界面相当简洁美观,希望对你的工作有所帮助!
相关推荐:
The above is the detailed content of PHP probe code sharing based on html5. For more information, please follow other related articles on the PHP Chinese website!

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

因为html5不基于SGML(标准通用置标语言),不需要对DTD进行引用,但是需要doctype来规范浏览器的行为,也即按照正常的方式来运行,因此html5只需要写doctype即可。“!DOCTYPE”是一种标准通用标记语言的文档类型声明,用于告诉浏览器编写页面所用的标记的版本。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
