Welcome

首页 / 网页编程 / PHP / 将数组写入txt文件 var_export

$fp = fopen("aa.txt","w+");
fwrite($fp,var_export($times,true));
fclose($fp);