数据库的大小。 PHP-MySQL
我想知道使用 php 的数据库的大小。 如何显示整个数据库的大小(以兆字节为单位)?特定请求的大小(以兆字节为单位)?
I want to know the size of my database using php.
How to display the size in megabytes entire database? Size in megabytes a specific request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试获取以字节为单位的大小:
然后以兆字节为单位进行转换:
Try this to get the size in bytes:
then to convert in megabytes:
我尝试从互联网来源修改这种情况,请尝试一下。
I try to modify from internet source for this case, just try it please.
此查询为您提供有关数据库大小的有用数据:
This query give you a useful data about your database size:
尝试查询
information_schema
。Try querying
information_schema
.