chdir() Function현재 디렉터리를 변경합니다. 이 함수는 성공하면 TRUE를 반환합니다. 실패하면 FALSE가 반환되고 E_WARNING 수준 오류가 발생합니다.
예제 코드
<?php if (chdir("upload")) { print "Changed current directory successfully"; } ?>
출력 결과:
Changed current directory successfully Explanation: This code changes the working directory to the upload directory in the previous working directory.
위 내용은 PHP는 현재 디렉토리 chdir() 함수 사용법을 변경합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!