我需要将图像的一条路径复制到另一条路径。
这是我的代码:
$sourspath = JUri::root().'media/truematrimony/profiles/pending/'.$totbookmar.'';
$descpath = JUri::root().'media/truematrimony/profiles/kmprofile/'.$totbookmar.'';
$status = copy($sourspath, $descpath) or die("Could not copy file contents");
答案 0 :(得分:0)
尝试使用JFile native Joomla Class:
$sourspath = JUri::root().'media/truematrimony/profiles/pending/'.$totbookmar.'';
$descpath = JUri::root().'media/truematrimony/profiles/kmprofile/'.$totbookmar.'';
$status = JFile::copy($sourspath, $descpath) or die("Could not copy file contents");
修改强>
尝试在复制函数调用之前设置要写入的文件夹权限:
chmod($descpath, 0644);
如果它仍然不起作用,请检查您的全局配置中是否正确设置了临时文件夹(并且它还具有相应的写入权限)
答案 1 :(得分:0)