我正在使用PHP,我已经使用了很长时间,我真的不知道我在这里做错了什么..
任何人都可以帮助我并告诉我为什么转换的图像没有保存,而上传的文件保存得很好(顺便说一下,不会被删除)?
$destination_path = getcwd().DIRECTORY_SEPARATOR."img".DIRECTORY_SEPARATOR."blog".DIRECTORY_SEPARATOR."uploads".DIRECTORY_SEPARATOR;
$result = 0;
$ext = pathinfo($_FILES['image']['name'], PATHINFO_EXTENSION);
$target_path = $destination_path . $this->input->post("postId") . ".";
if(move_uploaded_file($_FILES['image']['tmp_name'], $target_path . $ext)) {
switch ($ext) {
case ".jpg": case ".jpeg":
$image = imagecreatefromjpeg($target_path . $ext);
imagepng($image, $target_path . "png");
imagedestroy($image);
break;
case "gif":
$image = imagecreatefromgif($target_path . $ext);
imagepng($image, $target_path . "png");
imagedestroy($image);
break;
default:
break;
}
$result = 1;
}
答案 0 :(得分:2)
$ext
将是jpg
或jpeg
,您正在检查.jpg
声明中的.jpeg
或switch
,因此对于这些文件将移至默认情况并且不执行任何操作。