PHP | copy( ) Function
The copy() function in PHP is an inbuilt function which is used to make a copy of a specified file. It makes a copy of the source file to the destination file and if the destination file already exists, it gets overwritten. The copy() function returns true on success and false on failure.
Syntax:
bool copy ( $source, $dest )
Parameters: The copy() function in PHP accepts two parameters which are source and destination.
- $source: It specifies the path to the source file.
- $dest: It is used to specify the path to the destination file.
Return Value: It returns true on success and false on failure.
Errors And Exception:
- The copy() function in PHP doesn’t works for remote files.It only works on files which are accessible by the server’s filesystem.
- If the destination file already exists, it gets overwritten.
Examples:
Input : echo copy("gfg.txt", "geeksforgeeks.txt");
Output : true
Input : $srcfile = '/user01/Desktop/admin/gfg.txt';
$destfile = 'user01/Desktop/admin/geeksforgeeks.txt';
echo copy($srcfile, $destfilefile);
Output : true
Below programs illustrate the copy() function:
Program 1:
<?php // Copying gfg.txt to geeksforgeeks.txt echo copy("gfg.txt", "geeksforgeeks.txt"); ?> |
Output:
true
Program 2:
<?php // Copying gfg.txt to geeksforgeeks.txt $srcfile = '/user01/Desktop/admin/gfg.txt'; $destfile = 'user01/Desktop/admin/geeksforgeeks.txt'; if (!copy($srcfile, $destfilefile)) { echo "File cannot be copied! \n"; } else { echo "File has been copied!"; } ?> |
Output:
File has been copied!
Reference:
http://php.net/manual/en/function.copy.php
Recommended Posts:
- PHP Ds\Map copy() Function
- PHP | Ds\Set copy() Function
- PHP | Ds\Vector copy() Function
- PHP | Ds\Collection copy() Function
- PHP Ds\Queue copy() Function
- PHP Ds\PriorityQueue copy() Function
- PHP | Ds\Stack copy() Function
- PHP | Ds\Deque copy() Function
- PHP | Ds\Pair copy() Function
- How to create a copy of an object in PHP?
- AngularJS | ng-copy Directive
- How to copy the text to the clipboard in JavaScript?
- Copy the entire contents of a directory to another directory in PHP
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



