26

我正在用 PHP 编写一个照片库脚本,并且有一个目录,用户将在其中存储他们的图片。我正在尝试设置页面缓存并仅在目录内容发生更改时才刷新缓存。我想我可以通过使用 filemtime() 函数缓存目录的最后修改时间并将其与目录的当前修改时间进行比较来做到这一点。但是,正如我已经意识到的那样,目录修改时间不会随着从该目录中添加或删除文件而改变(至少在 Windows 上,尚不确定 Linux 机器)。

所以我的问题是,检查目录内容是否已被修改的最简单方法是什么?

4

10 回答 10

23

正如其他人已经提到的,解决此问题的更好方法是在发生特定事件时触发一个函数,该函数会更改文件夹。但是,如果您的服务器是 unix,您可以使用inotifywait监视目录,然后调用 PHP 脚本。

这是一个简单的例子:

#!/bin/sh
inotifywait --recursive --monitor --quiet --event modify,create,delete,move --format '%f' /path/to/directory/to/watch |
  while read FILE ; do
    php /path/to/trigger.php $FILE
  done

另见: http: //linux.die.net/man/1/inotifywait

于 2009-02-12T12:06:00.933 回答
8

在用户提交了他的图像后触摸目录怎么样?Changelog 说:Windows 需要 php 5.3 才能工作,但我认为它应该适用于所有其他环境

于 2009-02-12T10:25:00.410 回答
7

在 php 中使用 inotifywait

$watchedDir = 'watch';

$in = popen("inotifywait --monitor --quiet --format '%e %f' --event create,moved_to '$watchedDir'", 'r');
if ($in === false)
    throw new Exception ('fail start notify');

while (($line = fgets($in)) !== false) 
{
    list($event, $file) = explode(' ', rtrim($line, PHP_EOL), 2);
    echo "$event $file\n";
}
于 2011-07-20T20:12:56.503 回答
6

呃。我只是存储目录列表的 md5。如果内容改变,md5(directory-listing) 会改变。您可能会遇到非常偶然的 md5 冲突,但我认为这种可能性很小。
或者,您可以在该目录中存储一个包含“最后修改”日期的小文件。但我会选择 md5。


PS。再三考虑,看看您如何看待请求和散列目录列表的性能(缓存)可能不是完全最佳的..

于 2009-06-25T21:26:25.577 回答
3

这是你可以尝试的。将所有图片存储在单个目录中(或在其中的/username子目录中以加快速度并减轻对 FS 的压力)并设置 Apache(或您正在使用的任何东西)以将它们作为静态内容提供“过期”设定为未来 100 年。文件名应包含一些唯一的前缀或后缀(时间戳、文件内容的 SHA1 哈希等),因此每当使用更改时,文件名都会更改,Apache 将提供一个新版本,该版本将在此过程中被缓存。

于 2009-02-12T07:28:03.550 回答
3

你想错了。

有人上传新文件并将其移动到目标位置后,您应该立即执行目录索引器脚本。

于 2009-02-12T08:10:35.600 回答
3

IMO edubem 的答案是要走的路,但是您可以执行以下操作:

if (sha1(serialize(Map('/path/to/directory/', true))) != /* previous stored hash */)
{
    // directory contents has changed
}

或者更弱/更快的版本:

if (Size('/path/to/directory/', true) != /* previous stored size */)
{
    // directory contents has changed
}

以下是使用的功能:

function Map($path, $recursive = false)
{
    $result = array();

    if (is_dir($path) === true)
    {
        $path = Path($path);
        $files = array_diff(scandir($path), array('.', '..'));

        foreach ($files as $file)
        {
            if (is_dir($path . $file) === true)
            {
                $result[$file] = ($recursive === true) ? Map($path . $file, $recursive) : $this->Size($path . $file, true);
            }

            else if (is_file($path . $file) === true)
            {
                $result[$file] = Size($path . $file);
            }
        }
    }

    else if (is_file($path) === true)
    {
        $result[basename($path)] = Size($path);
    }

    return $result;
}

function Size($path, $recursive = true)
{
    $result = 0;

    if (is_dir($path) === true)
    {
        $path = Path($path);
        $files = array_diff(scandir($path), array('.', '..'));

        foreach ($files as $file)
        {
            if (is_dir($path . $file) === true)
            {
                $result += ($recursive === true) ? Size($path . $file, $recursive) : 0;
            }

            else if (is_file() === true)
            {
                $result += sprintf('%u', filesize($path . $file));
            }
        }
    }

    else if (is_file($path) === true)
    {
        $result += sprintf('%u', filesize($path));
    }

    return $result;
}

function Path($path)
{
    if (file_exists($path) === true)
    {
        $path = rtrim(str_replace('\\', '/', realpath($path)), '/');

        if (is_dir($path) === true)
        {
            $path .= '/';
        }

        return $path;
    }

    return false;
}
于 2009-12-13T10:13:48.127 回答
1

当用户将文件上传到他的目录时,请尝试删除缓存版本。

当有人尝试查看图库时,请先查看是否有缓存版本。如果有缓存版本,则加载它,否则,生成页面,缓存它,完成。

于 2009-02-12T11:50:45.680 回答
1

我一直在寻找类似的东西,但我发现了这个:

http://www.franzone.com/2008/06/05/php-script-to-monitor-ftp-directory-changes/

对我来说,这似乎是一个很好的解决方案,因为我将拥有很多控制权(我将进行 AJAX 调用以查看是否有任何变化)。

希望这会有所帮助。

于 2009-12-13T09:01:46.267 回答
1

这是一个代码示例,如果目录被更改,它将返回 0。我在备份中使用它。

更改的状态取决于文件的存在及其文件大小。您可以轻松更改它,通过替换来比较文件内容

$longString .= filesize($file);

$longString .= crc32(file_get_contents($file));

但会影响执行速度。

#!/usr/bin/php
<?php

$dirName = $argv[1];
$basePath = '/var/www/vhosts/majestichorseporn.com/web/';
$dataFile = './backup_dir_if_changed.dat';

# startup checks
if (!is_writable($dataFile))
    die($dataFile . ' is not writable!');

if (!is_dir($basePath . $dirName))
    die($basePath . $dirName . ' is not a directory');

$dataFileContent = file_get_contents($dataFile);
$data = @unserialize($dataFileContent);
if ($data === false)
    $data = array();

# find all files ang concatenate their sizes to calculate crc32
$files = glob($basePath . $dirName . '/*', GLOB_BRACE);

$longString = '';
foreach ($files as $file) {
    $longString .= filesize($file);
}
$longStringHash = crc32($longString);

# do changed check
if (isset ($data[$dirName]) && $data[$dirName] == $longStringHash)
    die('Directory did not change.');

# save hash do DB
$data[$dirName] = $longStringHash;

file_put_contents($dataFile, serialize($data));
die('0');
于 2013-11-09T08:20:32.083 回答