提供一款簡單實用的php圖片文件上傳實例代碼
php教程圖片文件上傳實例代碼
<html xmlns="http://www.bkjia.com/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>php教程圖片文件上傳實例代碼</title>
</head><body>
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<label for="filefield"></label>
<input type="file" name="file" id="filefield" />
<input type="submit" name="button" id="button" value="文件上傳" />
</form>
</body>
</html>
<?
if( $_post )
{
if( $_files['file'] )
{
$filename = $_files['file']['type'];
$newname ='php100.com.gif';
if( strtolower( $filename) == 'image/gif' )
{
if( move_uploaded_file($_files['file']['tmp_name'] ,$newname) )
{
//$ext = getimagesize( $newname );
//print_r($ext);
echo '圖片上傳成功';
}
else
{
die('圖片上傳失敗!');
}
}
else
{
exit('本程序只允許上傳gif圖片');
}
}
}
/*
move_uploaded_file 語法參考地址
http://www.bkjia.com/phper/24/da78cda75379943ff126f6af13cf5aa9.htm
strtolower實例地址
http://www.bkjia.com/phper/21/805cd7d41d20a10b71b35e1a8f2b8596.htm
$_files 說有
$_files[''myfile''][''name''] 客戶端文件的原名稱。
$_files[''myfile''][''type''] 文件的 mime 類型,需要浏覽器提供該信息的支持,例如"image/gif"。
$_files[''myfile''][''size''] 已上傳文件的大小,單位為字節。
$_files[''myfile''][''tmp_name''] 文件被上傳後在服務端儲存的臨時文件名,一般是系統默認。可以在php.ini的upload_tmp_dir 指定,但 用 putenv() 函數設置是不起作用的。
$_files[''myfile''][''error''] 和該文件上傳相關的錯誤代碼。[''error''] 是在 php 4.2.0 版本中增加的
*/
?>
本站原創教程轉載注明來源的於http://www.bkjia.com/phper/php.html