大家好:
想請教我有一個PHP程式,他可以新增TXT資料
也可以讀取,修改
但是放到NAS上後就無法修改了.....
想問是不是有甚麼權限未開呢?
謝謝
NAS規格:Synology DS418-2
程式碼:
<?php
$handle = fopen('newfile.txt', "r");
$contents = '';
if ($handle) {
while (!feof($handle)) {
$contents = fgets($handle, 10);
echo $contents;
$filename = 'newfile.txt';
$content = file_get_contents('newfile.txt');
$content = str_replace($contents, '', $content);
file_put_contents('newfile.txt', $content);
exit;
}
fclose($handle);
}
?>