謝晒的PHP網頁設計
聯絡E-mail:
sean0704@gmail.com
站內搜尋
Monday, February 17, 2014
[PHP] 如何抓資料夾下的檔案 (使用 opendir readdir)
如果我們要對檔案進行處理,通常會需要知道該檔案的檔名,當我們無法事先知道檔名的時候(例如:使用者上傳的檔案),就需要透過抓取資料夾下的檔案,去獲取檔案名稱,如下:
if
(
$
dh
=
opendir
("mydir/"
))
{
while
((
$
file
=
readdir
(
$
dh
))
!==
false
)
{
echo
$
file
;
echo "<br />";
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment