如何使用PHP將上傳的swf文件存儲在MySQL數據庫中?如何使用PHP將上傳的swf文件存儲在MySQL數據庫中?
0
A
回答
4
最好的方法是將文件存儲在磁盤上,然後在數據庫中存儲元數據(如文件名,可能還有其他字段,例如上傳器)。這樣你將得到一個更快的數據庫,因爲你不需要在表中有大的BLOB字段,並且你還可以更快地提供這些文件,因爲它們可以直接從磁盤讀取,而不是通過網絡上的MySQL連接發送。
所以當文件上傳時,給它一個唯一的文件名並將其存儲在磁盤上的文件夾中。然後將元數據(包括唯一文件名)存儲在數據庫中。如果您在定義唯一文件名時遇到問題,請先保存元數據並在數據庫中使用AUTOINCREMENTed列作爲文件名。
0
// here u can upload swf files also
<?php
//define a maxim size for the uploaded images in Kb
define ("MAX_SIZE","100");
//This function reads the extension of the file. It is used to determine if the file is an image by checking the extension.
function getExtension($str) {
$i = strrpos($str,".");
if (!$i) { return ""; }
$l = strlen($str) - $i;
$ext = substr($str,$i+1,$l);
return $ext;
}
//This variable is used as a flag. The value is initialized with 0 (meaning no error found)
//and it will be changed to 1 if an errro occures.
//If the error occures the file will not be uploaded.
$errors=0;
//checks if the form has been submitted
if(isset($_POST['Submit']))
{
//reads the name of the file the user submitted for uploading
$image=$_FILES['image']['name'];
//if it is not empty
if ($image)
{
//get the original name of the file from the clients machine
$filename = stripslashes($_FILES['image']['name']);
//get the extension of the file in a lower case format
$extension = getExtension($filename);
$extension = strtolower($extension);
//if it is not a known extension, we will suppose it is an error and will not upload the file,
//otherwise we will do more tests
if (($extension != "jpg") && ($extension != "jpeg") && ($extension != "png") && ($extension != "gif") && ($extension != "swf"))
{
//print error message
echo '<h1>Unknown extension!</h1>';
$errors=1;
}
else
{
//get the size of the image in bytes
//$_FILES['image']['tmp_name'] is the temporary filename of the file
//in which the uploaded file was stored on the server
$size=filesize($_FILES['image']['tmp_name']);
//compare the size with the maxim size we defined and print error if bigger
if ($size > MAX_SIZE*1024)
{
echo '<h1>You have exceeded the size limit!</h1>';
$errors=1;
}
//we will give an unique name, for example the time in unix time format
$image_name=time().'.'.$extension;
//the new name will be containing the full path where will be stored (images folder)
$newname="images/".$image_name;
//we verify if the image has been uploaded, and print error instead
$copied = copy($_FILES['image']['tmp_name'], $newname);
if (!$copied)
{
echo '<h1>Copy unsuccessfull!</h1>';
$errors=1;
}}}}
//If no errors registred, print the success message
if(isset($_POST['Submit']) && !$errors)
{
echo "<h1>File Uploaded Successfully! Try again!</h1>";
}
?>
<!--next comes the form, you must set the enctype to "multipart/frm-data" and use an input type "file" -->
<form name="newad" method="post" enctype="multipart/form-data" action="">
<table>
<tr><td><input type="file" name="image"></td></tr>
<tr><td><input name="Submit" type="submit" value="Upload image"></td></tr>
</table>
</form>
相關問題
- 1. 使用MySQL和PHP將數據存儲在MySQL數據庫中
- 2. 如何使用php將圖像存儲到MYSQL數據庫中
- 3. Valum php AJAX上傳:將文件名和路徑存儲到mySQL數據庫中
- 4. 將多個上傳文件的文件名存儲到MySQL數據庫中
- 5. 我如何在mySQL數據庫中存儲swf文件名和位置?
- 6. 使用php codeigniter在mysql數據庫中不能上傳文件
- 7. 使用PHP將CSV文件上傳到mysql數據庫
- 8. 使用PHP將文件上傳到MySQL數據庫
- 9. 如何將'wav'音頻文件存儲在mysql數據庫中?
- 10. 如何將php數組數據存儲到mysql數據庫中
- 11. 在數據庫java中存儲上傳文件的文件名
- 12. 如何使用php存儲數據庫中的文件路徑?
- 13. 如何使用PHP和MySQL在MySQL數據庫中存儲數組數據?
- 14. 如何使用PHP在MySQL數據庫中存儲日期?
- 15. 如何使用php存儲圖像在mysql數據庫中
- 16. 如何使用Node.JS將文件存儲在Couchbase數據庫中?
- 17. 如何使用hibernate將文件存儲在postgres數據庫中?
- 18. 如何將文件的列表存儲在MYSQL數據庫
- 19. 如何使用javascript將數據存儲到mysql數據庫中?
- 20. 如何使用JSF和PrimeFaces將上傳的文件作爲Blob存儲在mysql數據庫中
- 21. PHP上傳文件到MySQL數據庫
- 22. 如何上傳文件並將文件表存儲到數據庫中?
- 23. 如何將PHP常量存儲在MySQL數據庫中
- 24. mysql數據庫中的文件存儲
- 25. 如何使用PHP在Mysql數據庫中上傳圖像
- 26. 如何使用PHP將Excel或CSV上傳到MySQL數據庫?
- 27. 如何將圖像上傳到MySQL數據庫使用PHP/Flex
- 28. 如何上傳文件並使用struts2存儲數據庫中的路徑
- 29. 使用PHP上傳圖像並將數據存儲在MSSQL中
- 30. PHP和MySQL在數據庫中存儲