php 用于快速PHP MySQL数据库连接测试的脚本。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 用于快速PHP MySQL数据库连接测试的脚本。相关的知识,希望对你有一定的参考价值。

<?php
# Fill our vars and run on cli
# $ php -f db-connect-test.php

$dbname = 'name';
$dbuser = 'user';
$dbpass = 'pass';
$dbhost = 'host';

$connect = mysql_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'");
mysql_select_db($dbname) or die("Could not open the db '$dbname'");

$test_query = "SHOW TABLES FROM $dbname";
$result = mysql_query($test_query);

$tblCnt = 0;
while($tbl = mysql_fetch_array($result)) {
  $tblCnt++;
  #echo $tbl[0]."<br />\n";
}

if (!$tblCnt) {
  echo "There are no tables<br />\n";
} else {
  echo "There are $tblCnt tables<br />\n";
}

以上是关于php 用于快速PHP MySQL数据库连接测试的脚本。的主要内容,如果未能解决你的问题,请参考以下文章

(总结)CentOS 6.x使用yum快速安装Apache+PHP+Tomcat(JSP)+MySQL

快速MySQL连接测试

005-LNMP环境连接Mysql测试

求助PHP和MySQL测试连接错误

php连接数据库mysql测试脚本

php中使用mysqli和pdo扩展,测试连接mysql数据库的效率。