備忘錄_20160105(定位) 修改 回首頁

程式 2026-06-02 14:50:30 1780383030 100
php 讀取同目錄/資料夾中的檔案,通通變成下載連結。

php 讀取同目錄/資料夾中的檔案,通通變成下載連結。


<!doctype html>
<html lang="zh-Hant-TW">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>mp3檔案</title>
    <style>
div.classDiv > a
{
  display: block;
  font-size: 16pt;
  margin: 0.3em;
}

a:link, a:visited
{
  color: blue;
  text-decoration: none;
}
    </style>
  </head>
  <body>
    <div class="classDiv">
    <?php
      $straFile=array_values(array_diff(scandir("."), ['.', '..', 'index.php']));
      for($i=0; $i<count($straFile); $i++)
      {
        echo "<a href='" . $straFile[$i] . "' download='" . $straFile[$i] . "'>" . $straFile[$i] . "</a>";
      }
    ?>
    </div>
  </body>
</html>