gpt4 book ai didi

php - 尝试使用 fopen() 将文件写入不同的目录

转载 作者:可可西里 更新时间:2023-11-01 12:45:35 25 4
gpt4 key购买 nike

我正在尝试将一个文件从一个目录写入另一个目录。例如,http://www.xxxxxxx.com/admin/upload.phphttp://www.xxxxxxx.com/posts/filename.php

我读到无法使用 HTTP 路径写入文件,如何使用本地路径?

$ourFileName = "http://www.xxxxxxxx.com/articles/".$thefile.".php";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");

最佳答案

您应该使用文件系统上文件的绝对路径或相对路径。

<?php

$absolute_path = '/full/path/to/filename.php';
$relative_path = '../posts/filename.php';

// use one of $absolute_path or $relative_path in fopen()

?>

关于php - 尝试使用 fopen() 将文件写入不同的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9837337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com