php disk_free_space 函數與disk_total_space 函數教程,第一個函數是指函數傳回的空間,以位元組為單位,在指定的目錄,而disk_total_space 函數傳回的總空間
該disk_free_space ( )函數傳回的自由空間,以位元組為單位,在指定的目錄。
<span style="color: #008080">disk_free_space</span>(directory)
我們來看看disk_free_space實例吧。
<?<span style="color: #000000">php </span><span style="color: #008000">//</span><span style="color: #008000"> by http://www.manongjc.com/article/1324.html </span> <span style="color: #0000ff">echo</span> <span style="color: #008080">disk_free_space</span>("C:"<span style="color: #000000">); </span>?>
輸出你硬碟大小。
12312312313
下面再來看看disk_total_space函數的教學。
該disk_total_space ( )函數傳回的總空間,以位元組為單位,在指定的目錄。
<span style="color: #008080">disk_total_space</span>(directory)
實例:
<?<span style="color: #000000">php </span><span style="color: #008000">//</span><span style="color: #008000"> by http://www.manongjc.com/article/1324.html </span> <span style="color: #0000ff">echo</span> <span style="color: #008080">disk_total_space</span>("C:"<span style="color: #000000">); </span>?>
方法與disk_free_space是一樣的吧。