0
我想在另一個名爲「files」的目錄中創建一個文件。在另一個目錄上使用PHP創建文件
我的服務器看起來是這樣的:
root:
createfile.php
files:
file1.txt
這是我曾嘗試:
$myfile = fopen("../files/file2.txt", "w")or die("Unable to open file!");
但是當我運行畝代碼,它給了我這個錯誤:
Warning: fopen(../files/file2.txt): failed to open stream: No such file or directory in C:\xampp\htdocs\createfile.php on line 4
減去'../'部分和你的好 – Rizier123