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와 동일합니다.