我有這樣一段代碼在PHP中:file_exists無法與本地主機URL工作
if (file_exists($_POST['current_folder'])) {
//do something
}
但file_exists
始終返回false。傳遞給該函數的值是:
echo $_POST['current_folder']); //This prints: http://localhost/wordpress/wp-content/music
我也嘗試了localhost上的不同文件夾。該函數總是返回false。我也試過is_dir()
。但即使這個函數返回false與上面的URL。
堆棧溢出有很多相關的問題。但大多數人認爲file_exists
只適用於相對網址。但從this link很明顯,http://
URL也支持file_exists
函數。
我錯過了什麼?
使用本地文件路徑,而不是hte web路徑 – 2015-03-08 20:18:58