Heim  >  Artikel  >  Backend-Entwicklung  >  php 上传图片改名

php 上传图片改名

WBOY
WBOYOriginal
2016-06-23 14:01:571173Durchsuche

从网上找了一段上传 图片代码,然后想把上传的图片名改成用户名+图片后缀(用户名为$user,)但是没看懂这段代码,所以不知道怎么弄,请各位指点

$user="hah";$targetFolder = '/uploads'; // Relative to the rootif (!empty($_FILES)) {	$tempFile = $_FILES['userfile']['tmp_name']; //	$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;	$targetFile = rtrim($targetPath,'/') . '/' . $_FILES['userfile']['name'];				$fileTypes = array('jpg','jpeg','gif','png'); // File extensions	$fileParts = pathinfo($_FILES['userfile']['name']);	if (in_array($fileParts['extension'],$fileTypes)) {		$arr = getimagesize($tempFile);         						move_uploaded_file( $tempFile,$targetFile);		$data = array(				"state" => '00',				"desc"  => 	'ok',				"src"   => "http://localhost/uploads/".$_FILES['userfile']['name'],				"touxiang"  => 	$touxiangs,		);						echo json_encode($data);	} else {		echo 'Invalid file type.';	}}


回复讨论(解决方案)

修改第7行
$targetFile = rtrim($targetPath,'/') . '/' . $_FILES['userfile']['name'];

$targetFile = $targetPath . '/' . $user . '.' . pathinfo($_FILES['userfile']['name'], PATHINFO_EXTENSION);

<?php	$user="hah";$targetFolder = '/uploads'; // Relative to the rootif (!empty($_FILES)) {	$tempFile = $_FILES['userfile']['tmp_name']; //	$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;			$fileTypes = array('jpg','jpeg','gif','png'); // File extensions	$fileParts = pathinfo($_FILES['userfile']['name']);	$targetFile = rtrim($targetPath,'/') . '/' . $user . '.' .$fileParts['extension'];	if (in_array($fileParts['extension'],$fileTypes)) {		$arr = getimagesize($tempFile);         						move_uploaded_file( $tempFile,$targetFile);		$data = array(				"state" => '00',				"desc"  => 	'ok',				"src"   => "http://localhost/uploads/".$user . '.' .$fileParts['extension'],				"touxiang"  => 	$touxiangs,		);						echo json_encode($data);	} else {		echo 'Invalid file type.';	}}?>

搞定了,多谢

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:求助,关于PHP算法Nächster Artikel:【初学】php服务器配置