使用 Intervention/image 模块移动和重命名图片

Move and rename picture with Intervention/image module

我正在使用 'Intervention/image' 模块,有两个文件夹,我想移动和重命名图像。

public/temp/image1.pngpublic/my-folder/my-image.png

Intervention Image 似乎确实在进行实际上传。因此,在这种情况下,您将不得不使用 Filesystem's method move(查看其余方法以获得更多可用功能)。

示例:

if (!File::move($old, $new)) {
    // Display an error
}

运行 只需 php 重命名函数

rename("/public/temp/image1.png", "/public/my-folder/my-image.png");

php rename manual