PHP diskfreespace() Function
In this chapter you will learn:
- Definition for PHP diskfreespace() Function
- Syntax for PHP diskfreespace() Function
- Parameter for PHP diskfreespace() Function
- Example - Get the free space, in bytes, for C: drive
Definition
The diskfreespace() function returns the free space, in bytes, of the specified directory.
This function is an alias of the disk_free_space() function.
Syntax
PHP diskfreespace() Function has the following syntax.
diskfreespace(directory)
Parameter
Parameter | Is Required | Description |
---|---|---|
directory | Required. | Directory to check |
Example
<?php
echo diskfreespace("C:");
?>
The code above generates the following result.
Next chapter...
What you will learn in the next chapter:
- Definition for PHP fclose() Function
- Syntax for PHP fclose() Function
- Parameter for PHP fclose() Function
- Return for PHP fclose() Function
- Example - close a file
Home » PHP Tutorial » PHP File Functions