$url_arr = parse_url("https://www.02405.com/wp-content/uploads/2022/05/logo01-1.webp");
$link_to_arr = explode('/', $url_arr['path']);
$img_name = end($link_to_arr);
$link_to_arr = explode('.', $img_name);
$img_name = end($link_to_arr);
$f_name = 'blk_imp_'.Carbon::now()->timestamp.'.'.$img_name;
$lnk = config()->get('img_pth_initial').'uploads/product_images/'.$f_name;
file_put_contents( $lnk ,file_get_contents('https://www.02405.com/wp-content/uploads/2022/05/logo01-1.webp'));
零五网 - 为热爱技术的人而生!
Laravel 9 使用 file_put_contents() 函数保存远端文件
0 Previous ArticleSOLID 原则 – PHP 中的面向对象编程
Next Article Ubuntu 22.04 安装 PHP 8.1 方法