我目前正在使用phonegap编写移动应用程序。我希望这个应用程序拥有的少数功能之一是能够捕获图像并将其上传到远程服务器......
我目前有图像捕获和上传/电子邮件部分与编译的apk正常工作...但在我的PHP,我目前命名图像“图像[插入从10到20的随机数] ...问题这里是数字可以重复,图像可以被覆盖......我已经阅读并想过只使用rand()并选择从0到getrandmax()的随机数,但我觉得我可能有同样的机会一个文件覆盖......我需要每次都用一个唯一的名称将图像上传到服务器,无论如何......所以php脚本会检查服务器已有的内容并写入/上传图像有一个独特的名字......
除了“rand()”以外的任何想法?
我也想到可能会命名每个图像... img +日期+时间+随机5个字符,其中包括字母和数字......所以如果使用应用程序在3月4:37拍摄图像2013年20日,当上传到服务器时,图像将被命名为“img_03-20-13_4-37am_e4r29.jpg”......我认为这可能有用......(除非有更好的方法)但我还是比较新的到php并且不会理解如何写这样的东西...
我的php如下......
print_r($_FILES);
$new_image_name = "image".rand(10, 20).".jpg";
move_uploaded_file($_FILES["file"]["tmp_name"], "/home/virtual/domain.com/public_html/upload/".$new_image_name);
感谢任何帮助...... 提前致谢! 另外,如果有任何进一步的信息,请告诉我,我可能会遗漏...
答案 0 :(得分:16)
您可能需要考虑PHP的uniqid()
功能。
这样,您建议的代码如下所示:
$new_image_name = 'image_' . date('Y-m-d-H-i-s') . '_' . uniqid() . '.jpg';
// do some checks to make sure the file you have is an image and if you can trust it
move_uploaded_file($_FILES["file"]["tmp_name"], "/home/virtual/domain.com/public_html/upload/".$new_image_name);
还要记住,服务器的随机功能并不是随机的。如果您确实需要一些随机的东西,请尝试random.org。随机随机随机。
UPD :要在代码中使用random.org,您必须向其服务器执行一些API请求。有关该文档的文档可在此处获取:www.random.org/clients/http/。
电话会议的例子是:random.org/integers/?num=1&min=1&max=1000000000&col=1&base=10&format=plain&rnd=new
。请注意,您可以更改min
,max
和其他参数,如documentation中所述。
在PHP中,您可以使用file_get_contents()
函数,cURL
库甚至套接字向远程服务器发出GET
请求。如果您使用的是共享主机,则应为您的帐户启用并启用外发连接。
$random_int = file_get_contents('http://www.random.org/integers/?num=1&min=1&max=1000000000&col=1&base=10&format=plain&rnd=new');
var_dump($random_int);
答案 1 :(得分:5)
您应该使用tempnam()
生成唯一的文件名:
// $baseDirectory Defines where the uploaded file will go to
// $prefix The first part of your file name, e.g. "image"
$destinationFileName = tempnam($baseDirectory, $prefix);
新文件的扩展名应在移动上传文件后完成,即:
// Assuming $_FILES['file']['error'] == 0 (no errors)
if (move_uploaded_file($_FILES['file']['tmp_name'], $destinationFileName)) {
// use extension from uploaded file
$fileExtension = '.' . pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
// or fix the extension yourself
// $fileExtension = ".jpg";
rename($destinationFileName, $destinationFileName . $fileExtension);
} else {
// tempnam() created a new file, but moving the uploaded file failed
unlink($destinationFileName); // remove temporary file
}
答案 2 :(得分:1)
您是否考虑过使用md5_file? 这样,您的所有文件都将具有唯一的名称,您不必担心重复的名称。但请注意,如果内容相同,这将返回相同的字符串。
另外还有另一种方法:
do {
$filename = DIR_UPLOAD_PATH . '/' . make_string(10) . '-' . make_string(10) . '-' . make_string(10) . '-' . make_string(10);
} while(is_file($filename));
return $filename;
/**
* Make random string
*
* @param integer $length
* @param string $allowed_chars
* @return string
*/
function make_string($length = 10, $allowed_chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890') {
$allowed_chars_len = strlen($allowed_chars);
if($allowed_chars_len == 1) {
return str_pad('', $length, $allowed_chars);
} else {
$result = '';
while(strlen($result) < $length) {
$result .= substr($allowed_chars, rand(0, $allowed_chars_len), 1);
} // while
return $result;
} // if
} // make_string
答案 3 :(得分:-1)
在上传图片之前,函数会创建一个唯一的名称。
// Upload file with unique name
if ( ! function_exists('getUniqueFilename'))
{
function getUniqueFilename($file)
{
if(is_array($file) and $file['name'] != '')
{
// getting file extension
$fnarr = explode(".", $file['name']);
$file_extension = strtolower($fnarr[count($fnarr)-1]);
// getting unique file name
$file_name = substr(md5($file['name'].time()), 5, 15).".".$file_extension;
return $file_name;
} // ends for is_array check
else
{
return '';
} // else ends
} // ends
}