Skip to content

Instantly share code, notes, and snippets.

@niravmadariya
Last active June 7, 2018 07:31
Show Gist options
  • Save niravmadariya/f57a5a4a5c09c469b951cd42b019048e to your computer and use it in GitHub Desktop.
Save niravmadariya/f57a5a4a5c09c469b951cd42b019048e to your computer and use it in GitHub Desktop.
Copy file content to another file - PHP
<?php
echo copy("source.txt","target.txt");
//Another way
//Get all the content from the file
$fileContents = file_get_contents('1.txt');
//Output to new file
$fh = fopen('output.txt', 'w+');
file_put_contents($fh, $fileContents);
fclose($fh);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment