• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP+MySQL统计该库中每个表的记录数并按递减顺序排列

php 搞代码 3年前 (2022-01-22) 16次浏览 已收录 0个评论

本文实例讲述了PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法。分享给大家供大家参考,具体如下:

这是一段简单的代码,可实现统计该数据库中每个表的记录数,并按递减顺序排列的功能

$host = '127.0.0.1';$port = 3306;$dbname = 'test';$us<strong style="color:transparent">来2源gaodaima#com搞(代@码&网</strong><label>搞gaodaima代码</label>ername = 'root';$password = '';function ee($p){  if(PHP_SAPI == 'cli')  {    echo "\n";  }else{    echo "<pre>";  }  print_r($p);  if(PHP_SAPI == 'cli')  {    echo "\n";  }else{    echo "<pre>";  }}$dsn = "mysql:host={$host};port={$port};dbname={$dbname}";$opts = array(PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION, PDO::ATTR_AUTOCOMMIT=>0);try {  $pdo = new PDO($dsn, $username, $password, $opts);}catch(PDOException $e){  echo $e->getMessage();}//有查询结果function query($sql){  global $pdo;  $stmt = $pdo->query($sql);  $data = $stmt->fetchAll(Pdo::FETCH_BOTH);  return $data;}//无查询结果function execute($sql){  global $pdo;  $affect_rows = $pdo->query($sql);  return $affect_rows;//影响条数}$tables = query("show tables");$sort_data = array();foreach($tables as $table){  //表记录条数  $count_sql = "select count(*) as num from {$table[0]}";  $stmt = $pdo->query($count_sql);  $info = $stmt->fetch(Pdo::FETCH_BOTH);  $pad_table = str_pad($table[0], 25, ' ');  $sort_data[] = array('table'=>$pad_table, 'num'=>$info['num']);  $sort_index[] = $info['num'];}array_multisort($sort_index, SORT_DESC, $sort_data);foreach($sort_data as $val){  $row_str = <<<eof {$val['table']} [{$val['num']}]eof; ee($row_str);}

希望本文所述对大家PHP程序设计有所帮助。

更多PHP+MySQL统计该库中每个表的记录数并按递减顺序排列相关文章请关注搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP+MySQL统计该库中每个表的记录数并按递减顺序排列
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址