簡單的PHP多圖上傳小程式代碼

來源:互聯網
上載者:User

先上原始碼,你可以copy到自己的電腦上去運行~ 複製代碼 代碼如下:<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
<title>多檔案上傳</title>
</head>
<body>
<form accept="" method="post" enctype="multipart/form-data">
<input type="file" name="img[]" /><br />
<input type="file" name="img[]" /><br />
<input type="file" name="img[]" /><br />
<input type="file" name="img[]" /><br />
<input type="file" name="img[]" /><br />
<input type="file" name="img[]" /><br />
<input type="submit" name="s" /><br />
</form>
<?php
//上傳檔案資訊
$img = $_FILES['img'];
if ($img)
{
//檔案存放目錄,和本php檔案同級
$dir = dirname(__file__);
$i = 0;
foreach ($img['tmp_name'] as $value)
{
$filename = $img['name'][$i];
if ($value)
{
$savepath="$dir\\$filename";
$state = move_uploaded_file($value, $savepath);
//如果上傳成功,預覽
if($state)
{
echo "<img src='$filename' alt='$filename' /> ";
}
}
$i++;
}
}
?>
</body>
</html>

move_uploaded_file() 函數
move_uploaded_file() 函數將上傳的檔案移動到新位置。若成功,則返回 true,否則返回 false。
用法:move_uploaded_file(file,newloc)
參數 file,必需。規定要移動的檔案。
參數 newloc,必需。規定檔案的新位置。
本函數檢查並確保由 file 指定的檔案是合法的上傳檔案(即通過 PHP 的 HTTP POST 上傳機制所上傳的)。如果檔案合法,則將其移動為由 newloc 指定的檔案。
如果 file 不是合法的上傳檔案,不會出現任何操作,move_uploaded_file() 將返回 false。
如果 file 是合法的上傳檔案,但出於某些原因無法移動,不會出現任何操作,move_uploaded_file() 將返回 false,此外還會發出一條警告。
這種檢查顯得格外重要,如果上傳的檔案有可能會造成對使用者或本系統的其他使用者顯示其內容的話。
注釋:本函數僅用於通過 HTTP POST 上傳的檔案。
注意:如果目標檔案已經存在,將會被覆蓋。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.