$content = $content . '正在修改'//修改文件
file_put_contents($file, $content)//保存文件
建议数据格式使用json,这样比较方便:写入文件:
<?php
$json=array()
$json['as_a2']=4567
$json['as_a1']=123456
file_put_contents('test.txt',json_encode($json))
echo "文件已保存为test.txt"
?>
读取文件:
<?php
$json=json_decode(file_get_contents('test.txt'),true)
echo "文件test.txt已读取,内容如下<br />"
echo "as_a2=".$json['as_a2']."<br />"
echo "as_a1=".$json['as_a1']
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)