Answers for "how to create a copy of a file in php and move it"

PHP
1

php copy file

// Will copy foo/test.php to bar/test.php
// overwritting it if necessary
copy('foo/test.php', 'bar/test.php');
Posted by: Guest on September-27-2021

Code answers related to "how to create a copy of a file in php and move it"

Browse Popular Code Answers by Language