Copy a file in PHP
Description
The following code shows how to copy a file.
Example
<?php
echo copy("test.txt","test_target.txt");
?>
The code above generates the following result.
The following code shows how to copy a file.
<?php
echo copy("test.txt","test_target.txt");
?>
The code above generates the following result.