我有一个用户的个人资料页面,用户在其中从文件对话框上传他的个人资料图片..
当文件移动到我的本地服务器的文件夹时,它只获得 0644 的权限..
但我想在上传到服务器之前调整这张图片的大小......
为此,我需要 0777 的权限才能对其进行编辑...
我该怎么办。。
这是我的移动和调整大小的代码
$upload_dir = './images';
$tmp = $_FILES["img"]["tmp_name"];
$names = $_FILES["img"]["name"];
$res=$moveR=move_uploaded_file($tmp, "$upload_dir/$names");
$a="./images/".$names;
list($width, $height) = getimagesize($a);
$newwidth = "300";
$newheight = "200";
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($a);
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($thumb, $a, 100);
提前致谢..