PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法
程序员文章站
2024-04-03 17:34:46
本文实例讲述了php+mysql统计该库中每个表的记录数并按递减顺序排列的方法。分享给大家供大家参考,具体如下:
这是一段简单的代码,可实现统计该数据库中每个表的记录数,...
本文实例讲述了php+mysql统计该库中每个表的记录数并按递减顺序排列的方法。分享给大家供大家参考,具体如下:
这是一段简单的代码,可实现统计该数据库中每个表的记录数,并按递减顺序排列的功能
$host = '127.0.0.1'; $port = 3306; $dbname = 'test'; $username = '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数据库操作入门教程》、《php常见数据库操作技巧汇总》、《php基于pdo操作数据库技巧总结》及《php基本语法入门教程》
希望本文所述对大家php程序设计有所帮助。
推荐阅读
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法,mysql记录数_PHP教程
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法,mysql记录数
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法_PHP
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法_PHP
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法,mysql记录数
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列
-
PHP+MySQL统计该库中每个表的记录数并按递减顺序排列的方法