我正在开发一个读取/写入文件的REST Web服务脚本。此Web服务每秒调用超过10次。
有两种类型的文件夹结构。
第一
public_html/files/file.txt
public_html/ws/script.php
file_put_contents('../files/file.txt', $data);
$file=file_get_contents('../files/file.txt');
第二
public_html/ws/files/file.txt
public_html/ws/script.php
file_put_contents('files/file.txt', $data);
$file=file_get_contents('files/file.txt');
我的问题:
由于