0

PHPを使用してファイル名の横にファイルサイズを追加するにはどうすればよいですか?

現在これを使用しています:

<?php
# Configuration
$show_path = 0;   # Show local path.
$show_dotdirs = 1;   # Show '.' and '..'.

$path = substr($_SERVER['SCRIPT_FILENAME'], 0,
    strrpos($_SERVER['SCRIPT_FILENAME'], '/') + 1);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>

<body>
<div id="menu">
  <div id="menualign"><a href="index.php"><img src="images/home.png" onmouseover="src='images/homed.png'" onmouseout="src='images/home.png'"/></a><img src="images/moviesa.png"/><a href="tvguide.php"><img src="images/tv.png" onmouseover="src='images/tvd.png'" onmouseout="src='images/tv.png'"/></a></div>
</div>
<div id="container">
  <div id="fleft">
    <table cellspacing="1">
      <tr>
        <th><?php if ($show_path == 1) { echo $path; } else { echo 'Current Movies'; } ?></th>
      </tr>
      <tr>
        <td align="left"><?php
$dirs = array();
$files = array();

$dir = dir('../Movies/');
while ($entry = $dir->read()) {
    if (($entry != '.') and (substr($entry, -4) != '.php')) {
        if (is_dir($entry)) {
            if (($entry != '..') or $show_dotdirs){
                $dirs[] = $entry;
            }
        } else {
            $files[] = $entry;
        }
    }
}
$dir->close();

sort($dirs);
foreach ($dirs as $dir) {
    printf('<strong>&lt;</strong> <a href="%s">%s</a> <strong>&gt;</strong><br />' . "\n", $dir, $dir);
}

sort($files);
foreach ($files as $file) {
    printf('<hr />%s<br />' . "\n", $file, $file);
}
?></td>
      </tr>
    </table>
  </div>
  <div id="fright">TEST
  </div>
</div>
</body>
</html>

これとして出力するもの:http://downunderpctech.com/output.png

Filesizeのセクションを追加したい

おそらく同じコードを使用していますが、ファイル名と同じファイルサイズ情報を収集しますが、その横に新しいコードがあります

私はファイルサイズの出力についてあまり心配していませんが、KBを出力することだけを好みます

ありがとう、アダム

4

3 に答える 3

4

変数で関数を使用する必要がありfilesizeます$file

そして、この小さな関数を使用して、人間が読めるサイズを出力できます。

function file_size($size)
{
  $filesizename = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
  return $size ? round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $filesizename[$i] : '0 Bytes';
}

の前に関数を定義してから# Configuration、foreachでそれを呼び出します。

echo file_size(filesize('../Movies/'.$file));
于 2012-04-29T05:58:39.900 に答える
1

ファイルを書き込んでから、filesize関数を使用してファイルサイズを取得し、ファイル名に含まれるサイズでファイルの名前を変更できます。

http://php.net/manual/en/function.filesize.php

于 2012-04-29T05:58:17.060 に答える
0

これをforeachに追加できます

echo '<span>'.round(filesize ('../Movies/'.$file)/1024, 1).' Kb</span>';
于 2012-04-29T05:58:34.783 に答える