11

I should to develop a web-application in php for a firm, and I need to know the disk free space of the server.

At the moment, I'm able to obtain the free disk space of this kind :

 $quota="104857600"; //100Mb : (100*1024*1024)

after, I do the difference between $quota and my size variable.

So, in this case, I must to write the disk size directly in the php file...

It's possible to do the disk capacity ?

bahamut100
  • 1,795
  • 7
  • 27
  • 38

4 Answers4

23

disk_free_space - Will return you the number of bytes available on the filesystem or disk partition.

disk_total_space - Will return you the number of total bytes (i.e. capacity) on the filesystem or disk partition.

RC.
  • 27,409
  • 9
  • 73
  • 93
3

Try disk_total_space function

float disk_total_space ( string $directory )

http://php.net/manual/en/function.disk-total-space.php

Silver Light
  • 44,202
  • 36
  • 123
  • 164
1

you can try disk_free_space()

ghostdog74
  • 327,991
  • 56
  • 259
  • 343
1

You can use disk_free_space

Gabriel Solomon
  • 29,065
  • 15
  • 57
  • 79