我正在尝试将用户名传递到文件名中,文件以.jpg结尾。因此输出将为“user-mycoolnewimage.jpg”。有关如何执行此操作的任何建议是对“randnumber-mycoolnewimage.png”的更改,这不是我想要的。随机数对服务器日志没有帮助,图像需要以jpg结束,因为它正在被转换。
$file = rand(0, 10000000).$_FILES['t1']['name'];
if (move_uploaded_file($_FILES['t1']['tmp_name'], $file)) {
if($fp = fopen($file,"rb", 0)) {
$picture = fread($fp,filesize($file));
fclose($fp);
$image = imagecreatefrompng($file);
imagejpeg($image, $file, 70);
imagedestroy($image);
$tag1 = '<img src="'.$file.'" alt="" class="default" />';
//unlink($file);
}
}
答案 0 :(得分:1)
我认为你要找的是basename
(记录here)
您可以做的一件事就是重做一下您的脚本,以便创建两个不同的$file
变量,一个包含初始png
,另一个包含jpeg
路径。完成后,您还需要unlink
png
:
$source = $username . "-" . $_FILES['t1']['name'];
$destination = $username . "-" . basename($_FILES['t1']['name']) . ".jpg";
if (move_uploaded_file($_FILES['t1']['tmp_name'], $source)) {
if($fp = fopen($source,"rb", 0)) {
$picture = fread($fp,filesize($source));
fclose($fp);
$image = imagecreatefrompng($source);
imagejpeg($image, $destination, 70);
imagedestroy($image);
$tag1 = '<img src="'.$file.'" alt="" class="default" />';
unlink($source);
}
}