缩略图创建后更改图像名称

时间:2012-08-21 21:23:40

标签: php

我这里有这个代码输出一个图像.. 我需要改变它,因为目前它给了我类似的东西:test.jpg,我需要的是它给我test_s.jpg

你能指导我怎么做吗?

谢谢!

$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/';
$targetPath =  str_replace('//','/',$targetPath);
$targetFile =  $targetPath . $_FILES['Filedata']['name'];

1 个答案:

答案 0 :(得分:1)

PHP的rename函数应该做你想做的事。