PHP如何写入,读取与替换文件内容

PHP如何写入,读取与替换文件内容,第1张

$content = file_get_contents($file)//读文件

$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']

?>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12028486.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存