4

当脚本尝试使用“w”(写入)模式打开新文件时,我刚刚收到一个关于权限被拒绝错误的错误报告这是相关的功能:

function writePage($filename, $contents) {
    $tempfile = tempnam('res/', TINYIB_BOARD . 'tmp'); /* Create the temporary file */
    $fp = fopen($tempfile, 'w');
    fwrite($fp, $contents);
    fclose($fp);
    /* If we aren't able to use the rename function, try the alternate method */
    if (!@rename($tempfile, $filename)) {
        copy($tempfile, $filename);
        unlink($tempfile);
    }

    chmod($filename, 0664); /* it was created 0600 */
}

你可以看到第三行是我使用 fopen 的地方。我想捕获权限被拒绝的错误并自己处理它们,而不是打印错误消息。我意识到这很容易使用 try/catch 块,但可移植性是我脚本的一大卖点。我不能牺牲与 PHP 4 的兼容性来处理错误。请帮助我在不打印任何错误/警告的情况下捕获权限错误。

4

1 回答 1

9

我认为您可以通过使用此解决方案来防止错误。tempnam只需在行后添加一个额外的检查

$tempfile = tempnam('res/', TINYIB_BOARD . 'tmp'); 

# Since we get the actual file name we can check to see if it is writable or not
if (!is_writable($tempfile)) {
    # your logic to log the errors

    return;
}

/* Create the temporary file */
$fp = fopen($tempfile, 'w');
于 2013-06-07T04:13:46.280 回答