有的人喜欢将一些数欧豪微博据写在服务器的文件里面,并不喜欢存在mysql里,但新浪sae却不支持对本地文件进行操作。
不过sae拓展了一个storage的服务,可以将一些静态文件放在上面。本文不介绍文件的上传与下载,只介绍对某个文档进行修改。
首先你要开通storage服务
这里可以看到我的domain是storage1,要修改的文件是lin_storage下的welcome.txt。
文件内的内容如下
下面用php读取welcome.txt文档下的内容
file.php
1 <?php2 $domain = "q测试torage1"; //domain兰谷可以在后台面板设置 3 $filename = "lin_storage/welcome.txt";4 $file=fopen("saestor://".$domain."/".$filename,"r+") or exit("unable to open file!");5 while(!feof($file))6 {7 echo fgets($file);8 }9 fclo($file);
结果:
可以看到读取成功。
下面是修改welcome.txt文档下的内容
<?php $domain = "storage1"; //domain可以在后台面板设置 $filename = "lin_storage/welcome.txt"; $file=fopen("saestor中层干部竞争上岗演讲稿://".$domain."/".$filename,"w") or exit("unable to高校排行榜 open file!");$txt = "this is change txt";fwrite($file, $txt);fclo($file);
结果:
修改成功。
博客地址:
本文发布于:2023-04-07 16:18:11,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/e2c200e41199d02503a82ad44226f535.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:新浪sae对storage的文档进行读写操作.doc
本文 PDF 下载地址:新浪sae对storage的文档进行读写操作.pdf
留言与评论(共有 0 条评论) |