-1

我这里有这个代码,它输出给我一个图像。我需要改变它,因为目前它给了我类似的东西: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'];
4

1 回答 1

1

PHP 的重命名功能应该做你想做的事。

于 2012-08-21T21:25:24.733 回答