Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 php 将一个 txt 文件复制到另一个 txt 文件,如下所示:
<?php echo copy("pos.txt","positions.txt"); ?>
但我收到一个错误:
无法打开流:第 2 行的 E:\Users\user\copy.php 中的权限被拒绝
我相信如果我传递正确的上下文参数,就像我对它所做的那样,fwrite它也会起作用,但我对 php 的了解有限。
fwrite
您需要对该目录具有写权限。
您使用脚本驻留的目录,因为您没有使用完整位置:
copy("pos.txt","positions.txt");
您需要确保该this目录具有write permissions
this
write permissions