web 2.0

How to use PHP & Copy() Copy File

How to use PHP & Copy() Copy File Learn how to use the PHP to Copy File on web server and using function copy()

ShotDev Focus:
- PHP & Copy File (Copy())

Example

php_copy_file.php


<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<?
$flgCopy = copy("shotdev/my.txt", "shotdev/my_bak.txt");
if($flgCopy)
{
echo "file copied.";
}
else
{
echo "Cannot copy file.";
}
?>
</body>
</html>

Create a php file and save to path root-path/myphp/

Run
http://localhost/myphp/php_copy_file.php

Screenshot

PHP Copy File
.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (2 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.