gpt4 book ai didi

PHP 重命名() file_exists()

转载 作者:行者123 更新时间:2023-12-04 21:35:04 25 4
gpt4 key购买 nike

如何使用 PHP 移动文件?

代码:

if( file_exists($imageLocation) )
echo "file exists on server";

rename($imageLocation, $imageNewLocation);

输出:

file exists on server Warning: rename(/home/images/file1.jpg,/home/newloc/renamed.jpg) [function.rename]: No such file or directory in /home/apps/images/add.php on line 81

我不知道从这里去哪里。

最佳答案

移动文件时,rename() 只能将文件移动到已经存在的文件夹中。它无法即时创建新的父目录。

确保 /home/newloc 存在。如果没有,请使用 mkdir() 来创建它。

关于PHP 重命名() file_exists(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9280095/

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