aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/kapitel04/file6.php

7 lines
134 B
PHP
Raw Normal View History

2022-02-23 22:44:33 +01:00
<?php
# Quelle: http://www.schattenbaum.net/php/
$datei = "blumen.txt";
$kopie = "flowers.txt";
copy ($datei, $kopie);
?>