摘要:
<?php//打开,追加方式$fp = fopen("demo.txt", "a"); rewind($fp);echo ftell($fp)."<br>";//默认在文件末尾追加fwrite($fp, "hello world\n");//关闭fclose($fp); //打开$fp = fope 阅读全文
posted @ 2016-03-28 20:54
奋斗的寒霜
阅读(141)
评论(0)
推荐(0)
摘要:
<?php/* * fopen("位置URL", "mode"); * */ //打开$fp = fopen("tmp.txt", "r+"); //关闭fclose($fp); 阅读全文
posted @ 2016-03-28 20:34
奋斗的寒霜
阅读(139)
评论(0)
推荐(0)
摘要:
<?php //创建一个空文件 //touch("./feng.txt"); //复制文件 //copy("feng.txt", "meize.txt"); //移动或重新命名一个文件 //rename("meize.txt", "meizi.txt"); //删除一个文件 //unlink("me 阅读全文
posted @ 2016-03-28 20:15
奋斗的寒霜
阅读(169)
评论(0)
推荐(0)