RosettaCodeData/Task/File-input-output/PHP/file-input-output-2.php

10 lines
217 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<?php
if ($contents = file_get_contents('input.txt')) {
if (!file_put_contents('output.txt', $contents)) {
echo('Could not write output file.');
}
} else {
echo('Could not open input file.');
}
?>