我有一个文件,我在其中写入
<timestamp>hashedcertificate
<timestamp>hashedcertificate
<timestamp>hashedcertificate
(等)
在某个请求上,我读出数组中的所有时间戳和数组中的所有哈希字符串。
$valid = fopen("./valid", "r+");
if (!$valid) {
log::Write("Could not open file. Exiting..", DEBUG);
exit(1);
}
$isLocked = flock($valid, LOCK_EX);
while (!$isLocked)
$isLocked = flock($valid, LOCK_EX);
while (!feof($valid)) {
$pos_begin = strpos($line, "<");
$pos_end = strpos($line, ">", $pos_begin);
$timestamp = substr($line, $pos_begin+1, $pos_end - $pos_begin - 1);
$timestamps[] = $timestamp;
$storedCert = substr($line, $pos_end + 1);
$storedCerts[] = $storedCert;
log::Write(sprintf("Read: %s with timestamp %s", $storedCert, $timestamp), DEBUG);
$line = fgets($valid);
}
检查它们后(如果时间戳太旧,请删除),我想将剩余的有效哈希写回文件中。
ftruncate($valid, 0);
$counter = 0;
foreach ($timestamps as $timestamp) {
$toWrite = "<" . $timestamp . ">" . $storedCerts[$counter] . "n";
log::Write(sprintf("Writing: n%s", $toWrite), DEBUG);
fputs($valid, $toWrite);
$counter += 1;
}
flock($valid, LOCK_UN);
fclose($valid);
但是我的文件总是看起来像这样:(我认为在ftruncate之后,因为当我打开文件以附加时间戳+hash时,它没有奇怪的东西;只有当从文件读取+删除数组元素+ftruncate +写回文件内容时)(请忽略第一个哈希;我将其临时更改为CRC32以使其更短):
^@^^^^<1378903136>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^@9f71fb266d96afa161c1e52e8b65031c08997bdb5f215f7d
<1378903666>b0e15296
<1378903671>6b4132b9
<1378903695>b0e15296
我做错了什么?
难道不应该在截断后执行 rewind() 以再次重置指向文件开头的指针吗?