gpt4 book ai didi

Laravel - 复制图像

转载 作者:行者123 更新时间:2023-12-03 19:20:42 26 4
gpt4 key购买 nike

我需要复制图像并以不同的名称保存。我怎样才能在 Laravel 中做到这一点?
请帮我。

img/master.jpg -> copy -> paste with different name (user1)
----now------
img/master.jpg
img/user1.jpg

最佳答案

你可以使用 laravel File helper ,这里是file System Doc .

$oldPath = 'images/1.jpg'; // publc/images/1.jpg
$newPath = 'images/2.jpg'; // publc/images/2.jpg

if (\File::copy($oldPath , $newPath)) {
dd("success");
}

如果您需要重命名以下内容会有所帮助,
$oldPath = 'images/1.jpg'; // publc/images/1.jpg

$fileExtension = \File::extension($oldPath);
$newName = 'new file.'.$fileExtension;
$newPathWithName = 'images/'.$newName;

if (\File::copy($oldPath , $newPathWithName)) {
dd("success");
}

关于Laravel - 复制图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29208204/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com