我正在使用以下代码在我的网络服务器上存储图像:
function SavePic()
{
$allowedExts = array("jpeg", "jpg");
$temp = explode(".", $_FILES["UserPic"]["name"]);
$extension = end($temp);
if ((($_FILES["UserPic"]["type"] == "image/jpeg")
|| ($_FILES["UserPic"]["type"] == "image/jpg"))
//&& ($_FILES["UserPic"]["size"] < 2097152)
&& in_array($extension, $allowedExts))
{
if ($_FILES["UserPic"]["error"] > 0)
{
echo json_encode("Error: ".$_FILES["UserPic"]["error"]);
}
else
{
$folder = "/home5/username/public_html/Project/Users/Images/";
echo move_uploaded_file($_FILES["UserPic"]["tmp_name"],$folder.$_REQUEST["email"].".".$extension);
}
}
else
{
echo json_encode("Invalid file");
}
}
并使用以下代码检索图像:
function RetrievePic()
{
$handle = fopen('php://input','r');
$jsonInput = fgets($handle);
// Decoding JSON into an Array
$retrieveParameters = json_decode($jsonInput,true);
$UserPic = array("UserPic" => "http://www.mysite.com/Project/Users/Images/".$retrieveParameters['email']."."."jpg");
echo json_encode($UserPic);
}
例如,如果我的电子邮件是 abc@xyz.com,则图像将存储为“abc@xyz.com.jpg”。问题是,当我尝试覆盖图像以用新图像替换旧图像时,服务器每次都返回旧图像。
更新: 当我将网址放在浏览器中时,例如http://www.mysite.com/Project/Users/Images/abc@xyz.com.jpg 显示最新图像,之后我开始接收最新图像。