首页 > 开发 > PHP > 正文

一个较为安全的覆写文件函数

2024-05-04 22:58:56
字体:
来源:转载
供稿:网友

<?php
// 安全覆盖文件写入,防止写入失败文件丢失,如果您的代码中有以"w"模式写入文件的代码
// 推荐改用 f_xwrite() 的方式写入.
// $id: f_xwrite.php,v 1.2 2004/12/03 05:27:04 hightman exp $

function f_xwrite($fpath, $buf, $length = -1) {
    $ret = 0;
   
    if ($length < 0) $length = strlen($buf);
    if ($length == 0) {
        @unlink($fpath);
         return 1;
    }
   
    $fd = @fopen($fpath, "r+");
    if (!$fd) $fd = @fopen($fpath, "w");
    if (!$fd) return $ret;

    flock($fd, lock_ex);
    fseek($fd, 0, seek_set);
    if (fwrite($fd, $buf, $length)) {
        ftruncate($fd, $length);
        $ret = 1;
    }
    flock($fd, lock_un);
    fclose($fd);
    return $ret;
}
?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表