微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

更改由PHP上传的文件的权限

我为我正在开发的网站创建了一个小规模的CMS,并且具有上传要在网站上使用的图像文件的表单.它可以成功上传文件,但它设置的权限不允许在浏览器中查看文件.

这是我目前的PHP代码上传文件

$typepath = $_POST['filetype'];

$target_path = "../../images/uploads/".$typepath."/";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']); 

if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'],$target_path)) {
    echo "<p>The file ".  basename( $_FILES['uploadedfile']['name']). 
    " has been uploaded</p>\n<p>To the directory:  <span style=\"font-weight:bold;\">".substr($target_path,6)."</span></p>";
} else{
    echo "There was an error uploading the file,please try again!";
}
PHP Manaual chmod http://php.net/manual/en/function.chmod.php
chmod("/somedir/somefile",0755);

在上下文中;

$typepath = $_POST['filetype'];

$target_path = "../../images/uploads/".$typepath."/";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']); 

if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'],$target_path)) {
    chmod($target_path,0755);
    echo "<p>The file ".  basename( $_FILES['uploadedfile']['name']). 
    " has been uploaded</p>\n<p>To the directory:  <span style=\"font-weight:bold;\">".substr($target_path,please try again!";
}

原文地址:https://www.jb51.cc/php/131527.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐