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.
file_put_contents代わりに別のパスからの方法はありますか
file_put_contents
c/test/test.txt を使用して c/programfiles/../../htdocs/test.txt
以下は私が使用しているコードです:
$date=current_date; $file = "test_"$date".txt"; $contents = "testtest"; file_put_contents($file, $contents);
よろしくお願いします!
コンピューターにファイルを配置するときは、次のように相対パスまたは絶対パスを使用できます。
// absolute path $file = "C:/temp/test.txt"; // relative path from C:/Program Files/wamp/htdocs/index.php $file = "../../temp/test.txt";
これらのファイルは両方とも同じ場所を指しています