开发者

Hosting Account Free Space [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help cl开发者_如何学编程arifying this question so that it can be reopened, visit the help center. Closed 10 years ago.

I have a spot on my cms dashboard where I want to echo how much free space I have left to use on my hosting account. What kind of php tags am I going to need for this? Or is this even possible?


The function is disk_free_space, however, on shared web hostings it's often disabled for security reasons.


I used to do this on my old hosting acc

$free = disk_free_space("/");
$total = disk_total_space("/");
$percent = ($free/$total)*100;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜