我正在制作这个程序,我正在尝试找出如何将数据写入文件的开头而不是结尾。 “a”/ append只写到最后,我怎么能写到开头呢?因为“r +”会这样做,但会覆盖以前的数据。
$datab = fopen('database.txt', "r+");
这是我的整个文件:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Facebook v0.1</title>
<style type="text/css">
#bod{
margin:0 auto;
width:800px;
border:solid 2px black;
}
</style>
</head>
<body>
<div id="bod">
<?php
$fname = $_REQUEST['fname'];
$lname = $_REQUEST['lname'];
$comment = $_REQUEST['comment'];
$datab = $_REQUEST['datab'];
$gfile = $_REQUEST['gfile'];
print <<<form
<table border="2" style="margin:0 auto;">
<td>
<form method="post" action="">
First Name :
<input type ="text"
name="fname"
value="">
<br>
Last Name :
<input type ="text"
name="lname"
value="">
<br>
Comment :
<input type ="text"
name="comment"
value="">
<br>
<input type ="submit" value="Submit">
</form>
</td>
</table>
form;
if((!empty($fname)) && (!empty($lname)) && (!empty($comment))){
$form = <<<come
<table border='2' width='300px' style="margin:0 auto;">
<tr>
<td>
<span style="color:blue; font-weight:bold;">
$fname $lname :
</span>
$comment
</td>
</tr>
</table>
come;
$datab = fopen('database.txt', "r+");
fputs($datab, $form);
fclose($datab);
}else if((empty($fname)) && (empty($lname)) && (empty($comment))){
print" please input data";
} // end table
$datab = fopen('database.txt', "r");
while (!feof($datab)){
$gfile = fgets($datab);
print "$gfile";
}// end of while
?>
</div>
</body>
</html>
答案 0 :(得分:51)
快速而肮脏:
<?php
$file_data = "Stuff you want to add\n";
$file_data .= file_get_contents('database.txt');
file_put_contents('database.txt', $file_data);
?>
答案 1 :(得分:37)
如果您不想将文件的全部内容加载到变量中,可以使用PHP的Streams功能:
function prepend($string, $orig_filename) {
$context = stream_context_create();
$orig_file = fopen($orig_filename, 'r', 1, $context);
$temp_filename = tempnam(sys_get_temp_dir(), 'php_prepend_');
file_put_contents($temp_filename, $string);
file_put_contents($temp_filename, $orig_file, FILE_APPEND);
fclose($orig_file);
unlink($orig_filename);
rename($temp_filename, $orig_filename);
}
这样做是将要添加的字符串写入临时文件,然后将原始文件的内容写入临时文件的末尾(使用流而不是将整个文件复制到变量中),以及然后它删除原始文件并重命名临时文件以替换它。
注意:此代码最初基于Chao Xu现已解散的博客文章。该代码已经分歧,但可以查看原始帖子in the Wayback Machine。
答案 2 :(得分:4)
我认为您可以做的是首先读取文件的内容并将其保存在临时变量中,现在将新数据插入文件的开头,然后附加临时变量的内容。
$file = file_get_contents($filename); $content = 'Your Content' . $file; file_put_contents($content);
答案 3 :(得分:4)
执行这些步骤,而EOF
$handler = fopen('1.txt', 'w+');//1
rewind($handler);//3
$prepend = "I would like to add this text to the beginning of this file";
$chunkLength = strlen($prepend);//2
$i = 0;
do{
$readData = fread($handler, $chunkLength);//4
fseek($handler, $i * $chunkLength);//5
fwrite($handler, $prepend);//6
$prepend = $readData;//7
$i++;
}while ($readData);//8
fclose($handler);
答案 4 :(得分:3)
您可以使用以下代码在文件的开头和结尾附加文本。
$myFile = "test.csv";<br>
$context = stream_context_create();<br>
$fp = fopen($myFile, 'r', 1, $context);<br>
$tmpname = md5("kumar");<br>
//this will append text at the beginning of the file<br><br>
file_put_contents($tmpname, "kumar");<br>
file_put_contents($tmpname, $fp, FILE_APPEND);<br>
fclose($fp);<br>
unlink($myFile);<br>
rename($tmpname, $myFile);<br><br>
//this will append text at the end of the file<br>
file_put_contents($myFile, "ajay", FILE_APPEND);
答案 5 :(得分:1)
无法像您想象的那样写入文件的开头。我猜这是因为操作系统和硬盘驱动器如何看到该文件。它有一个固定的开始和扩展结束。如果你想在中间添加一些东西或开始它需要一些滑动。如果它是一个小文件,只需阅读全部并进行操作并回写。但如果没有,如果你总是在反向行顺序中加入,那么考虑结束为......
答案 6 :(得分:1)
您可以使用fseek
更改记事中的指针。
必须注意的是,如果您使用fwrite
,则会删除当前内容。所以基本上你必须阅读整个文件,使用fseek
,编写新内容,写出文件的旧数据。
$file_data = file_get_contents('database.txt')
$fp = fopen('database.txt', 'a');
fseek($fp,0);
fwrite($fp, 'new content');
fwrite($fp, $file_data);
fclose($fp);
如果您的文件非常庞大并且您不想使用太多内存,那么您可能希望使用两种文件方法,例如
$fp_source = fopen('database.txt', 'r');
$fp_dest = fopen('database_temp.txt', 'w'); // better to generate a real temp filename
fwrite($fp_dest, 'new content');
while (!feof($fp_source)) {
$contents .= fread($fp_source, 8192);
fwrite($fp_dest, $contents);
}
fclose($fp_source);
fclose($fp_dest);
unlink('database.txt');
rename('database_temp.txt','database.txt');
在我的诚实意见中,Ben的解决方案似乎更直接。
最后一点:我不知道你在database.txt
放养的是什么,但你可以使用数据库服务器更轻松地做同样的事情。
答案 7 :(得分:1)
此代码会记住文件开头的数据,以防止被覆盖。接下来,它将按块重写文件块中存在的所有数据。
$data = "new stuff to insert at the beggining of the file";
$buffer_size = 10000;
$f = fopen("database.txt", "r+");
$old_data_size = strlen($data);
$old_data = fread($f, $old_data_size);
while($old_data_size > 0) {
fseek($f, SEEK_CUR, -$old_data_size);
fwrite($f, $data);
$data = $old_data;
$old_data = fread($f, $buffer_size);
$old_data_size = strlen($data);
}
fclose($f);
答案 8 :(得分:1)
一行:
file_put_contents($file, $data."\r\n".file_get_contents($file));
或者:
file_put_contents($file, $data."\r\n --- SPLIT --- \r\n".file_get_contents($file));
答案 9 :(得分:0)
file_get_contents()
和file_put_contents()
比使用fopen()
,fwrite()
和fclose()
函数使用更多内存:
$fh = fopen($filename, 'a') or die("can't open file");
fwrite($fh, $fileNewContent);
fclose($fh);