PHP file_exists(覆盖文件)不起作用

时间:2017-07-03 05:44:14

标签: php

我按照关于上传图片和覆盖现有文件的问题的答案。

建议的答案是使用方法file_exists()。我使用相同的方法,但当我尝试上传不同的图像但文件名相同时,图像不会覆盖现有图像。

这是我的PHP代码:

<?php

$con = mysqli_connect("127.0.0.1","root","","japorms");


$user_id = $_POST["user_id"];
$base_picture = $_POST["base_picture"];


$binary = base64_decode($base_picture);



if (file_exists('user_img/'.$user_id.'.jpg'))
{

    unlink('user_img/'.$user_id.'.jpg');

}

    $file = fopen('user_img/'.$user_id.'.jpg', 'wb');
    fwrite($file, $binary);
    fclose($file);


$response["success"]=true;


echo json_encode($response);

?>

解决

我重新安排并修复了我的代码。它现在正在工作。谢谢你的所有建议。

<?php

$con = mysqli_connect("127.0.0.1","root","","japorms");
/*$con = mysqli_connect("mysql.hostinger.ph","u989983246_jap","japorms","u989983246_jap");
*/


$user_id = $_POST["user_id"];
$base_picture = $_POST["base_picture"];


$binary = base64_decode($base_picture);



if (file_exists('user_img/'.$user_id.'.jpg'))
{

    unlink('user_img/'.$user_id.'.jpg');
    $file = fopen('user_img/'.$user_id.'.jpg', 'wb');
    fwrite($file, $binary);
    fclose($file);


}
else{


    $file = fopen('user_img/'.$user_id.'.jpg', 'wb');
    fwrite($file, $binary);
    fclose($file);


}



$response["success"]=true;


echo json_encode($response);

?>

0 个答案:

没有答案