gpt4 book ai didi

php随机图片文件名

转载 作者:可可西里 更新时间:2023-11-01 12:41:07 32 4
gpt4 key购买 nike

好的,我正在使用我在谷歌上找到的一个片段来拍摄用户上传的图片并将其放在我的目录下的内容中

但我担心重复,所以我打算让它以随机数的形式上传图片

好吧,这是我的代码,无论如何你都可以理解我的目的

<label for="file">Profile Pic:</label> <input type="file" name="ProfilePic" id="ProfilePic" /><br />

<input type="submit" name="submit" value="Submit" />

$ProfilePicName = $_FILES["ProfilePic"]["name"];
$ProfilePicType = $_FILES["ProfilePic"]["type"];
$ProfilePicSize = $_FILES["ProfilePic"]["size"];
$ProfilePicTemp = $_FILES["ProfilePic"]["tmp_name"];
$ProfilePicError = $_FILES["ProfilePic"]["error"];

$RandomAccountNumber = mt_rand(1, 99999);
echo $RandomAccountNumber;
move_uploaded_file($ProfilePicTemp, "Content/".$RandomAccountNumber.$ProfilePicType);

然后基本上在所有这一切之后,我将尝试让它将该随机数放入我的数据库中

有人给了我一个新的片段,看起来它会做我想做的,但现在文件并没有一直到我的目录

$RandomAccountNumber = uniqid();
echo $RandomAccountNumber;

move_uploaded_file($ProfilePicName,"Content/".$RandomAccountNumber);

最佳答案

尝试使用php的uniqid方法生成你需要的唯一id

http://php.net/manual/en/function.uniqid.php

$RandomAccountNumber = uniqid();
move_uploaded_file($ProfilePicTemp, "Content/" . $RandomAccountNumber);

关于php随机图片文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13483439/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com