Home >Backend Development >PHP Tutorial >将数组写入txt文件 var_export_PHP

将数组写入txt文件 var_export_PHP

WBOY
WBOYOriginal
2016-06-01 12:23:57836browse

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn