$file=fopen("test.txt","w")
for($i=1$i<=20$i++)
{
fwrite($file,$i."\n")
}
fclose($file)
$file=fopen("test.txt","r")
while(!feof($file))
{
echo("<div>".fgets($file)."</div)")
}
fclose($file)
?>
<?php$arr = array('aa', 'bb', 'cc')
$str = implode("\r\n", $arr)
file_put_contents("A.txt", $str)
?>
<?phpheader("Content-type:text/htmlcharset=utf-8")
$f_open = fopen('aaa.txt','w+') //打开文件
if(isset($_POST['submit'])){//判断,如果点了提交按钮则执行以下代码
fwrite($f_open,$_POST['txt']) //写入文件,内容为文本域传过来的值
}
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
textarea{
width: 300px
height: 20px
}
</style>
</head>
<body>
<form method="post" action="a.php">
<textarea name="txt">
<?php
$aaa = readfile('aaa.txt') //读取aaa.txt的内容
?>
</textarea>
<input type="submit" name="submit">
</form>
</body>
</html>
<?php
fclose($f_open) //关闭文件
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)