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