chdir() 函數改變目前的目錄。此函數成功則傳回 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中文網其他相關文章!