PHP MySQL.Calculartamaño BBDD en MySQL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP MySQL.Calculartamaño BBDD en MySQL相关的知识,希望对你有一定的参考价值。

<?php
    $dbname = "databasename";
    mysql_select_db( $dbname );
    $result = mysql_query( "SHOW TABLE STATUS" );
    $dbsize = 0;
	
    while( $row = mysql_fetch_array( $result ) ) {  
	
        $dbsize += $row[ "Data_length" ] + $row[ "Index_length" ];
		
    }
    echo "<p>The size of the database is " . formatfilesize( $dbsize ) . "</p>";

?>

以上是关于PHP MySQL.Calculartamaño BBDD en MySQL的主要内容,如果未能解决你的问题,请参考以下文章

李炎恢PHP第1季视频教程

如何升级php版本

PHP 简学

PHP 简学

PHP-1

01_PHP 基础知识