Home  >  Article  >  Backend Development  >  PHP读取文件内容后清空文件示例代码_php技巧

PHP读取文件内容后清空文件示例代码_php技巧

WBOY
WBOYOriginal
2016-05-17 08:47:14992browse
复制代码 代码如下:

$fh = fopen($path, "r+");

if( flock($fh, LOCK_EX) ){//加写锁
$old_content=json_decode(fread($fh,filesize($path)),true);

$old_content=$old_content.$new_content;
ftruncate($fh,0); // 将文件截断到给定的长度
rewind($fh); // 倒回文件指针的位置
fwrite($fh,json_encode($old_content));
// @chmod($path,0644);
flock($fh, LOCK_UN); //解锁

}
fclose($fh);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn