编写php脚本,逐行将行号写入文本文件“test.txt”

编写php脚本,逐行将行号写入文本文件“test.txt”,第1张

<?php

$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)

?>

<?php

header("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) //关闭文件

?>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11912974.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存