gpt4 book ai didi

php-chmod() : No such file or directory

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:39:06 24 4
gpt4 key购买 nike

我试图将图像上传到 php 服务器,然后使用此文档从那里将图像发送到 parse.com:https://parse.com/docs/rest#files

但是在 parse 中,我只能看到 0 大小的图像。我认为问题出在文件权限上

所以我尝试更改文件权限。

            $target_path = "uploads/";
$img =rand().basename( $_FILES['image']['name']);
$target_path=dirname(__FILE__)."/".$target_path.$img;
print($target_path);
chmod($target_path,0777);

但是在执行此操作时我收到以下警告

警告:chmod():第 15 行/var/www/test/new.php 中没有这样的文件或目录

我可以在上传文件夹中看到该文件。文件的所有者是 www-data。任何指针

PS:我也尝试使用相对路径而不是绝对路径。

最佳答案

通过执行“FILE”,您的目标是脚本文件而不是 PATH。

在尝试权限验证之前,使用'DIR'并验证文件夹是否存在is_dir()。

$target_path = "uploads/";
$img =rand().basename( $_FILES['image']['name']);
$target_path=dirname(__DIR__)."/".$target_path.$img;
print($target_path);
chmod($target_path,0777);

关于php-chmod() : No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14646417/

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