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