PHP 임시파일 저장위치 확인 sys get temp dir()

(PHP 임시파일 저장 위치 확인에서 넘어옴)

1 개념[ | ]

how to get the path of the temporary directory in PHP
PHP 임시 파일 저장 위치 확인
PHP sys_get_temp_dir()
  • 임시파일 보관에 사용할 폴더 경로를 반환하는 PHP 함수
echo sys_get_temp_dir();

2 실습[ | ]

  • test.php 파일을 작성
<?php
echo sys_get_temp_dir();
  • test.php 파일을 출력해보면 임시 파일 위치를 출력해 줌
johnjeong@JohnJeong4p:~$ php test.php
/tmp

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}