当前位置: 代码迷 >> PHP >> 如何讲二维数组写入txt文件
  详细解决方案

如何讲二维数组写入txt文件

热度:206   发布时间:2012-04-05 12:42:40.0
怎么讲二维数组写入txt文件
PHP code

$total = array(array("address","age"));
$total[$name] = ...


数组定义和赋值是这个格式,怎么把数组的数据写入txt文件

------解决方案--------------------
PHP code
$arr = 你的数组;
$fn = '带保存的文件名';
foreach($arr as $name=>$row) {
  file_put_contents($fn, "$name,$row[address],$row[age]" . PHP_EOL, FILE_APPEND);
} 
  相关解决方案