coffee_cn

博客园 首页 新随笔 联系 订阅 管理
<?php
$dbi = new DbMysql;
$dbi->dbh = 'mysql://root:mysql@127.0.0.1/coffeetest';

$map = array();
$dbi->fetchMap("SHOW TABLES", $map);
$tables = array_keys($map);
for($i=0; $i<count($tables); $i++){
    echo($tables[$i]."\n");
    $fields = $dbi->field($tables[$i]);
    foreach($fields as $item){
        echo("\t".$item["Field"]."\t".$item["Key"]."\t".$item["Extra"]."\n");
    }
}
?>

 

posted on 2018-05-05 12:14  coffee  阅读(258)  评论(0编辑  收藏  举报