如何使用PHP替换现有的图像文件

时间:2019-05-05 08:24:04

标签: php html database

当我上传名为def f(x, fx): correlation = x.corr(fx[x.name[1]]) return correlation correlation = stock_prices.apply(f, args=(fx,), axis=0) >>> print(correlation) BYZ6DH KRW -0.247529 BLZGSL THB 0.043084 MBT USD -0.471750 BAP USD 0.314969 dtype: float64 的图像文件时,它不会使用boy.png替换现有的boy.png

第二个move_uploaded_file()是另外一张图片。

如果使用 PHP 已经存在的文件,如何上传和替换文件?

1 个答案:

答案 0 :(得分:1)

您可以尝试以这种方式首先检查具有相同名称的文件是否已经存在?如果退出,则删除旧的并上传新的。让我们这样尝试吧-

//checking if file with same name already exists
if(file_exists("pathtofile/boy.png")) unlink("pathtofile/boy.png");

//upload file now using the move_uploaded_file()
move_uploaded_file($fileLocTemporary, "pathtofile/boy.png"); # change as per your temp location