「php」ファイルをコピーするコード

phpコード
<?php
$file = 'demo.txt’;
$newfile = '/var/www/data/demo.txt’;

if (!copy($file, $newfile)) {
echo “コピーできません $file…\n";
}
?>

PHP

Posted by arkgame