gpt4 book ai didi

php - 需要用 PHP 在文件开头写

转载 作者:IT王子 更新时间:2023-10-29 01:03:19 25 4
gpt4 key购买 nike

我正在制作这个程序,并试图找出如何将数据写入文件的开头而不是结尾。 "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>

最佳答案

快速而肮脏的:

<?php
$file_data = "Stuff you want to add\n";
$file_data .= file_get_contents('database.txt');
file_put_contents('database.txt', $file_data);
?>

关于php - 需要用 PHP 在文件开头写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1760525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com