PHP上傳檔案改名,哪位高手協助修改一下

來源:互聯網
上載者:User
PHP上傳檔案改名,誰協助修改一下
下面的代碼只是接受上傳,誰給加個以時間修改源檔案名稱字的代碼啊謝謝。


if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['sub']))
{

$myfile=$_FILES["myfile"];

$myfileType = substr($myfile['name'], strrpos($myfile['name'], ".") + 1);

if ($myfile['size'] > $maxSize)
{
$result = 1;
}
else if (!in_array($myfileType, $fileTypes))
{
$result = 2;
}
elseif (is_uploaded_file($myfile['tmp_name']))
{
$toFile = $uploadDir . '/' . $myfile['name'];

if (@move_uploaded_file($myfile['tmp_name'], $toFile)) {
{
$result = 0;
}
else
{
$result = -1;
}
}
else
{
$result = 1;
}
}

?>


------解決方案--------------------
$toFile = $uploadDir . '/' . $myfile['name'];
這是目標檔案名
自己改一下就是了
------解決方案--------------------
引用:
$toFile = $uploadDir . '/' . $myfile['name'];
這是目標檔案名
自己改一下就是了


$date = date('YmdHis',time());
$toFile = $uploadDir . '/'.$date . $myfile['name'];

好人做到底
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.