CodeIgniter Forums
Create a copy of file from another server - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Create a copy of file from another server (/showthread.php?tid=90862)



Create a copy of file from another server - pippuccio76 - 05-14-2024

hi,
how can i copy i file from another server ? i try with ;
Code:
$file->move($path,$name)

but have rename(): http wrapper does not support renaming


RE: Create a copy of file from another server - Ege - 05-14-2024

PHP Code:
$url 'http://example.com/your_remote_file.jpg';
$path '/your_local_directory/';
$name 'your_local_file.jpg';
file_put_contents($path.$namefile_get_contents($url));