「php」ファイルをコピーするコード
phpコード
<?php
$file = 'demo.txt’;
$newfile = '/var/www/data/demo.txt’;
if (!copy($file, $newfile)) {
echo “コピーできません $file…\n";
}
?>
Coding Changes the World
phpコード
<?php
$file = 'demo.txt’;
$newfile = '/var/www/data/demo.txt’;
if (!copy($file, $newfile)) {
echo “コピーできません $file…\n";
}
?>