PHP

Topic: Files

How To Copy a File?

If you have a file and want to make a copy to create a new file, you can use the copy() function. Here is a PHP script example on how to use copy():<?phpunlink("/temp/myPing.exe");copy("/windows/system32/ping.exe", "/temp/myPing.exe");if (file_exists("/temp/myPing.exe")) {  print("A copy of ping.exe is created.\n"); }?>This script will print:A copy of ping.exe is created.

Browse random answers: