天天看點

php建立txt檔案并寫入内容,php建立txt檔案

//$empId="a2";
//$loginName="JS0313246";
//$empName="吳蓬";
//$loginPwd="aaaaaa";
//$tel="18249035486";

//寫入txt記事本
/*
$myfile = fopen("newfile.txt", "a") or die("Unable to open file!");  //w  重寫  a追加
$txt = $empId."\n".$loginName."\n".$empName."\n".$loginPwd."\n".$tel."\n";
fwrite($myfile, $txt);
fclose($myfile);
*/