$filename = "file.txt"; $fp = fopen ($filename,"w+"); $array=array(0=> 'aaa',1=>'bbb',2=>'ccc'); fputs($fp,join("\n",$array)); fclode($fp);