public function中得到的数组储存到本地写一个PHP代码demo
时间: 2023-03-15 13:19:41 浏览: 96
php中将数组存到文件里的实现代码
<?php
// 创建数组
$arr = array(); // 获取数据
$data = get_data_from_public_function();// 把数据存入数组
foreach($data as $key=>$value){
$arr[$key] = $value;
}// 将数组存入本地文件
$file = fopen("data.txt","w");
foreach($arr as $key=>$value){
fwrite($file,$value);
}
fclose($file);
?>
阅读全文