怎么用PHP将文本文件以记事本打开并可以编辑
我能够用PHP将文本文件打开,但是不能够编辑,哪位大虾能够给指点一下迷津,怎样才能实现编辑功能,我的代码如下:
header("Content-type:text/plain");
header("Content-Disposition:inline;filename=$name");
$id=fopen($dir,"a+");
while(!feof($id))
{
$temp=fgets($id,256);
$temp=str_replace( " ","  ",$temp);
print($temp." <br>\n");
}
fclose($id);