PHP中的disk_total_space()函數是一個內置函數,用於返回指定目錄的總空間。 disk_total_space()函數表示總空間(以字節為單位)。它返回文件係統或磁盤分區上的總空間。
disk_total_space()函數返回輸入為字符串的指定目錄的相應文件係統或磁盤分區上的字節總數。
用法:
float disk_total_space ( string $directory )
參數:PHP中的disk_total_space()函數僅接受一個參數$directory,即directory。
返回值:它返回文件係統或磁盤分區上的總空間。
錯誤與異常:
- 如果將文件名作為參數而不是目錄作為參數,則PHP中的disk_total_space()函數可能會給出錯誤的結果。
- PHP中的disk_total_space()函數不適用於遠程文件,僅適用於服務器文件係統可訪問的文件。
例子:
Input : disk_total_space("D:"); Output : 10969328844798729 Input : disk_total_space("C:"); Output : 104379834795739795
以下示例程序旨在說明disk_total_space()函數:
程序1::
<?php
// specifying directory to check for total space
echo disk_total_space("D:");
?>
輸出:
10969328844798729
程序2::
<?php
// specifying directory to
// check for total space
$space = disk_total_space("C:");
echo "C: drive has a total capacity
of $space bytes.";
?>
輸出:
C: drive has a total capacity of 104379834795739795 bytes.
參考:
http://php.net/manual/en/function.disk-total-space.php
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 PHP | disk_total_space() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。