>php教程 >php手册 >PHP disk_free_space 및 disk_total_space 예제 소개

PHP disk_free_space 및 disk_total_space 예제 소개

WBOY
WBOY원래의
2016-10-28 15:03:311372검색

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.