PHP diskfreespace() 函數(shù)
PHP diskfreespace() 函數(shù)

定義和用法
diskfreespace() 函數(shù)返回指定目錄的可用空間,以字節(jié)為單位。
該函數(shù)是 disk_free_space() 函數(shù)的別名。
語法
diskfreespace(directory)
參數(shù) | 描述 |
---|---|
directory | 必需。規(guī)定要檢查的目錄。 |
實例
<?php
echo diskfreespace("C:");
?>
echo diskfreespace("C:");
?>
上面的代碼將輸出:
109693288448

相關(guān)文章
- PHP 安裝
- PHP echo 和 print 語句
- PHP 數(shù)據(jù)類型
- PHP 運算符
- PHP 數(shù)組排序
- PHP $_POST 變量
- PHP date() 函數(shù)
- PHP 文件處理
- PHP 發(fā)送電子郵件
- PHP array_diff_key() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP in_array() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 雜項 函數(shù)