码迷,mamicode.com
首页 > 其他好文 > 详细

打开a.txt文件在文件中最前面加上hello

时间:2020-12-09 12:07:02      阅读:5      评论:0      收藏:0      [点我收藏+]

标签:文件中   read   and   fwrite   nbsp   txt   文件   get   contents   

$dir = "./a.txt";
$handle = fopen($dir,‘r‘);
$read = fread($handle,filesize($dir));
$content = ‘hello‘.$read;
fclose($handle);
$handle =fopen($dir,‘w‘);
fwrite($handle,$content);
fclose($handle);

 

file_get_contents($dir);

file_put_contents($dir);

打开a.txt文件在文件中最前面加上hello

标签:文件中   read   and   fwrite   nbsp   txt   文件   get   contents   

原文地址:https://www.cnblogs.com/DevilBoy/p/14087555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!