function writeToTxt($data,$filename="debug"){
if(is_array($data)){
file_put_contents($filename.".txt",PHP_EOL."debug:".PHP_EOL.serialize($data).PHP_EOL,FILE_APPEND);//数组序列化写入
}else{
file_put_contents($filename.".txt",PHP_EOL."debug:".PHP_EOL.$data.PHP_EOL,FILE_APPEND);//字符串不需要序列化
}
}