|
|
|
ขออนุญาตถามเรื่องการเปลี่ยนชือ่ไฟล์รูปภาพจากการอัพโหลดภาพหลาย ๆ รูปครับ |
|
|
|
|
|
|
|
Code (PHP)
// Define a destination
$targetFolder = 'uploads'; // Relative to the root
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $targetFolder;
// Validate the file type
$fileTypes = array('jpg','jpeg','gif','png'); // File extensions
$fileParts = pathinfo($_FILES['Filedata']['name']);
if (in_array($fileParts['extension'],$fileTypes)) {
$targetFile = $targetFolder . '/' . date('YmdHis).'.'.$fileParts['extension']; #เปลี่ยนชื่อไฟล์
move_uploaded_file($tempFile,$targetFile);
echo '1';
} else {
echo 'Invalid file type.';
}
}
|
|
|
|
|
Date :
2015-08-31 23:17:10 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปรับใช้เอาเองนะครับ
Code (PHP)
$fl=array(); $fn=$_FILES['Upload'];
foreach($fs['error'] as $key=>$vl){
if($vl === UPLOAD_ERR_OK) {
$fs=date('YmdHis').$key.pathinfo($fn["name"][$key], PATHINFO_EXTENSION);
if(move_uploaded_file($fn['tmp_name'][$key], $fs)){
$fl[]=array($fn['name'][$key], $fs);
}
}
}
|
|
|
|
|
Date :
2015-08-31 23:23:20 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทุกคำตอบดีดีด้วยครับ
|
|
|
|
|
Date :
2015-08-31 23:36:24 |
By :
ppsonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|