好的,我使用我在 google 上找到的一个片段来获取用户上传的图像并将其放在我的目录下 Content
但我担心重复,所以我要让它作为随机数上传图像
好吧,这是我的代码,无论如何,您可能都可以理解我的目的
<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);