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是一样的吧。