如何讲二维数组写入txt文件
程序员文章站
2022-04-10 18:25:05
...
怎么讲二维数组写入txt文件
数组定义和赋值是这个格式,怎么把数组的数据写入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); }相关文章
相关视频