Fungsi : Mengcopy file
Sintaks :
copy ( string $source , string $dest [, resource $context ] )Parameter :
$source , adalah file yang akan dicopy
$dest, adalah file tujuan
Contoh :
<?php $file = 'upload.php'; $newfile = 'uploadcopy.php'; if (!copy($file, $newfile)) { echo "gagal copy file $file...\n"; }else{ echo "File $file berhasil di copy"; } ?>
No comments :
Post a Comment
Silahkan berkomentar dengan baik dan sopan, komentar anda berharga bagi saya...oke browww