我遇到了scandir()
問題。我試圖在我的雲中的子域下的頁面上顯示我的snaps
目錄中的文件。scandir無法打開目錄
這是我使用的PHP。
$files = scandir('./snaps');
print_r($files);
並且這是錯誤。
Warning: scandir(./snaps) [function.scandir]: failed to open dir: No such file or directory in /home/u703778423/public_html/cloud/index.php on line 39
Warning: scandir() [function.scandir]: (errno 2): No such file or directory in /home/u703778423/public_html/cloud/index.php on line 39
我不知道該怎麼辦。
你怎麼知道的?沒有提到,'。/ snaps'應該在哪裏,但只有'。/ snaps'丟失。 – KingCrunch 2012-08-09 14:35:50
@KingCrunch:因爲腳本的位置是在錯誤信息中指定的,而scandir中的路徑是'。/ snaps'。 – 2012-08-09 14:36:57
捕捉直接在public_html中。 – 2012-08-09 14:37:12