|
|
|
ทำ upload file โดยเปลี่ยนชื่อไฟล์แล้วต้องการ นามสกุลไฟล์ด้วย ทำยังไงครับ |
|
|
|
|
|
|
|
Code (PHP)
$filename = 'mypic.gif';
// 1. The "explode/end" approach
$ext = end(explode('.', $filename));
// 2. The "strrchr" approach
$ext = substr(strrchr($filename, '.'), 1);
// 3. The "strrpos" approach
$ext = substr($filename, strrpos($filename, '.') + 1);
// 4. The "preg_replace" approach
$ext = preg_replace('/^.*\.([^.]+)$/D', '$1', $filename);
// 5. The "never use this" approach
// From: http://php.about.com/od/finishedphp1/qt/file_ext_PHP.htm
$exts = split("[/\\.]", $filename);
$n = count($exts)-1;
$ext = $exts[$n];
|
|
|
|
|
Date :
2010-08-19 12:08:33 |
By :
.... |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
substr(strrchr($file_name,'.'),1);
|
|
|
|
|
Date :
2010-08-19 12:09:38 |
By :
.... |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำแบบนี้อ่ะ ได้ชื่อเดิม
Code (PHP)
if (copy($_FILES['img']['tmp_name'], "../images/".$_FILES["img"]["name"])){
$fileimg = "images/".$_FILES["img"]["name"];
}
|
|
|
|
|
Date :
2010-08-19 12:42:39 |
By :
kanjero |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูก่อนนะครับ ขอบคุณทุกท่านมากๆครับ
|
|
|
|
|
Date :
2010-08-19 13:10:32 |
By :
qsuriya |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับท่าน
ผมใช้
$filetype=strrchr($filename,'.');
แต่ยังไม่ได้ลองแบบอื่นๆ
ขอบคุณครับ
|
|
|
|
|
Date :
2010-08-19 13:22:04 |
By :
qsuriya |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|